import React, { useState, useEffect, useContext, useMemo, useCallback, } from "react"; import { ethers } from "ethers"; import { Line } from "react-chartjs-2"; import { ChartData, ChartOptions } from "chart.js"; import { Transition } from "@headlessui/react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faBurn, faCoins, faCube, faGasPump, faHistory, } from "@fortawesome/free-solid-svg-icons"; import BlockRow from "./BlockRow"; import { ExtendedBlock, readBlock } from "../../useErigonHooks"; import { RuntimeContext } from "../../useRuntime"; const MAX_BLOCK_HISTORY = 20; const PREV_BLOCK_COUNT = 15; const options: ChartOptions = { animation: false, plugins: { legend: { display: false, }, }, scales: { x: { ticks: { callback: function (v) { // @ts-ignore return ethers.utils.commify(this.getLabelForValue(v)); }, }, }, y: { beginAtZero: true, title: { display: true, text: "Burnt fees", }, ticks: { callback: (v) => `${v} Gwei`, }, }, }, }; type BlocksProps = { latestBlock: ethers.providers.Block; targetBlockNumber: number; }; const Blocks: React.FC = ({ latestBlock, targetBlockNumber }) => { const { provider } = useContext(RuntimeContext); const [blocks, setBlocks] = useState([]); const [now, setNow] = useState(Date.now()); const addBlock = useCallback( async (blockNumber: number) => { if (!provider) { return; } // Skip blocks before the hard fork during the transition if (blockNumber < targetBlockNumber) { return; } const extBlock = await readBlock(provider, blockNumber.toString()); setNow(Date.now()); setBlocks((_blocks) => { if (_blocks.length > 0 && blockNumber === _blocks[0].number) { return _blocks; } // Leave the last block because of transition animation const newBlocks = [extBlock, ..._blocks].slice( 0, MAX_BLOCK_HISTORY + 1 ); // Little hack to fix out of order block notifications newBlocks.sort((a, b) => b.number - a.number); return newBlocks; }); }, [provider, targetBlockNumber] ); useEffect(() => { addBlock(latestBlock.number); }, [addBlock, latestBlock]); const data: ChartData = useMemo(() => { return { labels: blocks.map((b) => b.number.toString()).reverse(), datasets: [ { label: "Burnt fees (Gwei)", data: blocks .map((b) => b.gasUsed.mul(b.baseFeePerGas!).toNumber() / 1e9) .reverse(), fill: true, backgroundColor: "#FDBA74", borderColor: "#F97316", tension: 0.2, }, ], }; }, [blocks]); // On page reload, pre-populate the last N blocks useEffect( () => { const addPreviousBlocks = async () => { for ( let i = latestBlock.number - PREV_BLOCK_COUNT; i < latestBlock.number; i++ ) { await addBlock(i); } }; addPreviousBlocks(); }, // eslint-disable-next-line react-hooks/exhaustive-deps [] ); return (
EIP-1559 is activated. Watch the fees burn.
Block
Gas used
Gas target
Base fee
Rewards
Burnt fees
Age
{blocks.map((b, i) => ( ))}
); }; export default React.memo(Blocks);