dkg.js 8.0.0 → 8.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constants.js +5 -1
- package/dist/dkg.min.js +1 -1
- package/index.cjs +12 -8
- package/package.json +1 -1
- package/services/blockchain-service/blockchain-service-base.js +12 -8
package/constants.js
CHANGED
|
@@ -78,7 +78,7 @@ export const BLOCKCHAINS = {
|
|
|
78
78
|
'gnosis:100': {
|
|
79
79
|
hubContract: '0x882D0BF07F956b1b94BBfe9E77F47c6fc7D4EC8f',
|
|
80
80
|
rpc: 'https://rpc.gnosischain.com/',
|
|
81
|
-
gasPriceOracleLink: 'https://
|
|
81
|
+
gasPriceOracleLink: 'https://blockscout.com/xdai/mainnet/api/v1/gas-price-oracle',
|
|
82
82
|
},
|
|
83
83
|
},
|
|
84
84
|
};
|
|
@@ -254,6 +254,10 @@ export const DEFAULT_GAS_PRICE = {
|
|
|
254
254
|
OTP: '1',
|
|
255
255
|
};
|
|
256
256
|
|
|
257
|
+
export const DEFAULT_GAS_PRICE_GWEI = {
|
|
258
|
+
GNOSIS: '3500000000',
|
|
259
|
+
};
|
|
260
|
+
|
|
257
261
|
export const LOW_BID_SUGGESTION = 'low';
|
|
258
262
|
export const MED_BID_SUGGESTION = 'med';
|
|
259
263
|
export const HIGH_BID_SUGGESTION = 'high';
|