Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: public inputs refactor #5500

Merged
merged 17 commits into from
Apr 3, 2024
Merged

feat: public inputs refactor #5500

merged 17 commits into from
Apr 3, 2024

Conversation

LeilaWang
Copy link
Contributor

@LeilaWang LeilaWang commented Mar 28, 2024

Changes to PublicInputs

✅ New Flow

PrivateInit
     |  PrivateKernelCircuitPublicInputs
PrivateInner
     |  PrivateKernelCircuitPublicInputs
PrivateTail
     |  KernelCircuitPublicInputs
BaseRollup

If the tx contains public calls:

PrivateInit
     |  PrivateKernelCircuitPublicInputs
PrivateInner
     |  PrivateKernelCircuitPublicInputs
PrivateTailToPublic
     |  PublicKernelCircuitPublicInputs
PublicSetup
     |  PublicKernelCircuitPublicInputs
PublicAppLogic
     |  PublicKernelCircuitPublicInputs
PublicTeardown
     |  PublicKernelCircuitPublicInputs
PublicTail
     |  KernelCircuitPublicInputs
BaseRollup

A new circuit PrivateTailToPublic is introduced, which is similar to PrivateTail, but it also processes data relevant to the public kernel, such as public call requests, and outputs PublicCircuitPublicInputs.

⛔ Previous Flow

Previously, public inputs had to be converted in typescript before feeding to the PublicSetup and BaseRollup circuits. And the circuits not only had to convert the public inputs back to the correct format according to the type of the previous proof, they also had to conditionally check the data. For example, if the previous proof is PrivateTail, BaseRollup had to assert that all public update requests in the given RollupKernelCircuitPublicInputs are empty.

PrivateInit
     |  PrivateKernelInnerCircuitPublicInputs
PrivateInner
     |  PrivateKernelInnerCircuitPublicInputs
PrivateTail
     |  PrivateKernelTailCircuitPublicInputs (converted to RollupKernelCircuitPublicInputs in typescript)
BaseRollup (converted back to PrivateKernelTailCircuitPublicInputs in noir)

If the tx contains public calls:

PrivateInit
     |  PrivateKernelInnerCircuitPublicInputs
PrivateInner
     |  PrivateKernelInnerCircuitPublicInputs
PrivateTail
     |  PrivateKernelTailCircuitPublicInputs (converted to PublicKernelCircuitPublicInputs in typescript)
PublicSetup (converted back to PrivateKernelTailCircuitPublicInputs in noir)
     |  PublicKernelCircuitPublicInputs
PublicAppLogic
     |  PublicKernelCircuitPublicInputs
PublicTeardown
     |  PublicKernelCircuitPublicInputs
PublicTail
     |  PublicKernelCircuitPublicInputs (converted to RollupKernelCircuitPublicInputs in typescript)
BaseRollup (converted back to PublicKernelCircuitPublicInputs in noir)

Changes to AccumulatedData

✅ New Format

  • PrivateKernelCircuitPublicInputs.end: PrivateAccumulatedData
  • PublicKernelCircuitPublicInputs.end: PublicAccumulatedData
  • PublicKernelCircuitPublicInputs.end_non_revertible: PublicAccumulatedData
  • KernelCircuitPublicInputs.end: AccumulatedData

⛔ Previous Format

  • PrivateKernelInnerCircuitPublicInputs.end: CombinedAccumulatedData
  • PrivateKernelTailCircuitPublicInputs.end: PrivateAccumulatedRevertibleData
  • PrivateKernelTailCircuitPublicInputs.end_non_revertible: PrivateAccumulatedNonRevertibleData
  • PublicKernelCircuitPublicInputs.end: PublicAccumulatedRevertibleData
  • PublicKernelCircuitPublicInputs.end_non_revertible: PublicAccumulatedNonRevertibleData
  • RollupKernelCircuitPublicInputs.end: CombinedAccumulatedData

@AztecBot
Copy link
Collaborator

AztecBot commented Mar 29, 2024

Benchmark results

Metrics with a significant change:

  • circuit_simulation_time_in_ms (private-kernel-init): 226 (+23%)
  • circuit_simulation_time_in_ms (private-kernel-ordering): 343 (+103%)
  • circuit_simulation_time_in_ms (base-rollup): 7,865 (-47%)
  • circuit_simulation_time_in_ms (private-kernel-inner): 414 (+83%)
  • circuit_simulation_time_in_ms (public-kernel-app-logic): 298 (+212%)
  • circuit_simulation_time_in_ms (public-kernel-tail): 183 (+34%)
  • circuit_input_size_in_bytes (base-rollup): 116,621 (-30%)
  • circuit_input_size_in_bytes (public-kernel-app-logic): 47,748 (+35%)
  • circuit_input_size_in_bytes (public-kernel-tail): 53,417 (+31%)
  • circuit_input_size_in_bytes (public-kernel-teardown): 47,696 (+35%)
  • circuit_input_size_in_bytes (public-kernel-setup): 47,696 (+35%)
  • circuit_output_size_in_bytes (private-kernel-ordering): 39,629 (+177%)
  • circuit_output_size_in_bytes (public-kernel-app-logic): 40,707 (+44%)
  • circuit_output_size_in_bytes (public-kernel-tail): 13,283 (-53%)
  • circuit_output_size_in_bytes (public-kernel-teardown): 40,661 (+44%)
  • circuit_output_size_in_bytes (public-kernel-setup): 40,661 (+44%)
  • tx_pxe_processing_time_ms (0): 2,122 (+17%)
  • tx_pxe_processing_time_ms (1): 1,565 (+39%)
  • tx_size_in_bytes (0): 44,048 (+194%)
  • tx_sequencer_processing_time_ms (1): 964 (+98%)
  • tx_sequencer_processing_time_ms (3): 1,066 (+17%)
  • tx_sequencer_processing_time_ms (5): 1,748 (+17%)
  • l2_block_building_time_in_ms (8): 15,543 (+36%)
  • l2_block_building_time_in_ms (32): 57,924 (+39%)
  • l2_block_building_time_in_ms (64): 113,637 (+38%)
  • l2_block_public_tx_process_time_in_ms (8): 7,997 (+101%)
  • l2_block_public_tx_process_time_in_ms (32): 31,783 (+104%)
  • l2_block_public_tx_process_time_in_ms (64): 63,117 (+102%)
  • l1_rollup_calldata_gas (8): 36,346 (+468%)
  • l1_rollup_calldata_gas (32): 122,572 (+1815%)
  • l1_rollup_calldata_gas (64): 237,702 (+3607%)
  • l1_rollup_calldata_size_in_bytes (8): 3,172 (+369%)
  • l1_rollup_calldata_size_in_bytes (32): 9,748 (+1342%)
  • l1_rollup_calldata_size_in_bytes (64): 18,516 (+2639%)
  • l1_rollup_execution_gas (32): 763,530 (+30%)
  • l1_rollup_execution_gas (64): 951,572 (+62%)
  • note_trial_decrypting_time_in_ms (8): 64.0 (+425%)
