UNPKG

@thirdweb-dev/contracts-js

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