Skip to main content

Address

An address is computed as the hash of the following fields:

FieldTypeDescription
saltFieldUser-generated pseudorandom value for uniqueness.
deployerAztecAddressOptional address of the deployer of the contract.
contract_class_idFieldIdentifier of the contract class for this instance.
initialization_hashFieldHash of the selector and arguments to the constructor.
portal_contract_addressEthereumAddressAddress of the L1 portal contract, zero if none.
public_keys_hashFieldHash of the struct of public keys used for encryption and nullifying by this contract, zero if no public keys.

Storing these fields in the address preimage allows any part of the protocol to check them by recomputing the hash and verifying that the address matches. Examples of these checks are:

  • Sending an encrypted note to an undeployed account, which requires the sender app to check the recipient's public key given their address. This scenario also requires the recipient to share with the sender their public key and rest of preimage.
  • Having the kernel circuit verify that the code executed at a given address matches the one from the class.
  • Asserting that the initialization hash matches the function call in the contract constructor.
  • Checking the portal contract address when sending a cross-chain message.
warning

We may remove the portal_contract_address as a first-class citizen.

The hashing scheme for the address should then ensure that checks that are more frequent can be done cheaply, and that data shared out of band is kept manageable. We define the hash to be computed as follows:

warning

Some of these draft domain separators might be too many bits; they need to fit inside a single field element. Version numbers might not be needed until we roll the next version.

address_crh(
version: Field,
salt: Field,
deployer: AztecAddress,
contract_class_id: Field,
initialization_hash: Field,
portal_contract_address: EthereumAddress,
public_keys_hash: Field,
) -> Field {

let salted_initialization_hash: Field = poseidon2(
be_string_to_field("az_salted_initialization_hash_v1"),

salt,
initialization_hash,
deployer.to_field(),
be_bits_to_field(portal_contract_address)
);

let partial_address: Field = poseidon2(
be_string_to_field("az_contract_partial_address_v1"),

contract_class_id,
salted_initialization_hash
);

let address: Field = poseidon2(
be_string_to_field("az_contract_address_v1"),

public_keys_hash,
partial_address
);

address
}

The public_keys array can vary depending on the format of keys used by the address, but it is suggested it includes the master keys defined in the keys section. For example:

let public_keys_hash: Field = poseidon2(
be_string_to_field("az_public_keys_hash"), // TODO: does this need some unique ID, to disambiguate from other approaches people might have for other public keys?

nullifier_pubkey.x,
nullifier_pubkey.y,
tagging_pubkey.x,
tagging_pubkey.y,
incoming_view_pubkey.x,
incoming_view_pubkey.y,
outgoing_view_pubkey.x,
outgoing_view_pubkey.y
);

This recommended hash format is compatible with the encryption precompiles initially defined in the protocol and advertised in the canonical registry for private message delivery. An address that chooses to use a different format for its keys will not be compatible with apps that rely on the registry for note encryption. Nevertheless, new precompiles introduced in future versions of the protocol could use different public keys formats.