Skip to content

Commit

Permalink
set neutron-std version to feat/refactor-icq-module-documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sotnikov-s committed Nov 18, 2024
1 parent 3c83114 commit 8f4cf30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 3 additions & 2 deletions contracts/neutron_interchain_queries/schema/execute_msg.json
Original file line number Diff line number Diff line change
Expand Up @@ -423,14 +423,15 @@
],
"definitions": {
"KvKey": {
"description": "A path to an IAVL storage node.",
"type": "object",
"required": [
"key",
"path"
],
"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",
Expand All @@ -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"
}
},
Expand Down

0 comments on commit 8f4cf30

Please sign in to comment.