ZiPay Docs

Getting Started

Welcome to ZiPay! This guide will help you integrate cross-chain cryptocurrency payments into your application in minutes.

What is ZiPay?

ZiPay is a next-generation payment gateway that enables merchants to accept cryptocurrency payments across any blockchain and get settled in their preferred token and chain.

Installation

Install the ZiPay SDK using your preferred package manager:

npm

typescript
npm install @zipay/zipay-sdk

yarn

typescript
yarn add @zipay/zipay-sdk

pnpm

typescript
pnpm install @zipay/zipay-sdk

Quick Start

Get up and running with ZiPay in under 5 minutes.

1. Import ZiPay SDK

typescript
import { Payment } from '@zipay/zipay-sdk';

2. Use ZiPay Payment Component

typescript
<Payment 
price={{ amount: checkoutData.total, currency: "USDC" }}
config={{ destChainId: CHAINS.monad.chainId, destTokenAddress: CHAINS.monad.usdc }}
/>