Add block sizes and weights graph

This commit is contained in:
nymkappa
2022-05-10 16:40:56 +02:00
parent 19e432ecd1
commit 101ba351a8
10 changed files with 546 additions and 7 deletions

View File

@@ -35,6 +35,7 @@ import { BlocksList } from './components/blocks-list/blocks-list.component';
import { BlockFeesGraphComponent } from './components/block-fees-graph/block-fees-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';
let routes: Routes = [
{
@@ -131,6 +132,10 @@ let routes: Routes = [
path: 'mining/block-fee-rates',
component: BlockFeeRatesGraphComponent,
},
{
path: 'mining/block-sizes-weights',
component: BlockSizesWeightsGraphComponent,
},
],
},
{
@@ -261,6 +266,10 @@ let routes: Routes = [
path: 'mining/block-fee-rates',
component: BlockFeeRatesGraphComponent,
},
{
path: 'mining/block-sizes-weights',
component: BlockSizesWeightsGraphComponent,
},
]
},
{
@@ -389,6 +398,10 @@ let routes: Routes = [
path: 'mining/block-fee-rates',
component: BlockFeeRatesGraphComponent,
},
{
path: 'mining/block-sizes-weights',
component: BlockSizesWeightsGraphComponent,
},
]
},
{