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

15 lines
266 B
Markdown

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