dsa-connectors/scripts/polygon/getMasterSigner.ts
2021-12-11 13:37:45 +05:30

25 lines
690 B
TypeScript

const { ethers, network } = "hardhat";
import { addresses } from "./constant/addresses";
import { abis } from "../constant/abis";
module.exports = async function() {
const [_, __, ___, wallet3] = await ethers.getSigners();
const instaIndex = new ethers.Contract(
addresses.core.instaIndex,
abis.core.instaIndex,
wallet3
);
const masterAddress = await instaIndex.master(); // TODO: make it constant?
await network.provider.request({
method: "hardhat_impersonateAccount",
params: [masterAddress],
});
await wallet3.sendTransaction({
to: masterAddress,
value: ethers.utils.parseEther("10"),
});
return await ethers.getSigner(masterAddress);
};