//! //! Translates the external code operations. //! use crate::eravm::context::Context; use crate::eravm::Dependency; /// /// Translates the `extcodesize` instruction. /// pub fn size<'ctx, D>( _context: &mut Context<'ctx, D>, _address: inkwell::values::IntValue<'ctx>, ) -> anyhow::Result> where D: Dependency + Clone, { todo!() } /// /// Translates the `extcodehash` instruction. /// pub fn hash<'ctx, D>( _context: &mut Context<'ctx, D>, _address: inkwell::values::IntValue<'ctx>, ) -> anyhow::Result> where D: Dependency + Clone, { todo!() }