mirror of
https://github.com/mempool/mempool.git
synced 2025-10-11 00:32:43 +02:00
Adding latest blocks and transactions to dashboard.
This commit is contained in:
@@ -13,6 +13,7 @@ export interface WebsocketResponse {
|
||||
data?: string[];
|
||||
tx?: Transaction;
|
||||
rbfTransaction?: Transaction;
|
||||
transactions?: TransactionStripped[];
|
||||
'track-tx'?: string;
|
||||
'track-address'?: string;
|
||||
'track-asset'?: string;
|
||||
@@ -33,3 +34,11 @@ export interface MempoolInfo {
|
||||
size: number;
|
||||
bytes: number;
|
||||
}
|
||||
|
||||
export interface TransactionStripped {
|
||||
txid: string;
|
||||
fee: number;
|
||||
weight: number;
|
||||
value: number;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user