Basic Checkout Integration

To seamlessly integrate token checkout into your application, follow these steps

Related topic

Payments

Associated Development tools

API |

Payments SDKs

Features

Payment links | Whitelist | Flow of Funds | Apple & Google Pay AML & KYC Policy Overview | Dynamic Token Amount | Marketplace Integration

Examples Github examples | CodeSandbox examples | Live demos

1. Contact Tweed support for Payments API keys

You will receive two pairs of API keys. One pair is for the backend SDK, which authenticates your requests. The other pair is for facilitating your checkout implementation, such as adding contract addresses or creating whitelists.

2. List Your contract Address

introduce your contract address to tweed by our API, use the management API keys you got from us. read more how to deploy contract address here.

3. Let's start with the backend

1. Add tweed to your Backend

npm i @paytweed/backend-sdk

2. Setup

Import TweedBackendSDK from the @paytweed/backend-sdk and implement the setup function. Pass your API keys and specify the default blockchains for your application.

Next, we will create an endpoint to be accessed by the frontend SDK for sending and receiving messages. Within this endpoint, we will use the handleMessageFromFrontend function. This function will handle messages arriving from the frontend SDK, along with the user ID and user email.

This implementation does not include WaaS. You can keep the user ID and email the same for each transaction, as demonstrated in our example. Alternatively, integrate our wallet product alongside the checkout process.

index.ts
import { TweedBackendSDK } from '@paytweed/backend-sdk'
import express from 'express'

const tweed = await TweedBackendSDK.setup({
  apiKey: 'YOUR_API_KEY',
  apiSecret: 'YOUR_API_SECRET',
  defaultBlockchainIds: ['ethereumSepolia'],
})

const app = express()
app.use(express.json())

app.post('/message', async (req, res) => {
  const userId = '1'
  const userEmail = 'a@a.com'
  
  const answer = await tweed.handleMessageFromFrontend(req.body.message, userId, userEmail)
  
  res.send({ answer })
})

app.listen(3000, () => console.log('Example app listening on port 3000'))

3. Token checkout callback

tweed facilitate multiple settlement options: you can receive payments via credit card and choose to receive funds in either fiat currency or crypto, including native chain currencies or ERC20 tokens.

This example demonstrates settlement with fiat currency. Here are guides for alternative settlement options

The next step involves handling this purchase on your backend. To accomplish this, you need to implement a callback function named getTokenPurchaseData. This function receives the tokenId parameter from the frontend as an input and expects to retrieve transaction details such as contract address, price, and other relevant information.

tokenCheckout.ts
export const getTokenPurchaseData = async ({
  tokenId,
}: {
  tokenId: string
}) => {
  const tokenData = {
    tokenId,
    amount,
    tokenContractAddress,
    priceInCents:
    priceInCrypto:
    fiatCurrencyId:
    thumbnailPath:
    contractAddress:
    chain:
    title:
    description:
    abi:
    customMintParams: {
      amount,
    },
  }
  return tokenData
}

Add the function to the setup function

index.ts
import { TweedBackendSDK } from '@paytweed/backend-sdk'
import express from 'express'
import getTokenPurchaseData from './tokenCheckout'

const tweed = await TweedBackendSDK.setup({
  apiKey: 'YOUR_API_KEY',
  apiSecret: 'YOUR_API_SECRET',
  defaultBlockchainIds: ['ethereumSepolia'],
callbacks: {
      getTokenPurchaseData
      }
})

const app = express()
app.use(express.json())

app.post('/message', async (req, res) => {
  const userId = '1'
  const userEmail = 'a@a.com'
  
  const answer = await tweed.handleMessageFromFrontend(req.body.message, userId, userEmail)
  
  res.send({ answer })
})

app.listen(3000, () => console.log('Example app listening on port 3000'))

4. Prepare the frontend

choose from our frontend SDKs for various frameworks: React, React Native, or vanilla JavaScript

1. Add tweed to your React app

install tweed SDK to your React app.

npm i @paytweed/frontend-sdk-react

2. Integrate Tweed Provider into Your App

  • Import the TweedFrontendSdkProvider from the Tweed React SDK and wrap your application with it.

  • Implement the function sendMessageToBackend, which will send a message to the backend SDK.

    App.tsx
    import { TweedFrontendSdkProvider } from '@paytweed/frontend-sdk-react'
    import DemoPage from "pages/demo";
    import { useCallback } from 'react'
    
    function App() {
    
    const sendMessageToBackend = useCallback(async (message: string) => {
        const response = await fetch('http://your-server.com/message', {
          body: JSON.stringify({ message }),
          headers: { 'Content-Type': 'application/json' },
          method: 'POST',
        })
        const { answer } = await response.json()
        return answer
      }, [])
      return (  
        <>
          <TweedFrontendSdkProvider
          sendMessageToBackend={sendMessageToBackend}
          defaultBlockchainIds={['ethereumSepolia', 'polygonMumbai']}
          theme="light" // "light" | "dark"
          >
            <HomePage />
          </TweedFrontendSdkProvider>
        </>
      );
    }

To call the token checkout widget, a wallet must be created for the user associated with this widget. Even if you plan to specify a different wallet address for each transaction to receive the token, you must still have an existing wallet.

3. Make sure user has wallet before calling token checkout widget

HomePage.tsx
import React, { useState, useEffect } from 'react';
import { hooks } from '@paytweed/frontend-sdk-react';

function HomePage() {
  const frontendSDK = hooks.useTweedFrontendSDK();
  const [isWalletExist, setIsWalletExist] = useState(false);
    
  async function handleWalletCreation() {
    if (isWalletExist) return;
    await frontendSDK.wallet.create();
    setIsWalletExist(true);
  }

  useEffect(() => {
    if (!isWalletExist) handleWalletCreation();
  }, [isWalletExist]);


  return (
    <div>
      <h1>HomePage</h1>
    </div>
  );
}

export default HomePage;

4. Let's call the buy token function

Use the toWalletAddress parameter within the buyWithFiat function to specify the destination wallet address where the token will be sent.

HomePage.tsx
import { hooks } from '@paytweed/frontend-sdk-react';

function HomePage() {
  const frontendSDK = hooks.useTweedFrontendSDK();
  const [isWalletExist, setIsWalletExist] = useState(false);
    
  async function handleWalletCreation() {
    if (isWalletExist) return;
    await frontendSDK.wallet.create();
    setIsWalletExist(true);
  }

  useEffect(() => {
    if (!isWalletExist) handleWalletCreation();
  }, [isWalletExist]);
    
  async function onClickBuy() {
    try {
      await frontendSDK.token.buyWithFiat({
        tokenId: '1',
        toWalletAddress: '0x12'
        callbacks: {
          onSuccess: (payload) => {
            console.log('success', payload);
          },
        },
      });
    } catch (error) {
      console.error('Error buying token:', error);
    }
  }
  
  return (
    <div>
      <h1>HomePage</h1>
      <button onClick={onClickBuy}>Buy</button>
    </div>
  );
}

export default HomePage;

Last updated