UNPKG

@thirdweb-dev/contracts-js

Version:
31 lines 1.72 kB
import { Signer, ContractFactory, Overrides } from "ethers"; import type { Provider, TransactionRequest } from "@ethersproject/providers"; import type { OffersStorage, OffersStorageInterface } from "../OffersStorage"; type OffersStorageConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>; export declare class OffersStorage__factory extends ContractFactory { constructor(...args: OffersStorageConstructorParams); deploy(overrides?: Overrides & { from?: string | Promise<string>; }): Promise<OffersStorage>; getDeployTransaction(overrides?: Overrides & { from?: string | Promise<string>; }): TransactionRequest; attach(address: string): OffersStorage; connect(signer: Signer): OffersStorage__factory; static readonly bytecode = "0x60a6610038600b82828239805160001a607314602b57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80634195eef1146038575b600080fd5b605e7f8f8effea55e8d961f30e12024b944289ed8a7f60abcf4b3989df2dc98a91430081565b60405190815260200160405180910390f3fea2646970667358221220a19b730b9ef66d89716ceae2c447f9dc38d93588b8bf5a3562c565a23acd21dd64736f6c63430008170033"; static readonly abi: { type: string; name: string; inputs: never[]; outputs: { name: string; type: string; internalType: string; }[]; stateMutability: string; }[]; static createInterface(): OffersStorageInterface; static connect(address: string, signerOrProvider: Signer | Provider): OffersStorage; } export {}; //# sourceMappingURL=OffersStorage__factory.d.ts.map