Type alias Transfer

Transfer: {
    data?: HexString;
    from: CIS2.Address;
    to: Receiver;
    tokenAmount: TokenAmount;
    tokenId: HexString;
}

Data needed to perform a "transfer" invocation according to the CIS-2 standard.

Type declaration

  • Optional data?: HexString

    Optional additional data to include in the transaction

  • from: CIS2.Address

    The address to transfer from

  • to: Receiver

    The receiver of the transfer

  • tokenAmount: TokenAmount

    The amount of tokens to transfer, cannot be negative.

  • tokenId: HexString

    The ID of the token to transfer

Generated using TypeDoc