Documentation
¶
Index ¶
Constants ¶
View Source
const ( // Bech32Prefix defines the Bech32 prefix used for EthAccounts Bech32Prefix = "uptick" // Bech32PrefixAccAddr defines the Bech32 prefix of an account's address Bech32PrefixAccAddr = Bech32Prefix // Bech32PrefixAccPub defines the Bech32 prefix of an account's public key Bech32PrefixAccPub = Bech32Prefix + sdk.PrefixPublic // Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address Bech32PrefixValAddr = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixOperator // Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key Bech32PrefixValPub = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixOperator + sdk.PrefixPublic // Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address Bech32PrefixConsAddr = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixConsensus // Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key Bech32PrefixConsPub = Bech32Prefix + sdk.PrefixValidator + sdk.PrefixConsensus + sdk.PrefixPublic )
View Source
const ( // DisplayDenom defines the denomination displayed to users in client applications. DisplayDenom = "uptick" // BaseDenom defines to the default denomination used in Uptick (staking, EVM, governance, etc.) BaseDenom = "auptick" )
Variables ¶
This section is empty.
Functions ¶
func DefaultWasmNodeConfig ¶ added in v0.4.0
func DefaultWasmNodeConfig() wasmtypes.NodeConfig
DefaultWasmNodeConfig returns Uptick's default wasm node settings. Query gas is raised above wasmd's 3M default so CW721 smart queries do not fail on larger metadata. Memory cache is 512 MiB.
func EnableObservability ¶
func EnableObservability() error
func RegisterDenoms ¶
func RegisterDenoms()
RegisterDenoms registers the base and display denominations to the SDK.
func SetBech32Prefixes ¶
SetBech32Prefixes sets the global prefixes to be used when serializing addresses and public keys to Bech32 strings.
func SetBip44CoinType ¶
SetBip44CoinType sets the global coin type to be used in hierarchical deterministic wallets.
func WasmConfigTemplate ¶ added in v0.4.0
func WasmConfigTemplate() string
WasmConfigTemplate returns the [wasm] app.toml snippet with Uptick defaults.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.