UNPKG

randomness-js

Version:

A library for consuming, verifying and using randomness from the dcipher network

22 lines (21 loc) 869 B
import { type ContractRunner } from "ethers"; import type { IRandomnessReceiver, IRandomnessReceiverInterface } from "../IRandomnessReceiver"; export declare class IRandomnessReceiver__factory { static readonly abi: readonly [{ readonly type: "function"; readonly name: "receiveRandomness"; readonly inputs: readonly [{ readonly name: "requestID"; readonly type: "uint256"; readonly internalType: "uint256"; }, { readonly name: "randomness"; readonly type: "bytes32"; readonly internalType: "bytes32"; }]; readonly outputs: readonly []; readonly stateMutability: "nonpayable"; }]; static createInterface(): IRandomnessReceiverInterface; static connect(address: string, runner?: ContractRunner | null): IRandomnessReceiver; }