EncodedResponseQuery

Type Alias EncodedResponseQuery 

Source
pub type EncodedResponseQuery = ResponseQuery<Vec<u8>>;
Expand description

ResponseQuery with borsh-encoded data field

Aliased Type§

pub struct EncodedResponseQuery {
    pub data: Vec<u8>,
    pub info: String,
    pub proof: Option<ProofOps>,
    pub height: BlockHeight,
}

Fields§

§data: Vec<u8>

Response data to be borsh encoded

§info: String

Non-deterministic log of the request execution

§proof: Option<ProofOps>

Optional proof - used for storage value reads which request prove

§height: BlockHeight

Block height from which data was derived