UNPKG

@q-dev/q-js-sdk

Version:

Typescript Library to interact with Q System Contracts

50 lines (49 loc) 1.82 kB
import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { OwnableUpgradeable, OwnableUpgradeableInterface } from "../OwnableUpgradeable"; export declare class OwnableUpgradeable__factory { static readonly abi: readonly [{ readonly anonymous: false; readonly inputs: readonly [{ readonly indexed: true; readonly internalType: "address"; readonly name: "previousOwner"; readonly type: "address"; }, { readonly indexed: true; readonly internalType: "address"; readonly name: "newOwner"; readonly type: "address"; }]; readonly name: "OwnershipTransferred"; readonly type: "event"; }, { 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 name: "renounceOwnership"; readonly outputs: readonly []; readonly stateMutability: "nonpayable"; readonly type: "function"; }, { readonly inputs: readonly [{ readonly internalType: "address"; readonly name: "newOwner"; readonly type: "address"; }]; readonly name: "transferOwnership"; readonly outputs: readonly []; readonly stateMutability: "nonpayable"; readonly type: "function"; }]; static createInterface(): OwnableUpgradeableInterface; static connect(address: string, signerOrProvider: Signer | Provider): OwnableUpgradeable; }