From 1bdf07c8b56d36ee157184787ce0c7851a72135e Mon Sep 17 00:00:00 2001 From: Miguel de Elias Date: Wed, 12 Nov 2025 14:33:01 -0300 Subject: [PATCH] fix: use correct address for ethereumDIDRegistry in Arbitrum One --- config/mainnetArbitrumAddressScript.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/mainnetArbitrumAddressScript.ts b/config/mainnetArbitrumAddressScript.ts index 800f4590..a61504bc 100644 --- a/config/mainnetArbitrumAddressScript.ts +++ b/config/mainnetArbitrumAddressScript.ts @@ -59,7 +59,7 @@ const main = (): void => { output.tokenLockManager = '0xFCf78AC094288D7200cfdB367A8CD07108dFa128' output.useTokenLockManager = false if(output.ethereumDIDRegistry == '') { - output.ethereumDIDRegistry = '0xdCa7EF03e98e0DC2B855bE647C39ABe984fcF21B' // since the package doesn't have it yet + output.ethereumDIDRegistry = '0xa9AEb1c6f14f4244547B9a0946C485DA99047638' // since the package doesn't have it yet } if(output.ens == '') { output.ens = '0x0000000000000000000000000000000000000000' // to avoid crashes due to bad config @@ -70,4 +70,4 @@ const main = (): void => { } } -main() \ No newline at end of file +main()