-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Vlad Bochok <[email protected]>
- Loading branch information
1 parent
b077dd4
commit 9c138fd
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ import {ReentrancyGuard} from "../common/ReentrancyGuard.sol"; | |
/// @custom:security-contact [email protected] | ||
/// @dev ChainRegistrar serves as the main point for chain registration. | ||
contract ChainRegistrar is Ownable2StepUpgradeable, ReentrancyGuard { | ||
/// Address that will be used for deploying l2 contracts | ||
/// @notice Address that will be used for deploying l2 contracts | ||
address public l2Deployer; | ||
/// ZKsync Bridgehub | ||
IBridgehub public bridgehub; | ||
|
@@ -80,7 +80,7 @@ contract ChainRegistrar is Ownable2StepUpgradeable, ReentrancyGuard { | |
} | ||
|
||
// @dev Propose a new chain to be registered in zksync ecosystem. | ||
// ZkSync administration will use this data for registering the chain on bridgehub. | ||
// ZKsync administration will use this data for registering the chain on bridgehub. | ||
// The call will fail if the chain already registered. | ||
// Note: For non eth based chains it requires to either approve equivalent of 1 eth of base token or transfer | ||
// this token to l2 deployer directly | ||
|