Skip to content

Commit e5c7bcf

Browse files
Fix the stage and mannet stage urls
1 parent c5b2f65 commit e5c7bcf

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

crates/cli/src/main.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -624,9 +624,11 @@ async fn main() -> Result<(), AlignedError> {
624624
for batch_merkle_root in unique_batch_merkle_roots {
625625
let base_url = match submit_args.network.clone().into() {
626626
Network::Holesky => "https://holesky.explorer.alignedlayer.com/batches/0x",
627-
Network::HoleskyStage => "https://holesky.explorer.alignedlayer.com/batches/0x",
627+
Network::HoleskyStage => "https://stage.explorer.alignedlayer.com/batches/0x",
628628
Network::Mainnet => "https://explorer.alignedlayer.com/batches/0x",
629-
Network::MainnetStage => "https://explorer.alignedlayer.com/batches/0x",
629+
Network::MainnetStage => {
630+
"https://mainnetstage.explorer.alignedlayer.com/batches/0x"
631+
}
630632
Network::Devnet => "http://localhost:4000/batches/0x",
631633
_ => "http://localhost:4000/batches/0x",
632634
};

0 commit comments

Comments
 (0)