useborsh::{BorshDeserialize, BorshSerialize};useserde::{Deserialize, Serialize};usecrate::tx_verifier::RawTx;/// Contains raw transactions obtained from the DA blob.
#[derive(Debug, PartialEq, Clone, BorshDeserialize, BorshSerialize, Serialize, Deserialize)]pubstructBatch{/// Raw transactions.
pubtxs:Vec<RawTx>,
}