diff --git a/.changeset/upset-views-show.md b/.changeset/upset-views-show.md new file mode 100644 index 00000000000..3ce652007aa --- /dev/null +++ b/.changeset/upset-views-show.md @@ -0,0 +1,5 @@ +--- +"thirdweb": patch +--- + +Fixes a bug with purchaseData not being included on PayEmbed transfers diff --git a/packages/thirdweb/src/pay/buyWithCrypto/getTransfer.ts b/packages/thirdweb/src/pay/buyWithCrypto/getTransfer.ts index c4b6d0b8d68..14b410c3139 100644 --- a/packages/thirdweb/src/pay/buyWithCrypto/getTransfer.ts +++ b/packages/thirdweb/src/pay/buyWithCrypto/getTransfer.ts @@ -133,6 +133,7 @@ export async function getBuyWithCryptoTransfer( client: params.client, feePayer: params.feePayer, paymentLinkId: params.paymentLinkId, + purchaseData: params.purchaseData, }); const firstStep = quote.steps[0];