use crate::{CheckError, StorageSlot, Transaction};
use derivative::Derivative;
use fuel_crypto::Hasher;
use fuel_merkle::binary::in_memory::MerkleTree as BinaryMerkleTree;
use fuel_merkle::sparse::in_memory::MerkleTree as SparseMerkleTree;
use fuel_types::{fmt_truncated_hex, Bytes32, Bytes8, ContractId, Salt};
use alloc::vec::Vec;
use core::iter;
#[derive(Default, Derivative, Clone, PartialEq, Eq, Hash)]
#[derivative(Debug)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Contract(#[derivative(Debug(format_with = "fmt_truncated_hex::<16>"))] Vec<u8>);
impl Contract {
pub fn root(&self) -> Bytes32 {
Self::root_from_code(self)
}
pub fn root_from_code<B>(bytes: B) -> Bytes32
where
B: AsRef<[u8]>,
{
let mut tree = BinaryMerkleTree::new();
bytes
.as_ref()
.chunks(Bytes8::LEN)
.map(|c| {
if c.len() == Bytes8::LEN {
unsafe { Bytes8::from_slice_unchecked(c) }
} else {
let mut b = [0u8; 8];
let l = c.len();
b[..l].copy_from_slice(c);
b.into()
}
})
.for_each(|l| tree.push(l.as_ref()));
tree.root().into()
}
pub fn initial_state_root<'a, I>(storage_slots: I) -> Bytes32
where
I: Iterator<Item = &'a StorageSlot>,
{
let mut tree = SparseMerkleTree::new();
storage_slots.for_each(|s| tree.update(s.key(), s.value().as_ref()));
tree.root().into()
}
pub fn default_state_root() -> Bytes32 {
Self::initial_state_root(iter::empty())
}
pub fn id(&self, salt: &Salt, root: &Bytes32, state_root: &Bytes32) -> ContractId {
let mut hasher = Hasher::default();
hasher.input(ContractId::SEED);
hasher.input(salt);
hasher.input(root);
hasher.input(state_root);
ContractId::from(*hasher.digest())
}
}
impl From<Vec<u8>> for Contract {
fn from(c: Vec<u8>) -> Self {
Self(c)
}
}
impl From<&[u8]> for Contract {
fn from(c: &[u8]) -> Self {
Self(c.into())
}
}
impl From<&mut [u8]> for Contract {
fn from(c: &mut [u8]) -> Self {
Self(c.into())
}
}
impl From<Contract> for Vec<u8> {
fn from(c: Contract) -> Vec<u8> {
c.0
}
}
impl AsRef<[u8]> for Contract {
fn as_ref(&self) -> &[u8] {
self.0.as_ref()
}
}
impl AsMut<[u8]> for Contract {
fn as_mut(&mut self) -> &mut [u8] {
self.0.as_mut()
}
}
impl TryFrom<&Transaction> for Contract {
type Error = CheckError;
fn try_from(tx: &Transaction) -> Result<Self, Self::Error> {
match tx {
Transaction::Create(create) => TryFrom::try_from(create),
_ => Err(CheckError::TransactionScriptOutputContractCreated { index: 0 }),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use fuel_types::{bytes::WORD_SIZE, Bytes64};
use itertools::Itertools;
use quickcheck_macros::quickcheck;
use rand::{rngs::StdRng, RngCore, SeedableRng};
use rstest::rstest;
#[rstest]
fn code_root_snapshot(#[values(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 100)] instructions: usize) {
let mut rng = StdRng::seed_from_u64(100);
let code_len = instructions * WORD_SIZE / 2;
let mut code = alloc::vec![0u8; code_len];
rng.fill_bytes(code.as_mut_slice());
let root = Contract::root_from_code(code);
insta::with_settings!(
{snapshot_suffix => format!("instructions-{instructions}")},
{
insta::assert_debug_snapshot!(root);
}
);
}
#[quickcheck]
fn contract_root_matches_code_root(instructions: u8) -> bool {
let mut rng = StdRng::seed_from_u64(100);
let code_len = instructions as usize * WORD_SIZE / 2;
let mut code = alloc::vec![0u8; code_len];
rng.fill_bytes(code.as_mut_slice());
let contract = Contract::from(code.clone());
let code_root = Contract::root_from_code(code);
let contract_root = contract.root();
code_root == contract_root
}
#[rstest]
fn state_root_snapshot(#[values(Vec::new(), vec![Bytes64::new([1u8; 64])])] state_slot_bytes: Vec<Bytes64>) {
let slots: Vec<StorageSlot> = state_slot_bytes.iter().map(Into::into).collect_vec();
let state_root = Contract::initial_state_root(&mut slots.iter());
insta::with_settings!(
{snapshot_suffix => format!("state-root-{}", slots.len())},
{
insta::assert_debug_snapshot!(state_root);
}
);
}
#[test]
fn default_state_root_snapshot() {
let default_root = Contract::default_state_root();
insta::assert_debug_snapshot!(default_root);
}
}