diff --git a/packages/multi-test/src/wasm.rs b/packages/multi-test/src/wasm.rs index 2dea927df..a943101c4 100644 --- a/packages/multi-test/src/wasm.rs +++ b/packages/multi-test/src/wasm.rs @@ -28,10 +28,15 @@ pub const NAMESPACE_WASM: &[u8] = b"wasm"; /// interface. #[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)] struct ContractData { + /// Identifier of stored contract code pub code_id: usize, + /// Address of node who initially instantiated the contract pub creator: Addr, + /// Optional address of node who can execute migrations pub admin: Option, + /// Optional metadata passed while contract instantiation pub label: String, + /// Blockchain height in the moment of instanciating the contract pub created: u64, }