Skip to content

Commit

Permalink
Cw-tutorial funds
Browse files Browse the repository at this point in the history
  • Loading branch information
jawoznia committed Dec 11, 2024
1 parent 1929600 commit 01c1eaf
Show file tree
Hide file tree
Showing 2 changed files with 500 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/tutorial/cw-contract/execution.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,11 @@ And implement execute handling:
<Tabs.Tab>

```rust filename="src/contract.rs"
use crate::error::ContractError;
use crate::msg::{ExecuteMsg, GreetResp, InstantiateMsg, QueryMsg};
use crate::state::ADMINS;
use cosmwasm_std::{to_json_binary, Binary, Deps, DepsMut, Env, MessageInfo, Response, StdResult};
use cosmwasm_std::{
to_json_binary, Binary, Deps, DepsMut, Env, MessageInfo, Response, StdError, StdResult,
};
use cw_storey::CwStorage;

// ...
Expand Down
Loading

0 comments on commit 01c1eaf

Please sign in to comment.