From 8f4cf3077d59ac1954030e559856438f6afb7a53 Mon Sep 17 00:00:00 2001 From: sotnikov-s Date: Mon, 18 Nov 2024 16:10:38 +0300 Subject: [PATCH] set neutron-std version to feat/refactor-icq-module-documentation --- Cargo.toml | 2 +- contracts/neutron_interchain_queries/schema/execute_msg.json | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 40c41839..cb6b5fbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ overflow-checks = true [workspace.dependencies] cosmwasm-std = "2.1.0" -neutron-std = { git = "https://github.com/neutron-org/neutron-std", branch = "main" } +neutron-std = { git = "https://github.com/neutron-org/neutron-std", branch = "feat/refactor-icq-module-documentation" } cosmwasm-schema = { version = "2.1.0", default-features = false } cw2 = "2.0.0" cw-storage-plus = "2.0.0" diff --git a/contracts/neutron_interchain_queries/schema/execute_msg.json b/contracts/neutron_interchain_queries/schema/execute_msg.json index ddfbb1e8..2f252eee 100644 --- a/contracts/neutron_interchain_queries/schema/execute_msg.json +++ b/contracts/neutron_interchain_queries/schema/execute_msg.json @@ -423,6 +423,7 @@ ], "definitions": { "KvKey": { + "description": "A path to an IAVL storage node.", "type": "object", "required": [ "key", @@ -430,7 +431,7 @@ ], "properties": { "key": { - "description": "Key you want to read from the storage", + "description": "The second half of the storage path. The remaining part of the full path to an IAVL storage node.", "type": "array", "items": { "type": "integer", @@ -439,7 +440,7 @@ } }, "path": { - "description": "Path (storage prefix) to the storage where you want to read value by key (usually name of cosmos-sdk module: 'staking', 'bank', etc.)", + "description": "The first half of the storage path. It is supposed to be a substore name for the query (e.g. bank, staking, etc.).", "type": "string" } },