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.
Currently only the db is dockerized.
- [ ] add max value for user balances in batcher payment system - [x] delete task sender - [ ] reorder aligned struct params #517
Hello, I would like to request the creation of a Turkish version of the current English README. Providing a Turkish translation will help to make the project more accessible to...
After a successful tx is sent by the aggregator to the contract check the aggregator waits 30 sec before confirming the Tx receipt is included in case of a re-org.
User must sign merkle root + how many proofs he submitted. Also Batch must have an id or nonce to avoid users signing for 2 valid batches at once. PaymentService...
If we can calculate an aproximate or upper bound gas cost of respondToTask, we can send this more accurate value, either from batcher to BatcherPaymentService, or add the gas cost...
Throughout the code there are some cases where we check user's balance is >0 instead of the appropriate values. For example: - Batcher checks user has `> 0` balance before...
Currently ``` struct BatchState { uint32 taskCreatedBlock; bool responded; address batcherAddress; } ``` should be ``` struct BatchState { address batcherAddress; uint32 taskCreatedBlock; bool responded; } ``` Also, `batcherAddress` should...