Skip to content

Commit

Permalink
Merge branch 'main' into collection_query
Browse files Browse the repository at this point in the history
  • Loading branch information
0Tech committed Aug 8, 2022
2 parents 1f9912a + b9242f3 commit dc9fb39
Show file tree
Hide file tree
Showing 6 changed files with 336 additions and 108 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* (x/collection) [\#604](https://github.com/line/lbm-sdk/pull/604) add EventOwnerChanged and EventRootChanged
* (x/collection) [\#608](https://github.com/line/lbm-sdk/pull/608) remove new APIs on x/collection
* (x/token) [\#609](https://github.com/line/lbm-sdk/pull/609) remove new APIs on x/token
* (x/collection) [\#621](https://github.com/line/lbm-sdk/pull/621) add additional information into EventXXXChanged

### Bug Fixes
* (x/wasm) [\#453](https://github.com/line/lbm-sdk/pull/453) modify wasm grpc query api path
Expand Down
4 changes: 4 additions & 0 deletions docs/core/proto-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -14122,6 +14122,8 @@ Since: 0.46.0 (finschia)
| ----- | ---- | ----- | ----------- |
| `contract_id` | [string](#string) | | contract id associated with the contract. |
| `token_id` | [string](#string) | | token id associated with the token. |
| `from` | [string](#string) | | address of the previous owner before the change. |
| `to` | [string](#string) | | address of the new owner. |



Expand Down Expand Up @@ -14159,6 +14161,8 @@ Since: 0.46.0 (finschia)
| ----- | ---- | ----- | ----------- |
| `contract_id` | [string](#string) | | contract id associated with the contract. |
| `token_id` | [string](#string) | | token id associated with the token. |
| `from` | [string](#string) | | token id of the previous root before the change. |
| `to` | [string](#string) | | token id of the new root. |



Expand Down
8 changes: 8 additions & 0 deletions proto/lbm/collection/v1/event.proto
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,10 @@ message EventOwnerChanged {
string contract_id = 1;
// token id associated with the token.
string token_id = 2;
// address of the previous owner before the change.
string from = 3;
// address of the new owner.
string to = 4;
}

// EventRootChanged is emitted when the root of token is changed by operation applied to its ancestor.
Expand All @@ -318,4 +322,8 @@ message EventRootChanged {
string contract_id = 1;
// token id associated with the token.
string token_id = 2;
// token id of the previous root before the change.
string from = 3;
// token id of the new root.
string to = 4;
}
Loading

0 comments on commit dc9fb39

Please sign in to comment.