cosmrs 0.22.0

Transaction builder and signer for Cosmos-based blockchains
Documentation
use super::{AbsoluteTxPosition, ContractCodeId};
use crate::{
    proto::{self, cosmwasm::wasm::v1::ContractCodeHistoryOperationType},
    Error, ErrorReport, Result,
};

/// ContractCodeHistoryEntry metadata to a contract.
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub struct ContractCodeHistoryEntry {
    /// The source of this history entry.
    pub operation: ContractCodeHistoryOperationType,

    /// Reference to the stored Wasm code.
    pub code_id: ContractCodeId,

    /// Updated Tx position when the operation was executed.
    pub updated: Option<AbsoluteTxPosition>,

    /// Raw message returned by a wasm contract.
    pub msg: Vec<u8>,
}

impl TryFrom<proto::cosmwasm::wasm::v1::ContractCodeHistoryEntry> for ContractCodeHistoryEntry {
    type Error = ErrorReport;

    fn try_from(
        proto: proto::cosmwasm::wasm::v1::ContractCodeHistoryEntry,
    ) -> Result<ContractCodeHistoryEntry> {
        Ok(ContractCodeHistoryEntry {
            operation: ContractCodeHistoryOperationType::try_from(proto.operation).map_err(
                |_| Error::InvalidEnumValue {
                    name: "operation",
                    found_value: proto.operation,
                },
            )?,
            code_id: proto.code_id,
            updated: proto.updated.map(TryFrom::try_from).transpose()?,
            msg: proto.msg,
        })
    }
}