gas-price-oracle/README.md
2020-05-27 18:52:57 +03:00

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)
});