import { prepareContractCall, sendTransaction } from "thirdweb";
const transaction = await prepareContractCall({
contract,
method: "function execute((bytes data, address to, uint256 value)[] calls) payable",
params: [calls]
});
const { transactionHash } = await sendTransaction({
transaction,
account
});