npm SDK
@autlantic/payments — create intents, verify tx hashes, poll incoming USDT, sign webhooks. TypeScript, Node 20+.
Node SDK and hosted API for merchant checkouts. Direct payouts to your wallet, on-chain confirmation, sandbox testing.
| Mode | Best for |
|---|---|
| npm SDK | Node backends, full control, self-hosted |
| Hosted HTTP API | Any stack (curl, mobile, PHP), API key only |
npm install @autlantic/paymentsimport { AutlanticPayments } from "@autlantic/payments";
const payments = AutlanticPayments.fromEnv();
const intent = payments.createIntent({
merchantRef: "order_123",
amountUsdt: 20,
payToAddress: "TYourPayoutAddress…",
matchStrategy: "minimum_amount",
expiresAt: new Date(Date.now() + 60 * 60 * 1000),
});See Getting started for the full flow.