params

package
v1.13.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 28, 2022 License: Apache-2.0 Imports: 4 Imported by: 1

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

View Source
const (
	StakePerAccount           = "stake_per_account"
	InitiallyBondedValidators = "initially_bonded_validators"
)

Simulation parameter constants

View Source
const (
	// Name
	DefaultWeightMsgBindName            int = 10
	DefaultWeightMsgDeleteName          int = 5
	DefaultWeightCreateRootNameProposal int = 5
	// Attribute
	DefaultWeightMsgAddAttribute            int = 15
	DefaultWeightMsgUpdateAttribute         int = 5
	DefaultWeightMsgDeleteAttribute         int = 5
	DefaultWeightMsgDeleteDistinctAttribute int = 5
	// Marker
	DefaultWeightAddMarkerProposalContent           int = 5
	DefaultWeightSupplyIncreaseProposalContent      int = 5
	DefaultWeightSupplyDecreaseProposalContent      int = 5
	DefaultWeightSetAdministratorProposalContent    int = 5
	DefaultWeightRemoveAdministratorProposalContent int = 5
	DefaultWeightChangeStatusProposalContent        int = 5
	DefaultWeightSetDenomMetadataProposalContent    int = 5
	DefaultWeightMsgAddMarker                       int = 100
	DefaultWeightMsgChangeStatus                    int = 10
	DefaultWeightMsgAddAccess                       int = 10
	DefaultWeightMsgMintMarker                      int = 67
	DefaultWeightMsgBurnMarker                      int = 67
	// MsgFees
	DefaultWeightAddMsgFeeProposalContent    int = 75
	DefaultWeightRemoveMsgFeeProposalContent int = 25
	// Rewards
	DefaultWeightSubmitCreateRewards int = 95
	DefaultWeightSubmitEndRewards    int = 5
)

Default simulation operation weights for messages and gov proposals

Variables

This section is empty.

Functions

This section is empty.

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 MakeTestEncodingConfig added in v1.0.0

func MakeTestEncodingConfig() EncodingConfig

MakeTestEncodingConfig creates an EncodingConfig for a non-amino based test configuration. This function should be used only internally (in the SDK). App user shouldn't create new codecs - use the app.AppCodec instead. [DEPRECATED]

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL