/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { ILazyMintERC721, ILazyMintERC721Interface, } from "../ILazyMintERC721"; const _abi = [ { anonymous: false, inputs: [ { indexed: true, internalType: "uint256", name: "claimConditionIndex", type: "uint256", }, { indexed: true, internalType: "address", name: "claimer", type: "address", }, { indexed: true, internalType: "address", name: "receiver", type: "address", }, { indexed: false, internalType: "uint256", name: "startTokenId", type: "uint256", }, { indexed: false, internalType: "uint256", name: "quantityClaimed", type: "uint256", }, ], name: "ClaimedTokens", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "uint256", name: "startTokenId", type: "uint256", }, { indexed: false, internalType: "uint256", name: "endTokenId", type: "uint256", }, { indexed: false, internalType: "string", name: "baseURI", type: "string", }, ], name: "LazyMintedTokens", type: "event", }, { anonymous: false, inputs: [ { components: [ { internalType: "uint256", name: "startTimestamp", type: "uint256", }, { internalType: "uint256", name: "maxClaimableSupply", type: "uint256", }, { internalType: "uint256", name: "supplyClaimed", type: "uint256", }, { internalType: "uint256", name: "quantityLimitPerTransaction", type: "uint256", }, { internalType: "uint256", name: "waitTimeInSecondsBetweenClaims", type: "uint256", }, { internalType: "bytes32", name: "merkleRoot", type: "bytes32", }, { internalType: "uint256", name: "pricePerToken", type: "uint256", }, { internalType: "address", name: "currency", type: "address", }, ], indexed: false, internalType: "struct ILazyMintERC721.ClaimCondition[]", name: "claimConditions", type: "tuple[]", }, ], name: "NewClaimConditions", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "address", name: "prevOwner", type: "address", }, { indexed: false, internalType: "address", name: "newOwner", type: "address", }, ], name: "NewOwner", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "recipient", type: "address", }, ], name: "NewSaleRecipient", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "uint256", name: "newFeeBps", type: "uint256", }, ], name: "PrimarySalesFeeUpdates", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "uint256", name: "newRoyaltyBps", type: "uint256", }, ], name: "RoyaltyUpdated", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "bool", name: "restricted", type: "bool", }, ], name: "TransfersRestricted", type: "event", }, { inputs: [ { internalType: "address", name: "receiver", type: "address", }, { internalType: "uint256", name: "_quantity", type: "uint256", }, { internalType: "bytes32[]", name: "_proofs", type: "bytes32[]", }, ], name: "claim", outputs: [], stateMutability: "payable", type: "function", }, { inputs: [ { internalType: "uint256", name: "_amount", type: "uint256", }, { internalType: "string", name: "_baseURIForTokens", type: "string", }, ], name: "lazyMint", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [], name: "nextTokenIdToMint", outputs: [ { internalType: "uint256", name: "", type: "uint256", }, ], stateMutability: "nonpayable", type: "function", }, { inputs: [ { components: [ { internalType: "uint256", name: "startTimestamp", type: "uint256", }, { internalType: "uint256", name: "maxClaimableSupply", type: "uint256", }, { internalType: "uint256", name: "supplyClaimed", type: "uint256", }, { internalType: "uint256", name: "quantityLimitPerTransaction", type: "uint256", }, { internalType: "uint256", name: "waitTimeInSecondsBetweenClaims", type: "uint256", }, { internalType: "bytes32", name: "merkleRoot", type: "bytes32", }, { internalType: "uint256", name: "pricePerToken", type: "uint256", }, { internalType: "address", name: "currency", type: "address", }, ], internalType: "struct ILazyMintERC721.ClaimCondition[]", name: "_conditions", type: "tuple[]", }, ], name: "setClaimConditions", outputs: [], stateMutability: "nonpayable", type: "function", }, ]; export class ILazyMintERC721__factory { static readonly abi = _abi; static createInterface(): ILazyMintERC721Interface { return new utils.Interface(_abi) as ILazyMintERC721Interface; } static connect( address: string, signerOrProvider: Signer | Provider ): ILazyMintERC721 { return new Contract(address, _abi, signerOrProvider) as ILazyMintERC721; } }