Create Payment

Create Crypto Payment

In order to use the crypto payment system it is necessary to use the paymentSystemUID and orderBookUID.


Init

Call the Init() function to create the payment system. In the background an own contract called PalindromePaymentSystem

Import Functions

In the first step you need to import thePalindrome Crypto Pay SDK into your JavaScript/TypeScript project with the needed function PalindromePayCreatePayment.

import {
  PalindromePayConnect,
  PalindromePayCreatePayment,
} from '@Palindromepay/sdk'

Interface

// Input
export interface IInit {
  signer: any;
}

Function

PalindromePayCreatePayment.init(args)

Params

NameTypeDescriptionResult
signeranySending transactions a signer need to be passedboolean

Example Code

try {
 const args: IInit = {
    signer: signer
 }
  const status = await PalindromePayCreatePayment.init(args);
  if (status) {
    /** do something */
  }
} catch(e: any) {
  console.log(e);
}

Payment Generator Page

You are also able to use the lightweight-wizard to create the payment-system link

Previous
Connect WalletConnect