import { sendTransaction } from "thirdweb";
import { deployProxyByImplementation } from "thirdweb/extensions/thirdweb";
const transaction = deployProxyByImplementation({
contract,
implementation: ...,
data: ...,
salt: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });