From 9e68267d10f4def4b51553efc941b99d77a409e5 Mon Sep 17 00:00:00 2001 From: antews Date: Sat, 7 Dec 2024 13:17:15 +0300 Subject: [PATCH 1/5] package.json --- packages/linea-state-verifier/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/linea-state-verifier/package.json b/packages/linea-state-verifier/package.json index af2303f88..0d786eab8 100644 --- a/packages/linea-state-verifier/package.json +++ b/packages/linea-state-verifier/package.json @@ -1,7 +1,7 @@ { "name": "@consensys/linea-state-verifier", "version": "1.0.1", - "description": "This library is intended to be used specifacilly to resolve any Linea storage state on L1", + "description": "This library is intended to be used specifically to resolve any Linea storage state on L1", "scripts": { "compile": "hardhat compile", "clean": "rm -fr artifacts cache node_modules typechain-types" From d788f8654f0f6c948d906092d3661824b27b5de3 Mon Sep 17 00:00:00 2001 From: antews Date: Sat, 7 Dec 2024 13:15:02 +0300 Subject: [PATCH 2/5] README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 074a0f9cb..40963d7e6 100644 --- a/README.md +++ b/README.md @@ -99,13 +99,13 @@ See [Install](./packages/linea-ens-app/README.md#install) in the linea-ens-app R ### linea-ens-resolver -The linea-ens-resolver contract intented to be deployed on L1 that is built on top of [linea-state-verifier](./packages/linea-state-verifier) and verifies Linea ENS data (domain names, metadata etc). +The linea-ens-resolver contract intended to be deployed on L1 that is built on top of [linea-state-verifier](./packages/linea-state-verifier) and verifies Linea ENS data (domain names, metadata etc). More documentation available in [linea-ens-resolver/README.md](./packages/linea-ens-resolver/README.md) ### linea-ens-contracts -The linea-ens-contracts contracts intented to be deployed on L2 (Linea) stores and returns the data necessary to resolve a domain name and more data related to ENS. +The linea-ens-contracts contracts intended to be deployed on L2 (Linea) stores and returns the data necessary to resolve a domain name and more data related to ENS. More documentation available in [linea-ens-contracts/README.md](./packages/linea-ens-contracts/README.md) From cf5fac33815599361b09848991a4cf8f8704d5fa Mon Sep 17 00:00:00 2001 From: antews Date: Sat, 7 Dec 2024 13:09:45 +0300 Subject: [PATCH 3/5] README.md --- packages/linea-ens-contracts/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/linea-ens-contracts/README.md b/packages/linea-ens-contracts/README.md index 8b9773134..14e8bdc4c 100644 --- a/packages/linea-ens-contracts/README.md +++ b/packages/linea-ens-contracts/README.md @@ -70,16 +70,16 @@ The minimum delay and expiry for commitments exist to prevent miners or other us ### PohRegistrationManger -PohRegistrationManger is the contract responsible to keep track of the users that used their POH to register a domain (One registration by address). +PohRegistrationManager is the contract responsible to keep track of the users that used their POH to register a domain (One registration by address). - The owner of the PohRegistrationManger can set addresses as managers. - The managers of PohRegistrationManager can mark an address as having used its POH, EthRegistrarController is intended to be a manager. ### PohVerifier -PohVerifier is the contract responsible for checking the signature of the private key responsible for aknowledging an address has passed the POH process or not. +PohVerifier is the contract responsible for checking the signature of the private key responsible for acknowledging an address has passed the POH process or not. -- The owner of PohVerifier can set the signer address responsible for aknowledging a POH +- The owner of PohVerifier can set the signer address responsible for acknowledging a POH ### FixedPriceOracle From 726fb7c42afc40609ce6ddaf4260af06a695c9f8 Mon Sep 17 00:00:00 2001 From: antews Date: Sat, 7 Dec 2024 13:12:22 +0300 Subject: [PATCH 4/5] README.md --- packages/linea-ens-contracts/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/linea-ens-contracts/README.md b/packages/linea-ens-contracts/README.md index 14e8bdc4c..390a3f72b 100644 --- a/packages/linea-ens-contracts/README.md +++ b/packages/linea-ens-contracts/README.md @@ -77,9 +77,9 @@ PohRegistrationManager is the contract responsible to keep track of the users th ### PohVerifier -PohVerifier is the contract responsible for checking the signature of the private key responsible for acknowledging an address has passed the POH process or not. +PohVerifier is the contract responsible for checking the signature of the private key responsible for aknowledging an address has passed the POH process or not. -- The owner of PohVerifier can set the signer address responsible for acknowledging a POH +- The owner of PohVerifier can set the signer address responsible for aknowledging a POH ### FixedPriceOracle From a4d73e1ea2d86646902bdab329bd56c5d4920085 Mon Sep 17 00:00:00 2001 From: antews Date: Sat, 7 Dec 2024 13:43:25 +0300 Subject: [PATCH 5/5] NameWrapper.js --- packages/linea-ens-contracts/test/wrapper/NameWrapper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/linea-ens-contracts/test/wrapper/NameWrapper.js b/packages/linea-ens-contracts/test/wrapper/NameWrapper.js index 355673c06..81e51ce82 100644 --- a/packages/linea-ens-contracts/test/wrapper/NameWrapper.js +++ b/packages/linea-ens-contracts/test/wrapper/NameWrapper.js @@ -7234,7 +7234,7 @@ describe('Name Wrapper', () => { ).to.be.revertedWith(`Unauthorised("${namehash('xyz')}", "${hacker}")`) }) - it('When .eth name expires, it is untransferrable', async () => { + it('When .eth name expires, it is untransferable', async () => { await BaseRegistrar.register(labelhash(label), account, 1 * DAY) await NameWrapper.wrapAnyLD(label, account, 0, EMPTY_ADDRESS)