import { Component, OnInit, OnDestroy } from '@angular/core'; import { ActivatedRoute, ParamMap } from '@angular/router'; import { ElectrsApiService } from '../../services/electrs-api.service'; import { switchMap, filter, catchError, map, tap } from 'rxjs/operators'; import { Address, ScriptHash, Transaction } from '../../interfaces/electrs.interface'; import { WebsocketService } from '../../services/websocket.service'; import { StateService } from '../../services/state.service'; import { AudioService } from '../../services/audio.service'; import { ApiService } from '../../services/api.service'; import { of, merge, Subscription, Observable } from 'rxjs'; import { SeoService } from '../../services/seo.service'; import { seoDescriptionNetwork } from '../../shared/common.utils'; import { AddressInformation } from '../../interfaces/node-api.interface'; @Component({ selector: 'app-address', templateUrl: './address.component.html', styleUrls: ['./address.component.scss'] }) export class AddressComponent implements OnInit, OnDestroy { network = ''; address: Address; addressString: string; isLoadingAddress = true; transactions: Transaction[]; isLoadingTransactions = true; retryLoadMore = false; error: any; mainSubscription: Subscription; addressLoadingStatus$: Observable; addressInfo: null | AddressInformation = null; fullyLoaded = false; txCount = 0; received = 0; sent = 0; private tempTransactions: Transaction[]; private timeTxIndexes: number[]; private lastTransactionTxId: string; constructor( private route: ActivatedRoute, private electrsApiService: ElectrsApiService, private websocketService: WebsocketService, public stateService: StateService, private audioService: AudioService, private apiService: ApiService, private seoService: SeoService, ) { } ngOnInit() { this.stateService.networkChanged$.subscribe((network) => this.network = network); this.websocketService.want(['blocks']); this.addressLoadingStatus$ = this.route.paramMap .pipe( switchMap(() => this.stateService.loadingIndicators$), map((indicators) => indicators['address-' + this.addressString] !== undefined ? indicators['address-' + this.addressString] : 0) ); this.mainSubscription = this.route.paramMap .pipe( switchMap((params: ParamMap) => { this.error = undefined; this.isLoadingAddress = true; this.fullyLoaded = false; this.address = null; this.isLoadingTransactions = true; this.transactions = null; this.addressInfo = null; document.body.scrollTo(0, 0); this.addressString = params.get('id') || ''; if (/^[A-Z]{2,5}1[AC-HJ-NP-Z02-9]{8,100}|04[a-fA-F0-9]{128}|(02|03)[a-fA-F0-9]{64}$/.test(this.addressString)) { this.addressString = this.addressString.toLowerCase(); } this.seoService.setTitle($localize`:@@address.component.browser-title:Address: ${this.addressString}:INTERPOLATION:`); this.seoService.setDescription($localize`:@@meta.description.bitcoin.address:See mempool transactions, confirmed transactions, balance, and more for ${this.stateService.network==='liquid'||this.stateService.network==='liquidtestnet'?'Liquid':'Bitcoin'}${seoDescriptionNetwork(this.stateService.network)} address ${this.addressString}:INTERPOLATION:.`); return merge( of(true), this.stateService.connectionState$ .pipe(filter((state) => state === 2 && this.transactions && this.transactions.length > 0)) ) .pipe( switchMap(() => ( this.addressString.match(/04[a-fA-F0-9]{128}|(02|03)[a-fA-F0-9]{64}/) ? this.electrsApiService.getPubKeyAddress$(this.addressString) : this.electrsApiService.getAddress$(this.addressString) ).pipe( catchError((err) => { this.isLoadingAddress = false; this.error = err; this.seoService.logSoft404(); console.log(err); return of(null); }) ) ) ); }) ) .pipe( filter((address) => !!address), tap((address: Address) => { if ((this.stateService.network === 'liquid' || this.stateService.network === 'liquidtestnet') && /^([a-zA-HJ-NP-Z1-9]{26,35}|[a-z]{2,5}1[ac-hj-np-z02-9]{8,100}|[a-km-zA-HJ-NP-Z1-9]{80})$/.test(address.address)) { this.apiService.validateAddress$(address.address) .subscribe((addressInfo) => { this.addressInfo = addressInfo; this.websocketService.startTrackAddress(addressInfo.unconfidential); }); } else { this.websocketService.startTrackAddress(address.address); } }), switchMap((address) => { this.address = address; this.updateChainStats(); this.isLoadingAddress = false; this.isLoadingTransactions = true; return address.is_pubkey ? this.electrsApiService.getScriptHashTransactions$((address.address.length === 66 ? '21' : '41') + address.address + 'ac') : this.electrsApiService.getAddressTransactions$(address.address); }), switchMap((transactions) => { this.tempTransactions = transactions; if (transactions.length) { this.lastTransactionTxId = transactions[transactions.length - 1].txid; } const fetchTxs: string[] = []; this.timeTxIndexes = []; transactions.forEach((tx, index) => { if (!tx.status.confirmed) { fetchTxs.push(tx.txid); this.timeTxIndexes.push(index); } }); if (!fetchTxs.length) { return of([]); } return this.apiService.getTransactionTimes$(fetchTxs).pipe( catchError((err) => { this.isLoadingAddress = false; this.isLoadingTransactions = false; this.error = err; this.seoService.logSoft404(); console.log(err); return of([]); }) ); }) ) .subscribe((times: number[] | null) => { if (!times) { return; } times.forEach((time, index) => { this.tempTransactions[this.timeTxIndexes[index]].firstSeen = time; }); this.tempTransactions.sort((a, b) => { if (b.status.confirmed) { if (b.status.block_height === a.status.block_height) { return b.status.block_time - a.status.block_time; } return b.status.block_height - a.status.block_height; } return b.firstSeen - a.firstSeen; }); this.transactions = this.tempTransactions; this.isLoadingTransactions = false; }, (error) => { console.log(error); this.error = error; this.seoService.logSoft404(); this.isLoadingAddress = false; }); this.stateService.mempoolTransactions$ .subscribe(tx => { this.addTransaction(tx); }); this.stateService.mempoolRemovedTransactions$ .subscribe(tx => { this.removeTransaction(tx); }); this.stateService.blockTransactions$ .subscribe((transaction) => { const tx = this.transactions.find((t) => t.txid === transaction.txid); if (tx) { tx.status = transaction.status; this.transactions = this.transactions.slice(); this.audioService.playSound('magic'); } else { if (this.addTransaction(transaction, false)) { this.audioService.playSound('magic'); } } }); } addTransaction(transaction: Transaction, playSound: boolean = true): boolean { if (this.transactions.some((t) => t.txid === transaction.txid)) { return false; } this.transactions.unshift(transaction); this.transactions = this.transactions.slice(); this.txCount++; if (playSound) { if (transaction.vout.some((vout) => vout?.scriptpubkey_address === this.address.address)) { this.audioService.playSound('cha-ching'); } else { this.audioService.playSound('chime'); } } transaction.vin.forEach((vin) => { if (vin?.prevout?.scriptpubkey_address === this.address.address) { this.sent += vin.prevout.value; } }); transaction.vout.forEach((vout) => { if (vout?.scriptpubkey_address === this.address.address) { this.received += vout.value; } }); return true; } removeTransaction(transaction: Transaction): boolean { const index = this.transactions.findIndex(((tx) => tx.txid === transaction.txid)); if (index === -1) { return false; } this.transactions.splice(index, 1); this.transactions = this.transactions.slice(); this.txCount--; transaction.vin.forEach((vin) => { if (vin?.prevout?.scriptpubkey_address === this.address.address) { this.sent -= vin.prevout.value; } }); transaction.vout.forEach((vout) => { if (vout?.scriptpubkey_address === this.address.address) { this.received -= vout.value; } }); return true; } loadMore() { if (this.isLoadingTransactions || this.fullyLoaded) { return; } this.isLoadingTransactions = true; this.retryLoadMore = false; (this.address.is_pubkey ? this.electrsApiService.getScriptHashTransactions$((this.address.address.length === 66 ? '21' : '41') + this.address.address + 'ac', this.lastTransactionTxId) : this.electrsApiService.getAddressTransactions$(this.address.address, this.lastTransactionTxId)) .subscribe((transactions: Transaction[]) => { if (transactions && transactions.length) { this.lastTransactionTxId = transactions[transactions.length - 1].txid; this.transactions = this.transactions.concat(transactions); } else { this.fullyLoaded = true; } this.isLoadingTransactions = false; }, (error) => { this.isLoadingTransactions = false; this.retryLoadMore = true; // In the unlikely event of the txid wasn't found in the mempool anymore and we must reload the page. if (error.status === 422) { window.location.reload(); } }); } updateChainStats() { this.received = this.address.chain_stats.funded_txo_sum + this.address.mempool_stats.funded_txo_sum; this.sent = this.address.chain_stats.spent_txo_sum + this.address.mempool_stats.spent_txo_sum; this.txCount = this.address.chain_stats.tx_count + this.address.mempool_stats.tx_count; } ngOnDestroy() { this.mainSubscription.unsubscribe(); this.websocketService.stopTrackingAddress(); } }