example-portal-fast-withdrawal/evm/forge-test/FastTransfer.t.sol

19 lines
438 B
Solidity

// SPDX-License-Identifier: Apache 2
pragma solidity ^0.8.0;
import "../contracts/FastTransfer.sol";
import "forge-std/Test.sol";
contract TestFastTransfer is FastTransfer, Test {
function testWrapAndTransferETH() public {
// Goerli Testnet
wormhole = IWormhole(0x706abc4E45D419950511e474C7B9Ed348A4a716c);
portal = ITokenBridge(0xF890982f9310df57d00f659cf4fd87e65adEd8d7);
// TODO: test
}
}