Add block fees vs subsidy bar chart

This commit is contained in:
natsoni
2024-05-03 12:33:05 +02:00
parent 1b25a71d9f
commit 453a2224cd
10 changed files with 630 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import { SharedModule } from '../shared/shared.module';
import { AccelerationFeesGraphComponent } from '../components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component';
import { BlockFeesGraphComponent } from '../components/block-fees-graph/block-fees-graph.component';
import { BlockFeesSubsidyGraphComponent } from '../components/block-fees-subsidy-graph/block-fees-subsidy-graph.component';
import { BlockRewardsGraphComponent } from '../components/block-rewards-graph/block-rewards-graph.component';
import { BlockFeeRatesGraphComponent } from '../components/block-fee-rates-graph/block-fee-rates-graph.component';
import { BlockSizesWeightsGraphComponent } from '../components/block-sizes-weights-graph/block-sizes-weights-graph.component';
@@ -54,6 +55,7 @@ import { CommonModule } from '@angular/common';
GraphsComponent,
AccelerationFeesGraphComponent,
BlockFeesGraphComponent,
BlockFeesSubsidyGraphComponent,
BlockRewardsGraphComponent,
BlockFeeRatesGraphComponent,
BlockSizesWeightsGraphComponent,

View File

@@ -3,6 +3,7 @@ import { RouterModule, Routes } from '@angular/router';
import { BlockHealthGraphComponent } from '../components/block-health-graph/block-health-graph.component';
import { BlockFeeRatesGraphComponent } from '../components/block-fee-rates-graph/block-fee-rates-graph.component';
import { BlockFeesGraphComponent } from '../components/block-fees-graph/block-fees-graph.component';
import { BlockFeesSubsidyGraphComponent } from '../components/block-fees-subsidy-graph/block-fees-subsidy-graph.component';
import { BlockRewardsGraphComponent } from '../components/block-rewards-graph/block-rewards-graph.component';
import { BlockSizesWeightsGraphComponent } from '../components/block-sizes-weights-graph/block-sizes-weights-graph.component';
import { GraphsComponent } from '../components/graphs/graphs.component';
@@ -113,6 +114,11 @@ const routes: Routes = [
data: { networks: ['bitcoin'] },
component: BlockFeesGraphComponent,
},
{
path: 'mining/block-fees-subsidy',
data: { networks: ['bitcoin'] },
component: BlockFeesSubsidyGraphComponent,
},
{
path: 'mining/block-rewards',
data: { networks: ['bitcoin'] },