dsa-connectors/test/optimism/connext/connext.test.ts

155 lines
4.7 KiB
TypeScript
Raw Normal View History

2023-03-13 09:01:07 +00:00
import { expect } from "chai";
import hre from "hardhat";
2023-03-13 09:24:10 +00:00
const { ethers, waffle } = hre;
const { provider } = waffle;
2023-03-13 09:01:07 +00:00
import { deployAndEnableConnector } from "../../../scripts/tests/deployAndEnableConnector";
import { buildDSAv2 } from "../../../scripts/tests/buildDSAv2";
import { encodeSpells } from "../../../scripts/tests/encodeSpells";
import { getMasterSigner } from "../../../scripts/tests/getMasterSigner";
2023-03-13 09:08:12 +00:00
import { addresses } from "../../../scripts/tests/optimism/addresses";
2023-03-13 09:01:07 +00:00
import { abis } from "../../../scripts/constant/abis";
import { ConnectV2ConnextOptimism__factory } from "../../../typechain";
import { Signer, Contract } from "ethers";
2023-03-22 01:55:54 +00:00
describe("Connext Connector [Optimism]", () => {
2023-03-13 09:01:07 +00:00
const connectorName = "CONNEXT-TEST-A";
let dsaWallet0: Contract;
let masterSigner: Signer;
let instaConnectorsV2: Contract;
let connector: Contract;
2023-03-22 01:55:54 +00:00
let usdcContract: Contract;
let signer: any;
2023-03-13 09:01:07 +00:00
const usdcAddr = "0x7F5c764cBc14f9669B88837ca1490cCa17c31607";
const ethAddr = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE";
2023-03-22 01:55:54 +00:00
const account = "0xebe80f029b1c02862b9e8a70a7e5317c06f62cae";
2023-03-13 09:01:07 +00:00
2023-03-13 09:24:10 +00:00
const wallets = provider.getWallets();
const [wallet0, wallet1] = wallets;
2023-03-13 09:01:07 +00:00
before(async () => {
await hre.network.provider.request({
method: "hardhat_reset",
params: [
{
forking: {
// @ts-ignore
jsonRpcUrl: hre.config.networks.hardhat.forking.url,
2023-03-22 01:55:54 +00:00
blockNumber: 82686991
2023-03-13 09:01:07 +00:00
}
}
]
});
masterSigner = await getMasterSigner();
2023-03-13 09:24:10 +00:00
instaConnectorsV2 = await ethers.getContractAt(abis.core.connectorsV2, addresses.core.connectorsV2);
2023-03-13 09:01:07 +00:00
connector = await deployAndEnableConnector({
connectorName,
contractArtifact: ConnectV2ConnextOptimism__factory,
signer: masterSigner,
connectors: instaConnectorsV2
});
2023-03-22 01:55:54 +00:00
usdcContract = await ethers.getContractAt(abis.basic.erc20, usdcAddr);
signer = await ethers.getSigner(account);
await hre.network.provider.send("hardhat_setBalance", [account, ethers.utils.parseEther("10").toHexString()]);
await hre.network.provider.request({
method: "hardhat_impersonateAccount",
params: [account]
});
await usdcContract.connect(signer).transfer(wallet0.address, ethers.utils.parseUnits("10000", 6));
console.log("deployed connector: ", connector.address);
2023-03-13 09:01:07 +00:00
});
it("Should have contracts deployed.", async () => {
2023-03-13 09:01:07 +00:00
expect(!!instaConnectorsV2.address).to.be.true;
expect(!!connector.address).to.be.true;
expect(!!(await masterSigner.getAddress())).to.be.true;
});
describe("DSA wallet setup", () => {
it("Should build DSA v2", async () => {
2023-03-13 09:01:07 +00:00
dsaWallet0 = await buildDSAv2(wallet0.getAddress());
expect(!!dsaWallet0.address).to.be.true;
});
it("Deposit ETH & USDC into DSA wallet", async () => {
2023-03-13 09:01:07 +00:00
await wallet0.sendTransaction({
to: dsaWallet0.address,
2023-03-13 09:24:10 +00:00
value: ethers.utils.parseEther("10")
2023-03-13 09:01:07 +00:00
});
2023-03-13 09:24:10 +00:00
expect(await ethers.provider.getBalance(dsaWallet0.address)).to.be.gte(ethers.utils.parseEther("10"));
2023-03-13 09:01:07 +00:00
2023-03-22 01:55:54 +00:00
await usdcContract.connect(wallet0).transfer(dsaWallet0.address, ethers.utils.parseUnits("10", 6));
expect(await usdcContract.balanceOf(dsaWallet0.address)).to.be.gte(ethers.utils.parseUnits("10", 6));
2023-03-13 09:01:07 +00:00
});
});
describe("Main", () => {
it("should xcall with eth", async () => {
const amount = ethers.utils.parseEther("5");
const domainId = 6648936;
const slippage = 10000;
const relayerFee = ethers.utils.parseEther("1");
const callData = "0x";
const xcallParams: any = [
domainId,
wallet1.address,
ethAddr,
wallet1.address,
amount,
slippage,
relayerFee,
callData
];
const spells = [
{
connector: connectorName,
method: "xcall",
args: [xcallParams, 0, 0]
}
];
const tx = await dsaWallet0.connect(wallet0).cast(...encodeSpells(spells), wallet1.address);
const receipt = await tx.wait();
});
it("should xcall with usdc", async () => {
const amount = ethers.utils.parseUnits("5", 6);
2023-03-13 09:01:07 +00:00
const domainId = 6648936;
const slippage = 10000;
2023-03-13 09:24:10 +00:00
const relayerFee = ethers.utils.parseEther("1");
2023-03-13 09:01:07 +00:00
const callData = "0x";
const xcallParams: any = [
domainId,
2023-03-13 09:24:10 +00:00
wallet1.address,
usdcAddr,
2023-03-13 09:24:10 +00:00
wallet1.address,
2023-03-13 09:01:07 +00:00
amount,
slippage,
relayerFee,
callData
];
const spells = [
{
connector: connectorName,
method: "xcall",
args: [xcallParams, 0, 0]
2023-03-13 09:01:07 +00:00
}
];
2023-03-13 09:24:10 +00:00
const tx = await dsaWallet0.connect(wallet0).cast(...encodeSpells(spells), wallet1.address);
2023-03-13 09:01:07 +00:00
const receipt = await tx.wait();
});
});
2023-03-13 09:24:10 +00:00
});