UNPKG

@thirdweb-dev/contracts-js

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