v0_18

package
v0.19.6 Latest Latest
Warning

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

Go to latest
Published: Sep 16, 2021 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	ModuleName = "staking"
)

Variables

View Source
var DefaultMinSelfDelegation = sdk.NewDec(10000)

Functions

This section is empty.

Types

type GenesisState

type GenesisState struct {
	Params               Params                            `json:"params" yaml:"params"`
	LastTotalPower       sdk.Int                           `json:"last_total_power" yaml:"last_total_power"`
	LastValidatorPowers  []v0_10.LastValidatorPower        `json:"last_validator_powers" yaml:"last_validator_powers"`
	Validators           []v0_10.ValidatorExported         `json:"validators" yaml:"validators"`
	Delegators           []v0_10.Delegator                 `json:"delegators" yaml:"delegators"`
	UnbondingDelegations []v0_10.UndelegationInfo          `json:"unbonding_delegations" yaml:"unbonding_delegations"`
	AllShares            []v0_11.SharesExported            `json:"all_shares" yaml:"all_shares"`
	ProxyDelegatorKeys   []v0_10.ProxyDelegatorKeyExported `json:"proxy_delegator_keys" yaml:"proxy_delegator_keys"`
	Exported             bool                              `json:"exported" yaml:"exported"`
}

GenesisState - all staking state that must be provided at genesis

func Migrate

func Migrate(oldGenState v0_11.GenesisState) GenesisState

Migrate removes BondDenom

type Params

type Params struct {
	// time duration of unbonding
	UnbondingTime time.Duration `json:"unbonding_time" yaml:"unbonding_time"`
	// note: we need to be a bit careful about potential overflow here, since this is user-determined
	// maximum number of validators (max uint16 = 65535)
	MaxValidators uint16 `json:"max_bonded_validators" yaml:"max_bonded_validators"`
	// epoch for validator update
	Epoch              uint16 `json:"epoch" yaml:"epoch"`
	MaxValsToAddShares uint16 `json:"max_validators_to_add_shares" yaml:"max_validators_to_add_shares"`
	// limited amount of delegate
	MinDelegation sdk.Dec `json:"min_delegation" yaml:"min_delegation"`
	// validator's self declared minimum self delegation
	MinSelfDelegation sdk.Dec `json:"min_self_delegation" yaml:"min_self_delegation"`
}

Params defines the high level settings for staking

Jump to

Keyboard shortcuts

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