@q-dev/gdk-sdk
Version:
Typescript Library to interact with GDK Contracts
55 lines (54 loc) • 1.98 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { TransparentProxyUpgrader, TransparentProxyUpgraderInterface } from "../TransparentProxyUpgrader";
export declare class TransparentProxyUpgrader__factory {
static readonly abi: readonly [{
readonly inputs: readonly [];
readonly stateMutability: "nonpayable";
readonly type: "constructor";
}, {
readonly inputs: readonly [{
readonly internalType: "address";
readonly name: "what_";
readonly type: "address";
}];
readonly name: "getImplementation";
readonly outputs: readonly [{
readonly internalType: "address";
readonly name: "";
readonly type: "address";
}];
readonly stateMutability: "view";
readonly type: "function";
}, {
readonly inputs: readonly [];
readonly name: "owner";
readonly outputs: readonly [{
readonly internalType: "address";
readonly name: "";
readonly type: "address";
}];
readonly stateMutability: "view";
readonly type: "function";
}, {
readonly inputs: readonly [{
readonly internalType: "address";
readonly name: "what_";
readonly type: "address";
}, {
readonly internalType: "address";
readonly name: "to_";
readonly type: "address";
}, {
readonly internalType: "bytes";
readonly name: "data_";
readonly type: "bytes";
}];
readonly name: "upgrade";
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
readonly type: "function";
}];
static createInterface(): TransparentProxyUpgraderInterface;
static connect(address: string, signerOrProvider: Signer | Provider): TransparentProxyUpgrader;
}