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...
-
+
+
+
+
+
+
-
+
diff --git a/frontend/src/app/components/master-page/master-page.component.ts b/frontend/src/app/components/master-page/master-page.component.ts
index 32ce19333..c7cc33b80 100644
--- a/frontend/src/app/components/master-page/master-page.component.ts
+++ b/frontend/src/app/components/master-page/master-page.component.ts
@@ -1,6 +1,5 @@
-import { Component, OnInit } from '@angular/core';
+import { Component, OnInit, HostListener } from '@angular/core';
import { StateService } from '../../services/state.service';
-import { environment } from 'src/environments/environment';
@Component({
selector: 'app-master-page',
@@ -8,20 +7,43 @@ import { environment } from 'src/environments/environment';
styleUrls: ['./master-page.component.scss']
})
export class MasterPageComponent implements OnInit {
- network = environment.network;
+ network = '';
+ tvViewRoute = '/tv';
navCollapsed = false;
connectionState = 2;
+ networkDropdownHidden = true;
+
constructor(
private stateService: StateService,
) { }
+ @HostListener('document:click', ['$event'])
+ documentClick(event: any): void {
+ if (!event.target.classList.contains('dropdown-toggle')) {
+ this.networkDropdownHidden = true;
+ }
+ }
+
ngOnInit() {
this.stateService.connectionState$
.subscribe((state) => {
this.connectionState = state;
});
+
+ this.stateService.networkChanged$
+ .subscribe((network) => {
+ this.network = network;
+
+ if (network === 'testnet') {
+ this.tvViewRoute = '/testnet-tv';
+ } else if (network === 'liquid') {
+ this.tvViewRoute = '/liquid-tv';
+ } else {
+ this.tvViewRoute = '/tv';
+ }
+ });
}
collapse(): void {
diff --git a/frontend/src/app/components/mempool-block/mempool-block.component.ts b/frontend/src/app/components/mempool-block/mempool-block.component.ts
index 8613c10a6..b3639716a 100644
--- a/frontend/src/app/components/mempool-block/mempool-block.component.ts
+++ b/frontend/src/app/components/mempool-block/mempool-block.component.ts
@@ -5,7 +5,6 @@ import { switchMap, map, tap } from 'rxjs/operators';
import { MempoolBlock } from 'src/app/interfaces/websocket.interface';
import { Observable } from 'rxjs';
import { SeoService } from 'src/app/services/seo.service';
-import { environment } from 'src/environments/environment';
@Component({
selector: 'app-mempool-block',
@@ -13,7 +12,7 @@ import { environment } from 'src/environments/environment';
styleUrls: ['./mempool-block.component.scss']
})
export class MempoolBlockComponent implements OnInit, OnDestroy {
- network = environment.network;
+ network = '';
mempoolBlockIndex: number;
mempoolBlock$: Observable;
@@ -43,6 +42,9 @@ export class MempoolBlockComponent implements OnInit, OnDestroy {
this.stateService.markBlock$.next({ mempoolBlockIndex: this.mempoolBlockIndex });
})
);
+
+ this.stateService.networkChanged$
+ .subscribe((network) => this.network = network);
}
ngOnDestroy(): void {
diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html
index b43152f09..76a88f9f4 100644
--- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html
+++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html
@@ -2,7 +2,7 @@
-
+
~{{ projectedBlock.medianFee | number:'1.0-0' }} sat/vB
diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts
index 1b1c7d993..38a3c111f 100644
--- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts
+++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts
@@ -4,7 +4,7 @@ import { MempoolBlock } from 'src/app/interfaces/websocket.interface';
import { StateService } from 'src/app/services/state.service';
import { Router } from '@angular/router';
import { take } from 'rxjs/operators';
-import { environment } from '../../../environments/environment';
+
@Component({
selector: 'app-mempool-blocks',
templateUrl: './mempool-blocks.component.html',
@@ -14,7 +14,7 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
mempoolBlocks: MempoolBlock[];
mempoolBlocksFull: MempoolBlock[];
mempoolBlocksSubscription: Subscription;
- network = environment.network;
+ network = '';
blockWidth = 125;
blockPadding = 30;
@@ -54,6 +54,9 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
}
this.calculateTransactionPosition();
});
+
+ this.stateService.networkChanged$
+ .subscribe((network) => this.network = network);
}
@HostListener('window:resize', ['$event'])
diff --git a/frontend/src/app/components/mempool-graph/mempool-graph.component.ts b/frontend/src/app/components/mempool-graph/mempool-graph.component.ts
index e9b815dab..08f1ea99f 100644
--- a/frontend/src/app/components/mempool-graph/mempool-graph.component.ts
+++ b/frontend/src/app/components/mempool-graph/mempool-graph.component.ts
@@ -2,8 +2,8 @@ import { Component, OnInit, Input, Inject, LOCALE_ID, ChangeDetectionStrategy, O
import { formatDate } from '@angular/common';
import { VbytesPipe } from 'src/app/pipes/bytes-pipe/vbytes.pipe';
import * as Chartist from 'chartist';
-import { environment } from 'src/environments/environment';
import { OptimizedMempoolStats } from 'src/app/interfaces/node-api.interface';
+import { StateService } from 'src/app/services/state.service';
@Component({
selector: 'app-mempool-graph',
@@ -13,16 +13,18 @@ import { OptimizedMempoolStats } from 'src/app/interfaces/node-api.interface';
export class MempoolGraphComponent implements OnInit, OnChanges {
@Input() data;
- network = environment.network;
+ network = '';
mempoolVsizeFeesOptions: any;
mempoolVsizeFeesData: any;
constructor(
private vbytesPipe: VbytesPipe,
+ private stateService: StateService,
@Inject(LOCALE_ID) private locale: string,
) { }
ngOnInit(): void {
+ this.stateService.networkChanged$.subscribe((network) => this.network = network);
const labelInterpolationFnc = (value: any, index: any) => {
return index % 6 === 0 ? formatDate(value, 'HH:mm', this.locale) : null;
};
diff --git a/frontend/src/app/components/search-form/search-form.component.ts b/frontend/src/app/components/search-form/search-form.component.ts
index 4500a6dd6..8b43fa751 100644
--- a/frontend/src/app/components/search-form/search-form.component.ts
+++ b/frontend/src/app/components/search-form/search-form.component.ts
@@ -1,8 +1,8 @@
import { Component, OnInit, ChangeDetectionStrategy, EventEmitter, Output } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { Router } from '@angular/router';
-import { environment } from 'src/environments/environment';
import { AssetsService } from 'src/app/services/assets.service';
+import { StateService } from 'src/app/services/state.service';
@Component({
selector: 'app-search-form',
@@ -11,7 +11,7 @@ import { AssetsService } from 'src/app/services/assets.service';
changeDetection: ChangeDetectionStrategy.OnPush
})
export class SearchFormComponent implements OnInit {
- network = environment.network;
+ network = '';
assets: object;
searchForm: FormGroup;
@@ -25,9 +25,12 @@ export class SearchFormComponent implements OnInit {
private formBuilder: FormBuilder,
private router: Router,
private assetsService: AssetsService,
+ private stateService: StateService,
) { }
ngOnInit() {
+ this.stateService.networkChanged$.subscribe((network) => this.network = network);
+
this.searchForm = this.formBuilder.group({
searchText: ['', Validators.required],
});
@@ -43,16 +46,16 @@ export class SearchFormComponent implements OnInit {
const searchText = this.searchForm.value.searchText.trim();
if (searchText) {
if (this.regexAddress.test(searchText)) {
- this.router.navigate(['/address/', searchText]);
+ this.router.navigate([(this.network ? '/' + this.network : '') + '/address/', searchText]);
this.searchTriggered.emit();
} else if (this.regexBlockhash.test(searchText)) {
- this.router.navigate(['/block/', searchText]);
+ this.router.navigate([(this.network ? '/' + this.network : '') + '/block/', searchText]);
this.searchTriggered.emit();
} else if (this.regexTransaction.test(searchText)) {
if (this.network === 'liquid' && this.assets[searchText]) {
- this.router.navigate(['/asset/', searchText]);
+ this.router.navigate([(this.network ? '/' + this.network : '') + '/asset/', searchText]);
} else {
- this.router.navigate(['/tx/', searchText]);
+ this.router.navigate([(this.network ? '/' + this.network : '') + '/tx/', searchText]);
}
this.searchTriggered.emit();
} else {
diff --git a/frontend/src/app/components/statistics/statistics.component.html b/frontend/src/app/components/statistics/statistics.component.html
index 53c28a5be..5ed3bb051 100644
--- a/frontend/src/app/components/statistics/statistics.component.html
+++ b/frontend/src/app/components/statistics/statistics.component.html
@@ -19,25 +19,25 @@
diff --git a/frontend/src/app/components/statistics/statistics.component.ts b/frontend/src/app/components/statistics/statistics.component.ts
index 7ec2c9ada..dce1c4cf1 100644
--- a/frontend/src/app/components/statistics/statistics.component.ts
+++ b/frontend/src/app/components/statistics/statistics.component.ts
@@ -12,7 +12,6 @@ import { ApiService } from '../../services/api.service';
import * as Chartist from 'chartist';
import { StateService } from 'src/app/services/state.service';
import { SeoService } from 'src/app/services/seo.service';
-import { environment } from 'src/environments/environment';
@Component({
selector: 'app-statistics',
@@ -20,7 +19,7 @@ import { environment } from 'src/environments/environment';
styleUrls: ['./statistics.component.scss']
})
export class StatisticsComponent implements OnInit {
- network = environment.network;
+ network = '';
loading = true;
spinnerLoading = false;
@@ -52,6 +51,8 @@ export class StatisticsComponent implements OnInit {
ngOnInit() {
this.seoService.setTitle('Graphs');
+ this.stateService.networkChanged$.subscribe((network) => this.network = network);
+
const labelInterpolationFnc = (value: any, index: any) => {
const nr = 6;
diff --git a/frontend/src/app/components/television/television.component.ts b/frontend/src/app/components/television/television.component.ts
index db141a02f..0c5b2a920 100644
--- a/frontend/src/app/components/television/television.component.ts
+++ b/frontend/src/app/components/television/television.component.ts
@@ -4,7 +4,6 @@ import { OptimizedMempoolStats } from '../../interfaces/node-api.interface';
import { StateService } from 'src/app/services/state.service';
import { ApiService } from 'src/app/services/api.service';
import { SeoService } from 'src/app/services/seo.service';
-import { environment } from 'src/environments/environment';
@Component({
selector: 'app-television',
@@ -13,7 +12,6 @@ import { environment } from 'src/environments/environment';
})
export class TelevisionComponent implements OnInit {
loading = true;
- network = environment.network;
mempoolStats: OptimizedMempoolStats[] = [];
mempoolVsizeFeesData: any;
diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html
index 8ff5bd3b6..6baff8c56 100644
--- a/frontend/src/app/components/transaction/transaction.component.html
+++ b/frontend/src/app/components/transaction/transaction.component.html
@@ -11,7 +11,7 @@
-
+
{{ txId | shortenString : 24 }}
{{ txId }}
@@ -33,7 +33,7 @@
Included in block |
- {{ tx.status.block_height }}
+ {{ tx.status.block_height }}
( ago)
|
diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts
index 78eacbed6..8b48be2c6 100644
--- a/frontend/src/app/components/transaction/transaction.component.ts
+++ b/frontend/src/app/components/transaction/transaction.component.ts
@@ -9,7 +9,6 @@ import { WebsocketService } from '../../services/websocket.service';
import { AudioService } from 'src/app/services/audio.service';
import { ApiService } from 'src/app/services/api.service';
import { SeoService } from 'src/app/services/seo.service';
-import { environment } from '../../../environments/environment';
@Component({
selector: 'app-transaction',
@@ -17,7 +16,7 @@ import { environment } from '../../../environments/environment';
styleUrls: ['./transaction.component.scss']
})
export class TransactionComponent implements OnInit, OnDestroy {
- network = environment.network;
+ network = '';
tx: Transaction;
txId: string;
feeRating: number;
@@ -44,6 +43,8 @@ export class TransactionComponent implements OnInit, OnDestroy {
) { }
ngOnInit() {
+ this.stateService.networkChanged$.subscribe((network) => this.network = network);
+
this.subscription = this.route.paramMap.pipe(
switchMap((params: ParamMap) => {
this.txId = params.get('id') || '';
diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.html b/frontend/src/app/components/transactions-list/transactions-list.component.html
index 867963730..72aa5ef00 100644
--- a/frontend/src/app/components/transactions-list/transactions-list.component.html
+++ b/frontend/src/app/components/transactions-list/transactions-list.component.html
@@ -1,6 +1,6 @@