@angleprotocol/sdk
Version:
SDK for Angle DApps
13 lines (12 loc) • 448 B
TypeScript
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;
}