Function alloy_zksync::network::unsigned_tx::eip712::hash_bytecode

source ·
pub fn hash_bytecode(bytecode: &[u8]) -> Result<[u8; 32], BytecodeHashError>
Expand description

The 32-byte hash of the bytecode of a zkSync contract is calculated in the following way:

  • The first 2 bytes denote the version of bytecode hash format and are currently equal to [1,0].
  • The second 2 bytes denote the length of the bytecode in 32-byte words.
  • The rest of the 28-byte (i.e. 28 low big-endian bytes) are equal to the last 28 bytes of the sha256 hash of the contract’s bytecode.

This function performs validity checks for bytecode:

  • The bytecode must be aligned to 32-byte words.
  • The bytecode length must not exceed the maximum allowed value.
  • The number of words must be odd.