Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct multiple typos around files #268

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion packages/linea-ens-contracts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ 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.
Expand Down
2 changes: 1 addition & 1 deletion packages/linea-ens-contracts/test/wrapper/NameWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion packages/linea-state-verifier/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down