add gamebitAdapter

This commit is contained in:
owen05
2021-09-01 13:55:46 +08:00
parent 7a5d076e33
commit 454604da28
3 changed files with 35 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
pragma solidity 0.6.9;
pragma experimental ABIEncoderV2;
interface IGambit {
function swap(address _tokenIn, address _tokenOut, address _receiver) external returns (uint256);
}