Skip to content

Commit

Permalink
docs: use an array of strings as authors in proposal metadata (backport
Browse files Browse the repository at this point in the history
#14472) (#14474)

Co-authored-by: Larry Engineer <26318510+larry0x@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
  • Loading branch information
3 people authored Jan 4, 2023
1 parent 58f81fa commit 6549313
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Improvements

* (x/gov, x/group) [#14472](https://github.com/cosmos/cosmos-sdk/pull/14356) The recommended metadata format for x/gov and x/group proposals now uses an array of strings (instead of a single string) for the `authors` field.
* (crypto) [#14460](https://github.com/cosmos/cosmos-sdk/pull/14460) Check the signature returned by a ledger device against the public key in the keyring.
* (x/gov) [#14390](https://github.com/cosmos/cosmos-sdk/pull/14390) Add title, proposer and summary to proposal struct
* [#14356](https://github.com/cosmos/cosmos-sdk/pull/14356) Add `events.GetAttributes` and `event.GetAttribute` methods to simplify the retrieval of an attribute from event(s).
Expand Down
2 changes: 1 addition & 1 deletion x/gov/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2590,7 +2590,7 @@ Location: off-chain as json object stored on IPFS (mirrors [group proposal](../g
```json
{
"title": "",
"authors": "",
"authors": [""],
"summary": "",
"details": "",
"proposal_forum_url": "",
Expand Down
2 changes: 1 addition & 1 deletion x/group/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2099,7 +2099,7 @@ Location: off-chain as json object stored on IPFS (mirrors [gov proposal](../gov
```json
{
"title": "",
"authors": "",
"authors": [""],
"summary": "",
"details": "",
"proposal_forum_url": "",
Expand Down

0 comments on commit 6549313

Please sign in to comment.