Interface ERC20Amount

The token details and amount of ERC20 token units

interface ERC20Amount {
    amount: string;
    type: "ERC20";
    tokenAddress: string;
}

Hierarchy (view full)

Properties

amount: string

An amount in units for the given ERC20 token

type: "ERC20"
tokenAddress: string