@thirdweb-dev/contracts-js
Version:
31 lines • 1.84 kB
TypeScript
import { Signer, ContractFactory, Overrides } from "ethers";
import type { Provider, TransactionRequest } from "@ethersproject/providers";
import type { ContractMetadataStorage, ContractMetadataStorageInterface } from "../ContractMetadataStorage";
type ContractMetadataStorageConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
export declare class ContractMetadataStorage__factory extends ContractFactory {
constructor(...args: ContractMetadataStorageConstructorParams);
deploy(overrides?: Overrides & {
from?: string | Promise<string>;
}): Promise<ContractMetadataStorage>;
getDeployTransaction(overrides?: Overrides & {
from?: string | Promise<string>;
}): TransactionRequest;
attach(address: string): ContractMetadataStorage;
connect(signer: Signer): ContractMetadataStorage__factory;
static readonly bytecode = "0x60a6610038600b82828239805160001a607314602b57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80637e837fbf146038575b600080fd5b605e7f4bc804ba64359c0e35e5ed5d90ee596ecaa49a3a930ddcb1470ea0dd625da90081565b60405190815260200160405180910390f3fea264697066735822122061f82c8788837ac698b8a98e326f9a1e4c70b23ae960677e0f06877ff7fa8f8564736f6c63430008170033";
static readonly abi: {
type: string;
name: string;
inputs: never[];
outputs: {
name: string;
type: string;
internalType: string;
}[];
stateMutability: string;
}[];
static createInterface(): ContractMetadataStorageInterface;
static connect(address: string, signerOrProvider: Signer | Provider): ContractMetadataStorage;
}
export {};
//# sourceMappingURL=ContractMetadataStorage__factory.d.ts.map