Skip to content

Commit

Permalink
chore: Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jawoznia committed Nov 17, 2023
1 parent 23f072c commit 10aae67
Show file tree
Hide file tree
Showing 31 changed files with 503 additions and 421 deletions.
274 changes: 156 additions & 118 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -498,13 +498,13 @@ Going through the doc, you will see that all messages are generated in their str
modules. To send messages to the contract, we can just use them:

```rust
use sylvia::cw_std::{WasmMsg, to_binary};
use sylvia::cw_std::{WasmMsg, to_json_binary};

fn some_handler(my_contract_addr: String) -> StdResult<Response> {
let msg = my_contract_crate::ExecMsg::Increment {};
let msg = WasmMsg::ExecMsg {
contract_addr: my_contract_addr,
msg: to_binary(&msg)?,
msg: to_json_binary(&msg)?,
funds: vec![],
}

Expand Down
Loading

0 comments on commit 10aae67

Please sign in to comment.