@paradeum/burrow
Version:
TypeScript library that calls a Hyperledger Burrow server over GRPC.
14 lines (13 loc) • 432 B
TypeScript
import { Burrow, Error } from '../Burrow';
import { Event } from 'solc';
declare type EventResult = {
event?: string;
address?: Uint8Array;
args?: Record<string, any>;
};
export declare const SolidityEvent: (abi: Event, burrow: Burrow) => {
displayName: string;
typeName: string;
call: (address: string, callback: (err: Error, decoded: EventResult) => void) => import("../events").EventStream;
};
export {};