惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
J
Java Code Geeks
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
U
Unit 42
B
Blog
宝玉的分享
宝玉的分享
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
博客园 - Franky
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
博客园 - 叶小钗

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
payx3: Multi-Chain Crypto Payment SDK You've Been Waiting...
susheel kuma · 2026-05-10 · via DEV Community

susheel kumar

The Problem

Every crypto payment integration follows the same painful pattern:

  1. Read blockchain docs for each chain
  2. Implement RPC calls
  3. Handle WebSocket reconnections
  4. Parse transaction data
  5. Calculate correct decimals (looking at you, BSC USDT with 18 decimals while everyone else uses 6)
  6. Build block explorer URLs
  7. Write confirmation logic

And that's just one chain. What about the other 8 your client wants?


The Solution: payx3

const { watchAll } = require("payx3");

await watchAll({
  btcAddress: "bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq",
  evmAddress: "0xb2C65C9C98C2216099A37AF7FE12A93b8A37AFBd",
  solAddress: "CbWki5xkrnde7TYj11jDWNEJ3h7bRTmk5Q22uANNfEt",
  infuraKey: "YOUR_KEY",

  onPayment: (payment) => {
    console.log(`${payment.amount} ${payment.symbol} received on ${payment.chain}`);
    // Fires for EVERYTHING: BTC, ETH, BNB, SOL, USDT, USDC...
  },
});

Enter fullscreen mode Exit fullscreen mode

One call. All chains. All tokens. Real-time.


What You Get

🔑 Wallet Generation

Generate a BIP-39 mnemonic and derive addresses for all supported chains simultaneously:

const { generateMnemonic, deriveAll } = require("payx3");

const mnemonic = generateMnemonic(128);  // 12 words
const wallet = await deriveAll(mnemonic);

console.log(wallet.bitcoin[2].address);  // bc1... Native SegWit
console.log(wallet.evm.address);         // 0x... For ETH, BNB, MATIC, AVAX, ARB, OP
console.log(wallet.solana.address);      // Solana address

Enter fullscreen mode Exit fullscreen mode

👁️ Real-time Payment Watching

Chain Native Token Supported Tokens
Bitcoin BTC
Ethereum ETH USDT, USDC, DAI, WBTC, WETH, LINK, UNI, AAVE, SHIB
BNB Chain BNB USDT, USDC, DAI, LINK
Polygon MATIC USDT, USDC, DAI, WBTC, WETH, LINK, UNI, AAVE
Avalanche AVAX USDT, USDC, DAI, WBTC, WETH, LINK, AAVE
Arbitrum ETH USDT, USDC, DAI, WBTC, WETH, LINK, UNI
Optimism ETH USDT, USDC, DAI, WBTC, WETH, LINK
Solana SOL Any SPL token

🎯 Watch Any Custom ERC-20

const { watchToken } = require("payx3");

watchToken({
  address: "0x...",
  infuraKey: "YOUR_KEY",
  chain: "ETH",
  contractAddress: "0x6982508145454Ce325dDbE47a25d4ec3d2311933",  // PEPE
  decimals: 18,
  symbol: "PEPE",
  name: "Pepe",
  onPayment: (p) => console.log(`${p.amount} PEPE received!`),
});

Enter fullscreen mode Exit fullscreen mode


Payment Object

Every callback receives a consistent object regardless of chain:

{
  chain: "Ethereum",
  chainSymbol: "ETH",
  symbol: "USDT",
  name: "Tether USD",
  amount: "100.50",
  txHash: "0xa1b2c3...",
  status: "unconfirmed",      // or "confirmed"
  explorerUrl: "https://etherscan.io/tx/0xa1b2c3...",
  contract: "0xdAC17F...",    // null for native coins
  timestamp: 1715000000000,
  blockNumber: 19500000        // onConfirmed only
}

Enter fullscreen mode Exit fullscreen mode


CLI Tool

No code? No problem. Install globally:

npm install -g payx3

Enter fullscreen mode Exit fullscreen mode

Generate a wallet:

payx3 generate

Enter fullscreen mode Exit fullscreen mode

Watch for payments using config.json:

{
  "infuraKey": "YOUR_INFURA_KEY",
  "addresses": {
    "BTC": "bc1q...",
    "EVM": "0x...",
    "SOL": "CbWk..."
  }
}

