diff --git a/crates/patron/src/commands/build.rs b/crates/patron/src/commands/build.rs index 0b5a1e2..433cd41 100644 --- a/crates/patron/src/commands/build.rs +++ b/crates/patron/src/commands/build.rs @@ -70,6 +70,7 @@ pub(crate) fn build( let FinishedBuildSession { mut wasm_file, mut metadata_file, + code_hash, .. } = remote_build( &auth_config, @@ -115,5 +116,11 @@ pub(crate) fn build( &metadata, )?; + progress.finish_with_message(format!( + "Contract uploaded: {}/codeHash/{}", + auth_config.web_path(), + code_hash + )); + Ok(()) }