UNPKG

blocklock-js

Version:

A library for encrypting and decrypting data for the future

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