Files
nanoreth/crates/storage/codecs/src/alloy/genesis_account.rs

90 lines
3.0 KiB
Rust

use crate::Compact;
use alloc::vec::Vec;
use alloy_genesis::GenesisAccount as AlloyGenesisAccount;
use alloy_primitives::{Bytes, B256, U256};
use reth_codecs_derive::add_arbitrary_tests;
/// `GenesisAccount` acts as bridge which simplifies Compact implementation for
/// `AlloyGenesisAccount`.
///
/// Notice: Make sure this struct is 1:1 with `alloy_genesis::GenesisAccount`
#[derive(Debug, Clone, PartialEq, Eq, Compact)]
pub(crate) struct GenesisAccountRef<'a> {
/// The nonce of the account at genesis.
nonce: Option<u64>,
/// The balance of the account at genesis.
balance: &'a U256,
/// The account's bytecode at genesis.
code: Option<&'a Bytes>,
/// The account's storage at genesis.
storage: Option<StorageEntries>,
/// The account's private key. Should only be used for testing.
private_key: Option<&'a B256>,
}
#[derive(Debug, Clone, PartialEq, Eq, Default, Compact)]
#[cfg_attr(test, derive(arbitrary::Arbitrary, serde::Serialize, serde::Deserialize))]
#[add_arbitrary_tests(compact)]
pub(crate) struct GenesisAccount {
/// The nonce of the account at genesis.
nonce: Option<u64>,
/// The balance of the account at genesis.
balance: U256,
/// The account's bytecode at genesis.
code: Option<Bytes>,
/// The account's storage at genesis.
storage: Option<StorageEntries>,
/// The account's private key. Should only be used for testing.
private_key: Option<B256>,
}
#[derive(Debug, Clone, PartialEq, Eq, Default, Compact)]
#[cfg_attr(test, derive(arbitrary::Arbitrary, serde::Serialize, serde::Deserialize))]
#[add_arbitrary_tests(compact)]
pub(crate) struct StorageEntries {
entries: Vec<StorageEntry>,
}
#[derive(Debug, Clone, PartialEq, Eq, Default, Compact)]
#[cfg_attr(test, derive(arbitrary::Arbitrary, serde::Serialize, serde::Deserialize))]
#[add_arbitrary_tests(compact)]
pub(crate) struct StorageEntry {
key: B256,
value: B256,
}
impl Compact for AlloyGenesisAccount {
fn to_compact<B>(&self, buf: &mut B) -> usize
where
B: bytes::BufMut + AsMut<[u8]>,
{
let account = GenesisAccountRef {
nonce: self.nonce,
balance: &self.balance,
code: self.code.as_ref(),
storage: self.storage.as_ref().map(|s| StorageEntries {
entries: s
.iter()
.map(|(key, value)| StorageEntry { key: *key, value: *value })
.collect(),
}),
private_key: self.private_key.as_ref(),
};
account.to_compact(buf)
}
fn from_compact(buf: &[u8], len: usize) -> (Self, &[u8]) {
let (account, _) = GenesisAccount::from_compact(buf, len);
let alloy_account = Self {
nonce: account.nonce,
balance: account.balance,
code: account.code,
storage: account
.storage
.map(|s| s.entries.into_iter().map(|entry| (entry.key, entry.value)).collect()),
private_key: account.private_key,
};
(alloy_account, buf)
}
}