dsa-connectors/scripts/encodeFlashcastData.ts

17 lines
471 B
TypeScript
Raw Normal View History

2021-12-04 13:08:16 +00:00
import { addresses } from "./constant/addresses";
import { abis } from "./constant/abis";
import * as hre from "hardhat";
const { web3 } = hre;
import { encodeSpells } from "./encodeSpells.js";
module.exports = function(spells: any) {
const encodeSpellsData = encodeSpells(spells);
const targetType = "string[]";
let argTypes = [targetType, "bytes[]"];
return web3.eth.abi.encodeParameters(argTypes, [
encodeSpellsData[0],
encodeSpellsData[1],
]);
};