Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vnegi10/eth_gas_analysis
https://github.com/vnegi10/eth_gas_analysis
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/vnegi10/eth_gas_analysis
- Owner: vnegi10
- Created: 2023-05-20T18:00:05.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-05-20T18:00:07.000Z (over 1 year ago)
- Last Synced: 2024-11-29T03:13:02.937Z (about 1 month ago)
- Language: Julia
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ETH_gas_analysis
In this Pluto notebook, we will visualize the variation in the base gas fee w.r.t. time
for a given number of blocks within the Ethereum network. Block data is retrieved from
[Infura](https://docs.infura.io/infura/getting-started) using their free API. Rate limit
for the free tier is set to 100,000 requests per day.## API key
You will need to create an API key. It can be done for
free on the [Infura dashboard.](https://infura.io/dashboard)## How to use?
Install Pluto.jl (if not done already) by executing the following commands in your Julia REPL:
using Pkg
Pkg.add("Pluto")
using Pluto
Pluto.run()Clone this repository and open **ETH_gas_notebook.jl** in your Pluto browser window. That's it!
You are good to go.