AppKit Pay with Exchange - Javascript
AppKit Pay with Exchange unlocks a powerful new flow: users can pay in crypto directly from their Centralized Exchange (CEXs) accounts like Binance or Coinbase, with no new wallets, no app switching, and no lost conversions.
Quick Start
Here you can find a simplify process to integrate AppKit Pay with Javascript SDK:
Projects first need to install and set up Reown AppKit before integrating AppKit Pay. If you haven’t done so, please refer to the Reown AppKit docs.
Install the library
Projects currently using Reown AppKit to enable self-custodial wallet payments in their own checkout flows are encouraged to switch to AppKit Pay for a simpler integration and significantly improved user experience. AppKit Pay can be found in @reown/appkit-pay
npm package.
Usage
In order to run the payment, we are using the function openPay
.
Functions
openPay
Opens the payment modal. Resolves when the modal is closed by the user or programmatically.
openPay(amount, addressRecipient, options: PaymentOptions): Promise<void>
getExchanges
Fetches available exchanges.
getExchanges(page?: number): Promise<{ exchanges: Exchange[], total: number }>
getPayResult
Use with caution regarding timing; subscriptions are preferred.
getPayResult(): PayResult | null
Returns the result of the last successful payment.
getPayError
Use with caution regarding timing; subscriptions are preferred.
getPayError(): AppKitPayErrorMessage | null
Returns the error object if the last payment failed.
getIsPaymentInProgress
Checks if a payment is currently processing.
getIsPaymentInProgress(): boolean