interface CoinMetadata {
    decimals: number;
    description: string;
    iconUrl?: null | string;
    id?: null | string;
    name: string;
    symbol: string;
}

Properties

decimals: number

Number of decimal places the coin uses.

description: string

Description of the token

iconUrl?: null | string

URL for the token logo

id?: null | string

Object id for the CoinMetadata object

name: string

Name for the token

symbol: string

Symbol for the token