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