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