6 releases (stable)
new 5.0.0 | Nov 3, 2024 |
---|---|
4.2.3 | Sep 23, 2024 |
4.2.3-slinky | Nov 3, 2024 |
4.2.0 | Aug 8, 2024 |
4.1.0 | Jul 31, 2024 |
#645 in Magic Beans
1,081 downloads per month
Used in 3 crates
(2 directly)
535KB
14K
SLoC
neutron-std
Neutron's proto-generated types and helpers for interacting with the appchain. Compatible with CosmWasm contract.
CosmWasm stargate message and stargate query
You can find all types and querier generated from neutron's protobuf in their respective module in neutron_std
. To understand how each module works, please look at the neutron documentation.
Full working example contract can be found here.
Publishing Osmosis' message from CosmWasm Contract
use cosmwasm_std::{CosmosMsg, Response, Env};
use neutron_std::types::neutron::tokenfactory::v1beta1::MsgCreateDenom;
# type ContractError = cosmwasm_std::StdError;
// ..
pub fn try_create_denom(env: Env, subdenom: String) -> Result<Response, ContractError> {
let sender = env.contract.address.into();
// construct message and convert them into cosmos message
// (notice `CosmosMsg` type and `.into()`)
let msg_create_denom: CosmosMsg = MsgCreateDenom { sender, subdenom }.into();
Ok(Response::new()
.add_message(msg_create_denom)
.add_attribute("method", "try_create_denom"))
}
Querying Osmosis' module
Each module has its own querier that derived from protobuf service definition that can be found here.
To avoid non-determinism in stargate queries, only some of them are whitelisted, you can find the list here.
use cosmwasm_std::{Deps, Env, StdResult};
use neutron_std::types::neutron::tokenfactory::v1beta1::{TokenfactoryQuerier, QueryDenomsFromCreatorResponse};
// ..
fn query_creator_denoms(deps: Deps, env: Env) -> StdResult<QueryDenomsFromCreatorResponse> {
// create `TokenfactoryQuerier`
let tokenfactory = TokenfactoryQuerier::new(&deps.querier);
// `TokenfactoryQuerier` has all the fns for querying the module
let res = tokenfactory.denoms_from_creator(env.contract.address.into())?;
Ok(QueryDenomsFromCreatorResponse { denoms: res.denoms })
}
Querying Pool
When querying pool related values, eg. Gamm::pool
, you might find that return type contains Any
. It's a cosmos' way to implement polymorphism in protobuf.
message QueryPoolResponse {
google.protobuf.Any pool = 1 [ (cosmos_proto.accepts_interface) = "PoolI" ];
}
This is needed due to neutron supporting multiple pool types which will be added in the future.
For that matter, neutron-std
provides TryFrom
trait for all possible Any
used in all query responses in this crate.
That means the following code works:
use prost::DecodeError;
use cosmwasm_std::{Deps, StdResult, StdError};
use neutron_std::types::neutron::gamm::v1beta1::GammQuerier;
fn query_pool(
deps: &Deps,
pool_id: u64,
) -> StdResult<neutron_std::types::neutron::gamm::v1beta1::Pool> {
let res = GammQuerier::new(&deps.querier).pool(pool_id)?;
res.pool
.ok_or_else(|| StdError::NotFound {
kind: "pool".to_string(),
})?
.try_into() // convert `Any` to `neutron_std::types::neutron::gamm::v1beta1::Pool`
.map_err(|e: DecodeError| StdError::ParseErr {
target_type: "neutron_std::types::neutron::gamm::v1beta1::Pool".to_string(),
msg: e.to_string(),
})
}
Or if later you want to support multiple pool type
use prost::{DecodeError, Message};
use cosmwasm_std::{Deps, StdResult, StdError};
use neutron_std::types::neutron::gamm::v1beta1::GammQuerier;
enum Pool {
Balancer(neutron_std::types::neutron::gamm::v1beta1::Pool),
StableSwap(neutron_std::types::neutron::gamm::poolmodels::stableswap::v1beta1::Pool),
}
impl TryFrom<neutron_std::shim::Any> for Pool {
type Error = StdError;
fn try_from(value: neutron_std::shim::Any) -> Result<Self, Self::Error> {
if let Ok(pool) = neutron_std::types::neutron::gamm::v1beta1::Pool::decode(value.value.as_slice()) {
return Ok(Pool::Balancer(pool));
}
if let Ok(pool) = neutron_std::types::neutron::gamm::poolmodels::stableswap::v1beta1::Pool::decode(value.value.as_slice()) {
return Ok(Pool::StableSwap(pool));
}
Err(StdError::ParseErr {
target_type: "Pool".to_string(),
msg: "Unmatched pool: must be either `Balancer` or `StableSwap`.".to_string(),
})
}
}
fn query_pool(
deps: &Deps,
pool_id: u64,
) -> StdResult<Pool> {
let res = GammQuerier::new(&deps.querier).pool(pool_id)?;
res.pool
.ok_or_else(|| StdError::NotFound {
kind: "pool".to_string(),
})?
.try_into() // convert `Any` to `Pool`
}
When translate to rust, especially with CosmWasm, it can get tricky if we want to also support json (de)serialization. It could erase type url information from serialized json as for current implementation..
Non-CosmWasm Client
(WIP)
Dependencies
~5.5–9MB
~175K SLoC