|
|
@@ -1,13 +1,14 @@
|
|
|
import { web3 } from "hardhat";
|
|
|
-import History from "./interface/history";
|
|
|
-import contracts from "../config/contracts";
|
|
|
+import swapPath from "./interface/swapPath";
|
|
|
import logger from "../utils/logger";
|
|
|
-import v2_routers from "../config/v2_routers";
|
|
|
-import {BigNumber} from "ethers";
|
|
|
-import {replaceAll} from "hardhat/internal/util/strings";
|
|
|
|
|
|
async function main() {
|
|
|
+ logger.debug('start loading...')
|
|
|
+ const v2PoolList = require('../config/v2PoolList.json')
|
|
|
+ const v3PoolList = require('../config/v3PoolList.json')
|
|
|
|
|
|
+ logger.debug(v2PoolList.length)
|
|
|
+ logger.debug(v3PoolList.length)
|
|
|
}
|
|
|
|
|
|
main().catch((error) => {
|