Crates.io | neutron-std |
lib.rs | neutron-std |
version | 4.2.2-rc |
source | src |
created_at | 2023-08-13 12:31:44.586277 |
updated_at | 2024-09-03 09:21:15.163049 |
description | Standard library for Neutron with CosmWasm support included. This package is a modified copy of the osmosis package - https://github.com/osmosis-labs/osmosis-rust/tree/main/packages/osmosis-std |
homepage | https://neutron.org |
repository | https://github.com/neutron-org/neutron-std |
max_upload_size | |
id | 943288 |
size | 1,518,203 |
Neutron's proto-generated types and helpers for interacting with the appchain. Compatible with CosmWasm contract.
You can find all types and querier generated from Neutron's protobuf in their respective module in neutron_std
.
use cosmwasm_std::{CosmosMsg, Response, Env};
use neutron_std::types::osmosis::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"))
}