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: update x/collection to use Finschia/cosmos-sdk #1208

Merged
merged 42 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from 33 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
da4b6f0
feat: update x/collection for cosmos-sdk v0.50.2
jaeseung-bae Jan 25, 2024
3e54a0e
chore: add PR lableler for x/collection
jaeseung-bae Jan 25, 2024
8800b0d
Fix protobuf break checking workflow
0Tech Jan 24, 2024
fefa7b9
fix: dep-review ci
jaeseung-bae Jan 25, 2024
1fde0c5
chore: add collection to simapp
jaeseung-bae Jan 25, 2024
6cc9a09
chore: fix lint
jaeseung-bae Jan 26, 2024
1bda0b6
chore: fix lint
jaeseung-bae Jan 26, 2024
af5431d
chore: fix lint
jaeseung-bae Jan 26, 2024
70c16fa
chore: fix lint
jaeseung-bae Jan 26, 2024
07098de
chore: fix lint
jaeseung-bae Jan 29, 2024
52bf849
chore: fix lint
jaeseung-bae Jan 29, 2024
2d3bb03
chore: fix lint
jaeseung-bae Jan 30, 2024
a5d675c
Merge into HEAD
tkxkd0159 Feb 7, 2024
625d459
update compiled proto for collection
tkxkd0159 Feb 7, 2024
7e754c4
Migrate `token/class` feature to `collection`
tkxkd0159 Feb 8, 2024
cb177b2
go mod tidy
tkxkd0159 Feb 8, 2024
253b275
fix genesis test
tkxkd0159 Feb 8, 2024
b0dddfd
fix store migration test
tkxkd0159 Feb 8, 2024
8e3d439
remove classKeeper mock from keeper test suite
tkxkd0159 Feb 8, 2024
d6ec9cf
chore: module code style
tkxkd0159 Feb 8, 2024
28439cb
test: add collection to `sim_test`
tkxkd0159 Feb 8, 2024
135b2e3
Bump viper to v1.18.2
tkxkd0159 Feb 8, 2024
9a7effc
style: lint
tkxkd0159 Feb 8, 2024
3e2d2eb
fix classIterator
tkxkd0159 Feb 15, 2024
482e57c
remove NFT offspring feature
tkxkd0159 Feb 16, 2024
810553b
remove FT feature & data
tkxkd0159 Feb 20, 2024
e2c3600
remove useless implementations
tkxkd0159 Feb 20, 2024
d655c98
Update swagger
tkxkd0159 Feb 20, 2024
56ee192
Implement CLITestSuite
tkxkd0159 Feb 20, 2024
dc0416a
Merge `bump50`
tkxkd0159 Feb 21, 2024
ad4c758
chore
tkxkd0159 Feb 22, 2024
2c8cf36
Impl E2E test for tx
tkxkd0159 Feb 22, 2024
7bd0f44
add gRPC E2E tests
tkxkd0159 Feb 23, 2024
eb53ff0
remove legacy address converter & ValidateBasic
tkxkd0159 Feb 27, 2024
d0f56c5
chore
tkxkd0159 Feb 27, 2024
8f40558
remove legacyToken[Type]
tkxkd0159 Feb 27, 2024
284e3ce
refactor removeFT
tkxkd0159 Feb 27, 2024
92ac6e0
Remove `AccAddress.String()`
tkxkd0159 Feb 27, 2024
c8f1cc1
Add CHANGELOG
tkxkd0159 Feb 27, 2024
009902a
fix
tkxkd0159 Feb 28, 2024
d9647e7
fix w
tkxkd0159 Mar 4, 2024
e93bf3e
link
tkxkd0159 Mar 4, 2024
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
4 changes: 2 additions & 2 deletions .github/pr_labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
# "C:CLI":
# - client/**/*
# - x/*/client/**/*
# "Type: ADR":
# - docs/architecture/**/*
"C:x/collection":
- x/collection/**/*
"C:x/foundation":
- x/foundation/**/*
"C:x/stakingplus":
Expand Down
12 changes: 8 additions & 4 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
run:
tests: true
timeout: 15m
sort-results: true
allow-parallel-runners: true
skip-files:
- ".*\\.pb\\.go$"
- ".*\\.pb\\.gw\\.go$"
- ".*\\.pulsar\\.go$"

output:
sort-results: true

linters:
disable-all: true
enable:
- depguard
- dogsled
- exportloopref
- gci
- goconst
- gocritic
- gci
- gofumpt
- gosec
- gosimple
Expand All @@ -25,8 +26,8 @@ linters:
- misspell
- nakedret
- nolintlint
- staticcheck
- revive
- staticcheck
- stylecheck
- typecheck
- unconvert
Expand Down Expand Up @@ -58,6 +59,9 @@ issues:
- text: "leading space"
linters:
- nolintlint
- text: "SA1019: collection." # TODO: remove deprecated collection features later
linters:
- staticcheck
max-issues-per-linter: 10000
max-same-issues: 10000

Expand Down
Loading
Loading