Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
fc6826d
Rework
MauroToscano Jul 9, 2025
173d4c8
Remove all functions that takes and drops lock
MauroToscano Jul 11, 2025
db61877
Add lock per user state
MauroToscano Jul 16, 2025
7cb5982
Merge branch 'testnet' into rework_batcher_concurrency
MauroToscano Jul 16, 2025
ade5648
Fmt
MauroToscano Jul 16, 2025
4afe0f0
Update cargo lock
MauroToscano Jul 16, 2025
2cfa935
Handle everything with the state locked
MauroToscano Jul 16, 2025
dc40c0a
Rename function
MauroToscano Jul 16, 2025
60b79b9
Rename variables
MauroToscano Jul 16, 2025
fc18d6c
fmt
MauroToscano Jul 16, 2025
6016431
Fix lib
MauroToscano Jul 16, 2025
fb38103
Re organize data
MauroToscano Jul 18, 2025
1c4a59e
Checkpoint: Happy path
MauroToscano Jul 18, 2025
e60ad68
Restore proofs
MauroToscano Jul 18, 2025
9493a04
Split locks
MauroToscano Jul 18, 2025
859590a
Add replacement and parallel eviction logic
MauroToscano Jul 21, 2025
fcac386
Move proof verification before batch verifications
MauroToscano Jul 21, 2025
9dfd4a7
Add claude code to gitignore
MauroToscano Jul 22, 2025
f90c394
Remove claude code files
MauroToscano Jul 22, 2025
529ea95
Merge branch 'staging' into rework_batcher_concurrency
MauroToscano Jul 22, 2025
4409143
Merge branch 'testnet' into rework_batcher_concurrency
MauroToscano Jul 22, 2025
28b95d3
Reset submodules to match staging
MauroToscano Jul 22, 2025
3569c2d
Merge branch 'rework_batcher_concurrency' of github.com:yetanotherco/…
MauroToscano Jul 22, 2025
7e2161c
Pull testnet to staging (#2027)
MauroToscano Jul 22, 2025
1545dcb
Simplify extract_batch
MauroToscano Jul 22, 2025
9f0fd15
Simplify extract_batch
MauroToscano Jul 22, 2025
26328ec
Simplify batch queue creation algorithm
MauroToscano Jul 22, 2025
9b9e819
Add test for only one proof in queue
MauroToscano Jul 22, 2025
0c6159a
Remove unused lock
MauroToscano Jul 22, 2025
b88aa2f
Fix deadlock in replacement message
MauroToscano Jul 22, 2025
613e14f
Fmt
MauroToscano Jul 29, 2025
7be0542
Add Risc0 to task sender (#2036)
MauroToscano Jul 31, 2025
0d3df06
Pull testnet changes to staging (#2038)
MauroToscano Jul 31, 2025
ecb6ca2
fix: bump ethereum-genesis-generator image version in network_params.…
avilagaston9 Jul 31, 2025
1c7463b
Merge branch 'staging' into rework_batcher_concurrency
MauroToscano Jul 31, 2025
930292b
Changed code to generate multiple wallets faster
MauroToscano Aug 4, 2025
739c700
Add sepolia network for the Network parameter
maximopalopoli Oct 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ out
cache
**/build
**/target
**/CLAUDE.md
scripts/test_files/gnark_groth16_bn254_infinite_script/infinite_proofs/**
crates/cli/batch_inclusion_responses/*
**/aligned_verification_data
Expand Down Expand Up @@ -35,3 +36,6 @@ witness.wtns
*.zkey
circuit_cpp/
circuit_js

# Claude Code files
CLAUDE.md
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,18 @@ task_sender_test_connections_holesky_stage:
--num-senders $(NUM_SENDERS) \
--network holesky-stage

# ===== SEPOLIA =====
task_sender_generate_and_fund_wallets_sepolia:
@cd crates/task-sender && \
cargo run --release -- generate-and-fund-wallets \
--eth-rpc-url https://ethereum-sepolia-rpc.publicnode.com \
--network sepolia \
--funding-wallet-private-key $(FUNDING_WALLET_PRIVATE_KEY) \
--number-wallets $(NUM_WALLETS) \
--amount-to-deposit $(AMOUNT_TO_DEPOSIT) \
--amount-to-deposit-to-aligned $(AMOUNT_TO_DEPOSIT_TO_ALIGNED) \
--private-keys-filepath $(CURDIR)/crates/task-sender/wallets/sepolia

__UTILS__:
aligned_get_user_balance_devnet:
@cd crates/cli/ && cargo run --release -- get-user-balance \
Expand Down
Loading