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

fix: add query commands #330

Merged
merged 3 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
232 changes: 119 additions & 113 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,131 +26,137 @@ Contains bug fixes.
### Improvements

Contains all the PRs that improved the code without changing the behaviors.
-->

## v1.0.6-Prerelease

### Added
- Added `VersionForAddress` field to `GenesisState`.

### Changed
- Updated outdated dependencies.
- Moved funds from claim to liquidity reserve when airdrop ends.

### Fixed
- Fix bug that would allow doubling claims with thorchain claims
- Fixed old expirations not being removed.
- Fixed incorrect delegate usage in `msg open contract`.
- Fixed the recipient’s `IsTransferable` field being overwritten to `false` in `MsgClaimThorchain`.
- Fixed `GenesisState` validation.
- Fixed validator rewards payout.
- Fixed bug allowing double claims with Thorchain claims.
- Fixed non deterministic map iteration to sorted iteration

---

## v1.0.5-Prerelease

### Added
- Update outdated dependencies
- fixed old expirations are not removed
- fixed not delegate being used in msg open contract
- fixed the recipient’s IsTransferable field is overwritten to false in MsgClaimThorchain
- fixed genesis state validation
- Added Arkeo testnet validator addresses to airdrop.

### Changed
- Updated Docker images.
- Set minimum gas price to zero.

### Fixed
- Updated event labels on Thorchain delegate events.
- Added `Response` to claim functions.

---

## v1.0.4-Prerelease

### Changed
- Updated Docker images.

---

## v1.0.3-Prerelease

### Added
- Move funds from claim to liquidity reserve when airdrop ends
- Added Sentinel setup documentation.
- Added Sentinel regression test.
- Added GoReleaser for Sentinel and Directory Service.

### Changed
- Updated Sentinel to handle provider events.
- Separated testnet and mainnet releaser.
- Updated Thorchain claim address.

### Fixed
- added VersionForAddress field to GenesisState
- Fixed code lint issues.
- Fixed WebSocket client issue with event stream.
- Fixed Swagger issue.
- Fixed Docker files and scripts.
- Fixed GoReleaser for binary and Docker.

### Fixed
- validator rewards payout
---

### Fixed
- fix non deterministic map iteration to sorted iteration
## v1.0.2-Prerelease

### Changed
- Updated Thorchain claim server address handling.

### Fixed
- Fixed regression test version issues.

---

## v1.0.1-Prerelease

# v1.0.5-Prerelease
### Added
- Arkeo testnet validator addresses to airdrop
- Added claim record scripts.
- Updated Thorchain Claims Proto.
- Added testnet setup documentation using local build and Cosmovisor.
- Added validator setup documentation.
- Added new accounts to handle rewards.
- Introduced new parameters to Arkeo module.
- Updated validator reward distribution.
- Released testnet Genesis file.

## Changed
- Updated docker images
- Set minimum gas price to zero
### Changed
- Removed unused module account.
- Disabled system validator rewards.
- Set default mint parameters to zero.
- Redirected validator and delegator rewards from the Reserve Module.
- Updated testnet seed and peer addresses.
- Updated testnet documentation.

### Fixed
- Updated event labels on TC delegate events
- Added Response to claim functions

# v1.0.4-Prerelease

## Changed
- Updated docker images

# v1.0.3-Prerelease

## Added
- Added sentinel setup docs
- Added sentinel regression test
- Added go releaser for sentinel and directory service


## Changed
- Updated sentinel to handle provider events
- moved testnet and mainnet releaser separately
- tc claim address

## Fixed
- Fixed code lint
- Fixed ws client issue with event stream
- Fixed swagger issue
- Docker files and scripts
- Go releaser for binary and docker

# v1.0.2-Prerelease

## Added

## Changed
- Updated thorchain claim server address handling

## Fixed
- Fixed Regression Test Version Issues

# v1.0.1-Prerelease

## Added
- Add claim record scripts
- Thorchain Claims Proto Updates
- Documentation of Testnet Setup using local build and Cosmovisor
- Documentation update and addition of validator setup documentation
- New accounts to handle rewards
- New Params to Arkeo Module
- Update validator distribution of rewards
- Testnet Genesis File

## Changed
- Removed unused module account
- Disabled System Validator Rewards
- Default Mint params set to zero
- Validator and Delegator rewards from Reserve Module
- Updated testnet seed and peer address
- Updated testnet docs

## Fixed
- Testnet binary generation using go build
- Fixed Regression Testing
- Updated Docs
- Fixed Consumer in Directory Service
- Fixed Regression Export
- Fixed localnet docker
- updated the genesis file
- claim timeout
- Fixed module imports
- update module to implement APPModuleBasic and AppModule
- Updated Tests on arkeo module keeper
- version issue on begin blocker
- Fixed Genesis Url
- Fixed thorchain claim server address mainnet

# v1.0.0-Prerelease

## Added

- Binary and Docker Image releaser
- Release , Lint , Release Check into CI Actions
- Added ThorChain Claims and unit tests


## Changed

- Updated Cosmos SDK from 0.46.13 to 0.50.8
- Updated IBC 5 to 8.3.1
- Updated Proto generation using proto-builder image

## Fixed

- Event Ordering
- Updated Docker Dependencies
- Fixed CI checks and Release Checks
- Fixed UnitTest and Module Imports
- Fixed Default Commands on the Arkeo Cmd
- Fixed testnet binary generation using `go build`.
- Fixed regression testing issues.
- Updated documentation.
- Fixed consumer in Directory Service.
- Fixed regression export.
- Fixed localnet Docker setup.
- Updated genesis file.
- Fixed claim timeout.
- Fixed module imports.
- Updated module to implement `APPModuleBasic` and `AppModule`.
- Updated tests for Arkeo module keeper.
- Fixed version issue in `begin_blocker`.
- Fixed Genesis URL.
- Fixed Thorchain claim server address on mainnet.

---

## v1.0.0-Prerelease

### Added
- Introduced binary and Docker image releaser.
- Implemented CI actions for release, lint, and release check.
- Added Thorchain claims and unit tests.

### Changed
- Upgraded Cosmos SDK from `0.46.13` to `0.50.8`.
- Upgraded IBC from `5` to `8.3.1`.
- Updated Proto generation using `proto-builder` image.

### Fixed
- Fixed event ordering issues.
- Updated Docker dependencies.
- Fixed CI checks and release checks.
- Fixed unit tests and module imports.
- Fixed default commands in the Arkeo CLI.

---

4 changes: 4 additions & 0 deletions x/arkeo/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ func GetQueryCmd() *cobra.Command {

cmd.AddCommand(CmdQueryParams())
cmd.AddCommand(CmdActiveContract())
cmd.AddCommand(CmdListContracts())
cmd.AddCommand(CmdListProviders())
cmd.AddCommand(CmdShowContract())
cmd.AddCommand(CmdShowProvider())

// this line is used by starport scaffolding # 1

Expand Down
Loading