diff --git a/CHANGELOG.md b/CHANGELOG.md index ab81aad5e..24023565b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,6 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### API Breaking +* [#1196](https://github.com/NibiruChain/nibiru/pull/1196) - refactor(spot)!: default whitelisted asset and query cli * [#1195](https://github.com/NibiruChain/nibiru/pull/1195) - feat(perp)!: Add `MultiLiquidation` feature for perps * [#1158](https://github.com/NibiruChain/nibiru/pull/1158) - feat(asset-registry)!: Add `AssetRegistry` * [#1171](https://github.com/NibiruChain/nibiru/pull/1171) - refactor(asset)!: Replace `common.AssetPair` with `asset.Pair`. diff --git a/x/spot/client/cli/query.go b/x/spot/client/cli/query.go index 793829b16..f5616bc8a 100644 --- a/x/spot/client/cli/query.go +++ b/x/spot/client/cli/query.go @@ -44,7 +44,7 @@ func GetQueryCmd() *cobra.Command { func CmdGetPoolNumber() *cobra.Command { cmd := &cobra.Command{ Use: "get-pool-number", - Short: "QueryPoolNumber", + Short: "Returns the next available pool ID", Args: cobra.ExactArgs(0), RunE: func(cmd *cobra.Command, args []string) (err error) { clientCtx, err := client.GetClientQueryContext(cmd) @@ -72,7 +72,7 @@ func CmdGetPoolNumber() *cobra.Command { func CmdGetPool() *cobra.Command { cmd := &cobra.Command{ - Use: "get-pool [pool-id]", + Use: "pool [pool-id]", Short: "Get a pool by its ID", Args: cobra.ExactArgs(1), RunE: func(cmd *cobra.Command, args []string) (err error) { diff --git a/x/spot/types/params.go b/x/spot/types/params.go index 6e0495e9f..11cb72383 100644 --- a/x/spot/types/params.go +++ b/x/spot/types/params.go @@ -36,6 +36,7 @@ func DefaultParams() Params { denoms.NIBI, denoms.USDC, denoms.NUSD, + denoms.USDT, }, } }