PonponPay
中级5 分钟阅读

USDT Tron 收款接入

面向稳定币支付场景,快速接入 TRON 网络 USDT 收款。

适用场景

  • SaaS 订阅付款
  • 跨境数字服务付费
  • 游戏与会员充值
  • 代理商批量结算

下单关键参数

  • `currency=USDT`
  • `network=tron`
  • `mch_order_id` 保证全局唯一
  • 配置 `notify_url` 和 `redirect_url`

到账与确认

建议以后端 webhook 状态为准,不要仅以前端跳转页判断支付成功。可对到账订单增加二次确认任务。

API Example

const order = await ponponpay.orders.create({
  amount: 39.9,
  currency: 'USDT',
  network: 'tron',
  mchOrderId: 'SUB_20260303_1001',
  notifyUrl: 'https://merchant.example.com/api/ponponpay/webhook',
  redirectUrl: 'https://merchant.example.com/payment/success'
});

console.log(order.paymentUrl);