diff --git a/packages/checkout/src/api/data.ts b/packages/checkout/src/api/data.ts index 830f6506e..9240655d7 100644 --- a/packages/checkout/src/api/data.ts +++ b/packages/checkout/src/api/data.ts @@ -341,9 +341,9 @@ export const createFortePaymentIntent = async ( blockchain: forteBlockchainName, idempotencyKey: idempotencyKey, buyer: { - id: recipientAddress, + id: recipientAddress.toLowerCase(), wallet: { - address: recipientAddress, + address: recipientAddress.toLowerCase(), blockchain: forteBlockchainName } } @@ -424,7 +424,7 @@ export const createFortePaymentIntent = async ( ], seller: { wallet: { - address: protocolConfig.sellerAddress || '', + address: protocolConfig.sellerAddress.toLowerCase(), blockchain: forteBlockchainName } }