Skip to content

Commit 23ef340

Browse files
committed
fix: remove berachain bartio since the chain is being shutdown
1 parent 8224ba3 commit 23ef340

File tree

3 files changed

+1
-12
lines changed

3 files changed

+1
-12
lines changed

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
BASE_SEPOLIA_RPC_URL=
33
OPTIMISM_SEPOLIA_RPC_URL=
44
ARBITRUM_SEPOLIA_RPC_URL=
5-
BERACHAIN_TESTNET_BARTIO_RPC_URL=
65
MONAD_TESTNET_RPC_URL_1=
76
MONAD_TESTNET_RPC_URL_2=
87
HYPERLIQUID_TESTNET_RPC_URL=

ponder.config.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { http, parseAbiItem, Address, fallback } from 'viem';
33
import {
44
arbitrumSepolia,
55
baseSepolia,
6-
berachainTestnetbArtio,
76
// monadTestnet,
87
optimismSepolia,
98
} from 'viem/chains';
@@ -44,13 +43,6 @@ const CHAIN_CONFIGS: Record<ChainId, ChainConfig> = {
4443
blockTime: 0.2,
4544
rpcEnvKeys: ['ARBITRUM_SEPOLIA_RPC_URL'],
4645
},
47-
[berachainTestnetbArtio.id]: {
48-
chainId: berachainTestnetbArtio.id,
49-
factoryAddress: '0x0e2ef7AEEef695F9c8D463ce31561B43EC14e453',
50-
factoryStartBlock: 10268951,
51-
blockTime: 2,
52-
rpcEnvKeys: ['BERACHAIN_TESTNET_BARTIO_RPC_URL'],
53-
},
5446
// [monadTestnet.id]: {
5547
// chainId: monadTestnet.id,
5648
// factoryAddress: '0x0e2ef7AEEef695F9c8D463ce31561B43EC14e453',

src/utils/chains.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { defineChain } from 'viem';
22
import {
33
arbitrumSepolia,
44
baseSepolia,
5-
berachainTestnetbArtio,
65
// monadTestnet,
76
optimismSepolia,
87
} from 'viem/chains';
@@ -38,8 +37,7 @@ export const hyperliquidTestnet = defineChain({
3837
export type ChainId =
3938
| typeof baseSepolia.id
4039
| typeof optimismSepolia.id
41-
| typeof arbitrumSepolia.id
42-
| typeof berachainTestnetbArtio.id;
40+
| typeof arbitrumSepolia.id;
4341
// | typeof monadTestnet.id;
4442
// TODO: PIKE-124
4543
// | typeof hyperliquidTestnet.id;

0 commit comments

Comments
 (0)