1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
use crate::build_contracts::build_contract; use std::{io, process::ExitStatus}; use util::cleos; fn deploy_example_contract(account: &str, bin: &str) -> io::Result<ExitStatus> { cleos() .arg("set") .arg("abi") .arg(account) .arg(format!("mnt/dev/examples/{}/{}.abi.json", bin, bin)) .status()?; cleos() .arg("set") .arg("code") .arg(account) .arg(format!("mnt/dev/release/{}_gc.wasm", bin)) .status() } pub fn run_deploy_examples() -> io::Result<()> { for (package, bin, account) in &[ ("addressbook", "addressbook", "addressbook"), ("hello", "hello", "hello"), ("hello_bare", "hello_bare", "hellobare"), ("tictactoe", "tictactoe", "tictactoe"), ] { build_contract(package); deploy_example_contract(account, bin)?; } Ok(()) }