Retrieves the total unclaimed supply of ERC721 tokens.
import { getTotalUnclaimedSupply } from "thirdweb/extensions/erc721"; const totalUnclaimedSupply = await getTotalUnclaimedSupply({ contract,});
function getTotalUnclaimedSupply( 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 unclaimed supply as a bigint.