UNPKG

@xchainjs/xchain-zcash

Version:

Custom Zcash client and utilities used by XChainJS clients

22 lines (21 loc) 734 B
import { ExplorerProvider } from '@xchainjs/xchain-client'; import { Asset } from '@xchainjs/xchain-util'; import { UtxoOnlineDataProviders } from '@xchainjs/xchain-utxo-providers'; export declare const MIN_TX_FEE = 10000; export declare const ZEC_DECIMAL = 8; export declare const LOWER_FEE_BOUND = 10000; export declare const UPPER_FEE_BOUND = 100000; /** * Chain identifier for Zcash mainnet */ export declare const ZECChain: "ZEC"; /** * Base "chain" asset on Zcash main net. */ export declare const AssetZEC: Asset; export declare const zcashExplorerProviders: { testnet: ExplorerProvider; stagenet: ExplorerProvider; mainnet: ExplorerProvider; }; export declare const NownodesProviders: UtxoOnlineDataProviders;