UNPKG

@guaritos/tracer-engine

Version:

A highly performant and scalable multi-hop, time-aware tracer for account-based blockchain transactions, designed for off-chain risk assessment and flow analysis.

11 lines 423 B
import { Edge } from "../items/ttr_defs"; declare abstract class PushPopModel { source: string; constructor(source: string, ...kwargs: any[]); push(node: string, edges: Edge[], ...kwargs: any[]): void; pop(): [string | null, Record<string, any>]; get_context_snapshot(): Record<string, any>; get_node_rank(): Record<string, number>; } export { PushPopModel, }; //# sourceMappingURL=push_pop.d.ts.map