mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
updated compound test
This commit is contained in:
parent
5ff4637b91
commit
fc8aa786bd
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,186 +0,0 @@
|
|||
const { expect, should } = require("chai");
|
||||
const { ethers } = require('hardhat');
|
||||
const { provider, deployContract} = waffle
|
||||
const { Signer, Contract } = require("ethers");
|
||||
|
||||
const { buildDSAv2 } = require("../../../scripts/tests/buildDSAv2");
|
||||
const { cEthAddress, cDaiAddress, daiAddress, comptrollerAddress } = require("./constants.js");
|
||||
const cEthAbi = require("./ABIs/cEthAbi");
|
||||
const cDaiAbi = require("./ABIs/cDaiAbi");
|
||||
const comptrollerAbi = require("./ABIs/comptrollerAbi");
|
||||
const { addresses } = require("../../../scripts/tests/mainnet/addresses");
|
||||
const { deployAndEnableConnector } = require("../../../scripts/tests/deployAndEnableConnector");
|
||||
const { abis } = require("../../../scripts/constant/abis");
|
||||
const { getMasterSigner } = require("../../../scripts/tests/getMasterSigner");
|
||||
const { parseEther, parseUnits } = require("ethers/lib/utils");
|
||||
const { encodeSpells } = require("../../../scripts/tests/encodeSpells");
|
||||
const encodeFlashcastData = require("../../../scripts/tests/encodeFlashcastData").default;
|
||||
const { ConnectV2CompoundImport__factory } = require("../../../typechain");
|
||||
const { ConnectV2InstaPoolV4__factory } = require("../../../typechain");
|
||||
const { ConnectV2Compound__factory } = require("../../../typechain");
|
||||
|
||||
|
||||
describe('Import Compound', function () {
|
||||
// const connectorName = "COMPOUND-IMPORT-ABC";
|
||||
const connectorName = "COMPOUND-IMPORT-C";
|
||||
const instapoolConnector = "INSTAPOOL-C";
|
||||
const compoundConnector = "COMPOUND-C";
|
||||
let dsaWallet; // signers
|
||||
let cEth, cDai, comptroller, Dai; // contracts
|
||||
let masterSigner = Signer;
|
||||
let connector, connector2, connector3;
|
||||
let owner;
|
||||
let wallets;
|
||||
|
||||
before(async () => {
|
||||
// create (reset) mainnet fork
|
||||
await hre.network.provider.request({
|
||||
method: "hardhat_reset",
|
||||
params: [
|
||||
{
|
||||
forking: {
|
||||
jsonRpcUrl: hre.config.networks.hardhat.forking.url,
|
||||
blockNumber: 13300000,
|
||||
},
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
// deploy and enable connector contract
|
||||
masterSigner = await getMasterSigner()
|
||||
instaConnectorsV2 = await ethers.getContractAt(abis.core.connectorsV2, addresses.core.connectorsV2);
|
||||
|
||||
// compound import connector
|
||||
connector = await deployAndEnableConnector({
|
||||
connectorName,
|
||||
contractArtifact: ConnectV2CompoundImport__factory,
|
||||
signer: masterSigner,
|
||||
connectors: instaConnectorsV2
|
||||
})
|
||||
console.log("Connector address", connector.address);
|
||||
|
||||
// flash loan connector
|
||||
connector2 = await deployAndEnableConnector({
|
||||
connectorName: instapoolConnector,
|
||||
contractArtifact: ConnectV2InstaPoolV4__factory,
|
||||
signer: masterSigner,
|
||||
connectors: instaConnectorsV2
|
||||
})
|
||||
console.log("Connector2 address", connector2.address);
|
||||
|
||||
// compound connector
|
||||
connector3 = await deployAndEnableConnector({
|
||||
connectorName: compoundConnector,
|
||||
contractArtifact: ConnectV2Compound__factory,
|
||||
signer: masterSigner,
|
||||
connectors: instaConnectorsV2
|
||||
})
|
||||
console.log("Connector3 address", connector3.address);
|
||||
|
||||
// get an account
|
||||
await hre.network.provider.request({
|
||||
method: "hardhat_impersonateAccount",
|
||||
params: ["0x10a25c6886AE02fde87C5561CDD331d941d0771a"],
|
||||
});
|
||||
owner = await ethers.getSigner("0x10a25c6886AE02fde87C5561CDD331d941d0771a");
|
||||
|
||||
await hre.network.provider.send("hardhat_setBalance", [
|
||||
"0x10a25c6886AE02fde87C5561CDD331d941d0771a",
|
||||
parseEther('100000').toHexString()
|
||||
]);
|
||||
|
||||
cEth = new ethers.Contract(cEthAddress, cEthAbi, ethers.provider);
|
||||
cDai = new ethers.Contract(cDaiAddress, cDaiAbi, ethers.provider);
|
||||
const tokenArtifact = await artifacts.readArtifact("@openzeppelin/contracts/token/ERC20/IERC20.sol:IERC20");
|
||||
Dai = new ethers.Contract(daiAddress, tokenArtifact.abi, ethers.provider);
|
||||
comptroller = new ethers.Contract(comptrollerAddress, comptrollerAbi, ethers.provider);
|
||||
|
||||
// deposit ether to Compound
|
||||
await cEth.connect(owner).mint({
|
||||
value: parseEther('10')
|
||||
});
|
||||
|
||||
// enter markets with deposits
|
||||
const cTokens = [cEth.address];
|
||||
await comptroller.connect(owner).enterMarkets(cTokens);
|
||||
|
||||
// borrow dai from Compound
|
||||
await cDai.connect(owner).borrow(parseUnits('1000'));
|
||||
});
|
||||
|
||||
describe('Deployment', async () => {
|
||||
it('Should set correct name', async () => {
|
||||
await expect(await connector.name()).to.eq('Compound-Import-v2');
|
||||
});
|
||||
});
|
||||
|
||||
describe("DSA wallet setup", async () => {
|
||||
it("Should build DSA v2", async () => {
|
||||
dsaWallet = await buildDSAv2(owner.address);
|
||||
console.log(dsaWallet.address);
|
||||
expect(!!dsaWallet.address).to.be.true;
|
||||
});
|
||||
|
||||
it("Deposit ETH into DSA wallet", async function () {
|
||||
await owner.sendTransaction({
|
||||
to: dsaWallet.address,
|
||||
value: ethers.utils.parseEther("10")
|
||||
});
|
||||
expect(await ethers.provider.getBalance(dsaWallet.address)).to.be.gte(ethers.utils.parseEther("10"));
|
||||
});
|
||||
});
|
||||
|
||||
describe('Compound position migration', async () => {
|
||||
it('Should migrate Compound position', async () => {
|
||||
const amount = ethers.utils.parseEther("100") // 100 DAI
|
||||
const setId = "83478237";
|
||||
|
||||
const flashSpells = [
|
||||
{
|
||||
connector: compoundConnector,
|
||||
method: "borrow",
|
||||
args: ["DAI-A", amount, 0, setId]
|
||||
},
|
||||
{
|
||||
connector: compoundConnector,
|
||||
method: "payback",
|
||||
args: ["DAI-A", 0, setId, 0]
|
||||
},
|
||||
{
|
||||
connector: instapoolConnector,
|
||||
method: 'flashPayback',
|
||||
args: [Dai.address, parseUnits('1000.9'), 0, 0],
|
||||
}
|
||||
]
|
||||
|
||||
const spells = [
|
||||
{
|
||||
connector: instapoolConnector,
|
||||
method: "flashBorrowAndCast",
|
||||
args: [Dai.address, parseUnits('1000'), 0, encodeFlashcastData(flashSpells), "0x"]
|
||||
}
|
||||
]
|
||||
console.log(owner.address);
|
||||
const tx = await dsaWallet.connect(owner).cast(...encodeSpells(spells), owner.address)
|
||||
const receipt = await tx.wait();
|
||||
})
|
||||
// take flash loan of dai through spell
|
||||
// call contract function
|
||||
// repay flash loan of dai
|
||||
// check if import was successful
|
||||
})
|
||||
});
|
||||
|
||||
|
||||
// deploy the connector on mainnet fork
|
||||
// build a new dsa in tests
|
||||
|
||||
// create a Compound position
|
||||
// deposit some ether in Compound
|
||||
// borrow some DAI
|
||||
|
||||
// migrate the Compound position
|
||||
// cast the migrate spell
|
||||
|
||||
// check if migration was successful
|
||||
// check the balance of DSA contract address in ERC20 tokens
|
239
test/mainnet/compound-import/compound-import.test.ts
Normal file
239
test/mainnet/compound-import/compound-import.test.ts
Normal file
|
@ -0,0 +1,239 @@
|
|||
import { expect, should } from "chai";
|
||||
import hre, { ethers, waffle } from "hardhat";
|
||||
import type { Signer, Contract } from "ethers";
|
||||
import { BigNumber } from "bignumber.js";
|
||||
import { buildDSAv2 } from "../../../scripts/tests/buildDSAv2";
|
||||
import { addresses } from "../../../scripts/tests/mainnet/addresses";
|
||||
import { deployAndEnableConnector, enableConnector } from "../../../scripts/tests/deployAndEnableConnector";
|
||||
import { abis } from "../../../scripts/constant/abis";
|
||||
import { getMasterSigner } from "../../../scripts/tests/getMasterSigner";
|
||||
import { parseEther, parseUnits } from "ethers/lib/utils";
|
||||
import { encodeSpells } from "../../../scripts/tests/encodeSpells";
|
||||
|
||||
import { ConnectV2CompoundImport__factory, ConnectV2InstaPoolV4__factory } from "../../../typechain";
|
||||
const { provider } = waffle;
|
||||
|
||||
const encodeFlashcastData = require("../../../scripts/tests/encodeFlashcastData").default;
|
||||
const cEthAddress = "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5";
|
||||
const cDaiAddress = "0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643";
|
||||
const daiAddress = "0x6B175474E89094C44Da98b954EedeAC495271d0F";
|
||||
const comptrollerAddress = "0x3d9819210A31b4961b30EF54bE2aeD79B9c9Cd3B";
|
||||
|
||||
describe("Import Compound", function () {
|
||||
const connectorName = "COMPOUND-IMPORT-C";
|
||||
const account = "0x26eD8119c45E3871df446a13F7Fdc9E2C527DaCD";
|
||||
|
||||
const cEthAbi = [
|
||||
{
|
||||
constant: false,
|
||||
inputs: [],
|
||||
name: "mint",
|
||||
outputs: [],
|
||||
payable: true,
|
||||
stateMutability: "payable",
|
||||
type: "function",
|
||||
signature: "0x1249c58b"
|
||||
},
|
||||
{
|
||||
constant: true,
|
||||
inputs: [{ internalType: "address", name: "owner", type: "address" }],
|
||||
name: "balanceOf",
|
||||
outputs: [{ internalType: "uint256", name: "", type: "uint256" }],
|
||||
payable: false,
|
||||
stateMutability: "view",
|
||||
type: "function"
|
||||
},
|
||||
{
|
||||
constant: false,
|
||||
inputs: [],
|
||||
name: "exchangeRateCurrent",
|
||||
outputs: [{ name: "", type: "uint256" }],
|
||||
payable: false,
|
||||
stateMutability: "nonpayable",
|
||||
type: "function"
|
||||
}
|
||||
];
|
||||
|
||||
const cDaiAbi = [
|
||||
{
|
||||
constant: false,
|
||||
inputs: [
|
||||
{
|
||||
internalType: "uint256",
|
||||
name: "borrowAmount",
|
||||
type: "uint256"
|
||||
}
|
||||
],
|
||||
name: "borrow",
|
||||
outputs: [
|
||||
{
|
||||
internalType: "uint256",
|
||||
name: "",
|
||||
type: "uint256"
|
||||
}
|
||||
],
|
||||
payable: false,
|
||||
stateMutability: "nonpayable",
|
||||
type: "function",
|
||||
signature: "0xc5ebeaec"
|
||||
}
|
||||
];
|
||||
|
||||
const comptrollerAbi = [
|
||||
{
|
||||
constant: false,
|
||||
inputs: [
|
||||
{
|
||||
internalType: "address[]",
|
||||
name: "cTokens",
|
||||
type: "address[]"
|
||||
}
|
||||
],
|
||||
name: "enterMarkets",
|
||||
outputs: [
|
||||
{
|
||||
internalType: "uint256[]",
|
||||
name: "",
|
||||
type: "uint256[]"
|
||||
}
|
||||
],
|
||||
payable: false,
|
||||
stateMutability: "nonpayable",
|
||||
type: "function",
|
||||
signature: "0xc2998238"
|
||||
}
|
||||
];
|
||||
|
||||
let connector2;
|
||||
let cEth: Contract, cDai: Contract, comptroller, Dai: any;
|
||||
let owner: any;
|
||||
|
||||
let dsaWallet0: any;
|
||||
let masterSigner: Signer;
|
||||
let instaConnectorsV2: Contract;
|
||||
let connector: any;
|
||||
|
||||
const wallets = provider.getWallets();
|
||||
const [wallet0, wallet1, wallet2, wallet3] = wallets;
|
||||
|
||||
before(async () => {
|
||||
await hre.network.provider.request({
|
||||
method: "hardhat_reset",
|
||||
params: [
|
||||
{
|
||||
forking: {
|
||||
// @ts-ignore
|
||||
jsonRpcUrl: hre.config.networks.hardhat.forking.url,
|
||||
blockNumber: 13300000
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
masterSigner = await getMasterSigner();
|
||||
instaConnectorsV2 = await ethers.getContractAt(abis.core.connectorsV2, addresses.core.connectorsV2);
|
||||
|
||||
connector = await deployAndEnableConnector({
|
||||
connectorName,
|
||||
contractArtifact: ConnectV2CompoundImport__factory,
|
||||
signer: masterSigner,
|
||||
connectors: instaConnectorsV2
|
||||
});
|
||||
console.log("Connector address", connector.address);
|
||||
|
||||
connector2 = await deployAndEnableConnector({
|
||||
connectorName: "INSTAPOOL-C",
|
||||
contractArtifact: ConnectV2InstaPoolV4__factory,
|
||||
signer: masterSigner,
|
||||
connectors: instaConnectorsV2
|
||||
});
|
||||
console.log("Connector address", connector2.address);
|
||||
|
||||
await hre.network.provider.request({
|
||||
method: "hardhat_impersonateAccount",
|
||||
params: [account]
|
||||
});
|
||||
|
||||
await hre.network.provider.send("hardhat_setBalance", [account, ethers.utils.parseEther("100000").toHexString()]);
|
||||
|
||||
owner = await ethers.getSigner(account);
|
||||
|
||||
cEth = new ethers.Contract(cEthAddress, cEthAbi);
|
||||
cDai = new ethers.Contract(cDaiAddress, cDaiAbi);
|
||||
Dai = new ethers.Contract(daiAddress, abis.basic.erc20);
|
||||
comptroller = new ethers.Contract(comptrollerAddress, comptrollerAbi);
|
||||
|
||||
// deposit ether to Compound: ETH-A
|
||||
await cEth.connect(owner).mint({
|
||||
value: parseEther("9")
|
||||
});
|
||||
|
||||
// enter markets with deposits
|
||||
const cTokens = [cEth.address];
|
||||
await comptroller.connect(owner).enterMarkets(cTokens);
|
||||
|
||||
// borrow dai from Compound: DAI-A
|
||||
await cDai.connect(owner).borrow(parseUnits("100"));
|
||||
});
|
||||
|
||||
describe("Deployment", async () => {
|
||||
it("Should set correct name", async () => {
|
||||
expect(await connector.name()).to.eq("Compound-Import-v2");
|
||||
});
|
||||
});
|
||||
|
||||
describe("checks", async () => {
|
||||
it("Should check user COMPOUND position", async () => {
|
||||
const ethExchangeRate = (await cEth.connect(owner).callStatic.exchangeRateCurrent()) / 1e28;
|
||||
expect(new BigNumber(await cEth.connect(owner).balanceOf(owner.address)).dividedBy(1e8).toFixed(0)).to.eq(
|
||||
new BigNumber(9).dividedBy(ethExchangeRate).toFixed(0)
|
||||
);
|
||||
expect(await Dai.connect(owner).balanceOf(owner.address)).to.eq("100000000000000000000");
|
||||
});
|
||||
});
|
||||
|
||||
describe("DSA wallet setup", async () => {
|
||||
it("Should build DSA v2", async () => {
|
||||
dsaWallet0 = await buildDSAv2(owner.address);
|
||||
console.log(dsaWallet0.address);
|
||||
expect(!!dsaWallet0.address).to.be.true;
|
||||
});
|
||||
|
||||
it("Deposit ETH into DSA wallet", async function () {
|
||||
await owner.sendTransaction({
|
||||
to: dsaWallet0.address,
|
||||
value: ethers.utils.parseEther("10")
|
||||
});
|
||||
expect(await ethers.provider.getBalance(dsaWallet0.address)).to.be.gte(ethers.utils.parseEther("10"));
|
||||
});
|
||||
});
|
||||
|
||||
describe("Compound position migration", async () => {
|
||||
it("Should migrate Compound position", async () => {
|
||||
const amount = new BigNumber(ethers.utils.parseEther("100").toString()).multipliedBy(9).dividedBy(1e4);
|
||||
|
||||
const flashSpells = [
|
||||
{
|
||||
connector: "COMPOUND-IMPORT-C",
|
||||
method: "importCompound",
|
||||
args: [owner.address, ["ETH-A"], ["DAI-A"], [amount]]
|
||||
},
|
||||
{
|
||||
connector: "INSTAPOOL-C",
|
||||
method: "flashPayback",
|
||||
args: [daiAddress, amount, 0, 0]
|
||||
}
|
||||
];
|
||||
|
||||
const spells = [
|
||||
{
|
||||
connector: "INSTAPOOL-C",
|
||||
method: "flashBorrowAndCast",
|
||||
args: [daiAddress, ethers.utils.parseEther("100"), 0, encodeFlashcastData(flashSpells), "0x"]
|
||||
}
|
||||
];
|
||||
const tx = await dsaWallet0.connect(owner).cast(...encodeSpells(spells), owner.address);
|
||||
const receipt = await tx.wait();
|
||||
});
|
||||
});
|
||||
});
|
|
@ -1,6 +0,0 @@
|
|||
const cEthAddress = "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5";
|
||||
const cDaiAddress = "0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643";
|
||||
const daiAddress = "0x6B175474E89094C44Da98b954EedeAC495271d0F";
|
||||
const comptrollerAddress = "0x3d9819210A31b4961b30EF54bE2aeD79B9c9Cd3B";
|
||||
module.exports = { cEthAddress, cDaiAddress, daiAddress, comptrollerAddress };
|
||||
|
Loading…
Reference in New Issue
Block a user