Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Migrate token module from line/link #416

Merged
merged 68 commits into from
Feb 24, 2022
Merged
Show file tree
Hide file tree
Changes from 67 commits
Commits
Show all changes
68 commits
Select commit Hold shift + click to select a range
94f7b53
docs: Update CHANGELOG
0Tech Jan 18, 2022
ed60b5c
feat: define x/token protos
0Tech Feb 4, 2022
b7dd5c9
feat: add token module
0Tech Feb 4, 2022
e0c2772
feat: implement x/token query client
0Tech Feb 4, 2022
2482354
feat: implement x/token tx client
0Tech Feb 7, 2022
bf28ebe
feat: implement x/token keeper
0Tech Feb 7, 2022
8985939
feat: implement class keeper
0Tech Feb 7, 2022
655cc6b
feat: implement x/token query server
0Tech Feb 7, 2022
11e0117
feat: implement x/token msg server
0Tech Feb 7, 2022
cb0d815
feat: implement x/token genesis
0Tech Feb 8, 2022
fbf0004
fix: add an option to supply querier
0Tech Feb 8, 2022
5d3ea2a
feat: add grants and approvers to genesis
0Tech Feb 8, 2022
e656c75
fix: run test and fix bugs
0Tech Feb 8, 2022
8f8af6c
feat: implement x/token genesis
0Tech Feb 9, 2022
df2cb1e
fix: fix query and msg servers
0Tech Feb 9, 2022
7e752e3
fix: support mintable flag
0Tech Feb 9, 2022
fb399ef
test: add x/token cli tests
0Tech Feb 9, 2022
84f872c
test: add x/token genesis unit test
0Tech Feb 10, 2022
73c0ee3
test: add x/token keeper genesis unit test
0Tech Feb 10, 2022
3cd8d59
test: add x/token keeper test
0Tech Feb 11, 2022
0a61b66
test: add tests for the msg validation
0Tech Feb 11, 2022
b46d8f4
test: add tests for x/token query cli
0Tech Feb 13, 2022
1c1cc1c
test: add tests for x/token tx cli
0Tech Feb 13, 2022
90eb5ee
feat: add queries related to grant and approve
0Tech Feb 13, 2022
ef9da7b
fix: lint
0Tech Feb 13, 2022
2f14d95
feat: emit events
0Tech Feb 13, 2022
86ddc4b
Revert "docs: Update CHANGELOG"
0Tech Feb 13, 2022
ff8ff42
Merge branch 'main' into token
0Tech Feb 13, 2022
37650ef
docs: update CHANGELOG
0Tech Feb 14, 2022
e63a166
fix: fix bugs on the unit tests
0Tech Feb 14, 2022
658a429
fix: fix the typo on a variable
0Tech Feb 14, 2022
75c0139
fix: resolve the conflict on swagger gen
0Tech Feb 14, 2022
d520cb8
fix: lint
0Tech Feb 14, 2022
4a93813
build: undo fix
0Tech Feb 14, 2022
7544d01
fix: provide more fees and make explicit conformation
0Tech Feb 14, 2022
6bd8d7d
Update x/token/class/keeper/id.go
0Tech Feb 14, 2022
68c6bb6
Update x/token/class/keys.go
0Tech Feb 14, 2022
0ece3d1
Update x/token/client/cli/query.go
0Tech Feb 14, 2022
a8b0d92
Update x/token/client/testutil/suite.go
0Tech Feb 14, 2022
1d62f33
Update x/token/client/testutil/suite.go
0Tech Feb 14, 2022
7c160df
Update x/token/client/testutil/suite.go
0Tech Feb 14, 2022
d19579d
Update x/token/expected_keepers.go
0Tech Feb 14, 2022
ff01180
Update x/token/msgs.go
0Tech Feb 14, 2022
a7ddee8
fix: lint
0Tech Feb 14, 2022
5a3634f
test: increase code coverage of genesis
0Tech Feb 14, 2022
826c4fa
test: increase code coverage of x/token keeper
0Tech Feb 14, 2022
0aded5e
fix: check id conflict on issue
0Tech Feb 15, 2022
d2a8954
test: fix tests on handler
0Tech Feb 15, 2022
900e7c5
fix: do not allow grant on already granted address
0Tech Feb 15, 2022
a6bf8ce
fix: validate class ids
0Tech Feb 15, 2022
7598eb8
test: add more tests on x/token servers
0Tech Feb 15, 2022
37ff9f7
docs: add comments on x/token proto
0Tech Feb 15, 2022
8643387
Merge branch 'main' into token
0Tech Feb 15, 2022
5e733e2
test: add test on class id check
0Tech Feb 15, 2022
42d02b7
Merge remote-tracking branch '0Tech/token' into token
0Tech Feb 15, 2022
6b658dc
fix: validate class ids in genesis
0Tech Feb 16, 2022
7d55a88
refactor: move validation logics into a separate file
0Tech Feb 16, 2022
0a40bf3
test: add test cases into x/token keeper query
0Tech Feb 16, 2022
da2be06
test: fix test prep
0Tech Feb 16, 2022
ee3d6d4
test: fix test prep
0Tech Feb 16, 2022
492c65b
Merge branch 'main' into token
0Tech Feb 16, 2022
d84f7a2
test: add more test cases
0Tech Feb 16, 2022
4c39f5a
test: fix x/token client tests
0Tech Feb 16, 2022
b0081f2
Merge remote-tracking branch '0Tech/token' into token
0Tech Feb 16, 2022
d0ffe2b
Update CHANGELOG.md
0Tech Feb 16, 2022
576174d
test: fix the race
0Tech Feb 17, 2022
9871284
Update x/token/class/validation.go
0Tech Feb 17, 2022
732482b
Merge remote-tracking branch 'line/main' into token
0Tech Feb 24, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Features
* (feat) [\#434](https://github.com/line/lbm-sdk/pull/434) Revert signature mechanism using `sig_block_height`
* (x/token) [\#416](https://github.com/line/lbm-sdk/pull/416) Migrate token module from line/link

### Improvements

Expand Down
8 changes: 8 additions & 0 deletions client/docs/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,5 +150,13 @@
}
}
},
{
"url": "./tmp-swagger-gen/lbm/token/v1/query.swagger.json",
"operationIds": {
"rename": {
"Params": "TokenParams"
}
}
},
]
}
9 changes: 5 additions & 4 deletions client/docs/statik/statik.go

Large diffs are not rendered by default.

Loading