dsa-connectors/test/polygon/uniswapV3Router/uniswapV3Router.test.ts

157 lines
5.4 KiB
TypeScript
Raw Normal View History

2022-01-13 20:34:23 +00:00
import hre from "hardhat";
import { expect } from "chai";
const { ethers } = hre; //check
import { BigNumber } from "bignumber.js";
import { deployAndEnableConnector } from "../../../scripts/tests/deployAndEnableConnector";
import { buildDSAv2 } from "../../../scripts/tests/buildDSAv2";
import { encodeSpells } from "../../../scripts/tests/encodeSpells";
import { getMasterSigner } from "../../../scripts/tests/getMasterSigner";
2022-01-16 17:33:25 +00:00
import { addresses } from "../../../scripts/tests/polygon/addresses";
2022-01-13 20:34:23 +00:00
import { addLiquidity } from "../../../scripts/tests/addLiquidity";
import { abis } from "../../../scripts/constant/abis";
2022-01-16 17:33:25 +00:00
import { ConnectV2UniswapV3AutoRouterPolygon__factory } from "../../../typechain";
2022-01-13 20:34:23 +00:00
import er20abi from "../../../scripts/constant/abi/basics/erc20.json";
import type { Signer, Contract } from "ethers";
import { CurrencyAmount, Token, TradeType, Currency, Percent } from "@uniswap/sdk-core";
import { AlphaRouter } from "@uniswap/smart-order-router";
describe("Auto Router", function () {
const connectorName = "Auto-Router-test";
let dsaWallet0: Contract;
let wallet0: Signer, wallet1: Signer;
let masterSigner: Signer;
let instaConnectorsV2: Contract;
let connector: Contract;
2022-01-14 14:08:35 +00:00
// @ts-ignore
const provider = new ethers.providers.JsonRpcProvider(hre.config.networks.hardhat.forking.url);
2022-01-16 19:55:55 +00:00
const router = new AlphaRouter({ chainId: 137, provider });
2022-01-14 14:08:35 +00:00
2022-01-13 20:34:23 +00:00
before(async () => {
await hre.network.provider.request({
method: "hardhat_reset",
params: [
{
forking: {
// @ts-ignore
jsonRpcUrl: hre.config.networks.hardhat.forking.url
}
}
]
});
[wallet0, wallet1] = await ethers.getSigners();
masterSigner = await getMasterSigner();
instaConnectorsV2 = await ethers.getContractAt(abis.core.connectorsV2, addresses.core.connectorsV2);
connector = await deployAndEnableConnector({
connectorName,
2022-01-16 17:33:25 +00:00
contractArtifact: ConnectV2UniswapV3AutoRouterPolygon__factory,
2022-01-13 20:34:23 +00:00
signer: masterSigner,
connectors: instaConnectorsV2
});
console.log("Connector address", connector.address);
});
it("Should have contracts deployed.", async function () {
expect(!!instaConnectorsV2.address).to.be.true;
expect(!!connector.address).to.be.true;
expect(!!(await masterSigner.getAddress())).to.be.true;
});
describe("DSA wallet setup", function () {
it("Should build DSA v2", async function () {
dsaWallet0 = await buildDSAv2(await wallet0.getAddress());
expect(!!dsaWallet0.address).to.be.true;
});
2022-01-16 19:55:55 +00:00
it("Deposit Matic into DSA wallet", async function () {
2022-01-13 20:34:23 +00:00
await wallet0.sendTransaction({
to: dsaWallet0.address,
value: ethers.utils.parseEther("10")
});
2022-01-16 16:24:44 +00:00
expect(await ethers.provider.getBalance(dsaWallet0.address)).to.be.gte(ethers.utils.parseEther("10"));
2022-01-13 20:34:23 +00:00
});
});
describe("Main", function () {
2022-01-15 14:37:32 +00:00
2022-01-16 19:55:55 +00:00
it("should swap the tokens ", async function () {
2022-01-16 17:33:25 +00:00
const buyTokenAddress = "0x8f3cf7ad23cd3cadbd9735aff958023239c6a063"; //dai
2022-01-16 19:55:55 +00:00
const sellTokenAddress = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE"; //matic
2022-01-16 16:24:44 +00:00
const sellTokenDecimals = 18;
const buyTokenDecimals = 18;
const amount = 1;
2022-01-16 19:55:55 +00:00
const wmaticAddr = "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270";
2022-01-16 16:24:44 +00:00
const srcAmount = new BigNumber(amount).times(new BigNumber(10).pow(sellTokenDecimals)).toFixed(0);
2022-01-16 19:55:55 +00:00
const sellToken = new Token(137, wmaticAddr, sellTokenDecimals);
const buyToken = new Token(137, buyTokenAddress, buyTokenDecimals);
2022-01-16 16:24:44 +00:00
const sellAmount = CurrencyAmount.fromRawAmount(sellToken, srcAmount);
const deadline = 1696000000 // Fri Sep 29 2023 15:06:40 GMT+0000
const route = await router.route(sellAmount, buyToken, TradeType.EXACT_INPUT, {
recipient: dsaWallet0.address,
slippageTolerance: new Percent(5, 100),
deadline
});
const calldata = route?.methodParameters?.calldata;
2022-01-16 19:55:55 +00:00
const _buyAmount = route?.quote.toFixed();
const buyTokenAmount = new BigNumber(String(_buyAmount)).times(new BigNumber(10).pow(buyTokenDecimals)).toFixed(0);
2022-01-16 16:24:44 +00:00
function caculateUnitAmt(
buyAmount: any,
sellAmount: any,
buyDecimal: any,
sellDecimal: any,
maxSlippage: any
) {
let unitAmt: any;
unitAmt = new BigNumber(buyAmount)
.dividedBy(10 ** buyDecimal)
.dividedBy(new BigNumber(sellAmount).dividedBy(10 ** sellDecimal));
unitAmt = unitAmt.multipliedBy((100 - maxSlippage) / 100);
unitAmt = unitAmt.multipliedBy(1e18).toFixed(0);
return unitAmt;
}
const unitAmt = caculateUnitAmt(
buyTokenAmount,
srcAmount,
buyTokenDecimals,
sellTokenDecimals,
1
);
2022-01-16 19:55:55 +00:00
2022-01-13 20:34:23 +00:00
const spells = [
{
connector: connectorName,
method: "sell",
args: [buyTokenAddress, sellTokenAddress, srcAmount, unitAmt, calldata, 0]
}
];
2022-01-14 14:08:35 +00:00
const buyTokenContract = await ethers.getContractAt(
er20abi,
buyTokenAddress,
);
const initialBuyTokenBalance = await buyTokenContract.balanceOf(dsaWallet0.address)
2022-01-13 20:34:23 +00:00
const tx = await dsaWallet0.connect(wallet0).cast(...encodeSpells(spells), await wallet1.getAddress());
const receipt = await tx.wait();
2022-01-14 14:08:35 +00:00
const finalBuyTokenBalance = await buyTokenContract.balanceOf(dsaWallet0.address)
expect(finalBuyTokenBalance).to.be.gt(initialBuyTokenBalance);
2022-01-13 20:34:23 +00:00
});
2022-01-16 19:55:55 +00:00
2022-01-13 20:34:23 +00:00
});
});