@helium/spl-utils 0.9.24-alpha.0 → 0.10.0-alpha.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/lib/cjs/fetchBackwardsCompatibleIdl.js +1 -1
- package/lib/cjs/fetchBackwardsCompatibleIdl.js.map +1 -1
- package/lib/cjs/idl/circuit_breaker.json +388 -210
- package/lib/cjs/idl/data_credits.json +1847 -673
- package/lib/cjs/idl/fanout.json +1123 -328
- package/lib/cjs/idl/helium_entity_manager.json +4611 -2523
- package/lib/cjs/idl/helium_sub_daos.json +3863 -1971
- package/lib/cjs/idl/hexboosting.json +853 -282
- package/lib/cjs/idl/lazy_distributor.json +1640 -736
- package/lib/cjs/idl/lazy_transactions.json +341 -237
- package/lib/cjs/idl/mobile_entity_manager.json +2016 -602
- package/lib/cjs/idl/no_emit.json +168 -34
- package/lib/cjs/idl/price_oracle.json +179 -118
- package/lib/cjs/idl/rewards_oracle.json +374 -61
- package/lib/cjs/idl/treasury_management.json +495 -187
- package/lib/cjs/idl/voter_stake_registry.json +2955 -1339
- package/lib/cjs/transaction.js +1 -1
- package/lib/esm/src/fetchBackwardsCompatibleIdl.js +1 -1
- package/lib/esm/src/fetchBackwardsCompatibleIdl.js.map +1 -1
- package/lib/esm/src/idl/circuit_breaker.json +388 -210
- package/lib/esm/src/idl/data_credits.json +1847 -673
- package/lib/esm/src/idl/fanout.json +1123 -328
- package/lib/esm/src/idl/helium_entity_manager.json +4611 -2523
- package/lib/esm/src/idl/helium_sub_daos.json +3863 -1971
- package/lib/esm/src/idl/hexboosting.json +853 -282
- package/lib/esm/src/idl/lazy_distributor.json +1640 -736
- package/lib/esm/src/idl/lazy_transactions.json +341 -237
- package/lib/esm/src/idl/mobile_entity_manager.json +2016 -602
- package/lib/esm/src/idl/no_emit.json +168 -34
- package/lib/esm/src/idl/price_oracle.json +179 -118
- package/lib/esm/src/idl/rewards_oracle.json +374 -61
- package/lib/esm/src/idl/treasury_management.json +495 -187
- package/lib/esm/src/idl/voter_stake_registry.json +2955 -1339
- package/lib/esm/src/transaction.js +1 -1
- package/lib/esm/tsconfig.esm.tsbuildinfo +1 -1
- package/package.json +5 -5
|
@@ -257,7 +257,7 @@ async function withRetries(tries, input) {
|
|
|
257
257
|
}
|
|
258
258
|
throw new Error("Failed after retries");
|
|
259
259
|
}
|
|
260
|
-
const TX_BATCH_SIZE =
|
|
260
|
+
const TX_BATCH_SIZE = 100;
|
|
261
261
|
export async function bulkSendTransactions(provider, txs, onProgress, triesRemaining = 10, // Number of blockhashes to try resending txs with before giving up
|
|
262
262
|
extraSigners = [], maxSignatureBatch = TX_BATCH_SIZE) {
|
|
263
263
|
let ret = [];
|