UNPKG

@xchainjs/xchain-bitcoincash

Version:

Custom bitcoincash client and utilities used by XChainJS clients

33 lines (32 loc) 1.03 kB
import { ExplorerProvider } from '@xchainjs/xchain-client'; import { Asset } from '@xchainjs/xchain-util'; import { UtxoOnlineDataProviders } from '@xchainjs/xchain-utxo-providers'; /** * Lower bound for transaction fee rate. */ export declare const LOWER_FEE_BOUND = 1; /** * Upper bound for transaction fee rate. */ export declare const UPPER_FEE_BOUND = 500; /** * Decimal places for Bitcoin Cash. */ export declare const BCH_DECIMAL = 8; /** * Chain identifier for Bitcoin Cash. */ export declare const BCHChain: "BCH"; /** * Base "chain" asset on Bitcoin Cash mainnet. * Defined according to Thorchain's asset structure. * @see https://gitlab.com/thorchain/thornode/-/blob/master/common/asset.go#L12-24 */ export declare const AssetBCH: Asset; export declare const explorerProviders: { testnet: ExplorerProvider; stagenet: ExplorerProvider; mainnet: ExplorerProvider; }; export declare const HaskoinDataProviders: UtxoOnlineDataProviders; export declare const BitgoProviders: UtxoOnlineDataProviders;