interface WatchAssetOptions {
    address: string;
    decimals?: number;
    image?: string;
    symbol?: string;
    tokenId?: string;
}

Properties

address: string

The address of the token contract.

decimals?: number

The number of token decimals (optional for ERC-20 tokens).

image?: string

A string URL of the token logo (optional for ERC-20 tokens).

symbol?: string

A ticker symbol or shorthand, up to 11 characters (optional for ERC-20 tokens).

tokenId?: string

The unique identifier of the NFT (required for ERC-721 and ERC-1155 tokens).