update RBF timeline over websocket

This commit is contained in:
Mononaut 2022-12-14 08:49:35 -06:00
parent 1b843da785
commit 7b2a1cfd10
No known key found for this signature in database
GPG Key ID: A3F058E41374C04E
6 changed files with 110 additions and 53 deletions

View File

@ -5,13 +5,20 @@ interface RbfTransaction extends TransactionStripped {
rbf?: boolean; rbf?: boolean;
} }
type RbfChain = {
tx: RbfTransaction,
time: number,
mined?: boolean,
}[];
class RbfCache { class RbfCache {
private replacedBy: { [txid: string]: string; } = {}; private replacedBy: Map<string, string> = new Map();
private replaces: { [txid: string]: string[] } = {}; private replaces: Map<string, string[]> = new Map();
private rbfChains: { [root: string]: { tx: TransactionStripped, time: number, mined?: boolean }[] } = {}; // sequences of consecutive replacements private rbfChains: Map<string, RbfChain> = new Map(); // sequences of consecutive replacements
private chainMap: { [txid: string]: string } = {}; // map of txids to sequence ids private dirtyChains: Set<string> = new Set();
private txs: { [txid: string]: TransactionExtended } = {}; private chainMap: Map<string, string> = new Map(); // map of txids to sequence ids
private expiring: { [txid: string]: Date } = {}; private txs: Map<string, TransactionExtended> = new Map();
private expiring: Map<string, Date> = new Map();
constructor() { constructor() {
setInterval(this.cleanup.bind(this), 1000 * 60 * 60); setInterval(this.cleanup.bind(this), 1000 * 60 * 60);
@ -23,56 +30,79 @@ class RbfCache {
const newTx = Common.stripTransaction(newTxExtended) as RbfTransaction; const newTx = Common.stripTransaction(newTxExtended) as RbfTransaction;
newTx.rbf = newTxExtended.vin.some((v) => v.sequence < 0xfffffffe); newTx.rbf = newTxExtended.vin.some((v) => v.sequence < 0xfffffffe);
this.replacedBy[replacedTx.txid] = newTx.txid; this.replacedBy.set(replacedTx.txid, newTx.txid);
this.txs[replacedTx.txid] = replacedTxExtended; this.txs.set(replacedTx.txid, replacedTxExtended);
if (!this.replaces[newTx.txid]) { this.txs.set(newTx.txid, newTxExtended);
this.replaces[newTx.txid] = []; if (!this.replaces.has(newTx.txid)) {
this.replaces.set(newTx.txid, []);
} }
this.replaces[newTx.txid].push(replacedTx.txid); this.replaces.get(newTx.txid)?.push(replacedTx.txid);
// maintain rbf chains // maintain rbf chains
if (this.chainMap[replacedTx.txid]) { if (this.chainMap.has(replacedTx.txid)) {
// add to an existing chain // add to an existing chain
const chainRoot = this.chainMap[replacedTx.txid]; const chainRoot = this.chainMap.get(replacedTx.txid) || '';
this.rbfChains[chainRoot].push({ tx: newTx, time: newTxExtended.firstSeen || Date.now() }); this.rbfChains.get(chainRoot)?.push({ tx: newTx, time: newTxExtended.firstSeen || Date.now() });
this.chainMap[newTx.txid] = chainRoot; this.chainMap.set(newTx.txid, chainRoot);
this.dirtyChains.add(chainRoot);
} else { } else {
// start a new chain // start a new chain
this.rbfChains[replacedTx.txid] = [ this.rbfChains.set(replacedTx.txid, [
{ tx: replacedTx, time: replacedTxExtended.firstSeen || Date.now() }, { tx: replacedTx, time: replacedTxExtended.firstSeen || Date.now() },
{ tx: newTx, time: newTxExtended.firstSeen || Date.now() }, { tx: newTx, time: newTxExtended.firstSeen || Date.now() },
]; ]);
this.chainMap[replacedTx.txid] = replacedTx.txid; this.chainMap.set(replacedTx.txid, replacedTx.txid);
this.chainMap[newTx.txid] = replacedTx.txid; this.chainMap.set(newTx.txid, replacedTx.txid);
this.dirtyChains.add(replacedTx.txid);
} }
} }
public getReplacedBy(txId: string): string | undefined { public getReplacedBy(txId: string): string | undefined {
return this.replacedBy[txId]; return this.replacedBy.get(txId);
} }
public getReplaces(txId: string): string[] | undefined { public getReplaces(txId: string): string[] | undefined {
return this.replaces[txId]; return this.replaces.get(txId);
} }
public getTx(txId: string): TransactionExtended | undefined { public getTx(txId: string): TransactionExtended | undefined {
return this.txs[txId]; return this.txs.get(txId);
} }
public getRbfChain(txId: string): { tx: TransactionStripped, time: number }[] { public getRbfChain(txId: string): RbfChain {
return this.rbfChains[this.chainMap[txId]] || []; return this.rbfChains.get(this.chainMap.get(txId) || '') || [];
} }
// get map of rbf chains that have been updated since the last call
public getRbfChanges(): { chains: {[root: string]: RbfChain }, map: { [txid: string]: string }} {
const changes: { chains: {[root: string]: RbfChain }, map: { [txid: string]: string }} = {
chains: {},
map: {},
};
this.dirtyChains.forEach(root => {
const chain = this.rbfChains.get(root);
if (chain) {
changes.chains[root] = chain;
chain.forEach(entry => {
changes.map[entry.tx.txid] = root;
});
}
});
this.dirtyChains = new Set();
return changes;
}
// flag a transaction as removed from the mempool // flag a transaction as removed from the mempool
public evict(txid): void { public evict(txid): void {
this.expiring[txid] = new Date(Date.now() + 1000 * 86400); // 24 hours this.expiring.set(txid, new Date(Date.now() + 1000 * 86400)); // 24 hours
} }
private cleanup(): void { private cleanup(): void {
const currentDate = new Date(); const currentDate = new Date();
for (const txid in this.expiring) { for (const txid in this.expiring) {
if (this.expiring[txid] < currentDate) { if ((this.expiring.get(txid) || 0) < currentDate) {
delete this.expiring[txid]; this.expiring.delete(txid);
this.remove(txid); this.remove(txid);
} }
} }
@ -81,18 +111,18 @@ class RbfCache {
// remove a transaction & all previous versions from the cache // remove a transaction & all previous versions from the cache
private remove(txid): void { private remove(txid): void {
// don't remove a transaction if a newer version remains in the mempool // don't remove a transaction if a newer version remains in the mempool
if (!this.replacedBy[txid]) { if (!this.replacedBy.has(txid)) {
const replaces = this.replaces[txid]; const replaces = this.replaces.get(txid);
delete this.replaces[txid]; this.replaces.delete(txid);
delete this.chainMap[txid]; this.chainMap.delete(txid);
delete this.txs[txid]; this.txs.delete(txid);
delete this.expiring[txid]; this.expiring.delete(txid);
for (const tx of replaces) { for (const tx of (replaces || [])) {
// recursively remove prior versions from the cache // recursively remove prior versions from the cache
delete this.replacedBy[tx]; this.replacedBy.delete(tx);
// if this is the root of a chain, remove that too // if this is the root of a chain, remove that too
if (this.chainMap[tx] === tx) { if (this.chainMap.get(tx) === tx) {
delete this.rbfChains[tx]; this.rbfChains.delete(tx);
} }
this.remove(tx); this.remove(tx);
} }

View File

@ -278,6 +278,7 @@ class WebsocketHandler {
const rbfTransactions = Common.findRbfTransactions(newTransactions, deletedTransactions); const rbfTransactions = Common.findRbfTransactions(newTransactions, deletedTransactions);
const da = difficultyAdjustment.getDifficultyAdjustment(); const da = difficultyAdjustment.getDifficultyAdjustment();
memPool.handleRbfTransactions(rbfTransactions); memPool.handleRbfTransactions(rbfTransactions);
const rbfChanges = rbfCache.getRbfChanges();
const recommendedFees = feeApi.getRecommendedFee(); const recommendedFees = feeApi.getRecommendedFee();
this.wss.clients.forEach(async (client) => { this.wss.clients.forEach(async (client) => {
@ -410,6 +411,11 @@ class WebsocketHandler {
} }
} }
} }
const rbfChange = rbfChanges.map[client['track-tx']];
if (rbfChange) {
response['rbfInfo'] = rbfChanges.chains[rbfChange];
}
} }
if (client['track-mempool-block'] >= 0) { if (client['track-mempool-block'] >= 0) {

View File

@ -46,6 +46,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
fetchRbfSubscription: Subscription; fetchRbfSubscription: Subscription;
fetchCachedTxSubscription: Subscription; fetchCachedTxSubscription: Subscription;
txReplacedSubscription: Subscription; txReplacedSubscription: Subscription;
txRbfInfoSubscription: Subscription;
blocksSubscription: Subscription; blocksSubscription: Subscription;
queryParamsSubscription: Subscription; queryParamsSubscription: Subscription;
urlFragmentSubscription: Subscription; urlFragmentSubscription: Subscription;
@ -205,21 +206,28 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
return; return;
} }
this.tx = tx; if (!this.tx) {
this.setFeatures(); this.tx = tx;
this.isCached = true; this.setFeatures();
if (tx.fee === undefined) { this.isCached = true;
this.tx.fee = 0; if (tx.fee === undefined) {
} this.tx.fee = 0;
this.tx.feePerVsize = tx.fee / (tx.weight / 4); }
this.isLoadingTx = false; this.tx.feePerVsize = tx.fee / (tx.weight / 4);
this.error = undefined; this.isLoadingTx = false;
this.waitingForTransaction = false; this.error = undefined;
this.graphExpanded = false; this.waitingForTransaction = false;
this.setupGraph(); this.graphExpanded = false;
this.setupGraph();
if (!this.tx?.status?.confirmed) { if (!this.tx?.status?.confirmed) {
this.fetchRbfHistory$.next(this.tx.txid); this.fetchRbfHistory$.next(this.tx.txid);
this.txRbfInfoSubscription = this.stateService.txRbfInfo$.subscribe((rbfInfo) => {
if (this.tx) {
this.rbfInfo = rbfInfo;
}
});
}
} }
}); });
@ -382,6 +390,12 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
} }
}); });
this.txRbfInfoSubscription = this.stateService.txRbfInfo$.subscribe((rbfInfo) => {
if (this.tx) {
this.rbfInfo = rbfInfo;
}
});
this.queryParamsSubscription = this.route.queryParams.subscribe((params) => { this.queryParamsSubscription = this.route.queryParams.subscribe((params) => {
if (params.showFlow === 'false') { if (params.showFlow === 'false') {
this.overrideFlowPreference = false; this.overrideFlowPreference = false;
@ -535,6 +549,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
this.fetchRbfSubscription.unsubscribe(); this.fetchRbfSubscription.unsubscribe();
this.fetchCachedTxSubscription.unsubscribe(); this.fetchCachedTxSubscription.unsubscribe();
this.txReplacedSubscription.unsubscribe(); this.txReplacedSubscription.unsubscribe();
this.txRbfInfoSubscription.unsubscribe();
this.blocksSubscription.unsubscribe(); this.blocksSubscription.unsubscribe();
this.queryParamsSubscription.unsubscribe(); this.queryParamsSubscription.unsubscribe();
this.flowPrefSubscription.unsubscribe(); this.flowPrefSubscription.unsubscribe();

View File

@ -1,6 +1,6 @@
import { ILoadingIndicators } from '../services/state.service'; import { ILoadingIndicators } from '../services/state.service';
import { Transaction } from './electrs.interface'; import { Transaction } from './electrs.interface';
import { BlockExtended, DifficultyAdjustment } from './node-api.interface'; import { BlockExtended, DifficultyAdjustment, RbfInfo } from './node-api.interface';
export interface WebsocketResponse { export interface WebsocketResponse {
block?: BlockExtended; block?: BlockExtended;
@ -16,6 +16,7 @@ export interface WebsocketResponse {
tx?: Transaction; tx?: Transaction;
rbfTransaction?: ReplacedTransaction; rbfTransaction?: ReplacedTransaction;
txReplaced?: ReplacedTransaction; txReplaced?: ReplacedTransaction;
rbfInfo?: RbfInfo[];
utxoSpent?: object; utxoSpent?: object;
transactions?: TransactionStripped[]; transactions?: TransactionStripped[];
loadingIndicators?: ILoadingIndicators; loadingIndicators?: ILoadingIndicators;

View File

@ -2,7 +2,7 @@ import { Inject, Injectable, PLATFORM_ID, LOCALE_ID } from '@angular/core';
import { ReplaySubject, BehaviorSubject, Subject, fromEvent, Observable } from 'rxjs'; import { ReplaySubject, BehaviorSubject, Subject, fromEvent, Observable } from 'rxjs';
import { Transaction } from '../interfaces/electrs.interface'; import { Transaction } from '../interfaces/electrs.interface';
import { IBackendInfo, MempoolBlock, MempoolBlockWithTransactions, MempoolBlockDelta, MempoolInfo, Recommendedfees, ReplacedTransaction, TransactionStripped } from '../interfaces/websocket.interface'; import { IBackendInfo, MempoolBlock, MempoolBlockWithTransactions, MempoolBlockDelta, MempoolInfo, Recommendedfees, ReplacedTransaction, TransactionStripped } from '../interfaces/websocket.interface';
import { BlockExtended, DifficultyAdjustment, OptimizedMempoolStats } from '../interfaces/node-api.interface'; import { BlockExtended, DifficultyAdjustment, OptimizedMempoolStats, RbfInfo } from '../interfaces/node-api.interface';
import { Router, NavigationStart } from '@angular/router'; import { Router, NavigationStart } from '@angular/router';
import { isPlatformBrowser } from '@angular/common'; import { isPlatformBrowser } from '@angular/common';
import { map, shareReplay } from 'rxjs/operators'; import { map, shareReplay } from 'rxjs/operators';
@ -98,6 +98,7 @@ export class StateService {
mempoolBlockTransactions$ = new Subject<TransactionStripped[]>(); mempoolBlockTransactions$ = new Subject<TransactionStripped[]>();
mempoolBlockDelta$ = new Subject<MempoolBlockDelta>(); mempoolBlockDelta$ = new Subject<MempoolBlockDelta>();
txReplaced$ = new Subject<ReplacedTransaction>(); txReplaced$ = new Subject<ReplacedTransaction>();
txRbfInfo$ = new Subject<RbfInfo[]>();
utxoSpent$ = new Subject<object>(); utxoSpent$ = new Subject<object>();
difficultyAdjustment$ = new ReplaySubject<DifficultyAdjustment>(1); difficultyAdjustment$ = new ReplaySubject<DifficultyAdjustment>(1);
mempoolTransactions$ = new Subject<Transaction>(); mempoolTransactions$ = new Subject<Transaction>();

View File

@ -257,6 +257,10 @@ export class WebsocketService {
this.stateService.txReplaced$.next(response.rbfTransaction); this.stateService.txReplaced$.next(response.rbfTransaction);
} }
if (response.rbfInfo) {
this.stateService.txRbfInfo$.next(response.rbfInfo);
}
if (response.txReplaced) { if (response.txReplaced) {
this.stateService.txReplaced$.next(response.txReplaced); this.stateService.txReplaced$.next(response.txReplaced);
} }