docs: use an array of strings as authors in proposal metadata (#14472)
This commit is contained in:
parent
97d2206f6c
commit
11f46a0bae
@ -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
|
||||
|
||||
|
||||
@ -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": "",
|
||||
|
||||
@ -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": "",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user