dkg.js 8.0.1 → 8.0.2
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 -4
- package/dist/dkg.min.js +1 -1
- package/index.cjs +23 -18
- package/package.json +1 -1
- package/services/blockchain-service/blockchain-service-base.js +19 -15
package/constants.js
CHANGED
|
@@ -250,12 +250,13 @@ export const DEFAULT_PARAMETERS = {
|
|
|
250
250
|
};
|
|
251
251
|
|
|
252
252
|
export const DEFAULT_GAS_PRICE = {
|
|
253
|
-
GNOSIS: '
|
|
254
|
-
OTP: '
|
|
253
|
+
GNOSIS: '6',
|
|
254
|
+
OTP: '0.001',
|
|
255
|
+
BASE: '0.086',
|
|
255
256
|
};
|
|
256
257
|
|
|
257
|
-
export const
|
|
258
|
-
GNOSIS: '
|
|
258
|
+
export const DEFAULT_GAS_PRICE_WEI = {
|
|
259
|
+
GNOSIS: '6000000000',
|
|
259
260
|
};
|
|
260
261
|
|
|
261
262
|
export const LOW_BID_SUGGESTION = 'low';
|