@@ -27,16 +27,21 @@ public class Constants {
27
27
public static final byte [] MAINNET_GENESIS_VALIDATORS_ROOT = StringUtil .hexToBytes ("4b363db94e286120d76eb905340fdd4e54bfe9f06bf33ff6cf5ad27f511bfe95" );
28
28
public static final byte [] SEPOLIA_GENESIS_VALIDATORS_ROOT = StringUtil .hexToBytes ("d8ea171f3c94aea21ebc42a1ed61052acf3f9209c00e4efbaaddac09ed9b8078" );
29
29
30
+ // https://github.com/ethereum/execution-specs/tree/master/network-upgrades/mainnet-upgrades
31
+ // read via /eth/v1/config/fork_schedule
30
32
public static final BigInteger MAINNET_ALTAIR_EPOCH = BigInteger .valueOf (74240 );
31
33
public static final BigInteger MAINNET_BELLATRIX_EPOCH = BigInteger .valueOf (144896 );
32
34
public static final BigInteger MAINNET_CAPELLA_EPOCH = BigInteger .valueOf (194048 );
33
- public static final BigInteger SEPOLIA_ALTAIR_EPOCH = BigInteger .valueOf (50 );
34
- public static final BigInteger SEPOLIA_BELLATRIX_EPOCH = BigInteger .valueOf (100 );
35
- public static final BigInteger SEPOLIA_CAPELLA_EPOCH = BigInteger .valueOf (56832 );
36
35
public static final byte [] MAINNET_CAPELLA_VERSION = StringUtil .hexToBytes ("03000000" );
37
36
public static final byte [] MAINNET_BELLATRIX_VERSION = StringUtil .hexToBytes ("02000000" );
38
37
public static final byte [] MAINNET_ALTAIR_VERSION = StringUtil .hexToBytes ("01000000" );
39
38
public static final byte [] MAINNET_GENESIS_VERSION = StringUtil .hexToBytes ("00000000" );
39
+
40
+ public static final BigInteger SEPOLIA_ALTAIR_EPOCH = BigInteger .valueOf (50 );
41
+ public static final BigInteger SEPOLIA_BELLATRIX_EPOCH = BigInteger .valueOf (100 );
42
+ public static final BigInteger SEPOLIA_CAPELLA_EPOCH = BigInteger .valueOf (56832 );
43
+ public static final BigInteger SEPOLIA_DENEB_EPOCH = BigInteger .valueOf (132608 );
44
+ public static final byte [] SEPOLIA_DENEB_VERSION = StringUtil .hexToBytes ("90000073" );
40
45
public static final byte [] SEPOLIA_CAPELLA_VERSION = StringUtil .hexToBytes ("90000072" );
41
46
public static final byte [] SEPOLIA_BELLATRIX_VERSION = StringUtil .hexToBytes ("90000071" );
42
47
public static final byte [] SEPOLIA_ALTAIR_VERSION = StringUtil .hexToBytes ("90000070" );
0 commit comments