From c83261090b8b5ef55c04836059358057d8bbd1ca Mon Sep 17 00:00:00 2001 From: iuwqyir Date: Wed, 16 Jul 2025 15:56:24 +0300 Subject: [PATCH] set chain ID when initializing simple rpc --- internal/rpc/rpc.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/rpc/rpc.go b/internal/rpc/rpc.go index c9931bc..a39c454 100644 --- a/internal/rpc/rpc.go +++ b/internal/rpc/rpc.go @@ -107,6 +107,7 @@ func InitializeSimpleRPCWithUrl(url string) (IRPCClient, error) { EthClient: ethClient, url: url, } + rpc.setChainID(context.Background()) return IRPCClient(rpc), nil }