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