Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 38f3ed0

Browse files
committedMar 12, 2025·
Update Berachain testnet
1 parent 2679258 commit 38f3ed0

File tree

7 files changed

+310
-247
lines changed

7 files changed

+310
-247
lines changed
 

‎common/src/consts.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const INITIAL_DEPLOYMENT_BLOCK_BY_NETWORK_AND_CHAIN: NetworkChainBlockMap
8585
Sei: '0',
8686
Wormchain: '4495661',
8787
PolygonSepolia: '2379275',
88-
Berachain: '1473347',
88+
Berachain: '846481',
8989
Seievm: '142153268', // Block of contract creation
9090
Snaxchain: '482557',
9191
Unichain: '254961', // Block of contract creation

‎common/src/explorer.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export const explorerBlock = (network: Network, chainId: ChainId, block: string)
135135
: chainId === chainToChainId('Linea')
136136
? `https://sepolia.lineascan.build/block/${block}`
137137
: chainId === chainToChainId('Berachain')
138-
? `https://bartio.beratrail.io/block/${block}`
138+
? `https://bepolia.beratrail.io/block/${block}`
139139
: chainId === chainToChainId('Seievm')
140140
? `https://seitrace.com/block/${block}?chain=atlantic-2`
141141
: chainId === chainToChainId('Snaxchain')
@@ -280,7 +280,7 @@ export const explorerTx = (network: Network, chainId: ChainId, tx: string) =>
280280
: chainId === chainToChainId('Linea')
281281
? `https://sepolia.lineascan.build/tx/${tx}`
282282
: chainId === chainToChainId('Berachain')
283-
? `https://bartio.beratrail.io/tx/${tx}`
283+
? `https://bepolia.beratrail.io/tx/${tx}`
284284
: chainId === chainToChainId('Seievm')
285285
? `https://seitrace.com/tx/${tx}?chain=atlantic-2`
286286
: chainId === chainToChainId('Snaxchain')

‎dashboard/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@types/node": "^18.6.4",
1818
"@types/react": "^18.0.15",
1919
"@types/react-dom": "^18.0.6",
20-
"@wormhole-foundation/sdk-icons": "^1.13.0",
20+
"@wormhole-foundation/sdk-icons": "^1.13.2",
2121
"buffer": "^6.0.3",
2222
"numeral": "^2.0.6",
2323
"react": "^18.2.0",

‎database/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@injectivelabs/sdk-ts": "^1.0.368",
1616
"@mysten/sui": "^1.21.2",
1717
"@terra-money/terra.js": "^3.1.3",
18-
"@wormhole-foundation/sdk": "^1.13.0",
18+
"@wormhole-foundation/sdk": "^1.13.2",
1919
"@xpla/xpla.js": "^0.2.3",
2020
"aptos": "1.5.0",
2121
"dotenv": "^16.0.3",

‎package-lock.json

+297-234
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
},
2626
"dependencies": {
2727
"@google-cloud/functions-framework": "^3.4.0",
28-
"@wormhole-foundation/sdk-base": "^1.13.0",
29-
"@wormhole-foundation/sdk-definitions": "^1.13.0",
30-
"@wormhole-foundation/sdk-evm": "^1.13.0",
31-
"@wormhole-foundation/sdk-evm-core": "^1.13.0",
32-
"@wormhole-foundation/sdk-icons": "^1.13.0",
33-
"@wormhole-foundation/sdk-solana": "^1.13.0",
34-
"@wormhole-foundation/sdk-solana-core": "^1.13.0",
28+
"@wormhole-foundation/sdk-base": "^1.13.2",
29+
"@wormhole-foundation/sdk-definitions": "^1.13.2",
30+
"@wormhole-foundation/sdk-evm": "^1.13.2",
31+
"@wormhole-foundation/sdk-evm-core": "^1.13.2",
32+
"@wormhole-foundation/sdk-icons": "^1.13.2",
33+
"@wormhole-foundation/sdk-solana": "^1.13.2",
34+
"@wormhole-foundation/sdk-solana-core": "^1.13.2",
3535
"axios": "^1.5.0"
3636
}
3737
}

‎watcher/src/consts.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const RPCS_BY_CHAIN: { [key in Network]: { [key in Chain]?: string } } =
104104
Holesky: process.env.HOLESKY_RPC,
105105
Sepolia: process.env.SEPOLIA_RPC,
106106
PolygonSepolia: process.env.POLYGON_SEPOLIA_RPC || 'https://rpc-amoy.polygon.technology',
107-
Berachain: process.env.BERACHAIN_RPC || 'https://bartio.rpc.berachain.com',
107+
Berachain: process.env.BERACHAIN_RPC || 'https://bepolia.rpc.berachain.com',
108108
Seievm: process.env.SEI_EVM_RPC || 'https://evm-rpc-testnet.sei-apis.com',
109109
Snaxchain: process.env.SNAXCHAIN_RPC || 'https://rpc-snaxchain-s50q0kjngn.t.conduit.xyz',
110110
Unichain: process.env.UNICHAIN_RPC || 'https://sepolia.unichain.org',

0 commit comments

Comments
 (0)
Please sign in to comment.