Fetch GasPrice from eth gas station
// 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; | |
} |
This comment has been minimized.
This comment has been minimized.
Haha. It's fixed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
You have a typo in😆
async
. People (not me of course) who copy paste without reading things over might get confused