import { sendTransaction } from "thirdweb";
import { safeTransferFrom } from "thirdweb/extensions/erc1155";
const transaction = safeTransferFrom({
contract,
from: ...,
to: ...,
tokenId: ...,
value: ...,
data: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });