Skip to content

Commit

Permalink
docs: update comments in the x/token,collection events proto (#944)
Browse files Browse the repository at this point in the history
* Update comments in the events proto

* Update CHANGELOG.md
  • Loading branch information
0Tech authored Mar 28, 2023
1 parent 8bb999d commit b948bbd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Document Updates
* (x/foundation) [\#934](https://github.com/line/lbm-sdk/pull/934) Update permlinks in x/foundation documents
* (x/collection,token) [\#944](https://github.com/line/lbm-sdk/pull/944) Update comments in the x/token,collection events proto
4 changes: 2 additions & 2 deletions docs/core/proto-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -9536,7 +9536,7 @@ Since: 0.46.0 (finschia)
| ----- | ---- | ----- | ----------- |
| `contract_id` | [string](#string) | | contract id associated with the contract. |
| `operator` | [string](#string) | | address which triggered the modify. |
| `changes` | [Attribute](#lbm.collection.v1.Attribute) | repeated | changes of the attributes applied. possible attribute keys are same as those of MsgModify. |
| `changes` | [Attribute](#lbm.collection.v1.Attribute) | repeated | changes of the attributes applied. possible attribute keys are same as those of MsgModify. deprecated "base_img_uri" has been replaced by "uri" in the events. |



Expand Down Expand Up @@ -13055,7 +13055,7 @@ Since: 0.46.0 (finschia)
| ----- | ---- | ----- | ----------- |
| `contract_id` | [string](#string) | | contract id associated with the contract. |
| `operator` | [string](#string) | | address which triggered the modify. |
| `changes` | [Attribute](#lbm.token.v1.Attribute) | repeated | changes on the metadata of the class. possible attribute keys are same as those of MsgModify. |
| `changes` | [Attribute](#lbm.token.v1.Attribute) | repeated | changes on the metadata of the class. possible attribute keys are same as those of MsgModify. deprecated "img_uri" has been replaced by "uri" in the events. |



Expand Down
1 change: 1 addition & 0 deletions proto/lbm/collection/v1/event.proto
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ message EventModifiedContract {
string operator = 2;
// changes of the attributes applied.
// possible attribute keys are same as those of MsgModify.
// deprecated "base_img_uri" has been replaced by "uri" in the events.
repeated Attribute changes = 3 [(gogoproto.nullable) = false];
}

Expand Down
1 change: 1 addition & 0 deletions proto/lbm/token/v1/event.proto
Original file line number Diff line number Diff line change
Expand Up @@ -182,5 +182,6 @@ message EventModified {
string operator = 2;
// changes on the metadata of the class.
// possible attribute keys are same as those of MsgModify.
// deprecated "img_uri" has been replaced by "uri" in the events.
repeated Attribute changes = 3 [(gogoproto.nullable) = false];
}
1 change: 1 addition & 0 deletions x/collection/event.pb.go

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

1 change: 1 addition & 0 deletions x/token/event.pb.go

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

0 comments on commit b948bbd

Please sign in to comment.