Interface IndexerEventWithTx<TStateType>

interface IndexerEventWithTx<TStateType> {
    subaccount: string;
    productId: number;
    submissionIndex: string;
    eventType: IndexerEventType;
    state: TStateType;
    trackedVars: IndexerBalanceTrackedVars;
    timestamp: BigNumber;
    tx: any;
}

Type Parameters

Hierarchy (view full)

Properties

subaccount: string
productId: number
submissionIndex: string
eventType: IndexerEventType
state: TStateType
timestamp: BigNumber
tx: any