Skip to content

Commit

Permalink
fix: use default ethDIDRegistry for arbitrum if we can't find it
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmardefago committed Jan 5, 2023
1 parent 9e6a57e commit b1ae65b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions config/mainnetArbitrumAddressScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ const main = (): void => {
output.bridgeBlockNumber = '42449749' // TBD
output.tokenLockManager = '0xFCf78AC094288D7200cfdB367A8CD07108dFa128'
output.useTokenLockManager = false
if(output.ethereumDIDRegistry == '') {
output.ethereumDIDRegistry = '0xdCa7EF03e98e0DC2B855bE647C39ABe984fcF21B' // since the package doens't have it yet
}
output.isL1 = false
fs.writeFileSync(__dirname + '/generatedAddresses.json', JSON.stringify(output, null, 2))
} catch (e) {
Expand Down

0 comments on commit b1ae65b

Please sign in to comment.