blocklock-js
Version:
A library for encrypting and decrypting data for the future
18 lines (17 loc) • 642 B
TypeScript
import { type ContractRunner } from "ethers";
import type { EnvReader, EnvReaderInterface } from "../EnvReader";
export declare class EnvReader__factory {
static readonly abi: readonly [{
readonly type: "function";
readonly name: "IS_SCRIPT";
readonly inputs: readonly [];
readonly outputs: readonly [{
readonly name: "";
readonly type: "bool";
readonly internalType: "bool";
}];
readonly stateMutability: "view";
}];
static createInterface(): EnvReaderInterface;
static connect(address: string, runner?: ContractRunner | null): EnvReader;
}