near-primitives 0.35.0

This crate provides the base set of primitives used by other nearcore crates
Documentation
use super::contract_distribution::{CodeBytes, CodeHash};
use crate::state::PartialState;
use borsh::{BorshDeserialize, BorshSerialize};
use near_primitives_core::hash::CryptoHash;
use near_schema_checker_lib::ProtocolSchema;

/// Stored on disk for each chunk, including missing chunks, in order to
/// produce a chunk state witness when needed.
#[derive(Debug, BorshSerialize, BorshDeserialize, ProtocolSchema)]
#[borsh(use_discriminant = true)]
#[repr(u8)]
pub enum StoredChunkStateTransitionData {
    V1(StoredChunkStateTransitionDataV1) = 0,
}

impl StoredChunkStateTransitionData {
    pub fn contract_accesses(&self) -> &[CodeHash] {
        match &self {
            Self::V1(v1) => &v1.contract_accesses,
        }
    }
}

#[derive(Debug, BorshSerialize, BorshDeserialize, ProtocolSchema)]
pub struct StoredChunkStateTransitionDataV1 {
    /// The partial state that is needed to apply the state transition,
    /// whether it is a new chunk state transition or an implicit missing chunk
    /// state transition.
    pub base_state: PartialState,
    /// If this is a new chunk state transition, the hash of the receipts that
    /// were used to apply the state transition. This is redundant information,
    /// but is used to validate against `StateChunkWitness::exact_receipts_hash`
    /// to ease debugging of why a state witness may be incorrect.
    pub receipts_hash: CryptoHash,
    /// The code-hashes of the contracts that are accessed (called) during the state transition.
    pub contract_accesses: Vec<CodeHash>,
    /// Contracts that are deployed during the state transition.
    pub contract_deploys: Vec<CodeBytes>,
}