Skip to main content

TransferEvent

Emitted when an NFT is transferred from one owner to another.

Hierarchy

  • { address: PublicKey; from: PublicKey; to: PublicKey }
    • TransferEvent

Index

Constructors

Properties

Constructors

externalconstructor

  • new TransferEvent(value: { address: PublicKey; from: PublicKey; to: PublicKey }): TransferEvent
  • Parameters

    • externalvalue: { address: PublicKey; from: PublicKey; to: PublicKey }
      • externaladdress: PublicKey = PublicKey

        The public key address of the NFT being transferred.

      • externalfrom: PublicKey = PublicKey

        The public key of the sender (current owner) before the transfer.

      • externalto: PublicKey = PublicKey

        The public key of the recipient (new owner) after the transfer.

    Returns TransferEvent

Properties

address

address: PublicKey = PublicKey

The public key address of the NFT being transferred.

from

from: PublicKey = PublicKey

The public key of the sender (current owner) before the transfer.

to

to: PublicKey = PublicKey

The public key of the recipient (new owner) after the transfer.

Page Options