osmosis-rust icon indicating copy to clipboard operation
osmosis-rust copied to clipboard

Rust libraries for osmosis

Results 19 osmosis-rust issues
Sort by recently updated
recently updated
newest added

The previous implementation threw a type error. | ::serde::Serialize, | ^^^^^^^^^^^^^^^^^^ expected `&[u8]`, found `&Option` This adds custom serde functions and an additional transformer to handle the option correctly.

As title said. I'm using m1 mackbook pro and on the latest version of osmosis-std 0.22. Even renaming a file takes super long, and indexing also takes very long time....

Hi! I'm this package to parse the proto files for tokenfactory and v0.15.3 works great. *but* v0.20.1 (actually anything beyond 0.15.3) fails with the following issue ``` error[E0433]: failed to...

Would you like to add copyright to the source code of this repository? https://www.apache.org/licenses/LICENSE-2.0.html#redistribution >c. You must retain, in the Source form of any Derivative Works that You distribute, all...

Since the new query has been whitelisted: https://github.com/osmosis-labs/osmosis/issues/5812

Corrected typo, please check. autogenrating → autogen**e**rating

I'm trying to query user_positions that were opened by my smart contract but I'm getting parsing errors Example: ```rust let cl_querier = ConcentratedliquidityQuerier::new(&deps.querier); let user_positions_response = cl_querier.user_positions(env.contract.address.to_string(), config.pool_id, None)?; ```...

Without this PR, transform adds `import osmosis_std_derive::CosmwasmExt` to all modules given to `transform_module` to decrease warnings in "osmosis_std". This PR prevents adding `import osmosis_std_derive::CosmwasmExt` modules not using it. Modules that...

Now, this is manually add in `types/tendermint/types.rs` ```rs #[allow(clippy::derive_partial_eq_without_eq)] #[derive( Clone, PartialEq, Eq, ::prost::Message, ::serde::Serialize, ::serde::Deserialize, ::schemars::JsonSchema, CosmwasmExt, )] #[proto_message(type_url = "/tendermint.types.EventDataRoundState")] pub struct EventDataRoundState { #[prost(int64, tag = "1")]...