biuauthui
Version:
Ui modal for biuAuth
14 lines (13 loc) • 332 B
TypeScript
export type CoinType = {
name: string;
symbol: string;
decimals: number;
address: string;
chainID: number;
isNative?: boolean;
noIcon?: boolean;
totalSupply?: string;
icon?: string;
};
export declare const coins: CoinType[];
export declare const findCoinByAddress: (address: string) => CoinType;