Crypto payments on Tron
Members pay in USDT (TRC-20). Funds go directly to your Tron wallet. Autlantic verifies each payment on-chain and unlocks access automatically. We do not hold subscription revenue as a payment intermediary.
Why crypto-native subscriptions
Card processors are a poor fit for many global creator communities. USDT on Tron is fast, familiar to crypto audiences, and settles directly to an address you control. Autlantic is designed around that flow from checkout to confirmation to access.
- No platform cut taken from member subscription USDT sent to your wallet
- No held balances: Autlantic does not custody your membership revenue
- Exact amounts at checkout reduce confusion and support tickets
- On-chain verification instead of manual screenshot checks
How a payment works
From the member's perspective:
- They sign in or create a member account, then choose a plan on your storefront
- Checkout shows the USDT amount, your payout address, and a time limit to pay
- They send USDT on Tron via QR code, wallet connect, or by copying the address
- When the transfer confirms on-chain, the order is marked paid and access runs
From your perspective:
- You add your Tron wallet once in dashboard settings
- Each sale creates an order with a unique expected amount and expiry
- USDT arrives in your wallet; you can track orders and members in the dashboard
- Telegram invites and renewal jobs run after confirmation
What we verify
Autlantic Payments matches incoming transfers against a payment intent: correct recipient address, at least the required USDT amount (overpay is allowed), and payment within the checkout window. Members can also submit a transaction hash if automatic detection is slow.
Blockchain transactions are public and irreversible. Sending to the wrong address or wrong network is usually not recoverable by Autlantic. Clear checkout copy and exact amounts help avoid mistakes.
Refunds and disputes
Because funds go to you directly, refund requests are handled between you and the member unless law requires otherwise. See our Refund Policy for platform guidance.
Autlantic Payments SDK
The same payment engine that powers Autlantic built for production
Member checkouts on Autlantic are not held together with scripts. They run on Autlantic Payments our TypeScript SDK for USDT on Tron: typed intents, chain verification, webhooks, and a full sandbox. That is why confirmation is reliable, testable, and ready to scale.
On-chain verification
Match USDT (TRC-20) transfers to your payout address by tx hash or automatic chain scan.
Payment intents
Amount rules, expiry, and merchant references so every checkout maps to one order.
Sandbox testing
Stripe-style test transactions and scenarios before you go live on mainnet.
Signed webhooks
payment.confirmed events with signatures your backend can verify.
Use the npm packages in your own Node backend, or the hosted Payments API with an API key, with the same verification rules as the Autlantic product.
import { AutlanticPayments, isVerificationSuccess } from "@autlantic/payments";
const payments = AutlanticPayments.fromEnv();
const intent = payments.createIntent({
merchantRef: order.id,
amountUsdt: 49,
payToAddress: creator.tronWallet,
matchStrategy: "minimum_amount",
expiresAt: order.expiresAt,
});
const result = await payments.verifyByTxHash(
intent,
txHashFromMember,
);
if (isVerificationSuccess(result)) {
await fulfillOrder(order.id);
}✓payment.confirmed · webhook signed · access unlocked
For developers
Every Autlantic checkout uses the same verification engine we ship on npm and as a hosted API. Build custom tools with sandbox test transactions, signed webhooks, and typed payment intents.
- npm install @autlantic/payments (Node 20+)
- Full guides at docs.autlantic.com
- Hosted REST API for non-Node stacks