Documentation ¶
Overview ¶
Package params defines the simulation parameters in the simapp. 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.
Index ¶
Constants ¶
const ( CoinUnit = "btsg" MicroCoinUnit = "ubtsg" CoinExponent = 6 DefaultBondDenom = MicroCoinUnit // Bech32PrefixAccAddr defines the Bech32 prefix of an account's address Bech32PrefixAccAddr = "bitsong" CoinType = 639 )
Variables ¶
var ( // Bech32PrefixAccPub defines the Bech32 prefix of an account's public key Bech32PrefixAccPub = Bech32PrefixAccAddr + "pub" // Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address Bech32PrefixValAddr = Bech32PrefixAccAddr + "valoper" // Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key Bech32PrefixValPub = Bech32PrefixAccAddr + "valoperpub" // Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address Bech32PrefixConsAddr = Bech32PrefixAccAddr + "valcons" // Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key Bech32PrefixConsPub = Bech32PrefixAccAddr + "valconspub" )
Functions ¶
func RegisterDenoms ¶ added in v0.11.0
func RegisterDenoms()
func SetAddressPrefixes ¶ added in v0.11.0
func SetAddressPrefixes()
Types ¶
type EncodingConfig ¶
type EncodingConfig struct { InterfaceRegistry types.InterfaceRegistry Marshaler codec.Codec TxConfig client.TxConfig Amino *codec.LegacyAmino }
EncodingConfig specifies the concrete encoding types to use for a given app. This is provided for compatibility between protobuf and amino implementations.
func MakeEncodingConfig ¶
func MakeEncodingConfig() EncodingConfig
MakeEncodingConfig creates an EncodingConfig for an amino based test configuration.