@paradeum/burrow
Version:
TypeScript library that calls a Hyperledger Burrow server over GRPC.
12 lines (11 loc) • 382 B
TypeScript
import { Burrow } from './index';
import * as solc from 'solc';
export declare const compile: (source: string, name: string) => {
abi: (solc.Function | solc.Event)[];
bytecode: string;
};
export declare const Test: () => {
before: (callback?: (app: Burrow) => void) => () => void;
it: (callback: (app: Burrow) => void) => () => void;
after: () => () => void;
};