1use crate::modules::auth::model::Address; 2 3pub trait GetCodeIds { 4 fn get_code_ids(&self) -> Vec<u64>; 5} 6 7pub trait GetInstantiateAddrs { 8 fn get_instantiate_addr(&self) -> Vec<Address>; 9}