Skip to content

Commit

Permalink
chore: reduce chunk size
Browse files Browse the repository at this point in the history
  • Loading branch information
chefjackson committed Apr 29, 2024
1 parent 3a78ca0 commit 7bba4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/getTokensChainData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const getTokensChainData = async (listName: string, addressArray?: string[], cha
return [];
}

const chunkSize = 200;
const chunkSize = 150;
const chunkArray = tokens.length >= chunkSize ? _.chunk(tokens, chunkSize) : [tokens];

const tokensWithChainData = [];
Expand Down

0 comments on commit 7bba4a7

Please sign in to comment.