NFT Checkout with Crypto Payout
Sardine’s NFT checkout widget offers a quick way to integrate the ability to directly purchase NFTs from fiat through a URL, and then settle with crypto.
This is best suited for quick integrations where the developer does not want to build their own UI. The Sardine Risk SDK is natively integrated into the checkout form.
Goal By the end of this guide, you should be able to open a new window with Sardine NFT Checkout, either in a new tab or in a new browser window, and receive payout to a wallet of your choice.
Implementing NFT Checkout
Before we start, you’ll need the following parameters
1. Obtain authorization token
The next step is to obtain the clientToken
, which is a unique identifier for each session and user.
Make a POST request to /v1/auth/client-tokens
using Basic Auth by passing base64 encoding of <clientId>:<clientSecret>
The body of this request is used to send information about the NFT and the user to Sardine. More information about this endpoint can be found here
A sample request would look like below
If the request is successful, you should receive a response that contains the clientToken
, which is needed to create the Checkout
Use your base64 encode( clientId:clientSecret ) to make a call
Constraints
- referenceId - unique
- expiresIn - 300 to 3600 ( 5min - 1hr)
Success Response:
Error Response:
A fully complete URL will look like this:
2. User goes through Sardine Checkout
Once the Checkout URL is opened, the Sardine flow takes over and guides the user through the Checkout
3. Embed NFT checkout
Once the checkout URL has been generated, it can be embedded into your web app as an iframe, with event handlers to catch events sent by the iframe.
Sample code to embed NFT checkout
Recommended size is width=500, height=700 for new window
4. Get Confirmation of Trade Status
When the user presses Confirm, Sardine will fire a order.confirmed
webhook, along with the frontend events which can be caught with event handlers.
Sardine will emit events which can be handled to understand user action
There are three events that can be caught using event handlers.
Expired
- The user didn’t complete the transaction within the expiration
paramter
Processed
- The payment is complete, and the NFT can now be transferred the user.
Declined
- The transaction was declined due to issues with their payment method or risk profile.
5. Initiate Payout
Sardine allows for payments to be settled in cryptocurrency. Once an Order has been created, it can be used to trigger a Payout. Sardine can accept multiple recipients which receive different percentages of the entire Order. Check Create Payouts API for full request and responses.
The amount is determined based on the orderId
that is passed.
Once a Payout has been created, webhooks are sent to confirm the different states of the payout. Check Webhooks for more information on which webhooks will be triggered. The state of each Payout can also be queried through the Fetch Payout API
6 . Testing and Verification
Once the defined URL has been set and triggered, it should open an iframe that goes through the user flows for Sardine’s NFT checkout. This should match the screen show on the [User Flows Page]
theme: success
You should now be able to route users to the Sardine Checkout Widget via your defined URL where they can instantly buy NFTs!