UNPKG

@xchainjs/xchain-radix

Version:

Custom Radix client and utilities used by XChainJS clients

30 lines (29 loc) 1.03 kB
import { RootDerivationPaths } from '@xchainjs/xchain-client'; import { Asset } from '@xchainjs/xchain-util'; /** * Chain identifier for Radix. * This constant represents the identifier for the Radix Chain. */ export declare const RadixChain: "XRD"; export declare const MAINNET_GATEWAY_URL = "https://mainnet.radixdlt.com"; export declare const STOKENET_GATEWAY_URL = "https://stokenet.radixdlt.com"; export declare const XRD_DECIMAL = 18; export declare const RADIX_ASSET_RESOURCE = "resource_rdx1tknxxxxxxxxxradxrdxxxxxxxxx009923554798xxxxxxxxxradxrd"; export declare const AssetXRD: Asset; export declare const xrdRootDerivationPaths: RootDerivationPaths; export declare const bech32Networks: { [key: number]: string; }; export declare const bech32Lengths: { [key: number]: number; }; interface FeesEstimationParams { from: string; to: string; resourceAddress: string; publicKey: string; } export declare const feesEstimationPublicKeys: { [networkId: number]: FeesEstimationParams; }; export {};