import React, { useState, useEffect, useContext, useMemo } 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, } from "@fortawesome/free-solid-svg-icons"; import BlockRecord from "./BlockRecord"; import { ExtendedBlock, readBlock } from "../useErigonHooks"; import { RuntimeContext } from "../useRuntime"; const MAX_BLOCK_HISTORY = 20; 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; }; const Blocks: React.FC = ({ latestBlock }) => { const { provider } = useContext(RuntimeContext); const [blocks, setBlock] = useState([]); const [now, setNow] = useState(Date.now()); useEffect(() => { if (!provider) { return; } const _readBlock = async () => { const extBlock = await readBlock(provider, latestBlock.number.toString()); setNow(Date.now()); setBlock((_blocks) => { if (_blocks.length > 0 && latestBlock.number === _blocks[0].number) { return _blocks; } return [extBlock, ..._blocks].slice(0, MAX_BLOCK_HISTORY + 1); }); }; _readBlock(); }, [provider, 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]); return (
Block
Gas used
Gas target
Base fee
Rewards
Burnt fees
Age
{blocks.map((b, i) => ( ))}
); }; export default React.memo(Blocks);