From 04381cac304f13ff347bf0462a31f5eb13df7b9a Mon Sep 17 00:00:00 2001 From: Kai <7630809+Kailai-Wang@users.noreply.github.com> Date: Fri, 23 Aug 2024 13:40:16 +0200 Subject: [PATCH] Change EVM chainID (#3011) --- runtime/litentry/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/litentry/src/lib.rs b/runtime/litentry/src/lib.rs index a95e3c6320..487e8fb195 100644 --- a/runtime/litentry/src/lib.rs +++ b/runtime/litentry/src/lib.rs @@ -1065,7 +1065,7 @@ impl FeeCalculator for TransactionPaymentAsGasPrice { parameter_types! { pub WeightPerGas: Weight = Weight::from_parts(WEIGHT_PER_GAS, 0); - pub ChainId: u64 = LITENTRY_PARA_ID.into(); + pub ChainId: u64 = 212013; // LIT deployment year (21) + paraID (2013) pub BlockGasLimit: U256 = U256::from( NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT.ref_time() / WEIGHT_PER_GAS );