From 1a8b5a95022143fcb9731da4f9d5ee86019c7e94 Mon Sep 17 00:00:00 2001 From: Moises E Jaramillo Date: Mon, 7 Oct 2024 16:59:43 -0400 Subject: [PATCH 1/2] Update README.md Small typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5659c88..cfacbd8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # dentity-ens-client -A combination of [Denitty](https://dentity.com) and [ENS domains](https://ens.domains) to verify basic information for ENS domain owners. +A combination of [Dentity](https://dentity.com) and [ENS domains](https://ens.domains) to verify basic information for ENS domain owners. --- From 81a1f1baebc83572aa40a884c4aacc05bfaf6212 Mon Sep 17 00:00:00 2001 From: Moises E Jaramillo Date: Mon, 7 Oct 2024 17:01:23 -0400 Subject: [PATCH 2/2] Update README.md Removed my name --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cfacbd8..cb9e43b 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ const client = createEnsPublicClient({ transport: http(''), }) as EnsPublicClient; -EnsDentityClient.initialize(client as any, 'moisesj.eth').then((ensClient) => { +EnsDentityClient.initialize(client as any, 'alice.eth').then((ensClient) => { // Get ethereum address of this ENS domain const address = ensClient.getEthAddress(); @@ -50,7 +50,7 @@ const client = createEnsPublicClient({ transport: http(''), }) as EnsPublicClient; -DentityEnsClient.initialize(client as any, 'moisesj.eth').then((ensClient) => { +DentityEnsClient.initialize(client as any, 'alice.eth').then((ensClient) => { // Get ethereum address const address = ensClient.getEthAddress(); console.log('ENS Address:', address);