Deliverable Currency

Currently only available in SANDBOX

In the case of e-commerce, it may be desirable to quote the end user an amount in their preferred currency, that is equivalent to a common currency, but the partner will be settled in a third currency.

For example: the user wants to buy a product worth USD $100 , and pay with ETH. The partner/merchant wants to receive SGD for the sale.

This can be achieved through setting deliverable_currency in the intent payout_settlement. Such as:

{
    ...
    "payout_settlement": {
        "method": "LIQUID_PARTNER_WALLET",
        "currency": "USDC",
        "quantity": "100",
        "deliverable_currency": "SGD",
    }
}

This will not work by setting the widget config payout_settlement.

Last updated