From 64d82187ea508dc398b53ae2fc65c268b7572211 Mon Sep 17 00:00:00 2001 From: Goran Rojovic Date: Fri, 29 Dec 2023 09:55:57 +0100 Subject: [PATCH] EntryPoint address --- contracts/system_addresses.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contracts/system_addresses.go b/contracts/system_addresses.go index 72522f57a2..c0dbd4b75b 100644 --- a/contracts/system_addresses.go +++ b/contracts/system_addresses.go @@ -113,7 +113,8 @@ var ( BlockListBridgeAddr = types.StringToAddress("0x0300000000000000000000000000000000000004") // EntryPointContract is the proxy address of EntryPoint contract which is a center point of account abstraction - EntryPointContract = types.StringToAddress("0x2001") + // EntryPoint must be deployed on this address, as it is the same on all networks + EntryPointContract = types.StringToAddress("0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789") // EntryPointContract is an address of EntryPoint contract which is a center point of account abstraction EntryPointContractV1 = types.StringToAddress("0x20011") )