Type alias FundingItem

FundingItem: {
    type: NATIVE | ERC20;
    fundsRequired: FundsRequired;
    userBalance: UserBalance;
    token: TokenInfo;
}

Represents a funding item

Type declaration

  • type: NATIVE | ERC20

    The type of the funding item

  • fundsRequired: FundsRequired

    The amount of funds required of this funding item

  • userBalance: UserBalance

    The current user balance of this funding item

  • token: TokenInfo

    The token info for the funding item

Generated using TypeDoc