aligned_layer
aligned_layer copied to clipboard
Aligned is a verification layer for zero-knowledge proofs using EigenLayer. Our mission is to accelerate the adoption of zero-knowledge and validity proofs on Ethereum.
The removal of GO task sender should also refactor test_examples since other parts of the codebase make use of its contents, principally the proof generators
Upgrade to new eigensdk release https://github.com/Layr-Labs/eigensdk-go/releases/tag/v0.1.7
I added logs improvements from #add-more-logs-batcher branch for the new version of the batcher
# Description - The verify function in the batcher (`batcher/aligned-batcher/src/zk_utils/mod.rs`) has some expects that will make it panic. We should return `false`.
I added this timeout logic to the wait for tx receipt ```rust match timeout(Duration::from_secs(60), pending_tx).await { Ok(Ok(Some(receipt))) => Ok(receipt), Ok(Ok(None)) => Err(anyhow::anyhow!("Transaction was mined but no receipt was returned")), Ok(Err(e))...
We need to review this flow