diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index 73a5f9365..96f5aa61f 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -63,14 +63,177 @@ const routes: Routes = [ }, ], }, + { + path: 'liquid', + component: MasterPageComponent, + children: [ + { + path: '', + component: StartComponent, + children: [ + { + path: '', + component: LatestBlocksComponent + }, + { + path: 'tx/:id', + component: TransactionComponent + }, + { + path: 'block/:id', + component: BlockComponent + }, + { + path: 'mempool-block/:id', + component: MempoolBlockComponent + }, + ], + }, + { + path: 'graphs', + component: StatisticsComponent, + }, + { + path: 'tv', + component: TelevisionComponent, + }, + { + path: 'contributors', + component: AboutComponent, + }, + { + path: 'address/:id', + children: [], + component: AddressComponent + }, + { + path: 'asset/:id', + component: AssetComponent + }, + { + path: 'assets', + component: AssetsComponent, + }, + { + path: '**', + redirectTo: '' + }, + ], + }, + { + path: 'liquid', + component: MasterPageComponent, + children: [ + { + path: '', + component: StartComponent, + children: [ + { + path: '', + component: LatestBlocksComponent + }, + { + path: 'tx/:id', + component: TransactionComponent + }, + { + path: 'block/:id', + component: BlockComponent + }, + { + path: 'mempool-block/:id', + component: MempoolBlockComponent + }, + ], + }, + { + path: 'graphs', + component: StatisticsComponent, + }, + { + path: 'contributors', + component: AboutComponent, + }, + { + path: 'address/:id', + children: [], + component: AddressComponent + }, + { + path: 'asset/:id', + component: AssetComponent + }, + { + path: 'assets', + component: AssetsComponent, + }, + { + path: '**', + redirectTo: '' + }, + ], + }, + { + path: 'testnet', + component: MasterPageComponent, + children: [ + { + path: '', + component: StartComponent, + children: [ + { + path: '', + component: LatestBlocksComponent + }, + { + path: 'tx/:id', + component: TransactionComponent + }, + { + path: 'block/:id', + component: BlockComponent + }, + { + path: 'mempool-block/:id', + component: MempoolBlockComponent + }, + ], + }, + { + path: 'graphs', + component: StatisticsComponent, + }, + { + path: 'contributors', + component: AboutComponent, + }, + { + path: 'address/:id', + children: [], + component: AddressComponent + }, + { + path: '**', + redirectTo: '' + }, + ], + }, { path: 'tv', component: TelevisionComponent, }, + { + path: 'liquid-tv', + component: TelevisionComponent, + }, + { + path: 'testnet-tv', + component: TelevisionComponent, + }, { path: '**', redirectTo: '' - } + }, ]; @NgModule({ diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index a3744d1fa..bfbac5ec0 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -48,6 +48,7 @@ import { MempoolGraphComponent } from './components/mempool-graph/mempool-graph. import { AssetComponent } from './components/asset/asset.component'; import { ScriptpubkeyTypePipe } from './pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe'; import { AssetsComponent } from './assets/assets.component'; +import { RelativeUrlPipe } from './pipes/relative-url/relative-url.pipe'; @NgModule({ declarations: [ @@ -86,6 +87,7 @@ import { AssetsComponent } from './assets/assets.component'; AssetComponent, ScriptpubkeyTypePipe, AssetsComponent, + RelativeUrlPipe, ], imports: [ BrowserModule, diff --git a/frontend/src/app/assets/assets.component.html b/frontend/src/app/assets/assets.component.html index 21c686dd9..1574021f1 100644 --- a/frontend/src/app/assets/assets.component.html +++ b/frontend/src/app/assets/assets.component.html @@ -18,8 +18,8 @@ {{ asset.name }} {{ asset.ticker }} {{ asset.entity.domain }} - {{ asset.asset_id | shortenString : 13 }} - {{ asset.issuance_txin.txid | shortenString : 13 }} + {{ asset.asset_id | shortenString : 13 }} + {{ asset.issuance_txin.txid | shortenString : 13 }} diff --git a/frontend/src/app/components/address-labels/address-labels.component.html b/frontend/src/app/components/address-labels/address-labels.component.html index 4b092f436..b7ed241f1 100644 --- a/frontend/src/app/components/address-labels/address-labels.component.html +++ b/frontend/src/app/components/address-labels/address-labels.component.html @@ -1,2 +1,2 @@ multisig {{ multisigM }} of {{ multisigN }} -Lightning Channel Force Close +Layer2 Peg-out diff --git a/frontend/src/app/components/address-labels/address-labels.component.ts b/frontend/src/app/components/address-labels/address-labels.component.ts index 160533821..e90461cae 100644 --- a/frontend/src/app/components/address-labels/address-labels.component.ts +++ b/frontend/src/app/components/address-labels/address-labels.component.ts @@ -16,7 +16,7 @@ export class AddressLabelsComponent implements OnInit { multisigM: number; multisigN: number; - lnChannelClose = false; + secondLayerClose = false; constructor() { } @@ -33,12 +33,16 @@ export class AddressLabelsComponent implements OnInit { if (this.vin.inner_witnessscript_asm.indexOf('OP_CHECKMULTISIG') > -1) { const matches = this.getMatches(this.vin.inner_witnessscript_asm, /OP_PUSHNUM_([0-9])/g, 1); this.multisig = true; - this.multisigM = matches[0]; - this.multisigN = matches[1]; + this.multisigM = parseInt(matches[0], 10); + this.multisigN = parseInt(matches[1], 10); + + if (this.multisigM === 1 && this.multisigN === 1) { + this.multisig = false; + } } if (/OP_IF (.+) OP_ELSE (.+) OP_CSV OP_DROP/.test(this.vin.inner_witnessscript_asm)) { - this.lnChannelClose = true; + this.secondLayerClose = true; } } diff --git a/frontend/src/app/components/address/address.component.html b/frontend/src/app/components/address/address.component.html index 604637b21..8e7038c4d 100644 --- a/frontend/src/app/components/address/address.component.html +++ b/frontend/src/app/components/address/address.component.html @@ -1,6 +1,6 @@

Address

- + {{ addressString | shortenString : 24 }} {{ addressString }} diff --git a/frontend/src/app/components/address/address.component.ts b/frontend/src/app/components/address/address.component.ts index 0293de689..197a4fadf 100644 --- a/frontend/src/app/components/address/address.component.ts +++ b/frontend/src/app/components/address/address.component.ts @@ -9,7 +9,6 @@ import { AudioService } from 'src/app/services/audio.service'; import { ApiService } from 'src/app/services/api.service'; import { of, merge, Subscription } from 'rxjs'; import { SeoService } from 'src/app/services/seo.service'; -import { environment } from 'src/environments/environment'; @Component({ selector: 'app-address', @@ -17,7 +16,7 @@ import { environment } from 'src/environments/environment'; styleUrls: ['./address.component.scss'] }) export class AddressComponent implements OnInit, OnDestroy { - network = environment.network; + network = ''; address: Address; addressString: string; @@ -48,6 +47,7 @@ export class AddressComponent implements OnInit, OnDestroy { ) { } ngOnInit() { + this.stateService.networkChanged$.subscribe((network) => this.network = network); this.websocketService.want(['blocks', 'stats', 'mempool-blocks']); this.mainSubscription = this.route.paramMap diff --git a/frontend/src/app/components/amount/amount.component.html b/frontend/src/app/components/amount/amount.component.html index b8d632b02..8f19fa758 100644 --- a/frontend/src/app/components/amount/amount.component.html +++ b/frontend/src/app/components/amount/amount.component.html @@ -6,6 +6,7 @@ Confidential - {{ satoshis / 100000000 | number : '1.8-8' }} L-BTC + {{ satoshis / 100000000 | number : digitsInfo }} L-BTC + tBTC diff --git a/frontend/src/app/components/amount/amount.component.ts b/frontend/src/app/components/amount/amount.component.ts index 4450153ab..85785bb68 100644 --- a/frontend/src/app/components/amount/amount.component.ts +++ b/frontend/src/app/components/amount/amount.component.ts @@ -1,7 +1,6 @@ import { Component, OnInit, Input, ChangeDetectionStrategy } from '@angular/core'; import { StateService } from '../../services/state.service'; import { Observable } from 'rxjs'; -import { environment } from '../../../environments/environment'; @Component({ selector: 'app-amount', @@ -12,9 +11,10 @@ import { environment } from '../../../environments/environment'; export class AmountComponent implements OnInit { conversions$: Observable; viewFiat$: Observable; - network = environment.network; + network = ''; @Input() satoshis: number; + @Input() digitsInfo = '1.8-8'; constructor( private stateService: StateService, @@ -23,6 +23,7 @@ export class AmountComponent implements OnInit { ngOnInit() { this.viewFiat$ = this.stateService.viewFiat$.asObservable(); this.conversions$ = this.stateService.conversions$.asObservable(); + this.stateService.networkChanged$.subscribe((network) => this.network = network); } } diff --git a/frontend/src/app/components/app/app.component.ts b/frontend/src/app/components/app/app.component.ts index 047f80257..0d50da492 100644 --- a/frontend/src/app/components/app/app.component.ts +++ b/frontend/src/app/components/app/app.component.ts @@ -1,41 +1,18 @@ -import { Component, OnInit } from '@angular/core'; -import { Router, NavigationEnd } from '@angular/router'; +import { Component } from '@angular/core'; +import { Router } from '@angular/router'; import { WebsocketService } from '../../services/websocket.service'; -import { environment } from 'src/environments/environment'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) -export class AppComponent implements OnInit { - network = environment.network; +export class AppComponent { + network = ''; link: HTMLLinkElement; constructor( public router: Router, private websocketService: WebsocketService, ) { } - - ngOnInit() { - this.router.events.subscribe((val) => { - if (val instanceof NavigationEnd) { - if (this.network === 'liquid' || this.network === 'testnet') { - this.updateCanonicalUrlElement('https://' + this.network + '.mempool.ninja' + location.pathname); - } else { - this.updateCanonicalUrlElement('https://mempool.space' + location.pathname); - } - } - }); - } - - updateCanonicalUrlElement(url) { - if (!this.link) { - this.link = window.document.createElement('link'); - this.link.setAttribute('rel', 'canonical'); - window.document.head.appendChild(this.link); - } - this.link.setAttribute('href', url); - } - } diff --git a/frontend/src/app/components/asset/asset.component.html b/frontend/src/app/components/asset/asset.component.html index bb4984302..776ec4563 100644 --- a/frontend/src/app/components/asset/asset.component.html +++ b/frontend/src/app/components/asset/asset.component.html @@ -1,6 +1,6 @@

Asset

- + {{ assetString | shortenString : 24 }} {{ assetString }} @@ -30,7 +30,7 @@ Issuance tx - {{ asset.issuance_txin.txid | shortenString : 13 }} + {{ asset.issuance_txin.txid | shortenString : 13 }} diff --git a/frontend/src/app/components/asset/asset.component.ts b/frontend/src/app/components/asset/asset.component.ts index e2c5a3624..1557e8d17 100644 --- a/frontend/src/app/components/asset/asset.component.ts +++ b/frontend/src/app/components/asset/asset.component.ts @@ -18,7 +18,7 @@ import { AssetsService } from 'src/app/services/assets.service'; styleUrls: ['./asset.component.scss'] }) export class AssetComponent implements OnInit, OnDestroy { - network = environment.network; + network = ''; nativeAssetId = environment.nativeAssetId; asset: Asset; @@ -54,6 +54,7 @@ export class AssetComponent implements OnInit, OnDestroy { ngOnInit() { this.websocketService.want(['blocks', 'stats', 'mempool-blocks']); + this.stateService.networkChanged$.subscribe((network) => this.network = network); this.mainSubscription = this.route.paramMap .pipe( diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index 3f4ac5d30..50600233b 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -1,7 +1,7 @@
@@ -40,7 +40,7 @@ Hash - {{ block.id | shortenString : 13 }} + {{ block.id | shortenString : 13 }} Median fee @@ -49,12 +49,12 @@ Total fees - {{ fees | number: '1.2-2' }} L-BTC () + () Reward + fees: - {{ blockSubsidy + fees | number: '1.2-2' }} L-BTC () + () diff --git a/frontend/src/app/components/block/block.component.ts b/frontend/src/app/components/block/block.component.ts index c44cc7c11..3f60e6b95 100644 --- a/frontend/src/app/components/block/block.component.ts +++ b/frontend/src/app/components/block/block.component.ts @@ -6,7 +6,6 @@ import { Block, Transaction, Vout } from '../../interfaces/electrs.interface'; import { of } from 'rxjs'; import { StateService } from '../../services/state.service'; import { SeoService } from 'src/app/services/seo.service'; -import { environment } from 'src/environments/environment'; @Component({ selector: 'app-block', @@ -14,7 +13,7 @@ import { environment } from 'src/environments/environment'; styleUrls: ['./block.component.scss'] }) export class BlockComponent implements OnInit, OnDestroy { - network = environment.network; + network = ''; block: Block; blockHeight: number; blockHash: string; @@ -92,6 +91,9 @@ export class BlockComponent implements OnInit, OnDestroy { this.stateService.blocks$ .subscribe((block) => this.latestBlock = block); + + this.stateService.networkChanged$ + .subscribe((network) => this.network = network); } ngOnDestroy() { diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html index 5f77b42d0..373584410 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html @@ -1,9 +1,9 @@
-   +  
diff --git a/frontend/src/app/components/blockchain/blockchain.component.html b/frontend/src/app/components/blockchain/blockchain.component.html index d8d7c3882..1f630e49d 100644 --- a/frontend/src/app/components/blockchain/blockchain.component.html +++ b/frontend/src/app/components/blockchain/blockchain.component.html @@ -1,11 +1,13 @@
- - -
+ + + +
+
- +

Waiting for blocks...


diff --git a/frontend/src/app/components/blockchain/blockchain.component.ts b/frontend/src/app/components/blockchain/blockchain.component.ts index 80901c0bc..48e0f2bb1 100644 --- a/frontend/src/app/components/blockchain/blockchain.component.ts +++ b/frontend/src/app/components/blockchain/blockchain.component.ts @@ -1,6 +1,4 @@ -import { Component, OnInit, OnDestroy } from '@angular/core'; -import { Subscription } from 'rxjs'; -import { take } from 'rxjs/operators'; +import { Component, OnInit } from '@angular/core'; import { StateService } from 'src/app/services/state.service'; @Component({ @@ -8,9 +6,7 @@ import { StateService } from 'src/app/services/state.service'; templateUrl: './blockchain.component.html', styleUrls: ['./blockchain.component.scss'] }) -export class BlockchainComponent implements OnInit, OnDestroy { - blocksSubscription: Subscription; - +export class BlockchainComponent implements OnInit { txTrackingLoading = false; txShowTxNotFound = false; isLoading = true; @@ -20,14 +16,7 @@ export class BlockchainComponent implements OnInit, OnDestroy { ) {} ngOnInit() { - this.blocksSubscription = this.stateService.blocks$ - .pipe( - take(1) - ) - .subscribe(() => this.isLoading = false); - } - - ngOnDestroy() { - this.blocksSubscription.unsubscribe(); + this.stateService.blocks$.subscribe(() => this.isLoading = false); + this.stateService.networkChanged$.subscribe(() => this.isLoading = true); } } diff --git a/frontend/src/app/components/latest-blocks/latest-blocks.component.html b/frontend/src/app/components/latest-blocks/latest-blocks.component.html index 14f0a6172..794747579 100644 --- a/frontend/src/app/components/latest-blocks/latest-blocks.component.html +++ b/frontend/src/app/components/latest-blocks/latest-blocks.component.html @@ -1,5 +1,5 @@ -
+

Quantitative Hardening in {{ 630000 - latestBlockHeight }} blocks (~)

@@ -17,7 +17,7 @@ - {{ block.height }} + {{ block.height }} {{ block.timestamp * 1000 | date:'yyyy-MM-dd HH:mm' }} ago {{ block.tx_count | number }} diff --git a/frontend/src/app/components/latest-blocks/latest-blocks.component.ts b/frontend/src/app/components/latest-blocks/latest-blocks.component.ts index 6cb223b91..893cce888 100644 --- a/frontend/src/app/components/latest-blocks/latest-blocks.component.ts +++ b/frontend/src/app/components/latest-blocks/latest-blocks.component.ts @@ -4,7 +4,6 @@ import { StateService } from '../../services/state.service'; import { Block } from '../../interfaces/electrs.interface'; import { Subscription } from 'rxjs'; import { SeoService } from 'src/app/services/seo.service'; -import { environment } from 'src/environments/environment'; @Component({ selector: 'app-latest-blocks', @@ -12,7 +11,7 @@ import { environment } from 'src/environments/environment'; styleUrls: ['./latest-blocks.component.scss'], }) export class LatestBlocksComponent implements OnInit, OnDestroy { - network = environment.network; + network = ''; blocks: any[] = []; blockSubscription: Subscription; @@ -32,6 +31,7 @@ export class LatestBlocksComponent implements OnInit, OnDestroy { ngOnInit() { this.seoService.resetTitle(); + this.stateService.networkChanged$.subscribe((network) => this.network = network); this.blockSubscription = this.stateService.blocks$ .subscribe((block) => { diff --git a/frontend/src/app/components/master-page/master-page.component.html b/frontend/src/app/components/master-page/master-page.component.html index cd24fb27f..5bcf92717 100644 --- a/frontend/src/app/components/master-page/master-page.component.html +++ b/frontend/src/app/components/master-page/master-page.component.html @@ -5,27 +5,38 @@
Offline
Reconnecting...
- + +
+ + +
+