Skip to content

Commit

Permalink
feat: support burning on all erc721M contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
jessefriedland committed Jul 15, 2023
1 parent 4d7357b commit bcd90b0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions contracts/ERC721M.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "erc721a/contracts/extensions/ERC721ABurnable.sol";
import "./IERC721M.sol";

/**
Expand All @@ -20,7 +21,7 @@ import "./IERC721M.sol";
* - crossmint support
* - anti-botting
*/
contract ERC721M is IERC721M, ERC721AQueryable, Ownable, ReentrancyGuard {
contract ERC721M is IERC721M, ERC721ABurnable, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;

// Whether this contract is mintable.
Expand Down Expand Up @@ -640,4 +641,4 @@ contract ERC721M is IERC721M, ERC721AQueryable, Ownable, ReentrancyGuard {
}
return chainID;
}
}
}

0 comments on commit bcd90b0

Please sign in to comment.