diff --git a/playground/miden-wasm/src/lib.rs b/playground/miden-wasm/src/lib.rs index 9299cd0..44b4fd7 100644 --- a/playground/miden-wasm/src/lib.rs +++ b/playground/miden-wasm/src/lib.rs @@ -9,7 +9,9 @@ use wasm_bindgen::prelude::*; #[wasm_bindgen(getter_with_clone)] #[derive(Deserialize, Serialize)] pub struct Outputs { + pub program_hash: String, pub stack_output: Vec, + pub cycles: Option, pub trace_len: Option, pub overflow_addrs: Option>, pub proof: Option>, @@ -42,7 +44,9 @@ pub fn run_program(code_frontend: &str, inputs_frontend: &str) -> Result Result