Type alias TransactionRequirement

TransactionRequirement: {
    type: ItemType;
    sufficient: boolean;
    required: ItemBalance;
    current: ItemBalance;
    delta: BalanceDelta;
}

Represents the transaction requirement for a transaction.

Type declaration

  • type: ItemType

    The type of the transaction requirement.

  • sufficient: boolean

    If the user address has sufficient funds to cover the transaction.

  • required: ItemBalance

    The required item balance.

  • current: ItemBalance

    The current item balance.

  • delta: BalanceDelta

    The delta between the required and current balances.

Generated using TypeDoc