diff --git a/frontend/src/app/app-routing.module.ts b/frontend/src/app/app-routing.module.ts index 4fd1d2013..8e996953d 100644 --- a/frontend/src/app/app-routing.module.ts +++ b/frontend/src/app/app-routing.module.ts @@ -146,8 +146,9 @@ let routes: Routes = [ data: { preload: true }, }, { - path: 'tracker/:id', - component: TrackerComponent, + path: 'tracker', + data: { networkSpecific: true }, + loadChildren: () => import('./components/tracker/tracker.module').then(m => m.TrackerModule), }, { path: 'wallet', diff --git a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html index 39e659971..b8b9a4283 100644 --- a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html +++ b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html @@ -6,327 +6,367 @@ } @else if (step === 'quote') { - @if (!simpleMode) { - -
Virtual size | -- | |
- Size in vbytes of this transaction (including unconfirmed ancestors) - | -||
In-band fees | -- {{ estimate.txSummary.effectiveFee | number : '1.0-0' }} sats - | -|
- Fees already paid by this transaction (including unconfirmed ancestors) - | -
Next block market rate | -- {{ estimate.targetFeeRate | number : '1.0-0' }} - | -sat/vB | -
- Estimated extra fee required - | -- {{ math.max(0, estimate.nextBlockFee - estimate.txSummary.effectiveFee) | number }} - | -
- sats
- |
-
Mempool Acceleratorâ„¢ fees | -||
- Accelerator Service Fee - | -- +{{ estimate.mempoolBaseFee | number }} - | -
- sats
- |
-
- Transaction Size Surcharge - | -- +{{ estimate.vsizeFee | number }} - | -
- sats
- |
-
- Estimated acceleration cost ~{{ estimate.targetFeeRate | number : '1.0-0' }} sat/vB - | -- - {{ estimate.cost + estimate.mempoolBaseFee + estimate.vsizeFee | number }} - - | -
- sats
- |
-
- @if (isLoggedIn()) { - Maximum acceleration cost - } @else { - Acceleration cost - } - | -- - {{ cost | number }} - - | -
- sats
-
- |
-
Available balance | -- {{ estimate.userBalance | number }} - | -
- sats
-
- |
-
- |
-
-
-
+ | |
Virtual size | ++ | |
+ Size in vbytes of this transaction (including unconfirmed ancestors) + | +||
In-band fees | ++ {{ estimate.txSummary.effectiveFee | number : '1.0-0' }} sats + | +|
+ Fees already paid by this transaction (including unconfirmed ancestors) |