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