Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // key for constant fee parameter ParamStoreKeyIssueFee = []byte("IssueFee") ParamStoreKeyMintFee = []byte("MintFee") ParamStoreKeyFreezeFee = []byte("FreezeFee") ParamStoreKeyUnFreezeFee = []byte("UnfreezeFee") ParamStoreKeyBurnFee = []byte("BurnFee") ParamStoreKeyBurnFromFee = []byte("BurnFromFee") ParamStoreKeyTransferOwnerFee = []byte("TransferOwnerFee") ParamStoreKeyDescribeFee = []byte("DescribeFee") )
Functions ¶
Types ¶
type Params ¶
type Params struct {
IssueFee sdk.Coin `json:"issue_fee"`
MintFee sdk.Coin `json:"mint_fee"`
FreezeFee sdk.Coin `json:"freeze_fee"`
UnFreezeFee sdk.Coin `json:"unfreeze_fee"`
BurnFee sdk.Coin `json:"burn_fee"`
BurnFromFee sdk.Coin `json:"burn_from_fee"`
TransferOwnerFee sdk.Coin `json:"transfer_owner_fee"`
DescribeFee sdk.Coin `json:"describe_fee"`
}
Param Config issue for issue
func DefaultParams ¶
DefaultParams returns a default set of parameters.
func (*Params) ParamSetPairs ¶
func (p *Params) ParamSetPairs() params.ParamSetPairs
ParamSetPairs implements the ParamSet interface and returns all the key/value pairs pairs of auth module's parameters. nolint
Click to show internal directories.
Click to hide internal directories.