dkg.js 6.5.2 → 6.5.3

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 CHANGED
@@ -197,6 +197,14 @@ const DEFAULT_PROXIMITY_SCORE_FUNCTIONS_PAIR_IDS = {
197
197
  },
198
198
  };
199
199
 
200
+ const DEFAULT_NEUROWEB_FINALITY_PARAMETERS = {
201
+ WAIT_NEUROWEB_TX_FINALIZATION: false,
202
+ TX_FINALITY_POLLING_INTERVAL: 6_000,
203
+ TX_FINALITY_MAX_WAIT_TIME: 60_000,
204
+ TX_REMINING_POLLING_INTERVAL: 6_000,
205
+ TX_REMINING_MAX_WAIT_TIME: 60_000,
206
+ };
207
+
200
208
  const DEFAULT_PARAMETERS = {
201
209
  ENVIRONMENT: 'mainnet',
202
210
  PORT: 8900,
@@ -257,6 +265,7 @@ module.exports = {
257
265
  OPERATIONS_STEP_STATUS,
258
266
  DEFAULT_GET_LOCAL_STORE_RESULT_FREQUENCY,
259
267
  DEFAULT_PROXIMITY_SCORE_FUNCTIONS_PAIR_IDS,
268
+ DEFAULT_NEUROWEB_FINALITY_PARAMETERS,
260
269
  DEFAULT_PARAMETERS,
261
270
  DEFAULT_GAS_PRICE,
262
271
  LOW_BID_SUGGESTION,