1/// A byte that represents the version of the transaction. 2#[derive(Copy, Clone, Debug, Default)] 3#[repr(u8)] 4pub enum TransactionVersion { 5 #[default] 6 Legacy = u8::MAX, 7 V0 = 0, 8}