tycho-rpc 0.3.9

Public RPC service.
Documentation
use serde::{Deserialize, Serialize};
use tycho_types::models::*;
use tycho_types::prelude::*;
use tycho_util::serde_helpers;

// NOTE: All fields must be serialized in `camelCase`.

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GenTimings {
    #[serde(with = "serde_helpers::string")]
    pub gen_lt: u64,
    pub gen_utime: u32,
}

impl GenTimings {
    pub const fn max_by_lt(self, other: Self) -> Self {
        if other.gen_lt > self.gen_lt {
            other
        } else {
            self
        }
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct LastTransactionId {
    pub lt: u64,
    pub hash: HashBytes,
}

impl Serialize for LastTransactionId {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        #[derive(Serialize)]
        #[serde(rename_all = "camelCase")]
        struct LastTransactionId<'a> {
            is_exact: bool,
            #[serde(with = "serde_helpers::string")]
            lt: u64,
            hash: &'a HashBytes,
        }

        LastTransactionId {
            is_exact: true,
            lt: self.lt,
            hash: &self.hash,
        }
        .serialize(serializer)
    }
}

#[derive(Default, Debug, Copy, Clone, Eq, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct StateTimings {
    pub last_mc_block_seqno: u32,
    pub last_mc_utime: u32,
    pub mc_time_diff: i64,
    pub smallest_known_lt: Option<u64>,
}

pub fn serialize_account(account: &Account) -> Result<Cell, tycho_types::error::Error> {
    let cx = Cell::empty_context();
    let mut builder = CellBuilder::new();
    account.address.store_into(&mut builder, cx)?;
    account.storage_stat.store_into(&mut builder, cx)?;
    account.last_trans_lt.store_into(&mut builder, cx)?;
    account.balance.store_into(&mut builder, cx)?;
    account.state.store_into(&mut builder, cx)?;
    builder.build_ext(cx)
}