/** * Source Code first verified at https://etherscan.io on Saturday, March 23, 2019 (UTC) */ pragma solidity ^0.4.24; contract Stubs { function crosschainSwapToMainnet(address to, uint256 value) public returns (bool) { to; value; return true; } function crosschainSwap(address to, uint256 value) public returns (bool) { to; value; return true; } }