ERC721Supply
Functionality available for contracts that implement the
ERC721
and
`ERC721Supply
extensions.
get_all
Get the metadata and current owner of all NFTs in the contract.
By default, returns the first 100
NFTs (in order of token ID). Use query_params
to paginate the results.
nfts = contract.erc721.get_all()
print(nfts)
Configuration
get_total_count
Get the total number of NFTs minted in this contract.
Unlike totalCirculatingSupply
, this includes NFTs that have been burned.
total_count = contract.erc721.get_total_count()
Configuration
total_supply
Get the total number of NFTs that are currently in circulation.
i.e. the number of NFTs that have been minted and not burned.
total_supply = contract.erc721.total_supply()