File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ eth_rpc_url: <eth_rpc_url>
44eth_ws_url : <eth_ws_url>
55max_proofs_in_queue : 1000
66last_aggregated_block_filepath : /home/user/config/proof-aggregator-risc0.last_aggregated_block.json
7+ proofs_per_chunk : 512 # Amount of proofs to process per chunk
8+ # This number comes from the blob data limit
9+ # Since each blob has a capacity of (4096 * 32) = 131.072 bytes
10+ # But to not surpass the field modulus we pad with a 0xo byte so we have (4096 * 31) = 126.976 bytes
11+ # of usable data
12+ # Since each proof commitments takes 32 bytes hash
13+ # We can aggregate as much proofs as 126.976 / 32 = 3968 per blob
14+ total_proofs_limit : 3968
715
816ecdsa :
917 private_key_store_path : <private_key_store_path>
Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ eth_rpc_url: <eth_rpc_url>
44eth_ws_url : <eth_ws_url>
55max_proofs_in_queue : 1000
66last_aggregated_block_filepath : /home/user/config/proof-aggregator-sp1.last_aggregated_block.json
7+ proofs_per_chunk : 512 # Amount of proofs to process per chunk
8+ # This number comes from the blob data limit
9+ # Since each blob has a capacity of (4096 * 32) = 131.072 bytes
10+ # But to not surpass the field modulus we pad with a 0xo byte so we have (4096 * 31) = 126.976 bytes
11+ # of usable data
12+ # Since each proof commitments takes 32 bytes hash
13+ # We can aggregate as much proofs as 126.976 / 32 = 3968 per blob
14+ total_proofs_limit : 3968
715
816ecdsa :
917 private_key_store_path : <private_key_store_path>
You can’t perform that action at this time.
0 commit comments