mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-04 03:55:22 -05:00
Co-authored-by: garwah <garwah@garwah> Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
56 lines
1.5 KiB
Rust
56 lines
1.5 KiB
Rust
use reth_cli::chainspec::{parse_genesis, ChainSpecParser};
|
|
use reth_optimism_chainspec::{
|
|
OpChainSpec, BASE_MAINNET, BASE_SEPOLIA, OP_DEV, OP_MAINNET, OP_SEPOLIA,
|
|
};
|
|
use std::sync::Arc;
|
|
|
|
/// Optimism chain specification parser.
|
|
#[derive(Debug, Clone, Default)]
|
|
#[non_exhaustive]
|
|
pub struct OpChainSpecParser;
|
|
|
|
impl ChainSpecParser for OpChainSpecParser {
|
|
type ChainSpec = OpChainSpec;
|
|
|
|
const SUPPORTED_CHAINS: &'static [&'static str] = &[
|
|
"dev",
|
|
"optimism",
|
|
"optimism_sepolia",
|
|
"optimism-sepolia",
|
|
"base",
|
|
"base_sepolia",
|
|
"base-sepolia",
|
|
];
|
|
|
|
fn parse(s: &str) -> eyre::Result<Arc<Self::ChainSpec>> {
|
|
chain_value_parser(s)
|
|
}
|
|
}
|
|
|
|
/// Clap value parser for [`OpChainSpec`]s.
|
|
///
|
|
/// The value parser matches either a known chain, the path
|
|
/// to a json file, or a json formatted string in-memory. The json needs to be a Genesis struct.
|
|
pub fn chain_value_parser(s: &str) -> eyre::Result<Arc<OpChainSpec>, eyre::Error> {
|
|
Ok(match s {
|
|
"dev" => OP_DEV.clone(),
|
|
"optimism" => OP_MAINNET.clone(),
|
|
"optimism_sepolia" | "optimism-sepolia" => OP_SEPOLIA.clone(),
|
|
"base" => BASE_MAINNET.clone(),
|
|
"base_sepolia" | "base-sepolia" => BASE_SEPOLIA.clone(),
|
|
_ => Arc::new(parse_genesis(s)?.into()),
|
|
})
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn parse_known_chain_spec() {
|
|
for &chain in OpChainSpecParser::SUPPORTED_CHAINS {
|
|
assert!(<OpChainSpecParser as ChainSpecParser>::parse(chain).is_ok());
|
|
}
|
|
}
|
|
}
|