MarketPriceERC20Token

interface MarketPriceERC20Token {
    type: Erc20;
    contract_address: string;
    symbol: null | string;
    decimals: null | number;
}

Properties

type: Erc20

Token type user is offering, which in this case is ERC20

MarketPriceERC20Token

contract_address: string

Address of ERC20 token

MarketPriceERC20Token

symbol: null | string

The symbol of token

MarketPriceERC20Token

decimals: null | number

The decimals of token

MarketPriceERC20Token