Last active
March 23, 2024 13:18
-
-
Save thrilok209/8b19dbd8d46b2805ab8bb8973611aea2 to your computer and use it in GitHub Desktop.
Fetch GasPrice from eth gas station
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
// in nodeJs | |
const axios = require('axios') | |
async function getCurrentGasPrices() { | |
let response = await axios.get('https://ethgasstation.info/json/ethgasAPI.json') | |
let prices = { | |
low: response.data.safeLow / 10, | |
medium: response.data.average / 10, | |
high: response.data.fast / 10 | |
} | |
console.log(`Current ETH Gas Prices (in GWEI):`) | |
console.log(`Low: ${prices.low} (transaction completes in < 30 minutes)`) | |
console.log(`Standard: ${prices.medium} (transaction completes in < 5 minutes)`) | |
console.log(`Fast: ${prices.high} (transaction completes in < 2 minutes)`) | |
return prices; | |
} |
You have a typo in
async
. People (not me of course) who copy paste without reading things over might get confused
Haha. It's fixed
https://ethgasstation.info/ was closed. Do you know an altarnative ?
Can use defisaver.com, been using this on my CLI
.gas is aliased to `curl https://app.defisaver.com/api/gas-price/current | jq'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You have a typo in
async
. People (not me of course) who copy paste without reading things over might get confused 😆