Type alias TokenTransferEvent

TokenTransferEvent: {
    amount: Type;
    from: Type;
    memo?: Type;
    tag: TokenTransfer;
    to: Type;
    tokenId: Type;
}

Token (PLT) transfer event.

Type declaration

  • amount: Type

    The amount of tokens transferred.

  • from: Type

    The token holder sending the tokens.

  • Optional memo?: Type

    An optional memo associated with the transfer.

  • tag: TokenTransfer

    The type of the event

  • to: Type

    The token holder receiving the tokens.

  • tokenId: Type

    The token ID of the token the event originates from

Generated using TypeDoc