From 0809fe7e59be4b1cee9718373602ee574e9be882 Mon Sep 17 00:00:00 2001 From: g1nt0ki <99907941+g1nt0ki@users.noreply.github.com> Date: Thu, 6 Nov 2025 11:43:05 +0100 Subject: [PATCH] slowdown justswap --- projects/justSwap/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/justSwap/index.js b/projects/justSwap/index.js index 73c161582..e06105703 100644 --- a/projects/justSwap/index.js +++ b/projects/justSwap/index.js @@ -35,7 +35,7 @@ async function tvl(api) { } const multicallContract = 'TEazPvZwDjDtFeJupyo7QunvnrnUjPH8ED' - const chunks = sliceIntoChunks(allPairs, 200) + const chunks = sliceIntoChunks(allPairs, 100) const chunkCount = chunks.length console.log(`Processing ${chunkCount} chunks of calls to get TRX balance`) @@ -45,6 +45,6 @@ async function tvl(api) { api.addGasToken(trxBalance) api.addGasToken(trxBalance) // adding twice to add token balance on the LP console.log(`Processed chunk ${chunks.indexOf(calls) + 1} of ${chunkCount}`) - await sleep(1500) + await sleep(4500) } } \ No newline at end of file