dkg.js 6.2.1 → 6.3.0
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 +4 -4
- package/dist/dkg.min.js +1 -1
- package/package.json +1 -1
package/constants.js
CHANGED
|
@@ -163,17 +163,17 @@ const OPERATIONS_STEP_STATUS = {
|
|
|
163
163
|
const DEFAULT_GET_LOCAL_STORE_RESULT_FREQUENCY = 0.5;
|
|
164
164
|
|
|
165
165
|
const DEFAULT_PROXIMITY_SCORE_FUNCTIONS_PAIR_IDS = {
|
|
166
|
-
development: { 'hardhat1:31337':
|
|
166
|
+
development: { 'hardhat1:31337': 2, 'hardhat2:31337': 2, 'otp:2043': 2 },
|
|
167
167
|
devnet: {
|
|
168
|
-
'otp:2160':
|
|
168
|
+
'otp:2160': 2,
|
|
169
169
|
'gnosis:10200': 2,
|
|
170
170
|
},
|
|
171
171
|
testnet: {
|
|
172
|
-
'otp:20430':
|
|
172
|
+
'otp:20430': 2,
|
|
173
173
|
'gnosis:10200': 2,
|
|
174
174
|
},
|
|
175
175
|
mainnet: {
|
|
176
|
-
'otp:2043':
|
|
176
|
+
'otp:2043': 2,
|
|
177
177
|
'gnosis:100': 2,
|
|
178
178
|
},
|
|
179
179
|
};
|