mirror of
https://github.com/mempool/mempool.git
synced 2025-10-11 00:32:43 +02:00
Stream projected block deltas instead of full data
This commit is contained in:
@@ -50,6 +50,11 @@ export interface MempoolBlockWithTransactions extends MempoolBlock {
|
||||
transactions: TransactionStripped[];
|
||||
}
|
||||
|
||||
export interface MempoolBlockDelta {
|
||||
added: TransactionStripped[],
|
||||
removed: string[],
|
||||
}
|
||||
|
||||
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