Easy to use, high level Cosmos SDK rust client library.
The Cosmos SDK already has a lot of different APIs. So this library supports plugging in different backing APIs (Cosmos gRPC, Cosmos REST, Tendermint RPC, etc). We hide this complexity away from the cosmos modules (cosmwasm, auth, bank) only exposing the same unified CosmosClient
trait to all of them.
As more APIs are added to Cosmos SDK, we will simply add a new CosmosClient
implementation file keeping the cosmos module code untouched.
Backing API | Dev Status |
---|---|
Tendermint RPC | ๐จ |
Cosmos SDK gRPC | ๐จ |
Cosmos SDK REST | ๐ซ |
Cosmos Module | Dev Status |
---|---|
Auth | โ |
Authz | ๐ซ |
Bank | โ |
Tendermint | ๐จ |
Crisis | ๐ซ |
Distribution | ๐ซ |
Evidence | ๐ซ |
Feegrant | ๐ซ |
Gov | ๐ซ |
Mint | ๐ซ |
Params | ๐ซ |
Slashing | ๐ซ |
Staking | ๐ซ |
Tx | ๐จ |
Upgrade | ๐ซ |
Vesting | ๐ซ |
CosmWasm | ๐จ |
IBC | ๐ซ |
TODO
cargo t
to run the unit tests.