diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 891c1a351..7d4cbd365 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -46,6 +46,7 @@ import { FontAwesomeModule, FaIconLibrary } from '@fortawesome/angular-fontaweso import { faBolt, faChartArea, faCogs, faCubes, faDatabase, faInfoCircle, faLink, faList, faSearch, faTachometerAlt, faThList, faTv } from '@fortawesome/free-solid-svg-icons'; import { ApiDocsComponent } from './components/api-docs/api-docs.component'; import { TermsOfServiceComponent } from './components/terms-of-service/terms-of-service.component'; +import { StorageService } from './services/storage.service'; @NgModule({ declarations: [ @@ -97,6 +98,7 @@ import { TermsOfServiceComponent } from './components/terms-of-service/terms-of- WebsocketService, AudioService, SeoService, + StorageService, ], bootstrap: [AppComponent] }) diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index 998f3ddc1..e8cb825b3 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -2,67 +2,60 @@
- Mempool size-- {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} blocks) - - |
-
- Unconfirmed-- {{ mempoolInfoData.value.memPoolInfo.size | number }} TXs - - |
-
Height | -Mined | -Txs | -Filled | - - -
---|---|---|---|
{{ block.height }} | -{{ block.tx_count | number }} | -
-
-
-
- {{ block.size | bytes: 2 }}
- |
-
Height | +Mined | +Txs | +Filled | + + +
---|---|---|---|
{{ block.height }} | +{{ block.tx_count | number }} | +
+
+
+
+ {{ block.size | bytes: 2 }}
+ |
+
TXID | -Amount | -USD | -Fee | - - -
---|---|---|---|
{{ transaction.txid | shortenString : 10 }} | -{{ transaction.fee / (transaction.weight / 4) | number : '1.1-1' }} sat/vB | -
TXID | +Amount | +USD | +Fee | + + +
---|---|---|---|
{{ transaction.txid | shortenString : 10 }} | +{{ transaction.fee / (transaction.weight / 4) | number : '1.1-1' }} sat/vB | +
+ Mempool size++ {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} blocks) + + |
+
+ Unconfirmed++ {{ mempoolInfoData.value.memPoolInfo.size | number }} TXs + + |
+