randomness-js
Version:
A library for consuming, verifying and using randomness from the dcipher network
28 lines (27 loc) • 1.12 kB
TypeScript
import { type ContractRunner } from "ethers";
import type { IVRFMigratableConsumerV2Plus, IVRFMigratableConsumerV2PlusInterface } from "../IVRFMigratableConsumerV2Plus";
export declare class IVRFMigratableConsumerV2Plus__factory {
static readonly abi: readonly [{
readonly type: "function";
readonly name: "setCoordinator";
readonly inputs: readonly [{
readonly name: "vrfCoordinator";
readonly type: "address";
readonly internalType: "address";
}];
readonly outputs: readonly [];
readonly stateMutability: "nonpayable";
}, {
readonly type: "event";
readonly name: "CoordinatorSet";
readonly inputs: readonly [{
readonly name: "vrfCoordinator";
readonly type: "address";
readonly indexed: false;
readonly internalType: "address";
}];
readonly anonymous: false;
}];
static createInterface(): IVRFMigratableConsumerV2PlusInterface;
static connect(address: string, runner?: ContractRunner | null): IVRFMigratableConsumerV2Plus;
}