This crate provides Cyber-specific bindings to enable your CosmWasm smart contracts to interact with the Cyber blockchain by exposing messages and queriers that can be emitted and used from within your contract.
Currently, the Cyber bindings include:
In order to use the query functions enabled by the bindings, create a CyberQuerier
instance within your contract logic. You can access all the enabled queries through this object.
```rust // src/contract.rs use cosmwasmstd::Coin; use cyberstd::{ CyberQuerier, RankValueResponse };
...
// handler
pub fn trysomething(
deps: Deps,
_env: Env,
particle: String,
...
) -> StdResult
You may want your contract to perform messages such as MsgCyberlink
operations at the end of its execution. To do this, create a message using the predefined functions:
create_cyberlink_msg
```rust use cosmwasmstd::CosmosMsg; use cyberstd::{ createcyberlinkmsg, CyberMsgWrapper };
...
pub fn trysomething(
deps: DepsMut,
env: Env,
links: Vec,
...
) -> Result
let res = Response::new()
.add_message(msg);
Ok(res)
} ```