From e9e5cadda711afe78e16e222cb02950d4d0ad8ef Mon Sep 17 00:00:00 2001 From: Mithras Date: Sat, 22 Jun 2024 14:18:19 +0300 Subject: [PATCH] update: Multisig --- src/factory/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/factory/config.ts b/src/factory/config.ts index fe42853..b2fba0c 100644 --- a/src/factory/config.ts +++ b/src/factory/config.ts @@ -47,7 +47,7 @@ export namespace ChainFactoryConfigs { }, ethParams: { addressBook: ethers.getAddress( - "0x57d49F8cA354002692284d38edD4c5772eC72e81", + "0x8b87FE2b3f3D9816432b34D5A6a30B1330594082", ), chainName: "sepolia", nativeCoin: "ETH", @@ -56,7 +56,7 @@ export namespace ChainFactoryConfigs { multisigParams: { provider: new JsonRpcProvider(TestNetRpcUri.ETH), address: ethers.getAddress( - "", + "0x57d49F8cA354002692284d38edD4c5772eC72e81", ), }, } satisfies Partial;