Work we're proud of.

Every project below is live in production, built end-to-end by the TeamZamp team.

AI SaaS Platform
SageNex

Full AI platform — employee management with admin panel & Telegram bot, SGGold real-time metal pricing, and SGTrade modern trading UI.

Hotel Parth
Hospitality · Booking System

Hotel Parth

Complete hotel booking management system with automated WhatsApp notifications. Handles reservations, room availability and check-in/check-out workflows.

50+
Active clients
WhatsApp
Integration
Iron Gym
Fitness · WhatsApp Integration

Iron Gym

Full gym website for Iron Gym with WhatsApp integration for membership enquiries, class bookings and instant member support.

WhatsApp
Integration
Full
Website
LumenLink
SaaS · Link Management

LumenLink

Link management SaaS — create, track and manage short links with analytics, custom slugs and team collaboration.

SaaS
Platform
Analytics
Built-in
npm
Open Source · SDK

@ecoleafcom/ppc-bank-sdk

Official TypeScript/JavaScript SDK for the PPCBank Payment Gateway — built for the EcoLeaf ecosystem. Supports KHQR payment URL generation, QR string generation, payment status checks and full bearer-token authentication.

npm i @ecoleafcom/ppc-bank-sdk
TypeScriptKHQRPPCBankPayment GatewayCambodiaEcoLeaf
v1.0.3
Latest version
0
Dependencies
quick-start.ts
import { PpcBankPaymentGatewaySdk }
  from "@ecoleafcom/ppc-bank-sdk";

const sdk = new PpcBankPaymentGatewaySdk({
  baseUrl: process.env.PPCBANK_BASE_URL,
  credentials: {
    merchantCode: "YOUR_CODE",
    password: "YOUR_PASSWORD",
  }
});

// Generate KHQR payment URL
const res = await sdk
  .generateKhqrPaymentUrl({
    body: {
      billNumber: "ORDER-001",
      amount: 9.99,
      currencyCode: "USD",
    }
  });

console.log(res.data.body.paymentURL);