@@ -221,19 +221,9 @@ pub global CONTRACT_INSTANCE_UPDATED_MAGIC_VALUE: Field =
221221// Chosen to be a multiple of 3 (-1 to account for the separator), to optimize the poseidon2 hash.
222222pub global MAX_PROTOCOL_CONTRACTS : u32 = 11 ;
223223// Address 0 is not a protocol contract.
224- // Address 1 is reserved (auth_registry was previously published here as a protocol contract; it is
225- // now deployed as a regular contract at an artifact-derived address, see
226- // `noir-projects/aztec-nr/canonical_addresses`).
227- // Address 4 is reserved (multi_call_entrypoint was previously published here as a protocol contract;
228- // it is now deployed as a regular contract at an artifact-derived address; see
229- // `yarn-project/canonical-contracts/src/multi-call-entrypoint`).
230- // Address 6 is reserved (public_checks was previously published here as a protocol contract; it is
231- // now deployed as a regular contract at an artifact-derived address; see
232- // `noir-projects/aztec-nr/canonical_addresses` for the Noir stamp and
233- // `yarn-project/canonical-contracts/src/public-checks` for the TS twin).
234- pub global CONTRACT_INSTANCE_REGISTRY_CONTRACT_ADDRESS : AztecAddress = AztecAddress ::from_field (2 );
235- pub global CONTRACT_CLASS_REGISTRY_CONTRACT_ADDRESS : AztecAddress = AztecAddress ::from_field (3 );
236- pub global FEE_JUICE_ADDRESS : AztecAddress = AztecAddress ::from_field (5 );
224+ pub global CONTRACT_INSTANCE_REGISTRY_CONTRACT_ADDRESS : AztecAddress = AztecAddress ::from_field (1 );
225+ pub global CONTRACT_CLASS_REGISTRY_CONTRACT_ADDRESS : AztecAddress = AztecAddress ::from_field (2 );
226+ pub global FEE_JUICE_ADDRESS : AztecAddress = AztecAddress ::from_field (3 );
237227
238228// `SIDE_EFFECT_MASKING_ADDRESS` is used by the protocol circuits to silo the padding side effects. It's not a protocol
239229// contract (hence its address is greater than `MAX_PROTOCOL_CONTRACTS`).
0 commit comments