Skip to content

Commit 28ac504

Browse files
authored
Merge pull request #103 from sky-coderay/main
fix: typos README.md
2 parents 8f163b9 + d44bfc4 commit 28ac504

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The core functionality of Base Usernames should look familiar to anyone that's l
7575
| Stable Price Oracle | The source of pricing based on name length and duration of registration | [StablePriceOracle.sol](https://github.com/ensdomains/ens-contracts/blob/staging/contracts/ethregistrar/StablePriceOracle.sol) | [StablePriceOracle.sol](https://github.com/base-org/usernames/blob/master/contracts/src/L2/StablePriceOracle.sol) |
7676
| Exponential Premium Oracle | A Dutch auction pricing mechanism for fairly pricing names after expiry | [ExponentialPremiumPricingOracle.sol](https://github.com/ensdomains/ens-contracts/blob/staging/contracts/ethregistrar/ExponentialPremiumPriceOracle.sol) | [ExponentialPremiumPricingOracle.sol](https://github.com/base-org/usernames/blob/master/contracts/src/L2/ExponentialPremiumPriceOracle.sol) |
7777

78-
In addition to replicating the base behavior of the ENS protocol, we are offering a series of promotional discounts associcated with various Coinbase product integrations. As such, the Base Usernames Registrar Controller allows users to perform discounted registrations while passing along integration-specific `validationData`. Each discount leverages a common interface:
78+
In addition to replicating the base behavior of the ENS protocol, we are offering a series of promotional discounts associated with various Coinbase product integrations. As such, the Base Usernames Registrar Controller allows users to perform discounted registrations while passing along integration-specific `validationData`. Each discount leverages a common interface:
7979
```solidity
8080
// SPDX-License-Identifier: MIT
8181
pragma solidity ^0.8.23;
@@ -89,7 +89,7 @@ interface IDiscountValidator {
8989
/// @notice Required implementation for compatibility with IDiscountValidator.
9090
///
9191
/// @dev Each implementation will have unique requirements for the data necessary to perform
92-
/// a meaningul validation. Implementations must describe here how to pack relevant `validationData`.
92+
/// a meaningful validation. Implementations must describe here how to pack relevant `validationData`.
9393
/// Ex: `bytes validationData = abi.encode(bytes32 key, bytes32[] proof)`
9494
///
9595
/// @param claimer the discount claimer's address.

0 commit comments

Comments
 (0)