1use starknet_types_core::felt::Felt; 2 3pub trait HashProducer { 4 type Error; 5 fn generate_hash(&self) -> Result<Felt, Self::Error>; 6}