You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/indexer-agent/src/commands/start.ts
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -348,6 +348,12 @@ export const start = {
348
348
default: 1,
349
349
group: 'Indexer Infrastructure',
350
350
})
351
+
.option('auto-allocation-max-batch-size',{
352
+
description: `Maximum number of allocation transactions inside a batch for auto allocation management. Limits the number of actions processed per batch to prevent multicall failures when there are many allocations. Remaining actions will be processed in subsequent batches.`,
353
+
type: 'number',
354
+
required: false,
355
+
group: 'Indexer Infrastructure',
356
+
})
351
357
.check(argv=>{
352
358
if(
353
359
!argv['network-subgraph-endpoint']&&
@@ -408,6 +414,7 @@ export async function createNetworkSpecification(
0 commit comments