File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ pragma solidity ^0.8.13;
44import {RollupOrders} from "zenith/src/orders/RollupOrders.sol " ;
55import {SimpleERC20} from "simple-erc20/SimpleERC20.sol " ;
66
7- import {SignetL2} from "../../ l2/Signet.sol " ;
7+ import {SignetL2} from "../l2/Signet.sol " ;
88
99abstract contract BridgeL2 is SignetL2 , SimpleERC20 {
1010 address immutable HOST_ASSET;
Original file line number Diff line number Diff line change @@ -5,9 +5,14 @@ import {RollupOrders} from "zenith/src/orders/RollupOrders.sol";
55import {SafeERC20} from "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol " ;
66import {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.
1116contract LidoL2 is SignetL2 , BurnMintERC20 {
1217 using SafeERC20 for IERC20 ;
1318
You can’t perform that action at this time.
0 commit comments