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.

17 lines 706 B
declare class ContextualItem { _cb_kwargs: Record<string, any>; /** * ContextualItem is a base class for items that can have context-specific * keyword arguments. It allows setting and getting context-specific * keyword arguments. * * @param args - Positional arguments (not used in this implementation). * @param kwargs - Keyword arguments, can include 'cb_kwargs' to initialize * the context-specific keyword arguments. */ constructor(kwargs?: Record<string, any>); set_context_kwargs(kwargs: Record<string, any>): void; get_context_kwargs(): Record<string, any>; } export { ContextualItem, }; //# sourceMappingURL=defs.d.ts.map