Three charts displaying displaying on-chain metrics.
The project uses browserify
to bundle the JavaScript and make it available for the front-end.
To start the project locally and re-run the bundling once code changes, navigate to the project directory and run the following commands:
npm install
npx watchify index.js -o bundle.js
Then visit file:///path/to/project/blockchain-charts/index.html?alchemyKey=yourAlchemyKeyGoesHere in your browser.
Chart displays the amount of transfers made per block for the LINK token on Ethereum Mainnet. The chart is initialized with 10 block lookback data and then updates once a new block is released.
Chart displays the base fee and gas used vs gas limit, for each block on Ethereum Mainnet. Gas used vs gas limit line displays the ratio of these two metrics, as percentage. The chart is initialized with 10 block lookback data and then updates once a new block is released.
If you take a look at the BASEFEE
and Gas used vs gas limit
charts you might notice that once the ratio of the gas used vs gas limit goes over 50% the next block's base fee will be increased.
On the other hand if the ratio is under 50% the next block's base fee will be reduced.