UNPKG

chaingate

Version:

A complete TypeScript library for connecting to and making transactions on different blockchains

17 lines (16 loc) 509 B
export type CurrencyInfo = { readonly id: string; readonly name: string; readonly defaultDerivationPath: string; readonly svgLogoUrl: string; readonly symbol: string; readonly minimalUnitSymbol: string; readonly decimals: number; readonly commonDerivationPaths: readonly string[]; readonly nativeTokenId: string; readonly nativeTokenName: string; }; export type EvmCurrencyInfo = CurrencyInfo & { readonly chainId: number; readonly supportsEIP1559: boolean; };