blocklock-js
Version:
A library for encrypting and decrypting data for the future
34 lines (33 loc) • 1.2 kB
TypeScript
import { type ContractRunner } from "ethers";
import type { IOwnable, IOwnableInterface } from "../IOwnable";
export declare class IOwnable__factory {
static readonly abi: readonly [{
readonly type: "function";
readonly name: "acceptOwnership";
readonly inputs: readonly [];
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
}, {
readonly type: "function";
readonly name: "owner";
readonly inputs: readonly [];
readonly outputs: readonly [{
readonly name: "";
readonly type: "address";
readonly internalType: "address";
}];
readonly stateMutability: "nonpayable";
}, {
readonly type: "function";
readonly name: "transferOwnership";
readonly inputs: readonly [{
readonly name: "recipient";
readonly type: "address";
readonly internalType: "address";
}];
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
}];
static createInterface(): IOwnableInterface;
static connect(address: string, runner?: ContractRunner | null): IOwnable;
}