UNPKG

pegasys-orchestrate

Version:

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

15 lines (14 loc) 284 B
export interface IContract { name: string; tag: string; abi: any[]; bytecode: string; deployedBytecode: string; } export interface IRegisterContractRequest { name: string; tag?: string; abi: any[]; bytecode: string; deployedBytecode: string; }