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 in documentation files #121

Open
wants to merge 2 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 script/deploy/DeployL1Resolver.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ import "src/L1/L1Resolver.sol";
contract DeployL1Resolver is Script {
function run() external {
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
address deployerAddresss = vm.addr(deployerPrivateKey);
address deployerAddress = vm.addr(deployerPrivateKey);
vm.startBroadcast(deployerPrivateKey);

/// L1 Resolver constructor data
string memory url =
"https://api-entry-gateway-development.cbhq.net/api/v1/subdomain/resolver/resolveDomain/{sender}/{data}"; //
address[] memory signers = new address[](1);
signers[0] = 0xa412c16ECd2198A6aBce8235651E105684Fb77ed; // DEV signer
address owner = deployerAddresss;
address owner = deployerAddress;
address rootResolver = 0x8FADE66B79cC9f707aB26799354482EB93a5B7dD; //basetest.eth root resolver on sepolia

L1Resolver l1 = new L1Resolver(url, signers, owner, rootResolver);
Expand Down
2 changes: 1 addition & 1 deletion src/L2/EARegistrarController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract EARegistrarController is Ownable {
uint256 duration;
/// @dev The address of the resolver to set for this name.
address resolver;
/// @dev Multicallable data bytes for setting records in the associated resolver upon reigstration.
/// @dev Multicallable data bytes for setting records in the associated resolver upon registration.
bytes[] data;
/// @dev Bool to decide whether to set this name as the "primary" name for the `owner`.
bool reverseRecord;
Expand Down