@q-dev/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
29 lines (28 loc) • 1.07 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IUpgradable, IUpgradableInterface } from "../IUpgradable";
export declare class IUpgradable__factory {
static readonly abi: readonly [{
readonly inputs: readonly [{
readonly internalType: "address";
readonly name: "_newImplementation";
readonly type: "address";
}];
readonly name: "upgradeTo";
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
readonly type: "function";
}, {
readonly inputs: readonly [];
readonly name: "implementation";
readonly outputs: readonly [{
readonly internalType: "address";
readonly name: "";
readonly type: "address";
}];
readonly stateMutability: "nonpayable";
readonly type: "function";
}];
static createInterface(): IUpgradableInterface;
static connect(address: string, signerOrProvider: Signer | Provider): IUpgradable;
}