mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
fixed typo
This commit is contained in:
parent
a4c236ebeb
commit
0d44bd896a
|
@ -30,17 +30,17 @@ describe("ZeroEx", function() {
|
||||||
const [wallet0, wallet1, wallet2, wallet3] = wallets;
|
const [wallet0, wallet1, wallet2, wallet3] = wallets;
|
||||||
|
|
||||||
before(async () => {
|
before(async () => {
|
||||||
// await hre.network.provider.request({
|
await hre.network.provider.request({
|
||||||
// method: "hardhat_reset",
|
method: "hardhat_reset",
|
||||||
// params: [
|
params: [
|
||||||
// {
|
{
|
||||||
// forking: {
|
forking: {
|
||||||
// jsonRpcUrl: hre.config.networks.hardhat.forking.url,
|
jsonRpcUrl: hre.config.networks.hardhat.forking.url,
|
||||||
// blockNumber: 13300000,
|
blockNumber: 13300000,
|
||||||
// },
|
},
|
||||||
// },
|
},
|
||||||
// ],
|
],
|
||||||
// });
|
});
|
||||||
masterSigner = await getMasterSigner(wallet3);
|
masterSigner = await getMasterSigner(wallet3);
|
||||||
instaConnectorsV2 = await ethers.getContractAt(
|
instaConnectorsV2 = await ethers.getContractAt(
|
||||||
abis.core.connectorsV2,
|
abis.core.connectorsV2,
|
||||||
|
@ -67,7 +67,7 @@ describe("ZeroEx", function() {
|
||||||
expect(!!dsaWallet0.address).to.be.true;
|
expect(!!dsaWallet0.address).to.be.true;
|
||||||
});
|
});
|
||||||
|
|
||||||
it("Deposit ETH and DAI into DSA wallet", async function() {
|
it("Deposit ETH into DSA wallet", async function() {
|
||||||
await wallet0.sendTransaction({
|
await wallet0.sendTransaction({
|
||||||
to: dsaWallet0.address,
|
to: dsaWallet0.address,
|
||||||
value: ethers.utils.parseEther("10"),
|
value: ethers.utils.parseEther("10"),
|
||||||
|
@ -76,13 +76,6 @@ describe("ZeroEx", function() {
|
||||||
expect(await ethers.provider.getBalance(dsaWallet0.address)).to.be.gte(
|
expect(await ethers.provider.getBalance(dsaWallet0.address)).to.be.gte(
|
||||||
ethers.utils.parseEther("10")
|
ethers.utils.parseEther("10")
|
||||||
);
|
);
|
||||||
|
|
||||||
// await addLiquidity(
|
|
||||||
// "dai",
|
|
||||||
// dsaWallet0.address,
|
|
||||||
// ethers.utils.parseUnits("100000", 18)
|
|
||||||
// );
|
|
||||||
// expect(await ether s.provider.getBalance(dsaWallet0.address)).to.be.gte(ethers.utils.parseUnits("100000", 18));
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -91,11 +84,11 @@ describe("ZeroEx", function() {
|
||||||
async function getArg() {
|
async function getArg() {
|
||||||
const slippage = 0.5;
|
const slippage = 0.5;
|
||||||
|
|
||||||
/* MATIC -> USDT */
|
/* Eth -> dai */
|
||||||
const sellTokenAddress = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE"; // Matic, decimals 18
|
const sellTokenAddress = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE"; // eth, decimals 18
|
||||||
const sellTokenDecimals = 18;
|
const sellTokenDecimals = 18;
|
||||||
const buyTokenAddress = "0xc2132D05D31c914a87C6611C10748AEb04B58e8F"; // USDT, decimals 6
|
const buyTokenAddress = "0x6b175474e89094c44da98b954eedeac495271d0f"; // dai, decimals 18
|
||||||
const buyTokenDecimals = 6;
|
const buyTokenDecimals = 18;
|
||||||
const amount = 1;
|
const amount = 1;
|
||||||
|
|
||||||
const srcAmount = new BigNumber(amount)
|
const srcAmount = new BigNumber(amount)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user