Detailed results

All benchmarks are run on txs on the Benchmarking contract on the repository. Each tx consists of a batch call to create_note and increment_balance, which guarantees that each tx has a private call, a nested private call, a public call, and a nested public call, as well as an emitted private note, an unencrypted log, and public storage read and write.

This benchmark source data is available in JSON format on S3 here.

Values are compared against data from master at commit 0249737e and shown if the difference exceeds 1%.

L2 block published to L1

Each column represents the number of txs on an L2 block published to L1.

Metric 8 txs 32 txs 64 txs
l1_rollup_calldata_size_in_bytes ⚠️ 3,172 (+369%) ⚠️ 9,748 (+1342%) ⚠️ 18,516 (+2639%)
l1_rollup_calldata_gas ⚠️ 36,346 (+468%) ⚠️ 122,572 (+1815%) ⚠️ 237,702 (+3607%)
l1_rollup_execution_gas 622,674 (+6%) ⚠️ 763,530 (+30%) ⚠️ 951,572 (+62%)
l2_block_processing_time_in_ms 1,308 (-1%) 4,743 9,349 (+2%)
note_successful_decrypting_time_in_ms 208 534 (-1%) 1,010 (+3%)
note_trial_decrypting_time_in_ms ⚠️ 64.0 (+425%) 44.6 (-12%) 82.5 (-17%)
l2_block_building_time_in_ms ⚠️ 15,543 (+36%) ⚠️ 57,924 (+39%) ⚠️ 113,637 (+38%)
l2_block_rollup_simulation_time_in_ms 7,505 (+1%) 26,007 (-1%) 50,265 (-2%)
l2_block_public_tx_process_time_in_ms ⚠️ 7,997 (+101%) ⚠️ 31,783 (+104%) ⚠️ 63,117 (+102%)

L2 chain processing

Each column represents the number of blocks on the L2 chain where each block has 16 txs.

Metric 5 blocks 10 blocks
node_history_sync_time_in_ms 14,309 26,749 (-1%)
note_history_successful_decrypting_time_in_ms 1,225 (-6%) 2,384 (-3%)
note_history_trial_decrypting_time_in_ms 76.5 (-25%) 105 (-9%)
node_database_size_in_bytes 18,839,632 (+1%) 35,264,592 (+1%)
pxe_database_size_in_bytes 29,859 59,414

Circuits stats

Stats on running time and I/O sizes collected for every circuit run across all benchmarks.

Circuit circuit_simulation_time_in_ms circuit_input_size_in_bytes circuit_output_size_in_bytes
private-kernel-init ⚠️ 226 (+23%) 44,374 26,179 (-7%)
private-kernel-ordering ⚠️ 343 (+103%) 50,824 (-4%) ⚠️ 39,629 (+177%)
base-parity 3,385 (-2%) 128 311
root-parity 1,260 (-3%) 1,244 311
base-rollup ⚠️ 7,865 (-47%) ⚠️ 116,621 (-30%) 891 (+3%)
root-rollup 56.7 (+15%) 4,409 (+1%) 750 (+3%)
private-kernel-inner ⚠️ 414 (+83%) 71,734 (-3%) 26,178 (-7%)
public-kernel-app-logic ⚠️ 298 (+212%) ⚠️ 47,748 (+35%) ⚠️ 40,707 (+44%)
public-kernel-tail ⚠️ 183 (+34%) ⚠️ 53,417 (+31%) ⚠️ 13,283 (-53%)
merge-rollup 9.15 (-1%) 2,631 (+2%) 892 (+4%)
public-kernel-teardown 118 (+27%) ⚠️ 47,696 (+35%) ⚠️ 40,661 (+44%)
public-kernel-setup 117 (+27%) ⚠️ 47,696 (+35%) ⚠️ 40,661 (+44%)

Tree insertion stats

The duration to insert a fixed batch of leaves into each tree type.

Metric 1 leaves 16 leaves 64 leaves 128 leaves 512 leaves 1024 leaves 2048 leaves 4096 leaves 32 leaves
batch_insert_into_append_only_tree_16_depth_ms 9.93 (-1%) 15.9 (-1%) N/A N/A N/A N/A N/A N/A N/A
batch_insert_into_append_only_tree_16_depth_hash_count 16.8 31.6 N/A N/A N/A N/A N/A N/A N/A
batch_insert_into_append_only_tree_16_depth_hash_ms 0.579 (-1%) 0.492 N/A N/A N/A N/A N/A N/A N/A
batch_insert_into_append_only_tree_32_depth_ms N/A N/A 46.9 (-2%) 71.7 230 (-1%) 438 (-2%) 869 1,731 N/A
batch_insert_into_append_only_tree_32_depth_hash_count N/A N/A 96.0 159 543 1,055 2,079 4,127 N/A
batch_insert_into_append_only_tree_32_depth_hash_ms N/A N/A 0.481 (-2%) 0.442 0.420 (-1%) 0.410 (-2%) 0.413 0.414 (+1%) N/A
batch_insert_into_indexed_tree_20_depth_ms N/A N/A 53.7 (-1%) 106 (-1%) 337 651 (-2%) 1,317 (+1%) 2,612 N/A
batch_insert_into_indexed_tree_20_depth_hash_count N/A N/A 104 (-1%) 207 691 1,363 2,707 5,395 N/A
batch_insert_into_indexed_tree_20_depth_hash_ms N/A N/A 0.475 (-1%) 0.479 (-1%) 0.459 0.448 (-1%) 0.455 0.455 N/A
batch_insert_into_indexed_tree_40_depth_ms N/A N/A N/A N/A N/A N/A N/A N/A 60.7 (-1%)
batch_insert_into_indexed_tree_40_depth_hash_count N/A N/A N/A N/A N/A N/A N/A N/A 109
batch_insert_into_indexed_tree_40_depth_hash_ms N/A N/A N/A N/A N/A N/A N/A N/A 0.531 (-1%)

