Type alias TokenTransferEvent

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

Token (PLT) transfer event.

Type declaration

  • amount: Type

    The amount of tokens transferred.

  • from: Upward<Type>

    The token holder sending the tokens.

    Please note, this can possibly be unknown if the SDK is not fully compatible with the Concordium node queried, in which case null is returned.

  • Optional memo?: Type

    An optional memo associated with the transfer.

  • tag: TokenTransfer

    The type of the event

  • to: Upward<Type>

    The token holder receiving the tokens.

    Please note, this can possibly be unknown if the SDK is not fully compatible with the Concordium node queried, in which case null is returned.

  • tokenId: Type

    The token ID of the token the event originates from

Generated using TypeDoc