types

package
v0.2.2 Latest Latest
Warning

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

Go to latest
Published: Feb 22, 2021 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	DARC  = "darc"  // 1 (base denom unit)
	MDARC = "mdarc" // 10^-3 (milli)
	UDARC = "udarc" // 10^-6 (micro)
	NDARC = "ndarc" // 10^-9 (nano)
	PDARC = "pdarc" // 10^-12 (pico)
	FDARC = "fdarc" // 10^-15 (femto)
	ADARC = "adarc" // 10^-18 (atto)

	KNSTL  = "knstl"  // 1 (base denom unit)
	MKNSTL = "mknstl" // 10^-3 (milli)
	UKNSTL = "uknstl" // 10^-6 (micro)
	NKNSTL = "nknstl" // 10^-9 (nano)
	PKNSTL = "pknstl" // 10^-12 (pico)
	FKNSTL = "fknstl" // 10^-15 (femto)
	AKNSTL = "aknstl" // 10^-18 (atto)

	DefaultBondDenom      = UDARC
	StakeDenom            = UDARC
	DefaultConsensusPower = 100000
)
View Source
const (
	// Bech32PrefixAccAddr defines the Bech32 prefix of an account's address
	Bech32MainPrefix = "darc"
	// PrefixValidator is the prefix for validator keys
	PrefixValidator = "val"
	// PrefixConsensus is the prefix for consensus keys
	PrefixConsensus = "cons"
	// PrefixPublic is the prefix for public keys
	PrefixPublic = "pub"
	// PrefixOperator is the prefix for operator keys
	PrefixOperator = "oper"

	// Bech32PrefixAccAddr defines the Bech32 prefix of an account's address
	Bech32PrefixAccAddr = Bech32MainPrefix
	// Bech32PrefixAccPub defines the Bech32 prefix of an account's public key
	Bech32PrefixAccPub = Bech32MainPrefix + PrefixPublic
	// Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address
	Bech32PrefixValAddr = Bech32MainPrefix + PrefixValidator + PrefixOperator
	// Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key
	Bech32PrefixValPub = Bech32MainPrefix + PrefixValidator + PrefixOperator + PrefixPublic
	// Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address
	Bech32PrefixConsAddr = Bech32MainPrefix + PrefixValidator + PrefixConsensus
	// Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key
	Bech32PrefixConsPub = Bech32MainPrefix + PrefixValidator + PrefixConsensus + PrefixPublic
)

Variables

This section is empty.

Functions

func RegisterBech32Prefix

func RegisterBech32Prefix()

func RegisterNativeCoinUnits

func RegisterNativeCoinUnits()

Types

type GenesisUpdater

type GenesisUpdater interface {
	Name() string
	UpdateGenesis(cdc codec.JSONMarshaler, appState map[string]json.RawMessage)
}

GenesisUpdater is the standard form for an application module

type GenesisUpdaters

type GenesisUpdaters map[string]GenesisUpdater

collections of GenesisUpdater

func NewGenesisUpdaters

func NewGenesisUpdaters(updaters ...GenesisUpdater) GenesisUpdaters

Jump to

Keyboard shortcuts

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