Skip to content

Commit

Permalink
instance
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda committed Apr 11, 2024
1 parent 1459544 commit 7ed95a6
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion mantis/node/tests/cvms.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use cosmwasm_std::{Addr, Empty};
use cw_multi_test::{App, Contract, ContractWrapper};
use cw_multi_test::{App, Contract, ContractWrapper, Executor};
// use cw_orch::prelude::*;
// use cw_orch::interface;

Expand Down Expand Up @@ -29,5 +29,14 @@ fn cvm_devnet_case() {
let cw_cvm_outpost_code_id = centauri.store_code(Box::new(cw_cvm_outpost_wasm));
let cw_cvm_executor_code_id = centauri.store_code(Box::new(cw_cvm_executor_wasm));

let cw_cvm_outpost_contract = centauri.instantiate_contract(
cw_cvm_outpost_code_id,
Addr::unchecked("juno1g2rahf5846rxzp3fwlswy08fz8ccuwk03k57y"),
&Empty {},
&[],
"cvm-outpost",
None,
).unwrap();

let sender = Addr::unchecked("juno16g2rahf5846rxzp3fwlswy08fz8ccuwk03k57y");
}

0 comments on commit 7ed95a6

Please sign in to comment.