import { prepareContractCall, sendTransaction } from "thirdweb";
const transaction = await prepareContractCall({
contract,
method: "function addSigner(address _signer)",
params: [_signer]
});
const { transactionHash } = await sendTransaction({
transaction,
account
});