Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c031174
fix: backport arm64-linux avm-transpiler cross-compilation (#20814, #…
AztecBot Mar 4, 2026
c31378c
fix: orchestrator enqueue yield (#21286)
alexghr Mar 13, 2026
5bb169c
chore: tune mainnet slasher penalties and sequencer allocation (#21451)
aminsammara Mar 13, 2026
d04387a
Merge branch 'v4' into backport-to-v4-staging
ludamad Mar 13, 2026
3474125
chore: merge v4 into v4-next (conflicts need resolution)
Mar 13, 2026
653e5f9
chore: default multiplier (#21482)
alexghr Mar 13, 2026
02a29ba
chore: update yarn.lock (#21479)
alexghr Mar 13, 2026
45ba1c4
fix: resolve merge conflict markers from v4 into v4-next sync
AztecBot Mar 13, 2026
ddcc584
chore: merge v4 into v4-next (with conflicts) (#21484)
nventuro Mar 13, 2026
9ebe321
feat!: improve L2ToL1MessageWitness API (backport #21231)
AztecBot Mar 13, 2026
a86d332
chore: backport #21231 feat!: improve L2ToL1MessageWitness API to v4 …
nventuro Mar 13, 2026
35a1bad
feat(rpc): add package version to RPC response headers (#21526)
spalladino Mar 13, 2026
3f6fb7d
feat(ethereum): check VK tree root and protocol contracts hash in rol…
aminsammara Mar 13, 2026
ade80bf
feat: add public log filtering by tag (#21561)
nventuro Mar 13, 2026
38083c7
chore: Accumulated backports to v4 (#21477)
AztecBot Mar 14, 2026
a37575e
Merge remote-tracking branch 'origin/v4' into v4-next
Mar 14, 2026
e5b1818
cherry-pick: chore: Properly compute finalized block (#21156)
spypsy Mar 11, 2026
583328b
fix: resolve cherry-pick conflicts
AztecBot Mar 16, 2026
47e44ab
fix: adapt backport to v4-next branch differences
AztecBot Mar 16, 2026
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
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ avm-transpiler-cross-amd64-macos:
avm-transpiler-cross-arm64-macos:
$(call build,$@,avm-transpiler,build_cross arm64-macos)

avm-transpiler-cross: avm-transpiler-cross-amd64-macos avm-transpiler-cross-arm64-macos
avm-transpiler-cross-arm64-linux:
$(call build,$@,avm-transpiler,build_cross arm64-linux)

avm-transpiler-cross: avm-transpiler-cross-amd64-macos avm-transpiler-cross-arm64-macos avm-transpiler-cross-arm64-linux

#==============================================================================
# Barretenberg
Expand Down Expand Up @@ -136,7 +139,7 @@ bb-cpp-cross-arm64-macos-objects:
$(call build,$@,barretenberg/cpp,build_cross_objects arm64-macos)

# Cross-compile for ARM64 Linux (release only)
bb-cpp-cross-arm64-linux: bb-cpp-cross-arm64-linux-objects avm-transpiler-native
bb-cpp-cross-arm64-linux: bb-cpp-cross-arm64-linux-objects avm-transpiler-cross-arm64-linux
$(call build,$@,barretenberg/cpp,build_cross arm64-linux)

# Cross-compile for AMD64 macOS (release only)
Expand Down
Loading
Loading