From 7fb740b6d129a15420b79ad6d7c63f68f887c98d Mon Sep 17 00:00:00 2001 From: Paul Desmond Parker Date: Fri, 27 Sep 2024 15:16:26 +0800 Subject: [PATCH 1/2] =?UTF-8?q?docs:=20add=20Hole=C5=A1ky=20deployment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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..3fd6484 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: 'holešky', + description: 'ethereum infrastructure and core protocol upgrades testnet', + }, ] From 621765f83550dbb6ff42e2625cda7868c4b8303c Mon Sep 17 00:00:00 2001 From: Mircea Nistor Date: Sat, 28 Sep 2024 16:44:11 +0200 Subject: [PATCH 2/2] docs: use DID/URL friendly network name for holesky --- deployments.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployments.ts b/deployments.ts index 3fd6484..d3bdc4c 100644 --- a/deployments.ts +++ b/deployments.ts @@ -44,7 +44,7 @@ export const deployments: EthrDidRegistryDeployment[] = [ { chainId: 17000, registry: '0x03d5003bf0e79C5F5223588F347ebA39AfbC3818', - name: 'holešky', + name: 'holesky', description: 'ethereum infrastructure and core protocol upgrades testnet', }, ]