/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { ISignatureMint721, ISignatureMint721Interface, } from "../ISignatureMint721"; const _abi = [ { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "signer", type: "address", }, { indexed: true, internalType: "address", name: "mintedTo", type: "address", }, { indexed: true, internalType: "uint256", name: "tokenIdMinted", type: "uint256", }, { components: [ { internalType: "address", name: "to", type: "address", }, { internalType: "string", name: "uri", type: "string", }, { internalType: "uint256", name: "price", type: "uint256", }, { internalType: "address", name: "currency", type: "address", }, { internalType: "uint128", name: "validityStartTimestamp", type: "uint128", }, { internalType: "uint128", name: "validityEndTimestamp", type: "uint128", }, { internalType: "bytes32", name: "uid", type: "bytes32", }, ], indexed: false, internalType: "struct ISignatureMint721.MintRequest", name: "mintRequest", type: "tuple", }, ], name: "MintWithSignature", 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: true, internalType: "address", name: "mintedTo", type: "address", }, { indexed: true, internalType: "uint256", name: "tokenIdMinted", type: "uint256", }, { indexed: false, internalType: "string", name: "uri", type: "string", }, ], name: "TokenMinted", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "bool", name: "restricted", type: "bool", }, ], name: "TransfersRestricted", type: "event", }, { inputs: [ { internalType: "address", name: "to", type: "address", }, { internalType: "string", name: "uri", type: "string", }, ], name: "mintTo", outputs: [ { internalType: "uint256", name: "", type: "uint256", }, ], stateMutability: "nonpayable", type: "function", }, { inputs: [ { components: [ { internalType: "address", name: "to", type: "address", }, { internalType: "string", name: "uri", type: "string", }, { internalType: "uint256", name: "price", type: "uint256", }, { internalType: "address", name: "currency", type: "address", }, { internalType: "uint128", name: "validityStartTimestamp", type: "uint128", }, { internalType: "uint128", name: "validityEndTimestamp", type: "uint128", }, { internalType: "bytes32", name: "uid", type: "bytes32", }, ], internalType: "struct ISignatureMint721.MintRequest", name: "req", type: "tuple", }, { internalType: "bytes", name: "signature", type: "bytes", }, ], name: "mintWithSignature", outputs: [ { internalType: "uint256", name: "", type: "uint256", }, ], stateMutability: "payable", type: "function", }, { inputs: [ { components: [ { internalType: "address", name: "to", type: "address", }, { internalType: "string", name: "uri", type: "string", }, { internalType: "uint256", name: "price", type: "uint256", }, { internalType: "address", name: "currency", type: "address", }, { internalType: "uint128", name: "validityStartTimestamp", type: "uint128", }, { internalType: "uint128", name: "validityEndTimestamp", type: "uint128", }, { internalType: "bytes32", name: "uid", type: "bytes32", }, ], internalType: "struct ISignatureMint721.MintRequest", name: "req", type: "tuple", }, { internalType: "bytes", name: "signature", type: "bytes", }, ], name: "verify", outputs: [ { internalType: "bool", name: "success", type: "bool", }, { internalType: "address", name: "signer", type: "address", }, ], stateMutability: "view", type: "function", }, ]; export class ISignatureMint721__factory { static readonly abi = _abi; static createInterface(): ISignatureMint721Interface { return new utils.Interface(_abi) as ISignatureMint721Interface; } static connect( address: string, signerOrProvider: Signer | Provider ): ISignatureMint721 { return new Contract(address, _abi, signerOrProvider) as ISignatureMint721; } }