randomness-js
Version:
A library for consuming, verifying and using randomness from the dcipher network
22 lines (21 loc) • 857 B
TypeScript
import { type ContractRunner } from "ethers";
import type { ISignatureReceiver, ISignatureReceiverInterface } from "../ISignatureReceiver";
export declare class ISignatureReceiver__factory {
static readonly abi: readonly [{
readonly type: "function";
readonly name: "receiveSignature";
readonly inputs: readonly [{
readonly name: "requestID";
readonly type: "uint256";
readonly internalType: "uint256";
}, {
readonly name: "signature";
readonly type: "bytes";
readonly internalType: "bytes";
}];
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
}];
static createInterface(): ISignatureReceiverInterface;
static connect(address: string, runner?: ContractRunner | null): ISignatureReceiver;
}