blocklock-js
Version:
A library for encrypting and decrypting data for the future
18 lines (17 loc) • 722 B
TypeScript
import { type ContractRunner } from "ethers";
import type { IERC1822Proxiable, IERC1822ProxiableInterface } from "../../draft-IERC1822.sol/IERC1822Proxiable";
export declare class IERC1822Proxiable__factory {
static readonly abi: readonly [{
readonly type: "function";
readonly name: "proxiableUUID";
readonly inputs: readonly [];
readonly outputs: readonly [{
readonly name: "";
readonly type: "bytes32";
readonly internalType: "bytes32";
}];
readonly stateMutability: "view";
}];
static createInterface(): IERC1822ProxiableInterface;
static connect(address: string, runner?: ContractRunner | null): IERC1822Proxiable;
}