/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { ISignatureMint1155, ISignatureMint1155Interface, } from "../ISignatureMint1155"; 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: "uint256", name: "tokenId", type: "uint256", }, { internalType: "string", name: "uri", type: "string", }, { internalType: "uint256", name: "quantity", type: "uint256", }, { internalType: "uint256", name: "pricePerToken", 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 ISignatureMint1155.MintRequest", name: "mintRequest", type: "tuple", }, ], name: "MintWithSignature", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "recipient", type: "address", }, ], name: "NewDefaultSaleRecipient", 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", }, { indexed: true, internalType: "uint256", name: "_tokenId", type: "uint256", }, { indexed: false, internalType: "bool", name: "isDefaultRecipient", type: "bool", }, ], 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", }, { indexed: false, internalType: "uint256", name: "quantityMinted", type: "uint256", }, ], 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: "uint256", name: "tokenId", type: "uint256", }, { internalType: "string", name: "uri", type: "string", }, { internalType: "uint256", name: "amount", type: "uint256", }, ], name: "mintTo", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { components: [ { internalType: "address", name: "to", type: "address", }, { internalType: "uint256", name: "tokenId", type: "uint256", }, { internalType: "string", name: "uri", type: "string", }, { internalType: "uint256", name: "quantity", type: "uint256", }, { internalType: "uint256", name: "pricePerToken", 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 ISignatureMint1155.MintRequest", name: "req", type: "tuple", }, { internalType: "bytes", name: "signature", type: "bytes", }, ], name: "mintWithSignature", outputs: [], stateMutability: "payable", type: "function", }, { inputs: [ { components: [ { internalType: "address", name: "to", type: "address", }, { internalType: "uint256", name: "tokenId", type: "uint256", }, { internalType: "string", name: "uri", type: "string", }, { internalType: "uint256", name: "quantity", type: "uint256", }, { internalType: "uint256", name: "pricePerToken", 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 ISignatureMint1155.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 ISignatureMint1155__factory { static readonly abi = _abi; static createInterface(): ISignatureMint1155Interface { return new utils.Interface(_abi) as ISignatureMint1155Interface; } static connect( address: string, signerOrProvider: Signer | Provider ): ISignatureMint1155 { return new Contract(address, _abi, signerOrProvider) as ISignatureMint1155; } }