Skip to content

Commit

Permalink
docs: add comment about ordering of addresses in wasmplus (CosmWasm#107)
Browse files Browse the repository at this point in the history
* chore: Added comment about ordering of addresses

* chore: add this pr to change.log

* fix: fix singular

* fix: fix pr title

* fix: fix singular

* fix: Correct uppercase letters to lowercase letters

* fix: Correct to specify the type of elements in List of addresses
  • Loading branch information
Kynea0b authored Sep 7, 2023
1 parent 053c7e4 commit 1eb1bbd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
* [\#54](https://github.com/Finschia/wasmd/pull/54) add documentation about errors (codespace and codes)
* [\#92](https://github.com/Finschia/wasmd/pull/92) modify links in x/wasmplus README.md
* [\#103](https://github.com/Finschia/wasmd/pull/103) add clarifications to the order of list response in query
* [\#107](https://github.com/Finschia/wasmd/pull/107) add comment about ordering of addresses in wasmplus


## [v0.1.4](https://github.com/Finschia/wasmd/releases/tag/v0.1.4) - 2023.05.22
Expand Down
8 changes: 4 additions & 4 deletions docs/proto/proto-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -1506,10 +1506,10 @@ QueryInactiveContractsResponse is the response type for the
Query/InactiveContract RPC method.


| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| `addresses` | [string](#string) | repeated | addresses is the inactive address list |
| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response |
| Field | Type | Label | Description |
| ----- | ---- | ----- |---------------------------------------------------------------------------------|
| `addresses` | [string](#string) | repeated | addresses is the inactive address list of strings, in ascending order of byte format |
| `pagination` | [cosmos.base.query.v1beta1.PageResponse](#cosmos.base.query.v1beta1.PageResponse) | | pagination defines the pagination in the response |



Expand Down
2 changes: 1 addition & 1 deletion proto/lbm/wasm/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ message QueryInactiveContractsRequest {
// QueryInactiveContractsResponse is the response type for the
// Query/InactiveContract RPC method.
message QueryInactiveContractsResponse {
// addresses is the inactive address list
// addresses is the inactive address list of strings, in ascending order of byte format
repeated string addresses = 1;

// pagination defines the pagination in the response
Expand Down
2 changes: 1 addition & 1 deletion x/wasmplus/types/query.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1eb1bbd

Please sign in to comment.