Skip to content

Version 0.1.1

Compare
Choose a tag to compare
@pertsev pertsev released this 02 Jun 13:32
· 51 commits to master since this release

Gas Price Oracle library for Ethereum dApps

const { GasPriceOracle } = require('gas-price-oracle');
const oracle = new GasPriceOracle();

oracle.gasPrices().then((gas) => {
    console.log(gas)
});