Skip to content

Commit

Permalink
Update comments in the events proto
Browse files Browse the repository at this point in the history
  • Loading branch information
0Tech committed Mar 28, 2023
1 parent 8bb999d commit cec9671
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
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 cec9671

Please sign in to comment.