Skip to content

Commit

Permalink
fix more doc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DracoLi committed Nov 21, 2023
1 parent ad6459f commit 158c67e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
- (community) [#1704] Add module params
- (community) [#1706] Add disable inflation upgrade
- (community) [#1745] Enable params update via governance with `MsgUpdateParams`
- (client) [#1784] Add Kava gRPC client

### Bug Fixes

Expand All @@ -59,6 +60,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
## [v0.24.1](https://github.com/Kava-Labs/kava/releases/tag/v0.24.1)

### Features

- (metrics) [#1668] Adds non-state breaking x/metrics module for custom telemetry.
- (metrics) [#1669] Add performance timing metrics to all Begin/EndBlockers
- (community) [#1751] Add `AnnualizedRewards` query endpoint
Expand Down Expand Up @@ -302,6 +304,7 @@ the [changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.38.4/CHANGELOG.md).
- [#257](https://github.com/Kava-Labs/kava/pulls/257) Include scripts to run
large-scale simulations remotely using aws-batch

[#1784]: https://github.com/Kava-Labs/kava/pull/1784
[#1755]: https://github.com/Kava-Labs/kava/pull/1755
[#1761]: https://github.com/Kava-Labs/kava/pull/1761
[#1752]: https://github.com/Kava-Labs/kava/pull/1752
Expand Down
6 changes: 3 additions & 3 deletions client/grpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package main
import (
kavaGrpc "github.com/kava-labs/kava/client/grpc"
)
grpcUrl := "https://grpc.data.kava.io"
grpcUrl := "https://grpc.kava.io:443"
client, err := kavaGrpc.NewClient(url)
if err != nil {
panic(err)
Expand Down Expand Up @@ -49,7 +49,7 @@ import (
evmutiltypes "github.com/kava-labs/kava/x/evmutil/types"
)

rsp, err := suite.Client.Query.Evmutil.Params(
rsp, err := client.Query.Evmutil.Params(
context.Background(), &evmutiltypes.QueryParamsRequest{},
)
```
Expand All @@ -62,7 +62,7 @@ Example: Util query to get a base account

```go
kavaAcc := "kava19rjk5qmmwywnzfccwzyn02jywgpwjqf60afj92"
rsp, err := suite.Client.Util.BaseAccount(kavaAcc)
rsp, err := client.Util.BaseAccount(kavaAcc)
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 158c67e

Please sign in to comment.