Larry
Larry
## Summary of Bug the `make rosetta-data` command is broken with the following error: ``` $ make rosetta-data Makefile:76: RocksDB support is disabled; to build and test with RocksDB support,...
## Description Closes: #12722 --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to...
CosmWasm requires types to implement `serde::{Serialize, Deserialize}` and `schemars::JsonSchema` traits in order for them to be used in contracts. Suggest introducing an optional `cosmwasm` trait, that if enabled, will derive...
I want to write native Rust code to query an Osmosis node via gRPC. However, whereas `osmosis-std` comes with cosmwasm queriers, it doesn't come with gRPC query clients. I had...
Not a problem that needs to be addressed immediately, but I want to point this out here. The latest version of ADR-028 (https://github.com/cosmos/cosmos-sdk/blob/main/docs/architecture/adr-028-public-key-addresses.md) suggests a new address derivation mechanism that...
```rust // suppose this exceeds max line width... let value = my_function(param1, param2, param3, param4, param5); // option 1 let value = my_function(param1, param2, param3, param4, param5); // option 2...
In [host_functions.rs](https://github.com/cosmos/ics23/blob/master/rust/src/host_functions.rs#L54-L59): ```rust pub trait HostFunctionsProvider { /// The SHA-512 hash algorithm with its output truncated to 256 bits. fn sha2_512_truncated(message: &[u8]) -> [u8; 32]; } ``` Then, in [ops.rs](https://github.com/cosmos/ics23/blob/master/rust/src/ops.rs#L48),...
Closes: #324 See #324 for rationale.
The `use ics23;` statement in the no-std check crate triggers the following linter warning: ```plain warning: this import is redundant --> no-std-check/src/lib.rs:9:1 | 9 | use ics23; | ^^^^^^^^^^ help:...
Implement `BorshSerialize` and `BorshDeserialize` for `serde_json::Value`. This is useful, for example, if a program is to take an arbitrary JSON as input (as `Value`), and store it as raw bytes....