zksync_system_constants 0.1.0

ZKsync system constants
Documentation
1
2
3
4
5
6
7
8
use zksync_basic_types::H256;

// By design we don't have a term: uncle blocks. Hence we have to use RLP hash
// from empty list for Ethereum compatibility.
pub const EMPTY_UNCLES_HASH: H256 = H256([
    0x1d, 0xcc, 0x4d, 0xe8, 0xde, 0xc7, 0x5d, 0x7a, 0xab, 0x85, 0xb5, 0x67, 0xb6, 0xcc, 0xd4, 0x1a,
    0xd3, 0x12, 0x45, 0x1b, 0x94, 0x8a, 0x74, 0x13, 0xf0, 0xa1, 0x42, 0xfd, 0x40, 0xd4, 0x93, 0x47,
]);