Skip to content

Commit

Permalink
Fix [Q-12] Comply with ERC7201 standard
Browse files Browse the repository at this point in the history
  • Loading branch information
nkrishang committed Sep 26, 2023
1 parent 1e532c0 commit c38d61c
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -2,7 +2,9 @@
pragma solidity ^0.8.0;

library BurnToClaimDrop721Storage {
bytes32 public constant BURN_TO_CLAIM_DROP_721_STORAGE_POSITION = keccak256("burn.to.claim.drop.721.storage");
/// @custom:storage-location erc7201:burn.to.claim.drop.721.storage
bytes32 public constant BURN_TO_CLAIM_DROP_721_STORAGE_POSITION =
keccak256(abi.encode(uint256(keccak256("burn.to.claim.drop.721.storage")) - 1));

struct Data {
/// @dev Global max total NFTs that can be minted.
Expand Down

0 comments on commit c38d61c

Please sign in to comment.