UNPKG

drand-client

Version:

A client to the drand randomness beacon network.

10 lines (9 loc) 347 B
import { Chain, ChainOptions, DrandNode, HealthCheckResponse } from './index'; declare class MultiBeaconNode implements DrandNode { baseUrl: string; private options; constructor(baseUrl: string, options?: ChainOptions); chains(): Promise<Array<Chain>>; health(): Promise<HealthCheckResponse>; } export default MultiBeaconNode;