File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import {IERC20} from "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
6
6
7
7
/// @notice A contract deployed to Host chain that allows tokens to enter the rollup,
8
8
/// and enables Builders to fulfill requests to exchange tokens on the Rollup for tokens on the Host.
9
- contract HostPassage {
9
+ contract Passage {
10
10
/// @notice The chainId of the default rollup chain.
11
11
uint256 immutable defaultRollupChainId;
12
12
Original file line number Diff line number Diff line change 2
2
pragma solidity ^ 0.8.24 ;
3
3
4
4
// import openzeppelin Role contracts
5
- import {HostPassage } from "./Passage.sol " ;
5
+ import {Passage } from "./Passage.sol " ;
6
6
import {AccessControlDefaultAdminRules} from
7
7
"openzeppelin-contracts/contracts/access/extensions/AccessControlDefaultAdminRules.sol " ;
8
8
9
- contract Zenith is HostPassage , AccessControlDefaultAdminRules {
9
+ contract Zenith is Passage , AccessControlDefaultAdminRules {
10
10
/// @notice Block header information for the rollup block, signed by the sequencer.
11
11
/// @param rollupChainId - the chainId of the rollup chain. Any chainId is accepted by the contract.
12
12
/// @param sequence - the sequence number of the rollup block. Must be monotonically increasing. Enforced by the contract.
@@ -63,7 +63,7 @@ contract Zenith is HostPassage, AccessControlDefaultAdminRules {
63
63
/// - Admin role can be transferred via two-step process with a 1 day timelock.
64
64
/// @param admin - the address that will be the initial admin.
65
65
constructor (uint256 defaultRollupChainId , address admin )
66
- HostPassage (defaultRollupChainId)
66
+ Passage (defaultRollupChainId)
67
67
AccessControlDefaultAdminRules (1 days, admin)
68
68
{}
69
69
You can’t perform that action at this time.
0 commit comments