Skip to content

Commit

Permalink
Fix arb firstBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
prevostc committed Dec 21, 2024
1 parent 0a5d8a4 commit e256a66
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/check-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ async function main() {
}

const gql = `{
tokens(where: {balances_: {amount_lt: 0}}) {
tokens(where: {balances_: {rawAmount_lt: 0}}) {
id
}
}`
Expand All @@ -544,7 +544,7 @@ async function main() {
})

if (!result.ok) {
console.error(`Failed to fetch data from subgraph: ${result.statusText}`)
console.error(`Failed to fetch data from subgraph ${chain}: ${result.statusText}`)
console.error(await result.text())
continue
}
Expand Down
2 changes: 1 addition & 1 deletion config/arbitrum.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"indexerHintPrune": 20000000,
"shareTokenMintAddress": "0x0000000000000000000000000000000000000000",
"burnAddress": "0x000000000000000000000000000000000000dead",
"firstBlock": 100410105,
"firstBlock": 1365253,

"clmManagerFactoryAddress": "0xD41Ce2c0a0596635FC09BDe2C35946a984b8cB7A",
"clmManagerFactoryStartBlock": 219696027,
Expand Down
1 change: 0 additions & 1 deletion data/arbitrum_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"0x9b40e357937bce323b1eb3832173b3d028520708",
"0x9dbbbaecacedf53d5caa295b8293c1def2055adc",
"0x9e75f8298e458b76382870982788988a0799195b",
"0xaf570c4bcc42fe7f62e969bb147a639d74d2dad4",
"0xb1bfc21bee2b2dda4728481dbf52edc3b9f5fb79",
"0xb8ff233d024277b0e188a478c18e9263330a1b51",
"0xba5041b1c06e8c9cfb5ddb4b82bdc52e41ea5fc5",
Expand Down

0 comments on commit e256a66

Please sign in to comment.