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(x/ecocredit)!: migrate core params to ORM #1354

Merged
merged 31 commits into from
Aug 25, 2022
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5701c54
feat: add proto msgs
aleem1314 Aug 16, 2022
16513ea
make proto-all
aleem1314 Aug 17, 2022
6fa8f07
feat: implement msgs
aleem1314 Aug 17, 2022
770b1e2
wip
aleem1314 Aug 17, 2022
55d20d8
feat: add msg-server implementation
aleem1314 Aug 17, 2022
a2bd5fc
wip: add tests
aleem1314 Aug 18, 2022
3bdc505
feat: add integration tests
aleem1314 Aug 18, 2022
7a19b4a
Merge branch 'master' into aleem/core-params-migration
aleem1314 Aug 18, 2022
f95b403
Merge branch 'main' of https://github.com/regen-network/regen-ledger …
aleem1314 Aug 21, 2022
64b7aa3
chore: review changes
aleem1314 Aug 22, 2022
70e81cf
Merge branch 'aleem/core-params-migration' of https://github.com/rege…
aleem1314 Aug 22, 2022
1317952
fix: fix simularion tests
aleem1314 Aug 22, 2022
8c30f45
refactor: fix failing tests
aleem1314 Aug 22, 2022
4137f49
chore: add changelog
aleem1314 Aug 22, 2022
e85f0c2
chore: add query params
aleem1314 Aug 22, 2022
2535112
Update x/ecocredit/core/features/msg_add_class_creators.feature
aleem1314 Aug 23, 2022
2b128eb
Update x/ecocredit/server/core/features/msg_toggle_class_allowlist.fe…
aleem1314 Aug 23, 2022
7771dd1
Update x/ecocredit/server/core/features/msg_toggle_class_allowlist.fe…
aleem1314 Aug 23, 2022
cbe42db
Update x/ecocredit/core/features/msg_remove_class_creators.feature
aleem1314 Aug 23, 2022
1c379d5
Update x/ecocredit/core/features/msg_update_class_fees.feature
aleem1314 Aug 23, 2022
69b26f5
Update x/ecocredit/server/core/features/msg_toggle_class_allowlist.fe…
aleem1314 Aug 23, 2022
f30b3f4
Merge branch 'main' into aleem/core-params-migration
aleem1314 Aug 23, 2022
165e47b
refactor: address review changes
aleem1314 Aug 23, 2022
6b3ef4a
Update CHANGELOG.md
aleem1314 Aug 23, 2022
30ee073
refactor: review changes
aleem1314 Aug 24, 2022
4ab023e
Merge branch 'aleem/core-params-migration' of https://github.com/rege…
aleem1314 Aug 24, 2022
5e7276b
Merge branch 'main' into aleem/core-params-migration
aleem1314 Aug 24, 2022
e469383
Update x/ecocredit/server/core/features/msg_add_class_creator.feature
aleem1314 Aug 25, 2022
ecaefcb
chore: review changes
aleem1314 Aug 25, 2022
4c13d3f
Merge branch 'aleem/core-params-migration' of https://github.com/rege…
aleem1314 Aug 25, 2022
ee68612
Merge branch 'main' into aleem/core-params-migration
aleem1314 Aug 25, 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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#1342](https://github.com/regen-network/regen-ledger/pull/1342) The `NewKeeper` method in `ecocredit/marketplace` requires an `authority` address.
- [#1342](https://github.com/regen-network/regen-ledger/pull/1342) The `AllowedDenom` proposal handler has been removed.


#### Added

- [#1337](https://github.com/regen-network/regen-ledger/pull/1342) Add `AddAllowedDenom` msg-based gov proposal
Expand All @@ -51,6 +52,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#1362](https://github.com/regen-network/regen-ledger/pull/1362) Add `ClassSequence` state validation checks
- [#1362](https://github.com/regen-network/regen-ledger/pull/1362) Add `OriginTxIndex` state validation checks
- [#1362](https://github.com/regen-network/regen-ledger/pull/1362) Add `ProjectSequence` state validation checks
- [#1354](https://github.com/regen-network/regen-ledger/pull/1354) Add `AddClassCreators` msg-based gov proposal.
- [#1354](https://github.com/regen-network/regen-ledger/pull/1354) Add `RemoveClassCreators` msg-based gov proposal.
aleem1314 marked this conversation as resolved.
Show resolved Hide resolved
- [#1354](https://github.com/regen-network/regen-ledger/pull/1354) Add `ToggleCreditClassAllowlist` msg-based gov proposal.
- [#1354](https://github.com/regen-network/regen-ledger/pull/1354) Add `UpdateClassFees` msg-based gov proposal.

#### Changed

Expand Down Expand Up @@ -79,6 +84,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- [#1337](https://github.com/regen-network/regen-ledger/pull/1337) Remove `AddCreditType` proposal handler
- [#1342](https://github.com/regen-network/regen-ledger/pull/1342) Remove `AllowedDenom` proposal handler
- [#1354](https://github.com/regen-network/regen-ledger/pull/1354) Removed `paramsKeeper` parameter from `core/Keeper`.

### x/group

Expand Down
234 changes: 222 additions & 12 deletions api/regen/ecocredit/v1/state.cosmos_orm.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading