The SellerFinancingReceiptNFT a type that represents a non-fungible token (NFT) for a seller financing receipt.

export type SellerFinancingReceiptNFT = {
  tokenId: string;
  owner: Address;
  ownerHistory: Address[];
  transferEvents: unknown[];
};

These properties provide comprehensive details about the seller financing receipt NFT, which can be used for various purposes such as tracking the ownership history, verifying the authenticity of the receipt, and managing the transfer of the NFT.

tokenId

A string representing the unique identifier of the NFT.

owner

A wagmi Address type representing the Ethereum address of the current owner of the NFT.

ownerHistory

An array of wagmi Address representing the history of the previous owners of the NFT.

transferEvents

An array of unknown type that represents the events related to the transfer of the NFT. The type of elements in this array is not specified and needs to be defined in future implementation.