-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package params | ||
|
||
import ( | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
) | ||
|
||
var ( | ||
Bech32Prefix = "consumer" | ||
|
||
// Bech32PrefixAccAddr defines the Bech32 prefix of an account's address | ||
Bech32PrefixAccAddr = Bech32Prefix | ||
// Bech32PrefixAccPub defines the Bech32 prefix of an account's public key | ||
Bech32PrefixAccPub = Bech32Prefix + sdk.PrefixPublic | ||
// Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address | ||
Bech32PrefixValAddr = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixOperator | ||
// Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key | ||
Bech32PrefixValPub = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixOperator + sdk.PrefixPublic | ||
// Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address | ||
Bech32PrefixConsAddr = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixConsensus | ||
// Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key | ||
Bech32PrefixConsPub = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixConsensus + sdk.PrefixPublic | ||
) | ||
|
||
// SetAddressPrefixes builds the Config with Bech32 addressPrefix and publKeyPrefix for accounts, validators, and consensus nodes and verifies that addreeses have correct format. | ||
// Not sealed yet | ||
func SetAddressPrefixes() { | ||
cfg := sdk.GetConfig() | ||
cfg.SetBech32PrefixForAccount(Bech32PrefixAccAddr, Bech32PrefixAccPub) | ||
cfg.SetBech32PrefixForValidator(Bech32PrefixValAddr, Bech32PrefixValPub) | ||
cfg.SetBech32PrefixForConsensusNode(Bech32PrefixConsAddr, Bech32PrefixConsPub) | ||
} | ||
|
||
func init() { | ||
SetAddressPrefixes() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
Package params defines the simulation parameters in the gaia. | ||
It contains the default weights used for each transaction used on the module's | ||
simulation. These weights define the chance for a transaction to be simulated at | ||
any gived operation. | ||
You can repace the default values for the weights by providing a params.json | ||
file with the weights defined for each of the transaction operations: | ||
{ | ||
"op_weight_msg_send": 60, | ||
"op_weight_msg_delegate": 100, | ||
} | ||
In the example above, the `MsgSend` has 60% chance to be simulated, while the | ||
`MsgDelegate` will always be simulated. | ||
*/ | ||
package params |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package params | ||
|
||
import ( | ||
"github.com/cosmos/cosmos-sdk/client" | ||
"github.com/cosmos/cosmos-sdk/codec" | ||
"github.com/cosmos/cosmos-sdk/codec/types" | ||
) | ||
|
||
// EncodingConfig specifies the concrete encoding types to use for a given app. | ||
// This is provided for compatibility between protobuf and amino implementations. | ||
type EncodingConfig struct { | ||
InterfaceRegistry types.InterfaceRegistry | ||
Codec codec.Codec | ||
TxConfig client.TxConfig | ||
Amino *codec.LegacyAmino | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package params | ||
|
||
// Simulation parameter constants | ||
const ( | ||
StakePerAccount = "stake_per_account" | ||
InitiallyBondedValidators = "initially_bonded_validators" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package params | ||
|
||
import ( | ||
"github.com/cosmos/cosmos-sdk/codec" | ||
"github.com/cosmos/cosmos-sdk/codec/types" | ||
"github.com/cosmos/cosmos-sdk/x/auth/tx" | ||
) | ||
|
||
// MakeTestEncodingConfig creates an EncodingConfig for an amino based test configuration. | ||
func MakeTestEncodingConfig() EncodingConfig { | ||
amino := codec.NewLegacyAmino() | ||
interfaceRegistry := types.NewInterfaceRegistry() | ||
chainCodec := codec.NewProtoCodec(interfaceRegistry) | ||
txCfg := tx.NewTxConfig(chainCodec, tx.DefaultSignModes) | ||
|
||
return EncodingConfig{ | ||
InterfaceRegistry: interfaceRegistry, | ||
Codec: chainCodec, | ||
TxConfig: txCfg, | ||
Amino: amino, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package params | ||
|
||
// Default simulation operation weights for messages and gov proposals | ||
const ( | ||
DefaultWeightMsgSend int = 100 | ||
DefaultWeightMsgMultiSend int = 10 | ||
DefaultWeightMsgSetWithdrawAddress int = 50 | ||
DefaultWeightMsgWithdrawDelegationReward int = 50 | ||
DefaultWeightMsgWithdrawValidatorCommission int = 50 | ||
DefaultWeightMsgFundCommunityPool int = 50 | ||
DefaultWeightMsgDeposit int = 100 | ||
DefaultWeightMsgVote int = 67 | ||
DefaultWeightMsgUnjail int = 100 | ||
DefaultWeightMsgCreateValidator int = 100 | ||
DefaultWeightMsgEditValidator int = 5 | ||
DefaultWeightMsgDelegate int = 100 | ||
DefaultWeightMsgUndelegate int = 100 | ||
DefaultWeightMsgBeginRedelegate int = 100 | ||
|
||
DefaultWeightCommunitySpendProposal int = 5 | ||
DefaultWeightTextProposal int = 5 | ||
DefaultWeightParamChangeProposal int = 5 | ||
|
||
DefaultWeightMsgStoreCode int = 50 | ||
DefaultWeightMsgInstantiateContract int = 100 | ||
DefaultWeightMsgExecuteContract int = 100 | ||
DefaultWeightMsgUpdateAdmin int = 25 | ||
DefaultWeightMsgClearAdmin int = 10 | ||
DefaultWeightMsgMigrateContract int = 50 | ||
|
||
DefaultWeightStoreCodeProposal int = 5 | ||
DefaultWeightInstantiateContractProposal int = 5 | ||
DefaultWeightUpdateAdminProposal int = 5 | ||
DefaultWeightExecuteContractProposal int = 5 | ||
DefaultWeightClearAdminProposal int = 5 | ||
DefaultWeightMigrateContractProposal int = 5 | ||
DefaultWeightSudoContractProposal int = 5 | ||
DefaultWeightPinCodesProposal int = 5 | ||
DefaultWeightUnpinCodesProposal int = 5 | ||
DefaultWeightUpdateInstantiateConfigProposal int = 5 | ||
DefaultWeightStoreAndInstantiateContractProposal int = 5 | ||
) |