From 9423b0260267614376888fa197ac1d2bc306bc71 Mon Sep 17 00:00:00 2001 From: Paul Parker <114397409+pauldesmondparker@users.noreply.github.com> Date: Sat, 28 Sep 2024 22:44:42 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20add=20Hole=C5=A1ky=20deployment=20(#64)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit use DID/URL friendly network name for holesky --- README.md | 3 ++- deployments.ts | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e40d6f..a8f294b 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,8 @@ off-chain usage. | Arbitrum Goerli | arbitrum:goerli | 421613 | 0x66eed | [0x8FFfcD6a85D29E9C33517aaf60b16FE4548f517E](https://goerli.arbiscan.io/address/0x8FFfcD6a85D29E9C33517aaf60b16FE4548f517E) | [af1c2db](https://github.com/uport-project/ethr-did-registry/commit/af1c2db0e093507627338a6e562e0ed7c219b9ee) | | Linea Goerli | linea:goerli | 59140 | 0xe704 | [0x03d5003bf0e79c5f5223588f347eba39afbc3818](https://goerli.lineascan.build/address/0x03d5003bf0e79c5f5223588f347eba39afbc3818) | [af1c2db](https://github.com/uport-project/ethr-did-registry/commit/af1c2db0e093507627338a6e562e0ed7c219b9ee) | | Sepolia | sepolia | 11155111 | 0xaa36a7 | [0x03d5003bf0e79c5f5223588f347eba39afbc3818](https://sepolia.etherscan.io/address/0x03d5003bf0e79c5f5223588f347eba39afbc3818#code) | [af1c2db](https://github.com/uport-project/ethr-did-registry/commit/af1c2db0e093507627338a6e562e0ed7c219b9ee) | -| Cardona zkEVM Testnet | | 2442 | 0x98a | [0x03d5003bf0e79c5f5223588f347eba39afbc3818](https://cardona-zkevm.polygonscan.com/address/0x03d5003bf0e79c5f5223588f347eba39afbc3818) | [3baa0b6](https://github.com/pauldesmondparker/ethr-did-registry/commit/3baa0b6ee41aeb38b786a7e93b62e88cd372f564) | +| Cardona | cardona | 2442 | 0x98a | [0x03d5003bf0e79c5f5223588f347eba39afbc3818](https://cardona-zkevm.polygonscan.com/address/0x03d5003bf0e79c5f5223588f347eba39afbc3818) | [0ab4f151](https://github.com/uport-project/ethr-did-registry/commit/0ab4f151ddde5b7739b97827c4fb901289f57892) | +| Holešky | holesky | 17000 | 0x4268 | [0x03d5003bf0e79c5f5223588f347eba39afbc3818](https://holesky.etherscan.io/address/0x03d5003bf0e79c5f5223588f347eba39afbc3818) | [0ab4f151](https://github.com/uport-project/ethr-did-registry/commit/0ab4f151ddde5b7739b97827c4fb901289f57892) | ## Using the Registry diff --git a/deployments.ts b/deployments.ts index bdf82cd..d3bdc4c 100644 --- a/deployments.ts +++ b/deployments.ts @@ -38,7 +38,13 @@ export const deployments: EthrDidRegistryDeployment[] = [ { chainId: 2442, registry: '0x03d5003bf0e79C5F5223588F347ebA39AfbC3818', - name: 'cardona:zkevm', + name: 'cardona', description: 'polygon zkevm cardona testnet', }, + { + chainId: 17000, + registry: '0x03d5003bf0e79C5F5223588F347ebA39AfbC3818', + name: 'holesky', + description: 'ethereum infrastructure and core protocol upgrades testnet', + }, ]