We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c70c25d commit c5baa2fCopy full SHA for c5baa2f
crates/cli/src/main.rs
@@ -622,9 +622,14 @@ async fn main() -> Result<(), AlignedError> {
622
}
623
624
for batch_merkle_root in unique_batch_merkle_roots {
625
+ let base_url = match submit_args.network.clone().into() {
626
+ Network::Holesky => "https://holesky.explorer.alignedlayer.com/batches/0x",
627
+ _ => "https://explorer.alignedlayer.com/batches/0x",
628
+ };
629
+
630
info!(
- "https://explorer.alignedlayer.com/batches/0x{}",
- hex::encode(batch_merkle_root)
631
+ "{}",
632
+ base_url.to_string() + hex::encode(batch_merkle_root).as_str()
633
);
634
635
0 commit comments