pub trait IndexResponse {
    fn events(&self) -> Vec<Event> ;
    fn event_attr_value(
        &self,
        event_type: &str,
        attr_key: &str
    ) -> StdResult<String>; fn data(&self) -> Option<Binary>; fn instantiated_contract_address(&self) -> StdResult<Addr> { ... } fn uploaded_code_id(&self) -> StdResult<u64> { ... } }

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§