dkg.js 8.2.0 → 8.2.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/constants.js +3 -0
- package/dist/dkg.min.js +1 -1
- package/index.cjs +193 -44
- package/package.json +2 -1
- package/services/blockchain-service/blockchain-service-base.js +172 -45
- package/services/input-service.js +19 -0
package/constants/constants.js
CHANGED
|
@@ -219,6 +219,7 @@ export const DEFAULT_PARAMETERS = {
|
|
|
219
219
|
SIMULATE_TXS: false,
|
|
220
220
|
FORCE_REPLACE_TXS: false,
|
|
221
221
|
GAS_LIMIT_MULTIPLIER: 1,
|
|
222
|
+
RETRY_TX_GAS_PRICE_MULTIPLIER: 3,
|
|
222
223
|
};
|
|
223
224
|
|
|
224
225
|
export const DEFAULT_GAS_PRICE = {
|
|
@@ -236,3 +237,5 @@ export const PARANET_KNOWLEDGE_ASSET_ACCESS_POLICY = {
|
|
|
236
237
|
};
|
|
237
238
|
|
|
238
239
|
export const CHUNK_BYTE_SIZE = 32;
|
|
240
|
+
|
|
241
|
+
export const FEE_HISTORY_BLOCK_COUNT = 5;
|