Skip to main content

Erc721Supply.allOwners() method

Return all the owners of each token id in this contract

Signature:

allOwners(): Promise<{
tokenId: number;
owner: string;
}[]>;

Returns:

Promise<{ tokenId: number; owner: string; }[]>