We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d15038b commit da1f463Copy full SHA for da1f463
projects/helper/cache/vestingHelper.js
@@ -16,7 +16,7 @@ async function vestingHelper({
16
tokens = getUniqueAddresses(tokens)
17
blacklist = getUniqueAddresses(blacklist)
18
tokens = tokens.filter(t => !blacklist.includes(t))
19
- const chunkSize = chain === 'polygon' ? 250 : 2000 // polygon has a lower gas limit
+ const chunkSize = chain === 'polygon' ? 250 : chain === 'bsc' ? 15000 : 2000 // polygon has a lower gas limit
20
const chunks = sliceIntoChunks(tokens, chunkSize)
21
const finalBalances = {}
22
for (let i = 0; i < chunks.length; i++) {
0 commit comments