Skip to content

Commit 8f4cf30

Browse files
committed
set neutron-std version to feat/refactor-icq-module-documentation
1 parent 3c83114 commit 8f4cf30

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ overflow-checks = true
1515

1616
[workspace.dependencies]
1717
cosmwasm-std = "2.1.0"
18-
neutron-std = { git = "https://github.com/neutron-org/neutron-std", branch = "main" }
18+
neutron-std = { git = "https://github.com/neutron-org/neutron-std", branch = "feat/refactor-icq-module-documentation" }
1919
cosmwasm-schema = { version = "2.1.0", default-features = false }
2020
cw2 = "2.0.0"
2121
cw-storage-plus = "2.0.0"

contracts/neutron_interchain_queries/schema/execute_msg.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -423,14 +423,15 @@
423423
],
424424
"definitions": {
425425
"KvKey": {
426+
"description": "A path to an IAVL storage node.",
426427
"type": "object",
427428
"required": [
428429
"key",
429430
"path"
430431
],
431432
"properties": {
432433
"key": {
433-
"description": "Key you want to read from the storage",
434+
"description": "The second half of the storage path. The remaining part of the full path to an IAVL storage node.",
434435
"type": "array",
435436
"items": {
436437
"type": "integer",
@@ -439,7 +440,7 @@
439440
}
440441
},
441442
"path": {
442-
"description": "Path (storage prefix) to the storage where you want to read value by key (usually name of cosmos-sdk module: 'staking', 'bank', etc.)",
443+
"description": "The first half of the storage path. It is supposed to be a substore name for the query (e.g. bank, staking, etc.).",
443444
"type": "string"
444445
}
445446
},

0 commit comments

Comments
 (0)