dsa-connectors/scripts/encodeSpells.ts
2021-11-29 22:51:11 +05:30

19 lines
618 B
TypeScript

import { web3 } from "hardhat";
import { addresses } from "./constant/addresses";
import { abis } from "./constant/abis";
export function encodeSpells(spells: any[]) {
const targets = spells.map((a) => a.connector);
const calldatas = spells.map((a) => {
const functionName = a.method;
// console.log(functionName)
const abi = abis.connectors[a.connector].find((b) => {
return b.name === functionName;
});
// console.log(functionName)
if (!abi) throw new Error("Couldn't find function");
return web3.eth.abi.encodeFunctionCall(abi, a.args);
});
return [targets, calldatas];
}