2021-12-11 14:18:50 +00:00
|
|
|
import hre from "hardhat";
|
|
|
|
import axios from "axios";
|
2021-12-12 13:21:58 +00:00
|
|
|
import { expect } from "chai";
|
|
|
|
const { ethers } = hre; //check
|
2021-12-11 14:18:50 +00:00
|
|
|
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";
|
|
|
|
import { addresses } from "../../../scripts/tests/mainnet/addresses";
|
|
|
|
import { abis } from "../../../scripts/constant/abis";
|
2021-12-12 13:21:58 +00:00
|
|
|
import { ConnectV2ZeroEx, ConnectV2ZeroEx__factory } from "../../../typechain";
|
2021-12-11 18:50:22 +00:00
|
|
|
import er20abi from "../../../scripts/constant/abi/basics/erc20.json";
|
2021-12-12 13:21:58 +00:00
|
|
|
import type { Signer, Contract } from "ethers";
|
2021-12-11 14:18:50 +00:00
|
|
|
|
|
|
|
describe("ZeroEx", function() {
|
|
|
|
const connectorName = "zeroEx-test";
|
|
|
|
|
2021-12-12 13:21:58 +00:00
|
|
|
let dsaWallet0: Contract;
|
|
|
|
let wallet0: Signer, wallet1: Signer;
|
|
|
|
let masterSigner: Signer;
|
2021-12-12 13:31:49 +00:00
|
|
|
let instaConnectorsV2: Contract;
|
|
|
|
let connector: Contract;
|
2021-12-11 14:18:50 +00:00
|
|
|
|
|
|
|
before(async () => {
|
2021-12-12 13:21:58 +00:00
|
|
|
await hre.network.provider.request({
|
|
|
|
method: "hardhat_reset",
|
|
|
|
params: [
|
|
|
|
{
|
|
|
|
forking: {
|
|
|
|
// @ts-ignore
|
|
|
|
jsonRpcUrl: hre.config.networks.hardhat.forking.url,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
[wallet0, wallet1] = await ethers.getSigners();
|
|
|
|
|
2021-12-11 14:18:50 +00:00
|
|
|
masterSigner = await getMasterSigner();
|
|
|
|
instaConnectorsV2 = await ethers.getContractAt(
|
|
|
|
abis.core.connectorsV2,
|
|
|
|
addresses.core.connectorsV2
|
|
|
|
);
|
|
|
|
connector = await deployAndEnableConnector({
|
|
|
|
connectorName,
|
|
|
|
contractArtifact: ConnectV2ZeroEx__factory,
|
|
|
|
signer: masterSigner,
|
|
|
|
connectors: instaConnectorsV2,
|
|
|
|
});
|
2021-12-12 13:21:58 +00:00
|
|
|
console.log("Connector address", connector.address);
|
2021-12-11 14:18:50 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("Should have contracts deployed.", async function() {
|
|
|
|
expect(!!instaConnectorsV2.address).to.be.true;
|
|
|
|
expect(!!connector.address).to.be.true;
|
2021-12-12 13:21:58 +00:00
|
|
|
expect(!!(await masterSigner.getAddress())).to.be.true;
|
2021-12-11 14:18:50 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("DSA wallet setup", function() {
|
|
|
|
it("Should build DSA v2", async function() {
|
2021-12-12 13:21:58 +00:00
|
|
|
dsaWallet0 = await buildDSAv2(wallet0.getAddress());
|
2021-12-11 14:18:50 +00:00
|
|
|
expect(!!dsaWallet0.address).to.be.true;
|
|
|
|
});
|
|
|
|
|
|
|
|
it("Deposit ETH into DSA wallet", async function() {
|
|
|
|
await wallet0.sendTransaction({
|
|
|
|
to: dsaWallet0.address,
|
|
|
|
value: ethers.utils.parseEther("10"),
|
|
|
|
});
|
2021-12-11 18:50:22 +00:00
|
|
|
// console.log(dsaWallet0.address);
|
2021-12-11 14:18:50 +00:00
|
|
|
expect(await ethers.provider.getBalance(dsaWallet0.address)).to.be.gte(
|
|
|
|
ethers.utils.parseEther("10")
|
|
|
|
);
|
2021-12-12 10:15:25 +00:00
|
|
|
const idai = await ethers.getContractAt(
|
|
|
|
er20abi,
|
|
|
|
"0x6b175474e89094c44da98b954eedeac495271d0f" // dai address
|
|
|
|
);
|
2021-12-11 14:18:50 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("Main", function() {
|
2021-12-11 18:50:22 +00:00
|
|
|
it("should swap the tokens", async function() {
|
|
|
|
let buyTokenAmount: any;
|
2021-12-11 14:18:50 +00:00
|
|
|
async function getArg() {
|
2021-12-11 18:50:22 +00:00
|
|
|
// const slippage = 0.5;
|
2021-12-11 14:18:50 +00:00
|
|
|
/* Eth -> dai */
|
|
|
|
const sellTokenAddress = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE"; // eth, decimals 18
|
|
|
|
const sellTokenDecimals = 18;
|
|
|
|
const buyTokenAddress = "0x6b175474e89094c44da98b954eedeac495271d0f"; // dai, decimals 18
|
|
|
|
const buyTokenDecimals = 18;
|
|
|
|
const amount = 1;
|
|
|
|
|
|
|
|
const srcAmount = new BigNumber(amount)
|
|
|
|
.times(new BigNumber(10).pow(sellTokenDecimals))
|
|
|
|
.toFixed(0);
|
|
|
|
|
|
|
|
const fromAddress = dsaWallet0.address;
|
|
|
|
|
|
|
|
let url = `https://api.0x.org/swap/v1/quote`;
|
|
|
|
|
|
|
|
const params = {
|
|
|
|
buyToken: "DAI",
|
|
|
|
sellToken: "ETH",
|
|
|
|
sellAmount: "1000000000000000000", // Always denominated in wei
|
|
|
|
};
|
|
|
|
|
2021-12-11 18:50:22 +00:00
|
|
|
const response = await axios
|
2021-12-11 14:18:50 +00:00
|
|
|
.get(url, { params: params })
|
2021-12-11 18:50:22 +00:00
|
|
|
.then((data: any) => data);
|
2021-12-11 14:18:50 +00:00
|
|
|
|
2021-12-11 18:50:22 +00:00
|
|
|
buyTokenAmount = response.data.buyAmount;
|
|
|
|
const calldata = response.data.data;
|
2021-12-11 14:18:50 +00:00
|
|
|
|
|
|
|
let caculateUnitAmt = () => {
|
|
|
|
const buyTokenAmountRes = new BigNumber(buyTokenAmount)
|
|
|
|
.dividedBy(new BigNumber(10).pow(buyTokenDecimals))
|
|
|
|
.toFixed(8);
|
|
|
|
|
|
|
|
let unitAmt: any = new BigNumber(buyTokenAmountRes).dividedBy(
|
|
|
|
new BigNumber(amount)
|
|
|
|
);
|
|
|
|
|
|
|
|
unitAmt = unitAmt.multipliedBy((100 - 0.3) / 100);
|
|
|
|
unitAmt = unitAmt.multipliedBy(1e18).toFixed(0);
|
|
|
|
return unitAmt;
|
|
|
|
};
|
|
|
|
let unitAmt = caculateUnitAmt();
|
|
|
|
|
|
|
|
return [
|
|
|
|
buyTokenAddress,
|
|
|
|
sellTokenAddress,
|
|
|
|
srcAmount,
|
|
|
|
unitAmt,
|
|
|
|
calldata,
|
|
|
|
0,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
let arg = await getArg();
|
|
|
|
const spells = [
|
|
|
|
{
|
|
|
|
connector: connectorName,
|
|
|
|
method: "swap",
|
|
|
|
args: arg,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
const tx = await dsaWallet0
|
|
|
|
.connect(wallet0)
|
2021-12-12 13:21:58 +00:00
|
|
|
.cast(...encodeSpells(spells), wallet1.getAddress());
|
2021-12-11 14:18:50 +00:00
|
|
|
const receipt = await tx.wait();
|
2021-12-11 18:50:22 +00:00
|
|
|
|
2021-12-12 13:31:49 +00:00
|
|
|
const daiToken = await ethers.getContractAt(
|
2021-12-11 18:50:22 +00:00
|
|
|
er20abi,
|
|
|
|
"0x6b175474e89094c44da98b954eedeac495271d0f" // dai address
|
|
|
|
);
|
|
|
|
|
2021-12-12 13:31:49 +00:00
|
|
|
expect(await daiToken.balanceOf(dsaWallet0.address)).to.be.gte(
|
2021-12-12 10:22:09 +00:00
|
|
|
buyTokenAmount
|
|
|
|
);
|
2021-12-11 14:18:50 +00:00
|
|
|
expect(await ethers.provider.getBalance(dsaWallet0.address)).to.be.lte(
|
|
|
|
ethers.utils.parseEther("9")
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|