Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
aae8c8e
feat: proving system id for proof commitments
MarcosNicolau Nov 12, 2025
38fd3b3
refactor: centralize proving system id constant
MarcosNicolau Nov 13, 2025
e416edf
fix: pass uint8 instead of uint256 in verifyProofInclusion to match t…
MarcosNicolau Nov 13, 2025
d26fb28
chore: redeploy contracts on anvil and eth package + update abi
MarcosNicolau Nov 25, 2025
6f47f54
refactor: proving system id replace constants for enum
MarcosNicolau Nov 25, 2025
4bf8cb3
chore: redeploy contracts with latest risc0 verifier
MarcosNicolau Nov 25, 2025
937d086
Merge branch 'testnet' into feat/proving-system-id-for-leafs-1
maximopalopoli Nov 26, 2025
65c6bfc
chore: address clippy warnings
MarcosNicolau Nov 26, 2025
85db268
chore: address clippy warnings
MarcosNicolau Nov 26, 2025
9878029
fix: u8 for u16 in proving system id
MarcosNicolau Nov 27, 2025
aed974e
chore: redeploy contracts
MarcosNicolau Nov 27, 2025
73b8f60
fix: update proof commitment u16 in programs
MarcosNicolau Nov 27, 2025
d0a11e9
chore: redeploy contracts and compute program ids
MarcosNicolau Nov 27, 2025
4ea4890
Merge branch 'testnet' into feat/proving-system-id-for-leafs-1
MauroToscano Dec 1, 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