@thorwallet/xchain-util
Version:
Helper utilities for XChain clients
37 lines (36 loc) • 683 B
TypeScript
/**
* Binance Chain
*/
export declare const BNBChain = "BNB";
/**
* Bitcoin Chain
*/
export declare const BTCChain = "BTC";
/**
* Ethereum Chain
*/
export declare const ETHChain = "ETH";
/**
* Thorchain
*/
export declare const THORChain = "THOR";
/**
* Cosmos Chain
*/
export declare const CosmosChain = "GAIA";
/**
* Polkadot Chain
*/
export declare const PolkadotChain = "POLKA";
/**
* Bitcoin Cash
*/
export declare const BCHChain = "BCH";
/**
* Litecoin Chain
*/
export declare const LTCChain = "LTC";
/**
* All possible chains XChainJS currently supports
* */
export declare const chains: readonly ["BNB", "BTC", "ETH", "THOR", "GAIA", "POLKA", "BCH", "LTC"];