You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ERC721Community contract is based on ERC721A which supports burning only by transferring to 0xdead address (0x000000000000000000000000000000000000dEaD). Such burns don't reduce the number of items on OpenSea, because the contract needs to be updated as well
Writing a BurnExtension with reducing maxSupply is currently not possible because reduceMaxSupply is onlyOwner and doesn't allow burning less than totalMinted() amount
The text was updated successfully, but these errors were encountered:
I just realised that reducing maxSupply won't help OpenSea to display correct amount, because it's not part of ERC721 standard and OpenSea doesn't read maxSupply at all
ERC721Community
contract is based onERC721A
which supports burning only by transferring to0xdead
address (0x000000000000000000000000000000000000dEaD
). Such burns don't reduce the number of items on OpenSea, because the contract needs to be updated as wellWriting a
BurnExtension
with reducingmaxSupply
is currently not possible becausereduceMaxSupply
isonlyOwner
and doesn't allow burning less thantotalMinted()
amountThe text was updated successfully, but these errors were encountered: