Skip to content

Commit b948bbd

Browse files
authored
docs: update comments in the x/token,collection events proto (#944)
* Update comments in the events proto * Update CHANGELOG.md
1 parent 8bb999d commit b948bbd

File tree

6 files changed

+7
-2
lines changed

6 files changed

+7
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,4 @@ Ref: https://keepachangelog.com/en/1.0.0/
6060

6161
### Document Updates
6262
* (x/foundation) [\#934](https://github.com/line/lbm-sdk/pull/934) Update permlinks in x/foundation documents
63+
* (x/collection,token) [\#944](https://github.com/line/lbm-sdk/pull/944) Update comments in the x/token,collection events proto

docs/core/proto-docs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9536,7 +9536,7 @@ Since: 0.46.0 (finschia)
95369536
| ----- | ---- | ----- | ----------- |
95379537
| `contract_id` | [string](#string) | | contract id associated with the contract. |
95389538
| `operator` | [string](#string) | | address which triggered the modify. |
9539-
| `changes` | [Attribute](#lbm.collection.v1.Attribute) | repeated | changes of the attributes applied. possible attribute keys are same as those of MsgModify. |
9539+
| `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. |
95409540

95419541

95429542

@@ -13055,7 +13055,7 @@ Since: 0.46.0 (finschia)
1305513055
| ----- | ---- | ----- | ----------- |
1305613056
| `contract_id` | [string](#string) | | contract id associated with the contract. |
1305713057
| `operator` | [string](#string) | | address which triggered the modify. |
13058-
| `changes` | [Attribute](#lbm.token.v1.Attribute) | repeated | changes on the metadata of the class. possible attribute keys are same as those of MsgModify. |
13058+
| `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. |
1305913059

1306013060

1306113061

proto/lbm/collection/v1/event.proto

+1
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ message EventModifiedContract {
249249
string operator = 2;
250250
// changes of the attributes applied.
251251
// possible attribute keys are same as those of MsgModify.
252+
// deprecated "base_img_uri" has been replaced by "uri" in the events.
252253
repeated Attribute changes = 3 [(gogoproto.nullable) = false];
253254
}
254255

proto/lbm/token/v1/event.proto

+1
Original file line numberDiff line numberDiff line change
@@ -182,5 +182,6 @@ message EventModified {
182182
string operator = 2;
183183
// changes on the metadata of the class.
184184
// possible attribute keys are same as those of MsgModify.
185+
// deprecated "img_uri" has been replaced by "uri" in the events.
185186
repeated Attribute changes = 3 [(gogoproto.nullable) = false];
186187
}

x/collection/event.pb.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x/token/event.pb.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)