Type Alias AssetTransfer

AssetTransfer: {
    blockNumber: number;
    contractAddress: string;
    fromAddress: string;
    id: number;
    logIndex: number;
    quantity: string;
    timestamp: number;
    toAddress: string;
    tokenId: string;
    tokenType: TokenType;
    transactionHash: string;
}

A record of a token transfer.

Type declaration

  • blockNumber: number

    The block number where the transfer was recorded.

  • contractAddress: string

    The Ethereum contract address of the collection.

  • fromAddress: string

    The Ethereum address of the sender.

  • id: number

    The ID of the transfer record.

  • logIndex: number

    The index position of the transfer in the block.

  • quantity: string

    The number of tokens transferred.

  • timestamp: number

    The Unix timestamp when the transfer occurred.

  • toAddress: string

    The Ethereum address of the receiver.

  • tokenId: string

    The unique identifier of the token within the contract.

  • tokenType: TokenType
  • transactionHash: string

    The hash of the transaction.