Skip to content

Commit

Permalink
feat(arb): match release with main
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfourzerofour committed Nov 3, 2023
1 parent ed31bd8 commit f39ba53
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/types/src/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ pub const OP_BEDROCK_CHAIN_IDS: &[u64] = &[
Chain::BaseGoerli as u64,
];

/// Known chain IDs that use the Arbitrum stack
pub const ARBITRUM_CHAIN_IDS: &[u64] = &[Chain::Arbitrum as u64, Chain::ArbitrumGoerli as u64];
// TODO use chain from ethers types once my PR is merged into ethers
// https://github.com/gakonst/ethers-rs/pull/2657
/// Known chain IDs for the Base ecosystem
pub const ARBITRUM_CHAIN_IDS: &[u64] =
&[Chain::Arbitrum as u64, Chain::ArbitrumGoerli as u64, 421614];

/// Known chain IDs for the Base ecosystem
pub const BASE_CHAIN_IDS: &[u64] = &[8453, Chain::BaseGoerli as u64];
Expand Down

0 comments on commit f39ba53

Please sign in to comment.