-
Notifications
You must be signed in to change notification settings - Fork 540
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unify stats across relevant pages (#2561)
* Unify stats across relevant pages * add op stats to tx page and change stats titles * demo config * aboba or cat fix * chart tooltip fix * tests * revert config
- Loading branch information
Showing
32 changed files
with
746 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import type * as stats from '@blockscout/stats-types'; | ||
|
||
import { averageGasPrice } from './line'; | ||
|
||
export const base: stats.MainPageStats = { | ||
average_block_time: { | ||
id: 'averageBlockTime', | ||
value: '14.909090909090908', | ||
title: 'Average block time', | ||
units: 's', | ||
description: 'Average time taken in seconds for a block to be included in the blockchain', | ||
}, | ||
total_addresses: { | ||
id: 'totalAddresses', | ||
value: '113606435', | ||
title: 'Total addresses', | ||
description: 'Number of addresses that participated in the blockchain', | ||
}, | ||
total_blocks: { | ||
id: 'totalBlocks', | ||
value: '7660515', | ||
title: 'Total blocks', | ||
description: 'Number of blocks over all time', | ||
}, | ||
total_transactions: { | ||
id: 'totalTxns', | ||
value: '411264599', | ||
title: 'Total txns', | ||
description: 'All transactions including pending, dropped, replaced, failed transactions', | ||
}, | ||
yesterday_transactions: { | ||
id: 'yesterdayTxns', | ||
value: '213019', | ||
title: 'Yesterday txns', | ||
description: 'Number of transactions yesterday (0:00 - 23:59 UTC)', | ||
}, | ||
total_operational_transactions: { | ||
id: 'totalOperationalTxns', | ||
value: '403598877', | ||
title: 'Total operational txns', | ||
description: '\'Total txns\' without block creation transactions', | ||
}, | ||
yesterday_operational_transactions: { | ||
id: 'yesterdayOperationalTxns', | ||
value: '210852', | ||
title: 'Yesterday operational txns', | ||
description: 'Number of transactions yesterday (0:00 - 23:59 UTC) without block creation transactions', | ||
}, | ||
daily_new_transactions: { | ||
chart: averageGasPrice.chart, | ||
info: { | ||
id: 'newTxnsWindow', | ||
title: 'Daily transactions', | ||
description: 'The chart displays daily transactions for the past 30 days', | ||
resolutions: [ | ||
'DAY', | ||
], | ||
}, | ||
}, | ||
daily_new_operational_transactions: { | ||
chart: averageGasPrice.chart, | ||
info: { | ||
id: 'newOperationalTxnsWindow', | ||
title: 'Daily operational transactions', | ||
description: 'The chart displays daily transactions for the past 30 days (without block creation transactions)', | ||
resolutions: [ | ||
'DAY', | ||
], | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.