crStiv
crStiv
## Description nothign fancy, just fixed typos
Implements the TODO comment on line 133 to check if a path name is already used before collecting user input. This prevents wasted time from entering details for a path...
Fix issue #2605 - Add static method KimchiProof.dummy() for creating dummy proofs - Add proofsEnabled flag to ZkFunction.compile() to disable proof generation - Return dummy proofs when proofsEnabled is false...
Fixed TODO: ensure UserOperationEvent queries are restricted to the specific transaction block. Previously queryFilter(filter, block) would search from block to latest, now uses queryFilter(filter, block, block) to query only the...
## What ❔ - Replaced panic in `get_bytecode` with proper error handling using `anyhow::Result`. - Logs a warning if bytecode is missing. - Added unit tests for both successful and...
Cleaned up and expanded error handling when checking balances for ETH, ERC20, and ERC1155 bridging. Now catching more specific cases like insufficient allowance, balance issues, and reverted txs with clearer...
## Describe the changes This PR simplifies the call to ecntt in tests.rs by removing an unnecessary conversion using HostSlice::from_slice(...). The slice is now passed directly using .into_slice(). ## Describe...
1) Refactored resize_to_next_power_of_two to safely handle usize to u64 conversion with overflow fallback. 2) Added unit tests to validate resizing behavior and ensure data integrity.