UNPKG

@tatumio/tatum

Version:

Tatum JS SDK

18 lines (17 loc) 389 B
import type { Action } from './Action'; import type { ValueFlow } from './ValueFlow'; export type Event = { event_id: string; timestamp: number; actions: Array<Action>; value_flow: Array<ValueFlow>; /** * scam */ is_scam: boolean; lt: number; /** * Event is not finished yet. Transactions still happening */ in_progress: boolean; };