Skip to content

Commit adaea63

Browse files
committed
refactor: move down
1 parent 1de282d commit adaea63

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

src/apps/bridge/BridgeL2.sol renamed to src/apps/Bridge.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pragma solidity ^0.8.13;
44
import {RollupOrders} from "zenith/src/orders/RollupOrders.sol";
55
import {SimpleERC20} from "simple-erc20/SimpleERC20.sol";
66

7-
import {SignetL2} from "../../l2/Signet.sol";
7+
import {SignetL2} from "../l2/Signet.sol";
88

99
abstract contract BridgeL2 is SignetL2, SimpleERC20 {
1010
address immutable HOST_ASSET;

src/apps/lido/LidoL2.sol renamed to src/apps/Lido.sol

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@ import {RollupOrders} from "zenith/src/orders/RollupOrders.sol";
55
import {SafeERC20} from "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";
66
import {IERC20} from "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
77

8-
import {SignetL2} from "../../l2/Signet.sol";
9-
import {BurnMintERC20} from "../../vendor/BurnMintERC20.sol";
10-
8+
import {SignetL2} from "../l2/Signet.sol";
9+
import {BurnMintERC20} from "../vendor/BurnMintERC20.sol";
10+
11+
/// @notice An example contract, implementing LIDO staking from Signet L2, with
12+
/// support for CCIP teleporting.
13+
/// Allows bridging two ways:
14+
/// - Signet native bridging with Orders.
15+
/// - CCIP Teleporting via support for the CCT standard.
1116
contract LidoL2 is SignetL2, BurnMintERC20 {
1217
using SafeERC20 for IERC20;
1318

0 commit comments

Comments
 (0)