mirror of
https://github.com/mempool/mempool.git
synced 2025-10-11 00:32:43 +02:00
Data pipeline for projected mempool block overview
This commit is contained in:
@@ -25,6 +25,7 @@ export interface WebsocketResponse {
|
||||
'track-tx'?: string;
|
||||
'track-address'?: string;
|
||||
'track-asset'?: string;
|
||||
'track-mempool-block'?: number;
|
||||
'watch-mempool'?: boolean;
|
||||
'track-bisq-market'?: string;
|
||||
}
|
||||
@@ -44,6 +45,11 @@ export interface MempoolBlock {
|
||||
index: number;
|
||||
}
|
||||
|
||||
export interface MempoolBlockWithTransactions extends MempoolBlock {
|
||||
transactionIds: string[];
|
||||
transactions: TransactionStripped[];
|
||||
}
|
||||
|
||||
export interface MempoolInfo {
|
||||
loaded: boolean; // (boolean) True if the mempool is fully loaded
|
||||
size: number; // (numeric) Current tx count
|
||||
|
Reference in New Issue
Block a user