use abstract_os::module_factory::*;
use boot_core::{BootEnvironment, BootError, Contract, TxResponse};
pub use abstract_os::module_factory::{
ExecuteMsgFns as MFactoryExecFns, QueryMsgFns as MFactoryQueryFns,
};
use boot_core::{interface::BootExecute, prelude::boot_contract};
#[boot_contract(InstantiateMsg, ExecuteMsg, QueryMsg, MigrateMsg)]
pub struct ModuleFactory<Chain>;
impl<Chain: BootEnvironment> ModuleFactory<Chain> {
pub fn new(name: &str, chain: Chain) -> Self {
let mut contract = Contract::new(name, chain);
contract = contract.with_wasm_path("module_factory");
Self(contract)
}
pub fn change_ans_host_addr(&self, mem_addr: String) -> Result<TxResponse<Chain>, BootError> {
self.execute(
&ExecuteMsg::UpdateConfig {
admin: None,
ans_host_address: Some(mem_addr),
version_control_address: None,
},
None,
)
}
}