Skip to content

Commit d8de077

Browse files
committed
watcher: add blast/scroll to testnet
1 parent c20b093 commit d8de077

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

common/src/consts.ts

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ export const INITIAL_DEPLOYMENT_BLOCK_BY_NETWORK_AND_CHAIN: {
6262
Xpla: '0',
6363
Solana: '0',
6464
Sui: '0',
65+
Scroll: '0',
66+
Blast: '0',
6567
Base: '0',
6668
Sei: '0',
6769
Wormchain: '0',

watcher/src/consts.ts

+2
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ export const RPCS_BY_CHAIN: { [key in Network]: { [key in Chain]?: string } } =
8585
Solana: process.env.SOLANA_RPC,
8686
Sui: process.env.SUI_RPC,
8787
Base: process.env.BASE_RPC,
88+
Scroll: process.env.SCROLL_RPC || 'https://rpc.ankr.com/scroll_sepolia_testnet',
89+
Blast: process.env.BLAST_RPC || 'https://rpc.ankr.com/blast_testnet_sepolia',
8890
Sei: process.env.SEI_RPC,
8991
Wormchain: process.env.WORMCHAIN_RPC,
9092
ArbitrumSepolia: process.env.ARBITRUM_SEPOLIA_RPC,

watcher/src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ const supportedChains: Chain[] =
4343
'Xpla',
4444
// 'Base',
4545
'Sei',
46+
'Blast',
47+
'Scroll',
4648
// 'Wormchain',
4749
'Sepolia',
4850
'ArbitrumSepolia',

0 commit comments

Comments
 (0)