Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
89a69519b2 | ||
|
|
3fce50efbb | ||
|
|
9b0c229ace | ||
|
|
a508e41652 | ||
|
|
bb58318b6f | ||
|
|
32c256bc4e | ||
|
|
efd3cb3c7c | ||
|
|
88a757bb45 | ||
|
|
c30c7aed63 |
23
README.md
23
README.md
@@ -2,6 +2,10 @@
|
||||
|
||||
A library that has a collection of onchain and offchain gas price oracle URLs
|
||||
|
||||
## Supported networks
|
||||
|
||||
### Ethereum Mainnet
|
||||
|
||||
Current offchain list:
|
||||
|
||||
- https://ethgasstation.info/json/ethgasAPI.json
|
||||
@@ -14,6 +18,18 @@ Current onchain list:
|
||||
|
||||
- [chainlink](https://etherscan.io/address/0x169e633a2d1e6c10dd91238ba11c4a708dfef37c#readContract)
|
||||
|
||||
### Binance Smart Chain
|
||||
|
||||
Current offchain list:
|
||||
|
||||
- https://bscgas.info/
|
||||
|
||||
### Polygon (Matic) Network
|
||||
|
||||
Current offchain list:
|
||||
|
||||
- https://gasstation-mainnet.matic.network/
|
||||
|
||||
## Installation
|
||||
|
||||
`npm i gas-price-oracle`
|
||||
@@ -30,8 +46,15 @@ const { GasPriceOracle } = require('gas-price-oracle');
|
||||
|
||||
```js
|
||||
const options = {
|
||||
chainId: 1,
|
||||
defaultRpc: 'https://api.mycryptoapi.com/eth',
|
||||
timeout: 10000,
|
||||
defaultFallbackGasPrices: {
|
||||
instant: 28,
|
||||
fast: 22,
|
||||
standard: 17,
|
||||
low: 11,
|
||||
},
|
||||
};
|
||||
const oracle = new GasPriceOracle(options);
|
||||
// optional fallbackGasPrices
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gas-price-oracle",
|
||||
"version": "0.2.2",
|
||||
"version": "0.3.4",
|
||||
"description": "Gas Price Oracle library for Ethereum dApps.",
|
||||
"main": "lib/index.js",
|
||||
"homepage": "https://github.com/peppersec/gas-price-oracle",
|
||||
|
||||
23
src/config/binance.ts
Normal file
23
src/config/binance.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { OffChainOracle, OffChainOracles, OnChainOracles } from '../types';
|
||||
|
||||
const bscgas: OffChainOracle = {
|
||||
name: 'bscgas',
|
||||
url: 'https://bscgas.info/gas',
|
||||
instantPropertyName: 'instant',
|
||||
fastPropertyName: 'fast',
|
||||
standardPropertyName: 'standard',
|
||||
lowPropertyName: 'slow',
|
||||
denominator: 1,
|
||||
additionalDataProperty: null,
|
||||
};
|
||||
|
||||
export const offChainOracles: OffChainOracles = {
|
||||
bscgas,
|
||||
};
|
||||
|
||||
export const onChainOracles: OnChainOracles = {};
|
||||
|
||||
export default {
|
||||
offChainOracles,
|
||||
onChainOracles,
|
||||
};
|
||||
16
src/config/index.ts
Normal file
16
src/config/index.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { NetworkConfig } from '../types';
|
||||
import mainnetOracles from './mainnet';
|
||||
import binanceOracles from './binance';
|
||||
import polygonOracles from './polygon';
|
||||
|
||||
export enum ChainId {
|
||||
MAINNET = 1,
|
||||
BINANCE = 56,
|
||||
POLYGON = 137,
|
||||
}
|
||||
|
||||
export const networks: NetworkConfig = {
|
||||
[ChainId.MAINNET]: mainnetOracles,
|
||||
[ChainId.BINANCE]: binanceOracles,
|
||||
[ChainId.POLYGON]: polygonOracles,
|
||||
};
|
||||
@@ -1,4 +1,4 @@
|
||||
import { OffChainOracle, OnChainOracle } from './types';
|
||||
import { OffChainOracle, OnChainOracle, OffChainOracles, OnChainOracles } from '../types';
|
||||
|
||||
const ethgasstation: OffChainOracle = {
|
||||
name: 'ethgasstation',
|
||||
@@ -11,16 +11,16 @@ const ethgasstation: OffChainOracle = {
|
||||
additionalDataProperty: null,
|
||||
};
|
||||
|
||||
const zoltu: OffChainOracle = {
|
||||
name: 'zoltu',
|
||||
url: 'https://gas-oracle.zoltu.io/',
|
||||
instantPropertyName: 'percentile_99',
|
||||
fastPropertyName: 'percentile_90',
|
||||
standardPropertyName: 'percentile_60',
|
||||
lowPropertyName: 'percentile_30',
|
||||
denominator: 1,
|
||||
additionalDataProperty: null,
|
||||
};
|
||||
// const zoltu: OffChainOracle = {
|
||||
// name: 'zoltu',
|
||||
// url: 'https://gas-oracle.zoltu.io/',
|
||||
// instantPropertyName: 'percentile_99',
|
||||
// fastPropertyName: 'percentile_90',
|
||||
// standardPropertyName: 'percentile_60',
|
||||
// lowPropertyName: 'percentile_30',
|
||||
// denominator: 1,
|
||||
// additionalDataProperty: null,
|
||||
// };
|
||||
|
||||
const etherchain: OffChainOracle = {
|
||||
name: 'etherchain',
|
||||
@@ -73,16 +73,16 @@ const chainlink: OnChainOracle = {
|
||||
denominator: '1000000000',
|
||||
};
|
||||
|
||||
export const offChainOracles: { [key: string]: OffChainOracle } = {
|
||||
export const offChainOracles: OffChainOracles = {
|
||||
ethgasstation,
|
||||
anyblock,
|
||||
gasNow,
|
||||
poa,
|
||||
etherchain,
|
||||
zoltu,
|
||||
// zoltu,
|
||||
};
|
||||
|
||||
export const onChainOracles: { [key: string]: OnChainOracle } = {
|
||||
export const onChainOracles: OnChainOracles = {
|
||||
chainlink,
|
||||
};
|
||||
|
||||
23
src/config/polygon.ts
Normal file
23
src/config/polygon.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { OffChainOracle, OffChainOracles, OnChainOracles } from '../types';
|
||||
|
||||
const maticGasStation: OffChainOracle = {
|
||||
name: 'maticGasStation',
|
||||
url: 'https://gasstation-mainnet.matic.network',
|
||||
instantPropertyName: 'fastest',
|
||||
fastPropertyName: 'fast',
|
||||
standardPropertyName: 'standard',
|
||||
lowPropertyName: 'safeLow',
|
||||
denominator: 1,
|
||||
additionalDataProperty: null,
|
||||
};
|
||||
|
||||
export const offChainOracles: OffChainOracles = {
|
||||
maticGasStation,
|
||||
};
|
||||
|
||||
export const onChainOracles: OnChainOracles = {};
|
||||
|
||||
export default {
|
||||
offChainOracles,
|
||||
onChainOracles,
|
||||
};
|
||||
42
src/index.ts
42
src/index.ts
@@ -1,21 +1,46 @@
|
||||
import axios from 'axios';
|
||||
import config from './config';
|
||||
import { GasPrice, OffChainOracle, OnChainOracle, Config, GasPriceKey, Options } from './types';
|
||||
import { ChainId, networks } from './config';
|
||||
import {
|
||||
Config,
|
||||
Options,
|
||||
GasPrice,
|
||||
GasPriceKey,
|
||||
OffChainOracle,
|
||||
OnChainOracle,
|
||||
OnChainOracles,
|
||||
OffChainOracles,
|
||||
} from './types';
|
||||
import BigNumber from 'bignumber.js';
|
||||
|
||||
const defaultFastGas = 22;
|
||||
export class GasPriceOracle {
|
||||
lastGasPrice: GasPrice;
|
||||
offChainOracles = { ...config.offChainOracles };
|
||||
onChainOracles = { ...config.onChainOracles };
|
||||
offChainOracles: OffChainOracles;
|
||||
onChainOracles: OnChainOracles;
|
||||
configuration: Config = {
|
||||
chainId: ChainId.MAINNET,
|
||||
defaultRpc: 'https://api.mycryptoapi.com/eth',
|
||||
timeout: 10000,
|
||||
defaultFallbackGasPrices: {
|
||||
instant: defaultFastGas * 1.3,
|
||||
fast: defaultFastGas,
|
||||
standard: defaultFastGas * 0.85,
|
||||
low: defaultFastGas * 0.5,
|
||||
},
|
||||
};
|
||||
|
||||
constructor(options?: Options) {
|
||||
if (options) {
|
||||
Object.assign(this.configuration, options);
|
||||
}
|
||||
|
||||
const network = networks[this.configuration.chainId];
|
||||
|
||||
if (network) {
|
||||
const { offChainOracles, onChainOracles } = network;
|
||||
this.offChainOracles = { ...offChainOracles };
|
||||
this.onChainOracles = { ...onChainOracles };
|
||||
}
|
||||
}
|
||||
|
||||
async askOracle(oracle: OffChainOracle): Promise<GasPrice> {
|
||||
@@ -161,14 +186,7 @@ export class GasPriceOracle {
|
||||
}
|
||||
|
||||
async gasPrices(fallbackGasPrices?: GasPrice, median = true): Promise<GasPrice> {
|
||||
const defaultFastGas = 22;
|
||||
const defaultFallbackGasPrices = {
|
||||
instant: defaultFastGas * 1.3,
|
||||
fast: defaultFastGas,
|
||||
standard: defaultFastGas * 0.85,
|
||||
low: defaultFastGas * 0.5,
|
||||
};
|
||||
this.lastGasPrice = this.lastGasPrice || fallbackGasPrices || defaultFallbackGasPrices;
|
||||
this.lastGasPrice = this.lastGasPrice || fallbackGasPrices || this.configuration.defaultFallbackGasPrices;
|
||||
try {
|
||||
this.lastGasPrice = median
|
||||
? await this.fetchMedianGasPriceOffChain()
|
||||
|
||||
15
src/types.ts
15
src/types.ts
@@ -9,6 +9,8 @@ export type OffChainOracle = {
|
||||
additionalDataProperty: string | null;
|
||||
};
|
||||
|
||||
export type OffChainOracles = { [key: string]: OffChainOracle };
|
||||
|
||||
export type OnChainOracle = {
|
||||
name: string;
|
||||
rpc?: string;
|
||||
@@ -17,6 +19,13 @@ export type OnChainOracle = {
|
||||
denominator: string;
|
||||
};
|
||||
|
||||
export type OnChainOracles = { [key: string]: OnChainOracle };
|
||||
|
||||
export type AllOracles = {
|
||||
offChainOracles: OffChainOracles;
|
||||
onChainOracles: OnChainOracles;
|
||||
};
|
||||
|
||||
export type GasPrice = {
|
||||
[key in GasPriceKey]: number;
|
||||
};
|
||||
@@ -24,8 +33,14 @@ export type GasPrice = {
|
||||
export type GasPriceKey = 'instant' | 'fast' | 'standard' | 'low';
|
||||
|
||||
export type Options = {
|
||||
chainId?: number;
|
||||
defaultRpc?: string;
|
||||
timeout?: number;
|
||||
defaultFallbackGasPrices?: GasPrice;
|
||||
};
|
||||
|
||||
export type Config = Required<Options>;
|
||||
|
||||
export type NetworkConfig = {
|
||||
[key in number]: AllOracles;
|
||||
};
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
import { GasPrice, OffChainOracle } from '../src/types';
|
||||
import mockery from 'mockery';
|
||||
import chai from 'chai';
|
||||
import { onChainOracles, offChainOracles } from '../src/config';
|
||||
|
||||
import { GasPriceOracle } from '../src/index';
|
||||
chai.use(require('chai-as-promised'));
|
||||
chai.should();
|
||||
let oracle = new GasPriceOracle();
|
||||
let { onChainOracles, offChainOracles } = oracle;
|
||||
|
||||
before('before', function () {
|
||||
const axiosMock = {
|
||||
@@ -24,6 +24,7 @@ before('before', function () {
|
||||
|
||||
beforeEach('beforeEach', function () {
|
||||
oracle = new GasPriceOracle();
|
||||
({ onChainOracles, offChainOracles } = oracle);
|
||||
});
|
||||
|
||||
describe('constructor', function () {
|
||||
|
||||
Reference in New Issue
Block a user