mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
15 lines
381 B
TypeScript
15 lines
381 B
TypeScript
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],
|
|
]);
|
|
};
|