add route test framework

This commit is contained in:
owen05
2020-11-09 14:26:38 +08:00
parent 0cf2e9e516
commit 521b0e4b16
77 changed files with 854505 additions and 10905 deletions

View File

@@ -0,0 +1,15 @@
/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
pragma experimental ABIEncoderV2;
import {IERC20} from "./IERC20.sol";
interface ISmartApprove {
function claimTokens(IERC20 token,address who,address dest,uint256 amount) external;
}