From 41fd4d731f00f92537bac89d41ceb925a3f64422 Mon Sep 17 00:00:00 2001 From: Romashka Date: Wed, 4 Dec 2024 23:14:48 +0200 Subject: [PATCH 1/4] typo-Update output.csv --- script/premint/output.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/premint/output.csv b/script/premint/output.csv index 87565c9..46a00d6 100644 --- a/script/premint/output.csv +++ b/script/premint/output.csv @@ -506,7 +506,7 @@ wechat,7621356428801393426952390000131098112946321244671932167782373805868879993 telegram,80655504582570763139810498942370294850908834078935309903533049087297820804536 slack,53414230639340637484343914259225977433615388018193261375420526445352518512303 louisvuitton,44030042453791041515191968450395731750384911073592268585510350597161105528494 -chanel,76758465915907329075099705040377788627557831753383652312338239927447521200848 +channel,76758465915907329075099705040377788627557831753383652312338239927447521200848 hermes,89566425882748699877128164990444504151305942551129198197159746136842287282935 gucci,56779106593644406857526900915654018921376956214179079351192374736074498890442 rolex,94392882792475968338048553146242001914521930847985213268883553538310129767736 From 435651db5620b7ff6305e4d79039fb53be9a1519 Mon Sep 17 00:00:00 2001 From: Romashka Date: Wed, 4 Dec 2024 23:15:56 +0200 Subject: [PATCH 2/4] typo-Update L1Resolver.sol --- src/L1/L1Resolver.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/L1/L1Resolver.sol b/src/L1/L1Resolver.sol index 5ffeea4..16d22e5 100644 --- a/src/L1/L1Resolver.sol +++ b/src/L1/L1Resolver.sol @@ -180,7 +180,7 @@ contract L1Resolver is IExtendedResolver, ERC165, Ownable { /// `result` is the resolver response to the resolution request. /// `expires` is the signature expiry. /// `sig` is the signature data used for validating that the gateway signed the response. - /// Per ENSIP-10, the `extraData` arg must match exectly the `extraData` field from the `OffchainLookup` which initiated + /// Per ENSIP-10, the `extraData` arg must match exactly the `extraData` field from the `OffchainLookup` which initiated /// the CCIP read. /// Reverts with `InvalidSigner` if the recovered address is not in the `singers` mapping. /// From d2be76ccc4b0b1802ff5f1b30b93506dd784de8e Mon Sep 17 00:00:00 2001 From: Romashka Date: Wed, 4 Dec 2024 23:16:29 +0200 Subject: [PATCH 3/4] typo-Update L1Resolver.sol --- src/L1/L1Resolver.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/L1/L1Resolver.sol b/src/L1/L1Resolver.sol index 16d22e5..8985e6f 100644 --- a/src/L1/L1Resolver.sol +++ b/src/L1/L1Resolver.sol @@ -187,7 +187,7 @@ contract L1Resolver is IExtendedResolver, ERC165, Ownable { /// @param response The response bytes that the client received from the gateway. /// @param extraData The additional bytes of information from the `OffchainLookup` `extraData` arg. /// - /// @return The bytes of the reponse from the CCIP read. + /// @return The bytes of the response from the CCIP read. function resolveWithProof(bytes calldata response, bytes calldata extraData) external view returns (bytes memory) { (address signer, bytes memory result) = SignatureVerifier.verify(extraData, response); if (!signers[signer]) revert InvalidSigner(); From 4c442956f7f5fd9515230485784e405c259d43bc Mon Sep 17 00:00:00 2001 From: Romashka Date: Wed, 4 Dec 2024 23:17:27 +0200 Subject: [PATCH 4/4] typos-Update BaseRegistrar.sol --- src/L2/BaseRegistrar.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/L2/BaseRegistrar.sol b/src/L2/BaseRegistrar.sol index 9a08a40..83ea967 100644 --- a/src/L2/BaseRegistrar.sol +++ b/src/L2/BaseRegistrar.sol @@ -296,7 +296,7 @@ contract BaseRegistrar is ERC721, Ownable { return nameExpires[id] + GRACE_PERIOD < block.timestamp; } - /// @notice Allows holders of names to renew their ownerhsip and extend their expiry. + /// @notice Allows holders of names to renew their ownership and extend their expiry. /// /// @dev Renewal can be called while owning a subdomain or while the name is in the /// grace period. Can only be called by a controller. @@ -319,7 +319,7 @@ contract BaseRegistrar is ERC721, Ownable { /// @notice Reclaim ownership of a name in ENS, if you own it in the registrar. /// /// @dev Token transfers are ambiguous for determining name ownership transfers. This method exists so that - /// if a name token is transfered to a new owner, they have the right to claim ownership over their + /// if a name token is transferred to a new owner, they have the right to claim ownership over their /// name in the Registry. /// /// @param id The id of the name to reclaim.