Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
421e621
Remove readme file
MauroToscano Aug 25, 2025
9af1ee0
Merge branch 'testnet' of github.com:yetanotherco/aligned_layer into …
MauroToscano Oct 4, 2025
b833ecd
Merge branch 'testnet' of github.com:yetanotherco/aligned_layer into …
MauroToscano Oct 13, 2025
3637984
Merge branch 'testnet' of github.com:yetanotherco/aligned_layer into …
MauroToscano Oct 28, 2025
6ce5d48
fix: bump allow and send blobs in transaction with eip 7594
MarcosNicolau Nov 14, 2025
a81b73f
ci: bump rust version to support newer alloy version
MarcosNicolau Nov 14, 2025
c14107e
chore: ignore clippy uninlined_format_args warnings
MarcosNicolau Nov 19, 2025
4898009
chore: address clippy warnings
MarcosNicolau Nov 19, 2025
c88ec93
chore: address more clippy warnings
MarcosNicolau Nov 19, 2025
bb3786d
chore: address clippy warnings
MarcosNicolau Nov 19, 2025
7048c1b
chore: migrate ethereum package to fulu fork (#2173)
MarcosNicolau Nov 20, 2025
d50427b
feat: turn program IDs into a mapping
maximopalopoli Nov 25, 2025
6cdc1a0
infra: add vk/image id to aggregation mode templates
JuArce Nov 25, 2025
2c1df1e
update the aligned layer deployed anvil state
maximopalopoli Nov 25, 2025
b938200
update the risc0 and sp1 verify methods
maximopalopoli Nov 25, 2025
d4fe4be
emit the verifier type on the deleteProgramId method
maximopalopoli Nov 25, 2025
ba099a5
Add a modifier to ensure the provided verifier type is one of the val…
maximopalopoli Nov 25, 2025
aceefe1
Apply suggestions from code review
maximopalopoli Nov 25, 2025
e634e58
Check if the verifier type matches the one received by param on delet…
maximopalopoli Nov 25, 2025
9320f76
Remove extra as_slice conversion in ProofAggregator build
maximopalopoli Nov 25, 2025
a90843a
Remove the 0x prefix from the proof aggregator config files
maximopalopoli Nov 25, 2025
349684b
Fix: update the network params with the correct program ID
maximopalopoli Nov 26, 2025
dcb80e3
Merge branch 'testnet' into feat/turn-program-ids-mapping-testnet
maximopalopoli Nov 26, 2025
23c295f
fix: remove the 0x prefix from the risc0 aggregator image id
maximopalopoli Nov 26, 2025
6b54e1e
Fix the modifier to add and delete in proof agg service
maximopalopoli Nov 26, 2025
23919e2
Apply suggestions from code review
maximopalopoli Nov 26, 2025
0c9ec6e
Rename validVerifierType modifier to respect good practices
maximopalopoli Nov 27, 2025
09e01ce
Avoid casting to u8 in both comparation sides when checking types
maximopalopoli Nov 27, 2025
970a753
update the additional_preloaded_contracts on network params
maximopalopoli Nov 27, 2025
2dc6f93
Merge branch 'testnet' into feat/turn-program-ids-mapping-testnet
maximopalopoli Nov 27, 2025
ae78925
Merge branch 'testnet' into feat/turn-program-ids-mapping-testnet
maximopalopoli Dec 1, 2025
f8f6d45
Update the deployed contracts on network params
maximopalopoli Dec 1, 2025
ea24871
Update the program IDs in the proof aggregator configs
maximopalopoli Dec 1, 2025
0724970
Merge branch 'testnet' of github.com:yetanotherco/aligned_layer into …
MauroToscano Dec 1, 2025
e9a4014
Simplify everything
MauroToscano Dec 1, 2025
1369e88
Merge branch 'testnet' of github.com:yetanotherco/aligned_layer into …
MauroToscano Dec 1, 2025
1e61ec5
Merge main and update deploy
MauroToscano Dec 1, 2025
062bdf4
Update the proof aggregation service ABI on agg mode
maximopalopoli Dec 2, 2025
d5b88f6
fix: update sdk is_proof_verified_on_chain calling new is_proof_verif…
MarcosNicolau Dec 3, 2025
d68ece0
chore: update sdk abi
MarcosNicolau Dec 3, 2025
72e0568
fix: remove VERIFIER_MOCK_ADDRESS
JuArce Dec 3, 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
5 changes: 3 additions & 2 deletions .github/workflows/build-and-test-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.86.0
toolchain: 1.88.0
components: rustfmt, clippy
override: true

Expand Down Expand Up @@ -58,7 +58,8 @@ jobs:
- name: Run Clippy
run: |
cd crates
cargo clippy --all -- -D warnings
# TODO: solve this issues instead of ignoring
cargo clippy --all -- -D warnings -A clippy::uninlined_format_args

- name: Build Batcher
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,7 @@ ansible_telemetry_deploy: ## Deploy the Telemetry. Parameters: INVENTORY
__ETHEREUM_PACKAGE__: ## ____

ethereum_package_start: ## Starts the ethereum_package environment
kurtosis run --enclave aligned github.com/ethpandaops/ethereum-package@5.0.1 --args-file network_params.yaml
kurtosis run --enclave aligned github.com/ethpandaops/ethereum-package@905bf4fe7e558ce4fa3dd843fb6dbe711fdc3049 --args-file network_params.yaml

ethereum_package_inspect: ## Prints detailed information about the net
kurtosis enclave inspect aligned
Expand Down
Loading
Loading