genesis

package
v1.6.0 Latest Latest
Warning

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

Go to latest
Published: Nov 13, 2024 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ChainType added in v0.11.0

type ChainType uint8
const (
	Mainnet  ChainType = 0
	Testnet  ChainType = 1
	Localnet ChainType = 2
)

func (ChainType) IsMainnet added in v0.12.0

func (n ChainType) IsMainnet() bool

func (ChainType) IsTestnet added in v0.11.0

func (n ChainType) IsTestnet() bool

func (ChainType) String added in v0.11.0

func (n ChainType) String() string

type Genesis

type Genesis struct {
	// contains filtered or unexported fields
}

Genesis is stored in the state database.

func LoadFromFile

func LoadFromFile(file string) (*Genesis, error)

LoadFromFile loads genesis object from a JSON file.

func MainnetGenesis added in v1.0.0

func MainnetGenesis() *Genesis

func MakeGenesis

func MakeGenesis(genesisTime time.Time, accounts map[crypto.Address]*account.Account,
	validators []*validator.Validator, params *GenesisParams,
) *Genesis

func TestnetGenesis added in v0.11.0

func TestnetGenesis() *Genesis

func (*Genesis) Accounts

func (gen *Genesis) Accounts() map[crypto.Address]*account.Account

func (*Genesis) ChainType added in v0.11.0

func (gen *Genesis) ChainType() ChainType

func (*Genesis) GenesisTime

func (gen *Genesis) GenesisTime() time.Time

func (*Genesis) Hash

func (gen *Genesis) Hash() hash.Hash

func (*Genesis) MarshalJSON

func (gen *Genesis) MarshalJSON() ([]byte, error)

func (*Genesis) Params

func (gen *Genesis) Params() *GenesisParams

func (*Genesis) SaveToFile

func (gen *Genesis) SaveToFile(file string) error

SaveToFile saves the genesis into a JSON file.

func (*Genesis) TotalSupply added in v0.15.0

func (gen *Genesis) TotalSupply() amount.Amount

func (*Genesis) UnmarshalJSON

func (gen *Genesis) UnmarshalJSON(bs []byte) error

func (*Genesis) Validators

func (gen *Genesis) Validators() []*validator.Validator

type GenesisParams added in v1.5.0

type GenesisParams struct {
	BlockVersion              uint8         `cbor:"1,keyasint"  json:"block_version"`
	BlockIntervalInSecond     int           `cbor:"2,keyasint"  json:"block_interval_in_second"`
	CommitteeSize             int           `cbor:"3,keyasint"  json:"committee_size"`
	BlockReward               amount.Amount `cbor:"4,keyasint"  json:"block_reward"`
	TransactionToLiveInterval uint32        `cbor:"5,keyasint"  json:"transaction_to_live_interval"`
	BondInterval              uint32        `cbor:"6,keyasint"  json:"bond_interval"`
	UnbondInterval            uint32        `cbor:"7,keyasint"  json:"unbond_interval"`
	SortitionInterval         uint32        `cbor:"8,keyasint"  json:"sortition_interval"`
	FeeFraction               float64       `cbor:"9,keyasint"  json:"fee_fraction"` // Deprecated: Replaced by fix fee
	MinimumFee                amount.Amount `cbor:"10,keyasint" json:"minimum_fee"`  // Deprecated: Replaced by fix fee
	MaximumFee                amount.Amount `cbor:"11,keyasint" json:"maximum_fee"`  // Deprecated: Replaced by fix fee
	MinimumStake              amount.Amount `cobr:"12,keyasint" json:"minimum_stake"`
	MaximumStake              amount.Amount `cbor:"13,keyasint" json:"maximum_stake"`
}

func DefaultGenesisParams added in v1.5.0

func DefaultGenesisParams() *GenesisParams

func (*GenesisParams) BlockInterval added in v1.5.0

func (p *GenesisParams) BlockInterval() time.Duration

Jump to

Keyboard shortcuts

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