UNPKG

scorechain-sdk

Version:

SDK for the Scorechain API

29 lines 693 B
export declare enum BlockchainEnum { BITCOIN = "BITCOIN", BITCOINCASH = "BITCOINCASH", LITECOIN = "LITECOIN", DASH = "DASH", ETHEREUM = "ETHEREUM", RIPPLE = "RIPPLE", TEZOS = "TEZOS", TRON = "TRON", BSC = "BSC", POLYGON = "POLYGON", AVALANCHE = "AVALANCHE", BASE = "BASE", SOLANA = "SOLANA" } export type BlockchainType = keyof typeof BlockchainEnum; export interface Coin { id: number; name: string; symbol: string; blockchain: string; chainId: string | null; icon: string; decimals?: number; usdRate?: number; isDeprecated?: boolean; isBannedFromTMS?: boolean; } //# sourceMappingURL=common.d.ts.map