Adrian

Results 11 issues of Adrian

Updates the path in the test job filter from compact_proof/** to groth16_proof/** to match the current directory structure. This ensures changes in the groth16_proof directory properly trigger CI tests.

- Replace context.Background() with b.ctx in Start() method to ensure RPC calls respect context cancellation during graceful shutdown. - Added timeout to prevent hanging operations when network issues occur.

area.developer-experience

## Summary Implements EIP-55 checksum validation for Ethereum addresses, resolving the TODO comment in `keys.rs`. ## Changes - Added `validate_eip55_checksum` function following EIP-55 specification - Updated `is_valid_eth_address` to include checksum...

Fixed integer division bug in signer limit calculation. The previous formula `len(snap.Signers)/2 + 1` produced incorrect results for even numbers of signers. Changed to `(len(snap.Signers) + 1) / 2` for...

Fix incorrect comparison in oldestL1Origin update. Changed from comparing with latestL1Origin to comparing with oldestL1Origin itself, matching the logic used for oldestL2 tracking.

S-stale

Replace os.Args[0] with filepath.Base(os.Args[0]) in help functions to prevent filesystem path disclosure vulnerability. This change ensures that only the program name is displayed in usage messages instead of the full...

## What Adds descriptive error message to `InvalidOperationException` thrown when block processing times out in `HiveRunner.WaitForBlockProcessing`. ## Why The exception was previously thrown without a message, making it difficult to...

## Describe your changes Adds snapshot tests using `insta` to document computed values of trace layout constants. - Documents all trace widths and offsets - Documents column ranges for all...

Fixes #4643 Adds proper teardown logic to tastora test suites to clean up Docker networks after test completion. **Changes:** - Add `Cleanup()` method to Framework that stops all nodes and...

external

### What Fixed typo in gas cost formula documentation: changed get tree to get_tree on line 72. ### Why Maintains naming consistency with other helper functions (get_commitments, get_keys, leaf_depth) that...

c-update
t-core
a-review
s-stagnant