Miscellaneous

Transaction sizes based on how many contract classes are registered in the tx.

Metric 0 registered classes 1 registered classes
tx_size_in_bytes ⚠️ 44,048 (+194%) 501,142 (+1%)

Transaction size based on fee payment method

Metric native fee payment method fpc_public fee payment method fpc_private fee payment method
tx_with_fee_size_in_bytes 905 1,161 1,377

Transaction processing duration by data writes.

Metric 0 new note hashes 1 new note hashes 2 new note hashes
tx_pxe_processing_time_ms ⚠️ 2,122 (+17%) ⚠️ 1,565 (+39%) 5,546
Metric 1 public data writes 2 public data writes 3 public data writes 4 public data writes 5 public data writes 8 public data writes
tx_sequencer_processing_time_ms ⚠️ 964 (+98%) 437 (+14%) ⚠️ 1,066 (+17%) 605 (+8%) ⚠️ 1,748 (+17%) 595 (+7%)

Copy link
Contributor

github-actions bot commented Apr 3, 2024

Changes to circuit sizes

Generated at commit: 65d6ee3c18058646999bb21d2570ae3282a0a064, compared to commit: 0249737e8b925406e9278b80fc7adc0f6ab5468d

🧾 Summary (100% most significant diffs)

Program ACIR opcodes (+/-) % Circuit size (+/-) %
public_kernel_tail +290,772 ❌ +232.67% +676,535 ❌ +188.47%
public_kernel_setup +25,473 ❌ +86.81% +79,061 ❌ +43.18%
public_kernel_teardown +25,499 ❌ +86.65% +79,086 ❌ +43.17%
public_kernel_app_logic_simulated +385 ❌ +42.45% +770 ❌ +42.38%
public_kernel_setup_simulated +385 ❌ +42.45% +770 ❌ +42.38%
public_kernel_teardown_simulated +385 ❌ +42.45% +770 ❌ +42.38%
public_kernel_app_logic +10,915 ❌ +19.47% +18,451 ❌ +5.86%
rollup_base -64 ✅ -0.04% -160 ✅ -0.01%
private_kernel_inner -68 ✅ -0.07% -134 ✅ -0.03%
private_kernel_init -66 ✅ -0.14% -132 ✅ -0.04%
private_kernel_init_simulated -66 ✅ -7.30% -132 ✅ -7.29%
private_kernel_inner_simulated -66 ✅ -7.30% -132 ✅ -7.29%
private_kernel_tail_simulated -35 ✅ -7.73% -70 ✅ -7.70%
private_kernel_tail -133,563 ✅ -35.76% -250,403 ✅ -29.82%
public_kernel_tail_simulated -489 ✅ -53.91% -978 ✅ -53.82%

Full diff report 👇
Program ACIR opcodes (+/-) % Circuit size (+/-) %
public_kernel_tail 415,743 (+290,772) +232.67% 1,035,505 (+676,535) +188.47%
public_kernel_setup 54,817 (+25,473) +86.81% 262,159 (+79,061) +43.18%
public_kernel_teardown 54,928 (+25,499) +86.65% 262,270 (+79,086) +43.17%
public_kernel_app_logic_simulated 1,292 (+385) +42.45% 2,587 (+770) +42.38%
public_kernel_setup_simulated 1,292 (+385) +42.45% 2,587 (+770) +42.38%
public_kernel_teardown_simulated 1,292 (+385) +42.45% 2,587 (+770) +42.38%
public_kernel_app_logic 66,990 (+10,915) +19.47% 333,205 (+18,451) +5.86%
rollup_base 171,417 (-64) -0.04% 1,730,583 (-160) -0.01%
private_kernel_inner 95,799 (-68) -0.07% 520,238 (-134) -0.03%
private_kernel_init 48,536 (-66) -0.14% 349,381 (-132) -0.04%
private_kernel_init_simulated 838 (-66) -7.30% 1,679 (-132) -7.29%
private_kernel_inner_simulated 838 (-66) -7.30% 1,679 (-132) -7.29%
private_kernel_tail_simulated 418 (-35) -7.73% 839 (-70) -7.70%
private_kernel_tail 239,914 (-133,563) -35.76% 589,180 (-250,403) -29.82%
public_kernel_tail_simulated 418 (-489) -53.91% 839 (-978) -53.82%

@LeilaWang LeilaWang marked this pull request as ready for review April 3, 2024 05:03
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Most code here was copied from private-kernel-tail.nr. But only trigger propagate_sorted_public_call_requests from the new private-tail-to-public.nr.

Copy link
Contributor Author

@LeilaWang LeilaWang Apr 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unused file. Will delete it.
Was about to break up common.nr into various files, but decided to do it in another PR.

