/** * Here you can find all necessary constants that describe the Nolus Network parameters. * * Usage: * * ```ts * import { ChainConstants } from '@nolus/nolusjs'; * * const nolusCoinType = ChainConstants.COIN_TYPE; * ``` */ export declare class ChainConstants { static readonly CHAIN_KEY: string; static readonly CHAIN_NAME: string; static readonly COIN_DENOM: string; static readonly COIN_MINIMAL_DENOM: string; static readonly COIN_DECIMALS: number; static readonly COIN_GECKO_ID: string; static readonly COIN_TYPE: number; static readonly IBC_TRANSFER_TIMEOUT: number; static readonly BECH32_PREFIX_ACC_ADDR: string; /** * value = BECH32_PREFIX_ACC_ADDR + 'pub' */ static readonly BECH32_PREFIX_ACC_PUB: string; /** * value = BECH32_PREFIX_ACC_ADDR + 'valoper' */ static readonly BECH32_PREFIX_VAL_ADDR: string; /** * value = BECH32_PREFIX_ACC_ADDR + 'valoperpub' */ static readonly BECH32_PREFIX_VAL_PUB: string; /** * value = BECH32_PREFIX_ACC_ADDR + 'valcons' */ static readonly BECH32_PREFIX_CONS_ADDR: string; /** * value = BECH32_PREFIX_ACC_ADDR + 'valconspub' */ static readonly BECH32_PREFIX_CONS_PUB: string; static readonly GAS_PRICE_NUMBER: number; static readonly GAS_PRICE: string; static readonly GAS_MULTIPLIER: number; static readonly BIP44_PATH: string; }