Gas Price Oracle library for Ethereum dApps
Go to file
2020-06-02 15:46:03 +03:00
.vscode init 2020-05-27 18:52:57 +03:00
src 0.1.0 version 2020-06-02 15:46:03 +03:00
tests 0.1.0 version 2020-06-02 15:46:03 +03:00
.editiorconfig init 2020-05-27 18:52:57 +03:00
.gitignore init 2020-05-27 18:52:57 +03:00
package-lock.json onchain oracle support 2020-06-01 17:29:58 +03:00
package.json 0.1.0 version 2020-06-02 15:46:03 +03:00
README.md init 2020-05-27 18:52:57 +03:00
tsconfig.json init 2020-05-27 18:52:57 +03:00
tslint.json onchain oracle support 2020-06-01 17:29:58 +03:00

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