UNPKG

pegasys-orchestrate

Version:

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

16 lines (15 loc) 371 B
export interface IEndpointOptions { endpoint: string; } export interface IRegisterContractOptions extends IEndpointOptions { name: string; filepath: string; tag?: string; } export interface IGetContractOptions extends IEndpointOptions { name: string; tag?: string; } export interface IGetTagsOptions extends IEndpointOptions { name: string; }