Skip to content

Commit 5079679

Browse files
authored
Add Wormhole Endpoint (#4)
1 parent 7967705 commit 5079679

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// SPDX-License-Identifier: MIT
2+
pragma solidity ^0.8.19;
3+
4+
import "openzeppelin-contracts/contracts/access/Ownable.sol";
5+
6+
import {EndpointStandalone} from "@wormhole-foundation/native_token_transfer/EndpointStandalone.sol";
7+
import {WormholeEndpoint} from "@wormhole-foundation/native_token_transfer/WormholeEndpoint.sol";
8+
9+
contract WormholeWstETHEndpoint is WormholeEndpoint, EndpointStandalone {
10+
constructor(address manager, address wormholeCoreBridge, address wormholeRelayerAddr, address owner)
11+
EndpointStandalone(manager)
12+
WormholeEndpoint(wormholeCoreBridge, wormholeRelayerAddr)
13+
{}
14+
}

0 commit comments

Comments
 (0)