UNPKG

blocklock-js

Version:

A library for encrypting and decrypting data for the future

26 lines (25 loc) 1 kB
import { type ContractRunner } from "ethers"; import type { IDecryptionReceiver, IDecryptionReceiverInterface } from "../IDecryptionReceiver"; export declare class IDecryptionReceiver__factory { static readonly abi: readonly [{ readonly type: "function"; readonly name: "receiveDecryptionData"; readonly inputs: readonly [{ readonly name: "requestID"; readonly type: "uint256"; readonly internalType: "uint256"; }, { readonly name: "decryptionKey"; readonly type: "bytes"; readonly internalType: "bytes"; }, { readonly name: "signature"; readonly type: "bytes"; readonly internalType: "bytes"; }]; readonly outputs: readonly []; readonly stateMutability: "nonpayable"; }]; static createInterface(): IDecryptionReceiverInterface; static connect(address: string, runner?: ContractRunner | null): IDecryptionReceiver; }