UNPKG

blocklock-js

Version:

A library for encrypting and decrypting data for the future

33 lines (29 loc) 790 B
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Interface, type ContractRunner } from "ethers"; import type { EnvReader, EnvReaderInterface } from "../EnvReader"; const _abi = [ { type: "function", name: "IS_SCRIPT", inputs: [], outputs: [ { name: "", type: "bool", internalType: "bool", }, ], stateMutability: "view", }, ] as const; export class EnvReader__factory { static readonly abi = _abi; static createInterface(): EnvReaderInterface { return new Interface(_abi) as EnvReaderInterface; } static connect(address: string, runner?: ContractRunner | null): EnvReader { return new Contract(address, _abi, runner) as unknown as EnvReader; } }