{
  "_format": "hh-sol-artifact-1",
  "contractName": "SignedApprovalMintBase",
  "sourceName": "contracts/minting/SignedApprovalMint.sol",
  "abi": [
    {
      "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": "SignedApprovalMint__AddressAlreadyMinted",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "SignedApprovalMint__InvalidSignature",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "SignedApprovalMint__MaxQuantityMustBeGreaterThanZero",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "SignedApprovalMint__MintExceedsMaximumAmountBySignedApproval",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "SignedApprovalMint__SignedClaimsAreDecommissioned",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "SignedApprovalMint__SignerCannotBeInitializedAsAddressZero",
      "type": "error"
    },
    {
      "inputs": [],
      "name": "SignedApprovalMint__SignerIsAddressZero",
      "type": "error"
    },
    {
      "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": [],
      "name": "SignedClaimsDecommissioned",
      "type": "event"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": true,
          "internalType": "address",
          "name": "minter",
          "type": "address"
        },
        {
          "indexed": false,
          "internalType": "uint256",
          "name": "startTokenId",
          "type": "uint256"
        },
        {
          "indexed": false,
          "internalType": "uint256",
          "name": "endTokenId",
          "type": "uint256"
        }
      ],
      "name": "SignedMintClaimed",
      "type": "event"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": false,
          "internalType": "address",
          "name": "oldSigner",
          "type": "address"
        },
        {
          "indexed": false,
          "internalType": "address",
          "name": "newSigner",
          "type": "address"
        }
      ],
      "name": "SignerUpdated",
      "type": "event"
    },
    {
      "inputs": [],
      "name": "approvalSigner",
      "outputs": [
        {
          "internalType": "address",
          "name": "",
          "type": "address"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "bytes",
          "name": "signature",
          "type": "bytes"
        },
        {
          "internalType": "uint256",
          "name": "quantity",
          "type": "uint256"
        }
      ],
      "name": "claimSignedMint",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "decommissionSignedApprovals",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "getNextTokenId",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "account",
          "type": "address"
        }
      ],
      "name": "hasMintedBySignedApproval",
      "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": "mintedSupply",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "to",
          "type": "address"
        },
        {
          "internalType": "uint256",
          "name": "quantity",
          "type": "uint256"
        }
      ],
      "name": "ownerMint",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "remainingOwnerMints",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "remainingSignedMints",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "newSigner",
          "type": "address"
        }
      ],
      "name": "setSigner",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "signedClaimsDecommissioned",
      "outputs": [
        {
          "internalType": "bool",
          "name": "",
          "type": "bool"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    }
  ],
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "linkReferences": {},
  "deployedLinkReferences": {}
}
