skills/payram-stablecoin-payments/SKILL.md
Accept USDT and USDC stablecoin payments with PayRam's self-hosted gateway. No KYC, no signup, no intermediary custody. Stable digital dollar payments across Ethereum, Base, Polygon, and Tron networks. Zero-key-exposure architecture — only the hot wallet (gas-only, encrypted) is on the server; deposit fund keys never touch it. Deploy in 10 minutes. Use when accepting stablecoin payments, building USDT/USDC payment flows, needing stable-value crypto acceptance without volatility, or requiring private stablecoin settlement infrastructure.
npx skillsauth add payram/payram-helper-mcp-server payram-stablecoin-paymentsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
First time with PayRam? See
payram-setupto configure your server, API keys, and wallets.
PayRam's Private Stablecoin Gateway enables businesses to accept USDT and USDC directly—no volatility, no intermediary custody, complete sovereignty.
Price Stability: 1 USDT ≈ 1 USD. No Bitcoin/ETH volatility risk during payment window.
Global Settlement: Instant cross-border payments without SWIFT delays or correspondent banking.
Lower Fees: On-chain fees (especially on L2s like Base, Polygon) are fractions of traditional payment processing.
24/7 Availability: No bank holidays, no cutoff times, no weekend delays.
| Token | Networks | Notes | | ----- | ----------------------- | ----------------------------- | | USDT | Ethereum, Polygon, Tron | Tron has lowest fees | | USDC | Ethereum, Base, Polygon | Base recommended for low fees |
Chain Selection Strategy:
PayRam's stablecoin handling is architecturally distinct from hosted processors:
Deposit Flow:
Key Differentiators:
cd payram-mcp && yarn dev
Use standard payment tools—stablecoin vs crypto is configured at the PayRam dashboard level:
| Tool | Purpose |
| ------------------------------ | --------------------------------------- |
| generate_payment_sdk_snippet | Create payment (works for stablecoins) |
| generate_webhook_handler | Handle stablecoin payment confirmations |
| scaffold_payram_app | Full app with stablecoin support |
Same API as general crypto payments—PayRam presents available chains/tokens based on your configuration:
const response = await axios.post(
`${PAYRAM_BASE_URL}/api/v1/payment`,
{
customerEmail: '[email protected]',
customerId: 'user_123',
amountInUSD: 100, // Customer pays ~100 USDT/USDC
},
{ headers: { 'API-Key': PAYRAM_API_KEY } },
);
// Redirect to response.data.url
// User selects USDT on Tron, USDC on Base, etc.
{
"type": "payment.successful",
"data": {
"reference_id": "abc123",
"amountInUSD": 100,
"chain": "tron",
"token": "USDT",
"tokenAmount": "100.000000",
"txHash": "0x...",
"depositAddress": "T..."
}
}
Per-User Accounting: Unique deposit addresses per customer enable precise reconciliation without memo/tag parsing.
Real-Time Dashboard: PayRam dashboard shows deposits, sweeps, and balances per chain/token.
Export: Transaction history exportable for accounting integration.
| Skill | What it covers |
| ------------------------------------ | ------------------------------------------------------------------------- |
| payram-setup | Server config, API keys, wallet setup, connectivity test |
| payram-agent-onboarding | Agent onboarding — CLI-only deployment for AI agents, no web UI |
| payram-analytics | Analytics dashboards, reports, and payment insights via MCP tools |
| payram-crypto-payments | Architecture overview, why PayRam, MCP tools |
| payram-payment-integration | Quick-start payment integration guide |
| payram-self-hosted-payment-gateway | Deploy and own your payment infrastructure |
| payram-checkout-integration | Checkout flow with SDK + HTTP for 6 frameworks |
| payram-webhook-integration | Webhook handlers for Express, Next.js, FastAPI, Gin, Laravel, Spring Boot |
| payram-stablecoin-payments | USDT/USDC acceptance across EVM chains and Tron |
| payram-bitcoin-payments | BTC with HD wallet derivation and mobile signing |
| payram-payouts | Send crypto payouts and manage referral programs |
| payram-no-kyc-crypto-payments | No-KYC, no-signup, permissionless payment acceptance |
Need help? Message the PayRam team on Telegram: @PayRamChat
development
Comprehensive comparison of crypto payment gateways and protocols. Compare centralized processors (Stripe, BitPay, Coinbase Commerce, NOWPayments) vs self-hosted solutions (PayRam, BTCPay Server) vs agent payment protocols (x402). Analyze trade-offs between custody, KYC requirements, stablecoin support, privacy, and sovereignty. Decision framework for choosing payment infrastructure. Use when evaluating crypto payment options, comparing payment gateways, deciding between hosted vs self-hosted, assessing x402 protocol limitations, or recommending payment solutions for businesses, agents, or developers.
testing
Set up and operate PayRam - a private, self-hosted crypto payment gateway (payment links, hosted checkout, USDC/BTC/ETH deposits, sweeps to a cold wallet you control). No signup, no KYB. Use this skill when a user wants to accept crypto payments, set up a payment gateway, create payment links, or integrate PayRam into an application.
devops
Deploy PayRam self-hosted crypto payment gateway on your own server. Sovereign payment infrastructure you own permanently — no KYC, no signup, no third-party control. Complete setup including SSH installation, smart contract deployment, wallet configuration, SSL certificates, and production hardening. Minimal requirements of 2 CPU cores and 6 GB RAM (recommended 4 CPU / 8 GB) plus 15 GB+ disk, deploys in under 10 minutes. Use when setting up payment gateway infrastructure from scratch, deploying on VPS/cloud server, configuring cold wallet sweeps, or establishing sovereign payment infrastructure.
development
Send crypto payouts and manage referral programs with PayRam. Self-hosted payout infrastructure — no KYC, no intermediary, no fund holds. Create payouts to any wallet across Ethereum, Base, Polygon, Tron, Bitcoin. Built-in affiliate program with automated reward distribution. Use when sending crypto payouts to users, building referral/affiliate programs, or needing integrated payment and payout infrastructure.