Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update deps #258

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading