Skip to content

Commit

Permalink
Merge pull request #9 from HerodotusDev/fix/get-rid-of-publicnode
Browse files Browse the repository at this point in the history
Changed publicnode to Alchemy
  • Loading branch information
mikjakbiak authored Sep 11, 2024
2 parents 257f28a + 81ea33d commit de6eb3b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/monitor_events/networks/base_sepolia.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "base_sepolia",
"l1_contract": "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254",
"block_delay": 20,
"poll_period_sec": 60,
"poll_period_sec": 10800,
"batch_size": 50000,
"l1_contract_deployment_block": 4370901
}
2 changes: 1 addition & 1 deletion crates/monitor_events/networks/optimism_sepolia.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "optimism_sepolia",
"l1_contract": "0x90E9c4f8a994a250F6aEfd61CAFb4F2e895D458F",
"block_delay": 20,
"poll_period_sec": 60,
"poll_period_sec": 10800,
"batch_size": 50000,
"l1_contract_deployment_block": 4071248
}
6 changes: 4 additions & 2 deletions pm2.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ module.exports = {
env: {
CHAIN_TYPE: "sepolia",
CHAIN_NAME: "base",
RPC_URL: "https://ethereum-sepolia-rpc.publicnode.com",
RPC_URL:
"https://eth-sepolia.g.alchemy.com/v2/1cpBOW7IDNaPC1Dybn6Qbv6uMszcmjlr",
DB_URL: "postgresql://postgres:password@localhost:5432/l2indexer",
},
},
Expand All @@ -35,7 +36,8 @@ module.exports = {
env: {
CHAIN_TYPE: "sepolia",
CHAIN_NAME: "optimism",
RPC_URL: "https://ethereum-sepolia-rpc.publicnode.com",
RPC_URL:
"https://eth-sepolia.g.alchemy.com/v2/1cpBOW7IDNaPC1Dybn6Qbv6uMszcmjlr",
DB_URL: "postgresql://postgres:password@localhost:5432/l2indexer",
},
},
Expand Down

0 comments on commit de6eb3b

Please sign in to comment.