yetanotherco / aligned_layer

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.
https://alignedlayer.com/
MIT License
136 stars 336 forks source link

feat(explorer): add calculator view #905

Open glpecile opened 2 weeks ago

glpecile commented 2 weeks ago

Objective

Show an estimate of how much aligned costs and saves you.

Cost of verifying a batch of proofs

The main components are:

In the end, the total cost is,

$C(n) = TaskResponseCost + BaseTaskCreationCost + CostPerProof * n$

where $n$ is the number of proofs in a batch.

The cost per proof is then,

$c(n) = \frac{TaskResponseCost + BaseTaskCreationCost}{n} + CostPerProof$

Mockup

image