@q-dev/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
33 lines (32 loc) • 1.26 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { AddressStorageFactory, AddressStorageFactoryInterface } from "../AddressStorageFactory";
export declare class AddressStorageFactory__factory {
static readonly abi: readonly [{
readonly inputs: readonly [{
readonly internalType: "address";
readonly name: "_impl";
readonly type: "address";
}];
readonly name: "initialize";
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
readonly type: "function";
}, {
readonly inputs: readonly [{
readonly internalType: "address[]";
readonly name: "_addrList";
readonly type: "address[]";
}];
readonly name: "create";
readonly outputs: readonly [{
readonly internalType: "contract AddressStorage";
readonly name: "";
readonly type: "address";
}];
readonly stateMutability: "nonpayable";
readonly type: "function";
}];
static createInterface(): AddressStorageFactoryInterface;
static connect(address: string, signerOrProvider: Signer | Provider): AddressStorageFactory;
}