Retrieves the total claimed supply of ERC721 tokens.
import { getTotalClaimedSupply } from "thirdweb/extensions/erc721"; const totalClaimedSupply = await getTotalClaimedSupply({ contract,});
function getTotalClaimedSupply( options: BaseTransactionOptions,): Promise<bigint>;
The base transaction options.
let options: { contract: ThirdwebContract<abi> } & T;
let returnType: Promise<bigint>;
A promise that resolves to the total claimed supply as a bigint.