docs: use an array of strings as authors in proposal metadata (#14472)

This commit is contained in:
Larry Engineer 2023-01-04 08:31:36 +00:00 committed by GitHub
parent 97d2206f6c
commit 11f46a0bae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -60,6 +60,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* (client/tx) [#13670](https://github.com/cosmos/cosmos-sdk/pull/13670) Add validation in `BuildUnsignedTx` to prevent simple inclusion of valid mnemonics
* [#13473](https://github.com/cosmos/cosmos-sdk/pull/13473) ADR-038: Go plugin system proposal
* [#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).
* [#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.
### Improvements

View File

@ -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": "",

View File

@ -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": "",