Type alias TokenDeposit

TokenDeposit: {
    amountOrId: string;
    feeData: FeeDataResult;
    recipientAddress: string;
    resourceId: string;
}

The information needed for processing the token transfer deposit.

Type declaration

  • amountOrId: string

    The amount of tokens to transfer or tokenId for ERC721 token, depending on the use case.

  • feeData: FeeDataResult

    The fee data associated with the token transfer.

  • recipientAddress: string

    The recipient's address to receive the tokens.

  • resourceId: string

    The unique identifier for the resource being transferred.

Generated using TypeDoc