UNPKG

hermes-v2-sdk

Version:

⚒️ An SDK for building applications on top of Hermes V2

12 lines (11 loc) 428 B
import { Currency, NativeCurrency, NativeToken } from 'maia-core-sdk'; /** * Ether is the main usage of a 'native' currency, i.e. for Ethereum mainnet and all testnets */ export declare class Ether extends NativeCurrency { protected constructor(chainId: number); get wrapped(): NativeToken; private static _etherCache; static onChain(chainId: number): Ether; equals(other: Currency): boolean; }