mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 01:00:00 +01:00
44 lines
1.6 KiB
TypeScript
44 lines
1.6 KiB
TypeScript
import { Component, ChangeDetectionStrategy, OnChanges, Input } from '@angular/core';
|
|
import { calcSegwitFeeGains, isFeatureActive } from '../../bitcoin.utils';
|
|
import { Transaction } from '../../interfaces/electrs.interface';
|
|
import { StateService } from '../../services/state.service';
|
|
|
|
@Component({
|
|
selector: 'app-tx-features',
|
|
templateUrl: './tx-features.component.html',
|
|
styleUrls: ['./tx-features.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class TxFeaturesComponent implements OnChanges {
|
|
@Input() tx: Transaction;
|
|
|
|
segwitGains = {
|
|
realizedSegwitGains: 0,
|
|
potentialSegwitGains: 0,
|
|
potentialP2shSegwitGains: 0,
|
|
potentialTaprootGains: 0,
|
|
realizedTaprootGains: 0
|
|
};
|
|
isRbfTransaction: boolean;
|
|
isTaproot: boolean;
|
|
|
|
segwitEnabled: boolean;
|
|
rbfEnabled: boolean;
|
|
taprootEnabled: boolean;
|
|
|
|
constructor(
|
|
private stateService: StateService,
|
|
) { }
|
|
|
|
ngOnChanges() {
|
|
if (!this.tx) {
|
|
return;
|
|
}
|
|
this.segwitEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'segwit');
|
|
this.taprootEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'taproot');
|
|
this.rbfEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'rbf');
|
|
this.segwitGains = calcSegwitFeeGains(this.tx);
|
|
this.isRbfTransaction = this.tx.vin.some((v) => v.sequence < 0xfffffffe);
|
|
this.isTaproot = this.tx.vin.some((v) => v.prevout && v.prevout.scriptpubkey_type === 'v1_p2tr');
|
|
}
|
|
}
|