UNPKG

blocklock-js

Version:

A library for encrypting and decrypting data for the future

36 lines (35 loc) 1.37 kB
import { type ContractRunner } from "ethers"; import type { DecryptionReceiverBase, DecryptionReceiverBaseInterface } from "../DecryptionReceiverBase"; export declare class DecryptionReceiverBase__factory { static readonly abi: readonly [{ readonly type: "function"; readonly name: "decryptionSender"; readonly inputs: readonly []; readonly outputs: readonly [{ readonly name: ""; readonly type: "address"; readonly internalType: "contract IDecryptionSender"; }]; readonly stateMutability: "view"; }, { 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(): DecryptionReceiverBaseInterface; static connect(address: string, runner?: ContractRunner | null): DecryptionReceiverBase; }