UNPKG

@angleprotocol/sdk

Version:
13 lines (12 loc) 448 B
import { ChainId } from './constants'; export declare class Token { readonly chainId: ChainId; readonly address: string; readonly decimals: number; readonly symbol: string; readonly name?: string; readonly isAgToken: boolean; static ether(chainId?: ChainId): Token; constructor(chainId: number, address: string, decimals: number, symbol: string, name?: string, isAgToken?: boolean); eq(other: Token): boolean; }