diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index f6b73a6e3..c28f77a48 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -6,7 +6,7 @@
-
Mempool size
+
Mempool size

{{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} blocks)

@@ -22,13 +22,13 @@
-
Tx weight per second
+
Tx weight per second
 Backend is synchronizing -
+
{{ mempoolInfoData.value.vBytesPerSecond | ceil | number }} vB/s
@@ -39,8 +39,8 @@
-
Difficulty adjustment
-
+
Difficulty adjustment
+
+{{ epochData.change | number: '1.0-2' }}%
@@ -51,29 +51,7 @@
-
Latest transactions
- - - - - - - - - - - - - -
TXIDAmount (BTC)Fee
{{ transaction.txid | shortenString : 12 }} (){{ transaction.fee / (transaction.weight / 4) | number : '1.1-1' }} sat/vB
-
 
-
-
-
-
-
-
-
Latest blocks
+
Latest blocks
@@ -99,6 +77,28 @@ +
+
+
+
Latest transactions
+
Height
+ + + + + + + + + + + + +
TXIDAmount (BTC)Fee
{{ transaction.txid | shortenString : 12 }} (){{ transaction.fee / (transaction.weight / 4) | number : '1.1-1' }} sat/vB
+
 
+
+
+
diff --git a/frontend/src/app/dashboard/dashboard.component.scss b/frontend/src/app/dashboard/dashboard.component.scss index 31d31feed..87627ce8b 100644 --- a/frontend/src/app/dashboard/dashboard.component.scss +++ b/frontend/src/app/dashboard/dashboard.component.scss @@ -2,22 +2,10 @@ background-color: #1d1f31; } -.txWeightPerSecond { - color: #4a9ff4; -} - -.mempoolSize { +.card-title { color: #4a68b9; } -.txPerSecond { - color: #f4bb4a;; -} - -.unconfirmedTx { - color: #f14d80; -} - .info-block { float: left; width: 350px; @@ -38,3 +26,7 @@ .skeleton-loader { width: 200px; } + +.card-body { + padding: 1.5rem; +} \ No newline at end of file