Skip to content

Commit

Permalink
watcher: update some of the EVM chain's batch sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
panoel committed Sep 11, 2024
1 parent 4d3216d commit 9d5c630
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion watcher/src/watchers/EVMWatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@ export class EVMWatcher extends Watcher {
this.finalizedBlockTag = finalizedBlockTag;
if (chain === 'Acala' || chain === 'Karura' || chain === 'Berachain') {
this.maximumBatchSize = 50;
} else if (chain === 'Snaxchain' || chain === 'Klaytn') {
} else if (
chain === 'Blast' ||
chain === 'Klaytn' ||
chain === 'Scroll' ||
chain === 'Snaxchain' ||
chain === 'Xlayer'
) {
this.maximumBatchSize = 10;
}
}
Expand Down

0 comments on commit 9d5c630

Please sign in to comment.