for i in 0..private_call_stack.len() {
let private_call = private_call_stack[i];
assert(
private_call.is_empty(), "Private call stack must be empty when executing in the public kernel"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A valid private tail proof is guaranteed to have an empty private call stack.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code in this file is copied from private-kernel-tail.

@@ -48,8 +45,6 @@ struct BaseRollupInputs {
sorted_public_data_writes_indexes: [u64; MAX_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX],
low_public_data_writes_preimages: [PublicDataTreeLeafPreimage; MAX_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX],
low_public_data_writes_witnesses: [PublicDataMembershipWitness; MAX_PUBLIC_DATA_UPDATE_REQUESTS_PER_TX],
public_data_reads_preimages: [PublicDataTreeLeafPreimage; MAX_PUBLIC_DATA_READS_PER_TX],
Copy link
Contributor Author

@LeilaWang LeilaWang Apr 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove it for now because we are not verifying it here. When we do, it should be checked in the public tail circuit.

validation_requests::{RollupValidationRequests, ValidationRequests}
};
use crate::mocked::AggregationObject;

struct PublicKernelCircuitPublicInputs {
aggregation_object: AggregationObject,
validation_requests: ValidationRequests,
rollup_validation_requests: RollupValidationRequests,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rollup_validation_requests is part of validation_requests

@@ -382,40 +371,8 @@ export function makeEmptyMembershipWitness<N extends number>(height: N) {
);
}

export async function getPublicDataReadsInfo(tx: ProcessedTx, db: MerkleTreeOperations) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved to hints_builder.

* Contains the contract address, new note data and commitment for the note,
* resulting from the execution of a transaction in the Aztec network.
*/
export interface OutputNoteData {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not used anywhere.

output.publicInputs,
output.proof,
previousVerificationKey,
Number(previousVkMembershipWitness.leafIndex),
assertLength<Fr, typeof VK_TREE_HEIGHT>(previousVkMembershipWitness.siblingPath, VK_TREE_HEIGHT),
);

const readNoteHashHints = this.hintsBuilder.getNoteHashReadRequestHints(
Copy link
Contributor Author

@LeilaWang LeilaWang Apr 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved these from after ordering to before ordering, to make it clearer that they are operated on un-sorted data.

@@ -708,13 +653,13 @@ describe('public_processor', () => {
const txEffect = toTxEffect(processed[0]);
expect(arrayNonEmptyLength(txEffect.publicDataWrites, PublicDataWrite.isEmpty)).toEqual(3);
expect(txEffect.publicDataWrites[0]).toEqual(
new PublicDataWrite(computePublicDataTreeLeafSlot(baseContractAddress, contractSlotA), fr(0x102)),
new PublicDataWrite(computePublicDataTreeLeafSlot(baseContractAddress, contractSlotC), fr(0x201)),
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The order has changed because we now concat data properly in removeRedundantPublicDataWrites in abstract_phase_manager.ts.

return !exists;
});

const [prev, curr] = PhaseIsRevertible[phase]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We used to concat the data as [...revertible, ...non_revertible] no matter what. Now we adjust the order based on the current phase.
This needs to be done in the circuit eventually.

): Promise<PublicKernelCircuitPublicInputs> {
const previousKernel = this.getPreviousKernelData(previousOutput, previousProof);

if (this.phase === PublicKernelPhase.TAIL) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved to tail_phase_manager.

Copy link
Contributor

@sirasistant sirasistant left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice (and huge) refactor!

for i in 0..MAX_PUBLIC_CALL_STACK_LENGTH_PER_TX {
let call_stack_item = self.public_call_stack.storage[i];
if call_stack_item.start_side_effect_counter < min_revertible_side_effect_counter {
non_revertible_builder.public_call_stack.push(call_stack_item);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we assert after this loop that we have exactly two public call stack items? since the code relies on that for needs_setup and needs_teardown

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should be able to handle the case where there is >=1 public call stack item:
It should be that the public enqueued call that is last should be for teardown, and all other should be setup.

@LeilaWang LeilaWang merged commit 6b9a538 into master Apr 3, 2024
148 checks passed
@LeilaWang LeilaWang deleted the lw/public_inputs_refactor branch April 3, 2024 13:45
rahul-kothari pushed a commit that referenced this pull request Apr 9, 2024
🤖 I have created a release *beep* *boop*
---


<details><summary>aztec-package: 0.33.0</summary>

##
[0.33.0](aztec-package-v0.32.1...aztec-package-v0.33.0)
(2024-04-09)


### Features

* Jest fast transpile. no more ts-jest.
([#5530](#5530))
([1912802](1912802))
* **SimulateTx:** Simulate constrained transaction execution with return
values
([#5432](#5432))
([0249737](0249737))
</details>

<details><summary>barretenberg.js: 0.33.0</summary>

##
[0.33.0](barretenberg.js-v0.32.1...barretenberg.js-v0.33.0)
(2024-04-09)


### Miscellaneous

* **barretenberg.js:** Synchronize aztec-packages versions
</details>

<details><summary>aztec-cli: 0.33.0</summary>

##
[0.33.0](aztec-cli-v0.32.1...aztec-cli-v0.33.0)
(2024-04-09)


### ⚠ BREAKING CHANGES

* contract_abi-exports
([#5386](#5386))

### Features

* **avm:** Integrate AVM with initializers
([#5469](#5469))
([59799f2](59799f2))
* Contract_abi-exports
([#5386](#5386))
([745d522](745d522))
* Jest fast transpile. no more ts-jest.
([#5530](#5530))
([1912802](1912802))


### Bug Fixes

* Update CLI & terraforms with new contract addresses
([#5553](#5553))
([eb73d20](eb73d20))
</details>

<details><summary>aztec-packages: 0.33.0</summary>

##
[0.33.0](aztec-packages-v0.32.1...aztec-packages-v0.33.0)
(2024-04-09)


### ⚠ BREAKING CHANGES

* **acir:** Add predicate to call opcode
([#5616](#5616))
* contract_abi-exports
([#5386](#5386))
* **avm:** rollback FunctionAbi isTranspiled changes
([#5561](#5561))

### Features

* /foundry is canoncial build of foundry. e2e tests can start own anvil.
([#5522](#5522))
([510daa0](510daa0))
* `add` and `sub` methods of `EasyPrivateUint` throw when called in
public
([#5581](#5581))
([29f337d](29f337d))
* **acir:** Add predicate to call opcode
([#5616](#5616))
([e8cec0a](e8cec0a))
* **acvm_js:** Execute program
(noir-lang/noir#4694)
([8b30b95](8b30b95))
* Add return values to aztec fns
([#5389](#5389))
([7b88bac](7b88bac))
* Allow slices to brillig entry points
(noir-lang/noir#4713)
([8b30b95](8b30b95))
* Avm logup
([#5577](#5577))
([7e4e9b9](7e4e9b9))
* **avm:** Add index to pedersen opcode
([#5486](#5486))
([e1d7d11](e1d7d11))
* **avm:** Contract instance opcode
([#5487](#5487))
([ceacba6](ceacba6))
* **avm:** Gas usage for nested calls
([#5495](#5495))
([11699c8](11699c8))
* **avm:** Indirect memory for set opcode
([#5546](#5546))
([e0e7200](e0e7200)),
closes
[#5542](#5542)
* **avm:** Integrate AVM with initializers
([#5469](#5469))
([59799f2](59799f2))
* **avm:** Set gas allowance in public calls
([#5567](#5567))
([ee23415](ee23415))
* **avm:** Track gas from memory accesses explicitly
([#5563](#5563))
([18c9128](18c9128)),
closes
[#5514](#5514)
* Contract_abi-exports
([#5386](#5386))
([745d522](745d522))
* DataBus notion with calldata/return data
([#5504](#5504))
([95a1d8a](95a1d8a))
* DebugLog(...) in noir-protocol-circuits
([#5568](#5568))
([a07bb92](a07bb92))
* **docs:** Documenting noir codegen
(noir-lang/noir#4454)
([8b30b95](8b30b95))
* Improve nargo check cli with --override flag and feedback for existing
files (noir-lang/noir#4575)
([8b30b95](8b30b95))
* Improve optimisations on range constraints
(noir-lang/noir#4690)
([8b30b95](8b30b95))
* Improve SSA type-awareness in EQ and MUL instructions
(noir-lang/noir#4691)
([8b30b95](8b30b95))
* Improve the proving orchestration lifecycle
([#5535](#5535))
([4e4f843](4e4f843))
* Jest fast transpile. no more ts-jest.
([#5530](#5530))
([1912802](1912802))
* Logging deployed contract address to help debug e2e account test
([#5571](#5571))
([1907473](1907473))
* Only export values from accumulated data
([#5604](#5604))
([a974ec8](a974ec8))
* Optimise relations
([#5552](#5552))
([a581e80](a581e80))
* Optimize auxiliary relations slightly
([#5517](#5517))
([30be431](30be431))
* Public inputs refactor
([#5500](#5500))
([6b9a538](6b9a538))
* Restore hashing args via slice for performance
([#5539](#5539))
([eb3acdf](eb3acdf))
* **SimulateTx:** Simulate constrained transaction execution with return
values
([#5432](#5432))
([0249737](0249737))


### Bug Fixes

* **acvm:** Mark outputs of Opcode::Call solvable
(noir-lang/noir#4708)
([8b30b95](8b30b95))
* **avm:** Nullifier handling
([#5488](#5488))
([bc8211d](bc8211d))
* **ci:** Cache submodules in GA
([#5531](#5531))
([75f2cc6](75f2cc6))
* **ci:** Install fixed foundry version in CI
([#5582](#5582))
([46fdb37](46fdb37))
* Dependabot update
([#5547](#5547))
([f7e6cc8](f7e6cc8))
* E2e earthly status
([#5564](#5564))
([a5076ca](a5076ca))
* Field comparisons (noir-lang/noir#4704)
([8b30b95](8b30b95))
* Invalid fork terraform
([#5585](#5585))
([826353b](826353b))
* Last use analysis & make it an SSA pass
(noir-lang/noir#4686)
([8b30b95](8b30b95))
* Mainnet fork redeploys
([#5573](#5573))
([88e8b6d](88e8b6d))
* Remove EFS lifecycle rule
([#5587](#5587))
([eb66fc6](eb66fc6))
* **ssa:** Do not use get_value_max_num_bits when we want pure type
information (noir-lang/noir#4700)
([8b30b95](8b30b95))
* Taint fork file storage
([#5560](#5560))
([f144f3b](f144f3b))
* Unknown slice lengths coming from as_slice
(noir-lang/noir#4725)
([8b30b95](8b30b95))
* Update CLI & terraforms with new contract addresses
([#5553](#5553))
([eb73d20](eb73d20))


### Miscellaneous

* **avm:** Rollback FunctionAbi isTranspiled changes
([#5561](#5561))
([150932a](150932a))
* Check for references to private functions during path resolution
(noir-lang/noir#4622)
([8b30b95](8b30b95))
* **docs:** Add file to prove ownership for google search console
([#5554](#5554))
([dfa3998](dfa3998))
* **docs:** Fix indexed-merkle-tree docs images
([#4674](#4674))
([8fc29d5](8fc29d5))
* **docs:** Random updates
([#5281](#5281))
([b8c9273](b8c9273))
* ECCVM flavor depends on builder
([#5323](#5323))
([a594683](a594683))
* Fix clippy errors (noir-lang/noir#4684)
([8b30b95](8b30b95))
* Get rid of ECCVM composer
([#5562](#5562))
([43ed901](43ed901))
* Move e2e-avm-initializer test to e2e-avm-simulator
([#5570](#5570))
([d827705](d827705))
* Nuking accounts from e2e setup
([#5574](#5574))
([be6f843](be6f843)),
closes
[#5307](#5307)
* Nuking L2BlockContext
([#5569](#5569))
([1299190](1299190))
* Pad when needed and not sooner
([#5482](#5482))
([e928c33](e928c33)),
closes
[#5357](#5357)
* Remove conditional compilation around `acvm_js` package
(noir-lang/noir#4702)
([8b30b95](8b30b95))
* Remove debug log from watch.sh
([a9a349d](a9a349d))
* Remove last traces of nix
(noir-lang/noir#4679)
([8b30b95](8b30b95))
* Remove unused boolean return values from stores
([#5470](#5470))
([07794ee](07794ee))
* Remove unused env vars from `Cross.toml`
(noir-lang/noir#4717)
([8b30b95](8b30b95))
* Replace relative paths to noir-protocol-circuits
([51a1983](51a1983))
* Replace relative paths to noir-protocol-circuits
([a716270](a716270))
* Replace relative paths to noir-protocol-circuits
([6827014](6827014))
* Replace relative paths to noir-protocol-circuits
([356caf7](356caf7))
* Simplify how `acvm_backend.wasm` is embedded
(noir-lang/noir#4703)
([8b30b95](8b30b95))
* Simplify how blns is loaded into tests
(noir-lang/noir#4705)
([8b30b95](8b30b95))
* Update snapshot
([#5626](#5626))
([fb66426](fb66426))
* Use is_entry_point helper on RuntimeType
(noir-lang/noir#4678)
([8b30b95](8b30b95))


### Documentation

* Minor fixes in keys
([#5550](#5550))
([ea48ad3](ea48ad3))
* **spec:** Hashing and keys
([#5478](#5478))
([820ac8c](820ac8c))
* Update quickstart.md to use Docker daemon
([#5576](#5576))
([42b9827](42b9827))
</details>

<details><summary>barretenberg: 0.33.0</summary>

##
[0.33.0](barretenberg-v0.32.1...barretenberg-v0.33.0)
(2024-04-09)


### ⚠ BREAKING CHANGES

* **acir:** Add predicate to call opcode
([#5616](#5616))

### Features

* **acir:** Add predicate to call opcode
([#5616](#5616))
([e8cec0a](e8cec0a))
* Avm logup
([#5577](#5577))
([7e4e9b9](7e4e9b9))
* **avm:** Contract instance opcode
([#5487](#5487))
([ceacba6](ceacba6))
* **avm:** Indirect memory for set opcode
([#5546](#5546))
([e0e7200](e0e7200)),
closes
[#5542](#5542)
* DataBus notion with calldata/return data
([#5504](#5504))
([95a1d8a](95a1d8a))
* Optimise relations
([#5552](#5552))
([a581e80](a581e80))
* Optimize auxiliary relations slightly
([#5517](#5517))
([30be431](30be431))


### Miscellaneous

* ECCVM flavor depends on builder
([#5323](#5323))
([a594683](a594683))
* Get rid of ECCVM composer
([#5562](#5562))
([43ed901](43ed901))
</details>

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
AztecBot added a commit to AztecProtocol/barretenberg that referenced this pull request Apr 10, 2024
🤖 I have created a release *beep* *boop*
---


<details><summary>aztec-package: 0.33.0</summary>

##
[0.33.0](AztecProtocol/aztec-packages@aztec-package-v0.32.1...aztec-package-v0.33.0)
(2024-04-09)


### Features

* Jest fast transpile. no more ts-jest.
([#5530](AztecProtocol/aztec-packages#5530))
([1912802](AztecProtocol/aztec-packages@1912802))
* **SimulateTx:** Simulate constrained transaction execution with return
values
([#5432](AztecProtocol/aztec-packages#5432))
([0249737](AztecProtocol/aztec-packages@0249737))
</details>

<details><summary>barretenberg.js: 0.33.0</summary>

##
[0.33.0](AztecProtocol/aztec-packages@barretenberg.js-v0.32.1...barretenberg.js-v0.33.0)
(2024-04-09)


### Miscellaneous

* **barretenberg.js:** Synchronize aztec-packages versions
</details>

<details><summary>aztec-cli: 0.33.0</summary>

##
[0.33.0](AztecProtocol/aztec-packages@aztec-cli-v0.32.1...aztec-cli-v0.33.0)
(2024-04-09)


### ⚠ BREAKING CHANGES

* contract_abi-exports
([#5386](AztecProtocol/aztec-packages#5386))

### Features

* **avm:** Integrate AVM with initializers
([#5469](AztecProtocol/aztec-packages#5469))
([59799f2](AztecProtocol/aztec-packages@59799f2))
* Contract_abi-exports
([#5386](AztecProtocol/aztec-packages#5386))
([745d522](AztecProtocol/aztec-packages@745d522))
* Jest fast transpile. no more ts-jest.
([#5530](AztecProtocol/aztec-packages#5530))
([1912802](AztecProtocol/aztec-packages@1912802))


### Bug Fixes

* Update CLI & terraforms with new contract addresses
([#5553](AztecProtocol/aztec-packages#5553))
([eb73d20](AztecProtocol/aztec-packages@eb73d20))
</details>

<details><summary>aztec-packages: 0.33.0</summary>

##
[0.33.0](AztecProtocol/aztec-packages@aztec-packages-v0.32.1...aztec-packages-v0.33.0)
(2024-04-09)


### ⚠ BREAKING CHANGES

* **acir:** Add predicate to call opcode
([#5616](AztecProtocol/aztec-packages#5616))
* contract_abi-exports
([#5386](AztecProtocol/aztec-packages#5386))
* **avm:** rollback FunctionAbi isTranspiled changes
([#5561](AztecProtocol/aztec-packages#5561))

### Features

* /foundry is canoncial build of foundry. e2e tests can start own anvil.
([#5522](AztecProtocol/aztec-packages#5522))
([510daa0](AztecProtocol/aztec-packages@510daa0))
* `add` and `sub` methods of `EasyPrivateUint` throw when called in
public
([#5581](AztecProtocol/aztec-packages#5581))
([29f337d](AztecProtocol/aztec-packages@29f337d))
* **acir:** Add predicate to call opcode
([#5616](AztecProtocol/aztec-packages#5616))
([e8cec0a](AztecProtocol/aztec-packages@e8cec0a))
* **acvm_js:** Execute program
(noir-lang/noir#4694)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Add return values to aztec fns
([#5389](AztecProtocol/aztec-packages#5389))
([7b88bac](AztecProtocol/aztec-packages@7b88bac))
* Allow slices to brillig entry points
(noir-lang/noir#4713)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Avm logup
([#5577](AztecProtocol/aztec-packages#5577))
([7e4e9b9](AztecProtocol/aztec-packages@7e4e9b9))
* **avm:** Add index to pedersen opcode
([#5486](AztecProtocol/aztec-packages#5486))
([e1d7d11](AztecProtocol/aztec-packages@e1d7d11))
* **avm:** Contract instance opcode
([#5487](AztecProtocol/aztec-packages#5487))
([ceacba6](AztecProtocol/aztec-packages@ceacba6))
* **avm:** Gas usage for nested calls
([#5495](AztecProtocol/aztec-packages#5495))
([11699c8](AztecProtocol/aztec-packages@11699c8))
* **avm:** Indirect memory for set opcode
([#5546](AztecProtocol/aztec-packages#5546))
([e0e7200](AztecProtocol/aztec-packages@e0e7200)),
closes
[#5542](AztecProtocol/aztec-packages#5542)
* **avm:** Integrate AVM with initializers
([#5469](AztecProtocol/aztec-packages#5469))
([59799f2](AztecProtocol/aztec-packages@59799f2))
* **avm:** Set gas allowance in public calls
([#5567](AztecProtocol/aztec-packages#5567))
([ee23415](AztecProtocol/aztec-packages@ee23415))
* **avm:** Track gas from memory accesses explicitly
([#5563](AztecProtocol/aztec-packages#5563))
([18c9128](AztecProtocol/aztec-packages@18c9128)),
closes
[#5514](AztecProtocol/aztec-packages#5514)
* Contract_abi-exports
([#5386](AztecProtocol/aztec-packages#5386))
([745d522](AztecProtocol/aztec-packages@745d522))
* DataBus notion with calldata/return data
([#5504](AztecProtocol/aztec-packages#5504))
([95a1d8a](AztecProtocol/aztec-packages@95a1d8a))
* DebugLog(...) in noir-protocol-circuits
([#5568](AztecProtocol/aztec-packages#5568))
([a07bb92](AztecProtocol/aztec-packages@a07bb92))
* **docs:** Documenting noir codegen
(noir-lang/noir#4454)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Improve nargo check cli with --override flag and feedback for existing
files (noir-lang/noir#4575)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Improve optimisations on range constraints
(noir-lang/noir#4690)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Improve SSA type-awareness in EQ and MUL instructions
(noir-lang/noir#4691)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Improve the proving orchestration lifecycle
([#5535](AztecProtocol/aztec-packages#5535))
([4e4f843](AztecProtocol/aztec-packages@4e4f843))
* Jest fast transpile. no more ts-jest.
([#5530](AztecProtocol/aztec-packages#5530))
([1912802](AztecProtocol/aztec-packages@1912802))
* Logging deployed contract address to help debug e2e account test
([#5571](AztecProtocol/aztec-packages#5571))
([1907473](AztecProtocol/aztec-packages@1907473))
* Only export values from accumulated data
([#5604](AztecProtocol/aztec-packages#5604))
([a974ec8](AztecProtocol/aztec-packages@a974ec8))
* Optimise relations
([#5552](AztecProtocol/aztec-packages#5552))
([a581e80](AztecProtocol/aztec-packages@a581e80))
* Optimize auxiliary relations slightly
([#5517](AztecProtocol/aztec-packages#5517))
([30be431](AztecProtocol/aztec-packages@30be431))
* Public inputs refactor
([#5500](AztecProtocol/aztec-packages#5500))
([6b9a538](AztecProtocol/aztec-packages@6b9a538))
* Restore hashing args via slice for performance
([#5539](AztecProtocol/aztec-packages#5539))
([eb3acdf](AztecProtocol/aztec-packages@eb3acdf))
* **SimulateTx:** Simulate constrained transaction execution with return
values
([#5432](AztecProtocol/aztec-packages#5432))
([0249737](AztecProtocol/aztec-packages@0249737))


### Bug Fixes

* **acvm:** Mark outputs of Opcode::Call solvable
(noir-lang/noir#4708)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* **avm:** Nullifier handling
([#5488](AztecProtocol/aztec-packages#5488))
([bc8211d](AztecProtocol/aztec-packages@bc8211d))
* **ci:** Cache submodules in GA
([#5531](AztecProtocol/aztec-packages#5531))
([75f2cc6](AztecProtocol/aztec-packages@75f2cc6))
* **ci:** Install fixed foundry version in CI
([#5582](AztecProtocol/aztec-packages#5582))
([46fdb37](AztecProtocol/aztec-packages@46fdb37))
* Dependabot update
([#5547](AztecProtocol/aztec-packages#5547))
([f7e6cc8](AztecProtocol/aztec-packages@f7e6cc8))
* E2e earthly status
([#5564](AztecProtocol/aztec-packages#5564))
([a5076ca](AztecProtocol/aztec-packages@a5076ca))
* Field comparisons (noir-lang/noir#4704)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Invalid fork terraform
([#5585](AztecProtocol/aztec-packages#5585))
([826353b](AztecProtocol/aztec-packages@826353b))
* Last use analysis & make it an SSA pass
(noir-lang/noir#4686)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Mainnet fork redeploys
([#5573](AztecProtocol/aztec-packages#5573))
([88e8b6d](AztecProtocol/aztec-packages@88e8b6d))
* Remove EFS lifecycle rule
([#5587](AztecProtocol/aztec-packages#5587))
([eb66fc6](AztecProtocol/aztec-packages@eb66fc6))
* **ssa:** Do not use get_value_max_num_bits when we want pure type
information (noir-lang/noir#4700)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Taint fork file storage
([#5560](AztecProtocol/aztec-packages#5560))
([f144f3b](AztecProtocol/aztec-packages@f144f3b))
* Unknown slice lengths coming from as_slice
(noir-lang/noir#4725)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Update CLI & terraforms with new contract addresses
([#5553](AztecProtocol/aztec-packages#5553))
([eb73d20](AztecProtocol/aztec-packages@eb73d20))


### Miscellaneous

* **avm:** Rollback FunctionAbi isTranspiled changes
([#5561](AztecProtocol/aztec-packages#5561))
([150932a](AztecProtocol/aztec-packages@150932a))
* Check for references to private functions during path resolution
(noir-lang/noir#4622)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* **docs:** Add file to prove ownership for google search console
([#5554](AztecProtocol/aztec-packages#5554))
([dfa3998](AztecProtocol/aztec-packages@dfa3998))
* **docs:** Fix indexed-merkle-tree docs images
([#4674](AztecProtocol/aztec-packages#4674))
([8fc29d5](AztecProtocol/aztec-packages@8fc29d5))
* **docs:** Random updates
([#5281](AztecProtocol/aztec-packages#5281))
([b8c9273](AztecProtocol/aztec-packages@b8c9273))
* ECCVM flavor depends on builder
([#5323](AztecProtocol/aztec-packages#5323))
([a594683](AztecProtocol/aztec-packages@a594683))
* Fix clippy errors (noir-lang/noir#4684)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Get rid of ECCVM composer
([#5562](AztecProtocol/aztec-packages#5562))
([43ed901](AztecProtocol/aztec-packages@43ed901))
* Move e2e-avm-initializer test to e2e-avm-simulator
([#5570](AztecProtocol/aztec-packages#5570))
([d827705](AztecProtocol/aztec-packages@d827705))
* Nuking accounts from e2e setup
([#5574](AztecProtocol/aztec-packages#5574))
([be6f843](AztecProtocol/aztec-packages@be6f843)),
closes
[#5307](AztecProtocol/aztec-packages#5307)
* Nuking L2BlockContext
([#5569](AztecProtocol/aztec-packages#5569))
([1299190](AztecProtocol/aztec-packages@1299190))
* Pad when needed and not sooner
([#5482](AztecProtocol/aztec-packages#5482))
([e928c33](AztecProtocol/aztec-packages@e928c33)),
closes
[#5357](AztecProtocol/aztec-packages#5357)
* Remove conditional compilation around `acvm_js` package
(noir-lang/noir#4702)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Remove debug log from watch.sh
([a9a349d](AztecProtocol/aztec-packages@a9a349d))
* Remove last traces of nix
(noir-lang/noir#4679)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Remove unused boolean return values from stores
([#5470](AztecProtocol/aztec-packages#5470))
([07794ee](AztecProtocol/aztec-packages@07794ee))
* Remove unused env vars from `Cross.toml`
(noir-lang/noir#4717)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Replace relative paths to noir-protocol-circuits
([51a1983](AztecProtocol/aztec-packages@51a1983))
* Replace relative paths to noir-protocol-circuits
([a716270](AztecProtocol/aztec-packages@a716270))
* Replace relative paths to noir-protocol-circuits
([6827014](AztecProtocol/aztec-packages@6827014))
* Replace relative paths to noir-protocol-circuits
([356caf7](AztecProtocol/aztec-packages@356caf7))
* Simplify how `acvm_backend.wasm` is embedded
(noir-lang/noir#4703)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Simplify how blns is loaded into tests
(noir-lang/noir#4705)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))
* Update snapshot
([#5626](AztecProtocol/aztec-packages#5626))
([fb66426](AztecProtocol/aztec-packages@fb66426))
* Use is_entry_point helper on RuntimeType
(noir-lang/noir#4678)
([8b30b95](AztecProtocol/aztec-packages@8b30b95))


### Documentation

* Minor fixes in keys
([#5550](AztecProtocol/aztec-packages#5550))
([ea48ad3](AztecProtocol/aztec-packages@ea48ad3))
* **spec:** Hashing and keys
([#5478](AztecProtocol/aztec-packages#5478))
([820ac8c](AztecProtocol/aztec-packages@820ac8c))
* Update quickstart.md to use Docker daemon
([#5576](AztecProtocol/aztec-packages#5576))
([42b9827](AztecProtocol/aztec-packages@42b9827))
</details>

<details><summary>barretenberg: 0.33.0</summary>

##
[0.33.0](AztecProtocol/aztec-packages@barretenberg-v0.32.1...barretenberg-v0.33.0)
(2024-04-09)


### ⚠ BREAKING CHANGES

* **acir:** Add predicate to call opcode
([#5616](AztecProtocol/aztec-packages#5616))

### Features

* **acir:** Add predicate to call opcode
([#5616](AztecProtocol/aztec-packages#5616))
([e8cec0a](AztecProtocol/aztec-packages@e8cec0a))
* Avm logup
([#5577](AztecProtocol/aztec-packages#5577))
([7e4e9b9](AztecProtocol/aztec-packages@7e4e9b9))
* **avm:** Contract instance opcode
([#5487](AztecProtocol/aztec-packages#5487))
([ceacba6](AztecProtocol/aztec-packages@ceacba6))
* **avm:** Indirect memory for set opcode
([#5546](AztecProtocol/aztec-packages#5546))
([e0e7200](AztecProtocol/aztec-packages@e0e7200)),
closes
[#5542](AztecProtocol/aztec-packages#5542)
* DataBus notion with calldata/return data
([#5504](AztecProtocol/aztec-packages#5504))
([95a1d8a](AztecProtocol/aztec-packages@95a1d8a))
* Optimise relations
([#5552](AztecProtocol/aztec-packages#5552))
([a581e80](AztecProtocol/aztec-packages@a581e80))
* Optimize auxiliary relations slightly
([#5517](AztecProtocol/aztec-packages#5517))
([30be431](AztecProtocol/aztec-packages@30be431))


### Miscellaneous

* ECCVM flavor depends on builder
([#5323](AztecProtocol/aztec-packages#5323))
([a594683](AztecProtocol/aztec-packages@a594683))
* Get rid of ECCVM composer
([#5562](AztecProtocol/aztec-packages#5562))
([43ed901](AztecProtocol/aztec-packages@43ed901))
</details>

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
ludamad pushed a commit that referenced this pull request Apr 11, 2024
This should fix the failures introduced by #5490. These were a bit of an
unforntunate coincidence,
#5500 changed the
underlying kernel data structures, and
#5432 changed what
`simulate` does: both would've caused issues, but because `simulate`'s
return type is `any` this went unnoticed until execution.

I also added the new job to the earthly setup, still looking into why
the old PR was merged despite failing.

---------

Co-authored-by: Charlie Lye <karl.lye@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants