import { prepareContractCall, sendTransaction } from "thirdweb";
const transaction = await prepareContractCall({
contract,
method: "function accept(address tokenContract, address _for, bytes signature)",
params: [tokenContract, _for, signature]
});
const { transactionHash } = await sendTransaction({
transaction,
account
});