Enter fullscreen mode Exit fullscreen mode

payx3 watch

Enter fullscreen mode Exit fullscreen mode

Or watch specific addresses inline:

payx3 watch --btc bc1q... --evm 0x... --sol CbWk... --key YOUR_INFURA_KEY

Enter fullscreen mode Exit fullscreen mode


REST API Server

Run as a full API server:

node examples/server.js
# Server running on http://localhost:3000

Enter fullscreen mode Exit fullscreen mode

Endpoints

Method Endpoint Description
POST /wallet/create Generate wallet + addresses
POST /watch/btc Watch BTC address
POST /watch/eth Watch ETH
POST /watch/bnb Watch BNB
POST /watch/polygon Watch MATIC
POST /watch/avalanche Watch AVAX
POST /watch/arbitrum Watch ETH on Arbitrum
POST /watch/optimism Watch ETH on Optimism
POST /watch/sol Watch SOL + SPL tokens
POST /watch/usdt Watch USDT (any chain)
POST /watch/usdc Watch USDC (any chain)
POST /watch/token Watch any ERC-20
POST /watch/all Watch everything at once
GET /payments List all received payments
DELETE /watch/:id Stop a watcher

Real-World Examples

E-commerce Checkout

const { generateMnemonic, deriveAll, watchAll } = require("payx3");

async function createPaymentSession(orderId, amountUSD) {
  // Generate a fresh wallet for this order
  const mnemonic = generateMnemonic(128);
  const wallet = await deriveAll(mnemonic);

  // Store mnemonic temporarily (in DB with orderId)
  await db.saveOrderWallet(orderId, mnemonic);

  // Start watching
  watchAll({
    btcAddress: wallet.bitcoin[2].address,
    evmAddress: wallet.evm.address,
    solAddress: wallet.solana.address,
    infuraKey: process.env.INFURA_KEY,

    onPayment: async (payment) => {
      // Mark order as paid
      await db.updateOrderStatus(orderId, "paid", payment);

      // Send confirmation email
      await email.send(orderEmail, `Payment received: ${payment.amount} ${payment.symbol}`);

      // Trigger fulfillment webhook
      await axios.post(fulfillmentUrl, { orderId, payment });
    },
  });

  return {
    addresses: {
      BTC: wallet.bitcoin[2].address,
      EVM: wallet.evm.address,
      SOL: wallet.solana.address,
    },
  };
}

Enter fullscreen mode Exit fullscreen mode

Subscription Payments

const { watchUSDC } = require("payx3");

// Watch for $50 USDC monthly subscription payments
watchUSDC({
  address: companyWallet,
  infuraKey: process.env.INFURA_KEY,
  chain: "ETH",

  onPayment: async (payment) => {
    if (parseFloat(payment.amount) >= 50) {
      // Find user by transaction sender
      const user = await db.findUserByAddress(payment.from);
      if (user) {
        // Extend subscription by 30 days
        await db.extendSubscription(user.id, 30);

        // Send receipt
        await email.send(user.email, `Subscription renewed — ${payment.amount} USDC`);
      }
    }
  },
});

Enter fullscreen mode Exit fullscreen mode


Why payx3?

✅ No Private Keys Needed

You never share private keys. The library only reads blockchain data. Your funds stay where they belong.

✅ Automatic Decimal Handling

USDT has 6 decimals on Ethereum but 18 on BNB Chain. payx3 handles this automatically. You always get human-readable amounts.

✅ Built-in Reconnection

WebSockets disconnect? payx3 reconnects automatically. Your payment detection never stops.

✅ 0→1 in 5 Minutes

From npm install to watching payments on 8 chains. No blockchain experience required.


Installation

npm install payx3

Enter fullscreen mode Exit fullscreen mode

Get a free Infura key: https://app.infura.io/register


GitHub & Documentation

github.com/susheelhbti/payx3

  • Full API documentation
  • Examples for every chain and token
  • REST API server example
  • MIT license — free for commercial use

Support the Project

If payx3 saves you development time, consider:

Starring the repo on GitHub

🐛 Reporting issues you find

🔧 Submitting PRs for new chains or tokens

💬 Sharing with other developers


About the Author

I'm Susheel, a blockchain developer available for freelance and full-time work.

Need a custom integration? Multi-chain payment system? Web3 infrastructure?

📧 susheelhbti@gmail.com