aztec-packages icon indicating copy to clipboard operation
aztec-packages copied to clipboard

Results 395 aztec-packages issues
Sort by recently updated
recently updated
newest added

This PR closes #14163 fixes the broken image link for the `sender_context_change` diagram in the **Understanding Function Context** documentation page. Previously, the diagram was not rendering correctly in the documentation.

Please read [contributing guidelines](CONTRIBUTING.md) and remove this line.

Please read [contributing guidelines](CONTRIBUTING.md) and remove this line.

Move `VerificationKey.check_hash()` to right before we call `std::verify_proof_with_type()`, where we pass the vk and vk hash. Eventually the hash will be checked in `std::verify_proof_with_type()` and `check_hash` can be removed. Clean...

We don't need to silo contract class logs in the base rollups. The contract address is included and enforced by the kernel circuit, it's enough to check the contract address...

This PR update ACIR deserialisation to matche the ACIR changes in noir PR https://github.com/noir-lang/noir/pull/8134

### What are you trying to do? We have a token transfer that we would like to happen in the contructor of a contract. Recently a feature was added so...

T-bug
from-community

fixes: https://github.com/AztecProtocol/aztec-packages/issues/13581

This will allow us to avoid constraining the clamping in the tx execution trace ```cpp Gas gas_limit = Gas{ std::min(tx_gas_limit.l2Gas, gas_used.l2Gas + MAX_L2_GAS_PER_TX_PUBLIC_PORTION), tx_gas_limit.daGas }; ```