266 B
266 B
Gas Price Oracle library for Ethereum dApps
Instalation
npm i gas-price-oracle
Usage
const { GasPriceOracle } = require('gas-price-oracle');
const oracle = new GasPriceOracle();
oracle.fetchGasPrices().then((gas) => {
console.log(gas)
});