Type alias TokenTransfer

TokenTransfer: {
    amount: Type;
    memo?: Memo;
    recipient: Type;
}

The structure of a PLT transfer.

Type declaration

  • amount: Type

    The amount to transfer.

  • Optional memo?: Memo

    An optional memo for the transfer. A string will be CBOR encoded, while raw bytes are included in the transaction as is.

  • recipient: Type

    The recipient of the transfer.

Generated using TypeDoc