Changelog
All PayzCore releases and changes.
Changelog
All notable changes to PayzCore, SDKs, and integrations.
v1.0.0 — Initial Release
February 2026
PayzCore's first public release. Non-custodial stablecoin transaction monitoring API with SDKs, CMS plugins, and automation integrations.
Core Platform
- Dashboard with real-time payment monitoring, analytics, and global search
- REST API with OpenAPI specification at docs.payzcore.com
- 5 blockchain networks: TRC20, BEP20, ERC20, Polygon, Arbitrum
- 2 tokens: USDT and USDC (USDC not available on TRC20)
- HD wallet derivation (watch-only xPub, BIP-44)
- 4 address modes: per_payment, per_user, dedicated, pool
- Pool matching: micro_amount (auto-offset) and txid (customer submits tx hash)
- Webhook notifications with HMAC-SHA256 signatures and retry logic (5 attempts)
- Plan-based access control with Free and Pro tiers
- Email verification, TOTP 2FA, Cloudflare Turnstile
- Telegram bot notifications with per-event configuration
- Analytics dashboard with volume, status, chain, and token charts
- Per-project dust filter (minAmount setting)
- Protection Key webhook security
- Rate limiting with daily plan counters
SDKs
- Node.js — @payzcore/node on npm. TypeScript, zero dependencies, ESM + CJS
- Python — payzcore on PyPI. Python 3.9+, httpx-based, Flask and Django examples
- PHP — payzcore/payzcore-php on Packagist. PHP 8.1+, PSR-4, Laravel examples
CMS Plugins
- WooCommerce — WordPress 5.8+, WC 7.0+, HPOS compatible
- WHMCS — v7.x and v8.x, invoice auto-credit, multi-chain selector
- OpenCart — 3.x, OCMOD installer, chain and token selection
- XenForo — 2.2+, payment provider integration, phrase-based i18n
- Shopify — Express.js app, OAuth, multi-chain checkout
Automation
- n8n — Community node with triggers and actions
- Zapier — Triggers, actions, and searches
- Make — Modules, webhook trigger, and connection
API Endpoints
| Method | Path | Description |
|---|---|---|
| POST | /api/v1/payments | Create payment |
| GET | /api/v1/payments | List payments |
| GET | /api/v1/payments/:id | Get payment status |
| PATCH | /api/v1/payments/:id | Cancel payment |
| POST | /api/v1/payments/:id/confirm | Submit tx hash |
| GET | /api/v1/config | Project configuration |
| POST | /api/v1/projects | Create project (admin) |
| GET | /api/v1/projects | List projects (admin) |
Webhook Events
| Event | Description |
|---|---|
| payment.completed | Full payment received |
| payment.overpaid | More than expected amount |
| payment.partial | Partial payment received |
| payment.expired | Payment window expired |
| payment.cancelled | Payment cancelled by the merchant |