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-typos #105

Open
wants to merge 4 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
2 changes: 1 addition & 1 deletion script/premint/output.csv
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ wechat,7621356428801393426952390000131098112946321244671932167782373805868879993
telegram,80655504582570763139810498942370294850908834078935309903533049087297820804536
slack,53414230639340637484343914259225977433615388018193261375420526445352518512303
louisvuitton,44030042453791041515191968450395731750384911073592268585510350597161105528494
chanel,76758465915907329075099705040377788627557831753383652312338239927447521200848
channel,76758465915907329075099705040377788627557831753383652312338239927447521200848
hermes,89566425882748699877128164990444504151305942551129198197159746136842287282935
gucci,56779106593644406857526900915654018921376956214179079351192374736074498890442
rolex,94392882792475968338048553146242001914521930847985213268883553538310129767736
Expand Down
4 changes: 2 additions & 2 deletions src/L1/L1Resolver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -180,14 +180,14 @@ 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.
///
/// @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();
Expand Down
4 changes: 2 additions & 2 deletions src/L2/BaseRegistrar.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down