Skip to content

Commit a6620d0

Browse files
committed
chore: Increase Starknet indexer's starting block offset from 5000 to 10000.
1 parent 50041f4 commit a6620d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

the_last_indexer/indexers/paymesh-starknet.indexer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ export default function (runtimeConfig: ApibaraRuntimeConfig) {
3737

3838
console.log("Crowd Funding Cache: ", crowd_funding_cache);
3939
console.log("Group Cache: ", group_cache);
40-
console.log("starting block ", startingBlock - 5000);
40+
console.log("starting block ", startingBlock - 10000);
4141
return defineIndexer(StarknetStream)({
4242
streamUrl: crowdfundingConfig.streamUrl || groupConfig.streamUrl,
4343
finality: "accepted",
44-
startingBlock: BigInt(startingBlock - 5000),
44+
startingBlock: BigInt(startingBlock - 10000),
4545
filter: {
4646
events: [
4747
{

0 commit comments

Comments
 (0)