{
  "_format": "hh-sol-artifact-1",
  "contractName": "MerkleWhitelistMintInitializable",
  "sourceName": "contracts/minting/MerkleWhitelistMint.sol",
  "abi": [
    {
      "inputs": [],
      "name": "ClaimPeriodBase__ClaimPeriodIsNotOpen",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "ClaimPeriodBase__ClaimPeriodMustBeClosedInTheFuture",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "ClaimPeriodBase__ClaimsMustBeClosedToReopen",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "InitializableMaxSupplyBase__MaxSupplyAlreadyInitialized",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MaxSupplyBase__CannotClaimMoreThanMaximumAmountOfOwnerMints",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MaxSupplyBase__CannotMintToAddressZero",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MaxSupplyBase__MaxSupplyCannotBeSetToMaxUint256",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MaxSupplyBase__MaxSupplyExceeded",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MaxSupplyBase__MintedQuantityMustBeGreaterThanZero",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MerkleWhitelistMintInitializable__MerkleSupplyAlreadyInitialized",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MerkleWhitelistMint__AddressHasAlreadyClaimed",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MerkleWhitelistMint__CannotClaimMoreThanMaximumAmountOfMerkleMints",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MerkleWhitelistMint__InvalidProof",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MerkleWhitelistMint__MaxMintsMustBeGreaterThanZero",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MerkleWhitelistMint__MerkleRootCannotBeZero",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MerkleWhitelistMint__MerkleRootHasNotBeenInitialized",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MerkleWhitelistMint__MerkleRootImmutable",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "MerkleWhitelistMint__PermittedNumberOfMerkleRootChangesMustBeGreaterThanZero",
      "type": "error"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": false,
          "internalType": "uint256",
          "name": "claimPeriodClosingTimestamp",
          "type": "uint256"
        }
      ],
      "name": "ClaimPeriodClosing",
      "type": "event"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": false,
          "internalType": "uint256",
          "name": "claimPeriodClosingTimestamp",
          "type": "uint256"
        }
      ],
      "name": "ClaimPeriodOpened",
      "type": "event"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": false,
          "internalType": "uint256",
          "name": "maxSupply",
          "type": "uint256"
        },
        {
          "indexed": false,
          "internalType": "uint256",
          "name": "maxOwnerMints",
          "type": "uint256"
        }
      ],
      "name": "MaxSupplyInitialized",
      "type": "event"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": false,
          "internalType": "bytes32",
          "name": "merkleRoot_",
          "type": "bytes32"
        }
      ],
      "name": "MerkleRootUpdated",
      "type": "event"
    },
    {
      "inputs": [
        {
          "internalType": "uint256",
          "name": "claimPeriodClosingTimestamp_",
          "type": "uint256"
        }
      ],
      "name": "closeClaims",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "getClaimPeriodClosingTimestamp",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "getMerkleRoot",
      "outputs": [
        {
          "internalType": "bytes32",
          "name": "",
          "type": "bytes32"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "getNextTokenId",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "uint256",
          "name": "maxMerkleMints_",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "permittedNumberOfMerkleRootChanges_",
          "type": "uint256"
        }
      ],
      "name": "initializeMaxMerkleMintsAndPermittedNumberOfMerkleRootChanges",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "uint256",
          "name": "maxSupply_",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "maxOwnerMints_",
          "type": "uint256"
        }
      ],
      "name": "initializeMaxSupply",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "isClaimPeriodOpen",
      "outputs": [
        {
          "internalType": "bool",
          "name": "",
          "type": "bool"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "account",
          "type": "address"
        }
      ],
      "name": "isWhitelistClaimed",
      "outputs": [
        {
          "internalType": "bool",
          "name": "",
          "type": "bool"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "maxSupply",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "maxSupplyInitialized",
      "outputs": [
        {
          "internalType": "bool",
          "name": "",
          "type": "bool"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "mintedSupply",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "uint256",
          "name": "claimPeriodClosingTimestamp_",
          "type": "uint256"
        }
      ],
      "name": "openClaims",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "to",
          "type": "address"
        },
        {
          "internalType": "uint256",
          "name": "quantity",
          "type": "uint256"
        }
      ],
      "name": "ownerMint",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "remainingMerkleMints",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "remainingOwnerMints",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "bytes32",
          "name": "merkleRoot_",
          "type": "bytes32"
        }
      ],
      "name": "setMerkleRoot",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "uint256",
          "name": "quantity",
          "type": "uint256"
        },
        {
          "internalType": "bytes32[]",
          "name": "merkleProof_",
          "type": "bytes32[]"
        }
      ],
      "name": "whitelistMint",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    }
  ],
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "linkReferences": {},
  "deployedLinkReferences": {}
}
