Skip to content

Commit e256a66

Browse files
committed
Fix arb firstBlock
1 parent 0a5d8a4 commit e256a66

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

bin/check-config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ async function main() {
530530
}
531531

532532
const gql = `{
533-
tokens(where: {balances_: {amount_lt: 0}}) {
533+
tokens(where: {balances_: {rawAmount_lt: 0}}) {
534534
id
535535
}
536536
}`
@@ -544,7 +544,7 @@ async function main() {
544544
})
545545

546546
if (!result.ok) {
547-
console.error(`Failed to fetch data from subgraph: ${result.statusText}`)
547+
console.error(`Failed to fetch data from subgraph ${chain}: ${result.statusText}`)
548548
console.error(await result.text())
549549
continue
550550
}

config/arbitrum.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"indexerHintPrune": 20000000,
44
"shareTokenMintAddress": "0x0000000000000000000000000000000000000000",
55
"burnAddress": "0x000000000000000000000000000000000000dead",
6-
"firstBlock": 100410105,
6+
"firstBlock": 1365253,
77

88
"clmManagerFactoryAddress": "0xD41Ce2c0a0596635FC09BDe2C35946a984b8cB7A",
99
"clmManagerFactoryStartBlock": 219696027,

data/arbitrum_data.json

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"0x9b40e357937bce323b1eb3832173b3d028520708",
2727
"0x9dbbbaecacedf53d5caa295b8293c1def2055adc",
2828
"0x9e75f8298e458b76382870982788988a0799195b",
29-
"0xaf570c4bcc42fe7f62e969bb147a639d74d2dad4",
3029
"0xb1bfc21bee2b2dda4728481dbf52edc3b9f5fb79",
3130
"0xb8ff233d024277b0e188a478c18e9263330a1b51",
3231
"0xba5041b1c06e8c9cfb5ddb4b82bdc52e41ea5fc5",

0 commit comments

Comments
 (0)