UNPKG

pegasys-orchestrate

Version:

The PegaSys Orchestrate library provides convenient access to the Codefi Orchestrate API from applications written in server-side JavaScript

21 lines (20 loc) 427 B
export interface IRegisterFaucetRequest { name: string; creditorAccount: string; chainRule: string; cooldown: string; amount: string; maxBalance: string; } export interface IFaucet { uuid: string; name: string; tenantID: string; chainRule: string; creditorAccount: string; cooldown: string; amount: string; maxBalance: string; createdAt: Date; updatedAt: Date; }