UNPKG

@thirdweb-dev/contracts-js

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