UNPKG

@thirdweb-dev/contracts-js

Version:
31 lines 1.44 kB
import { Signer, ContractFactory, Overrides } from "ethers"; import type { Provider, TransactionRequest } from "@ethersproject/providers"; import type { ERC721AInit, ERC721AInitInterface } from "../ERC721AInit"; type ERC721AInitConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>; export declare class ERC721AInit__factory extends ContractFactory { constructor(...args: ERC721AInitConstructorParams); deploy(overrides?: Overrides & { from?: string | Promise<string>; }): Promise<ERC721AInit>; getDeployTransaction(overrides?: Overrides & { from?: string | Promise<string>; }): TransactionRequest; attach(address: string): ERC721AInit; connect(signer: Signer): ERC721AInit__factory; static readonly bytecode = "0x6080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea26469706673582212206c3b552cbcf7580a308478ec21fe00c625f6d4266a83a6624d8902fbad56592a64736f6c63430008170033"; static readonly abi: { type: string; name: string; inputs: { name: string; type: string; indexed: boolean; internalType: string; }[]; anonymous: boolean; }[]; static createInterface(): ERC721AInitInterface; static connect(address: string, signerOrProvider: Signer | Provider): ERC721AInit; } export {}; //# sourceMappingURL=ERC721AInit__factory.d.ts.map