Network-first verification
The same looking wallet address or tx hash format can mislead support teams. Always start by confirming whether the payment belongs to TRC20, ERC20, or BEP20.
When a customer says they paid but the order is still pending, you need a repeatable way to compare blockchain facts with order facts. This guide explains the checks merchants should run across TRC20, ERC20, and BEP20.
1. Identify the network: TRC20, ERC20, or BEP20
2. Open the matching explorer and inspect the USDT Transfer
3. Compare destination address with the order wallet
4. Compare normalized USDT amount with the order amount
5. Check transaction success and required confirmations
6. Fulfill only once, then accept the signed webhookBest for support teams, founders, and developers who need to decide whether a real USDT transfer should complete a merchant order.
Start with the network selected by the order. A TRC20 transfer cannot complete an ERC20 or BEP20 order.
Open the matching explorer and verify the transaction is a USDT token Transfer, not a native coin transfer.
Compare the transfer destination address with the order settlement address shown at checkout.
Normalize the token amount and compare it with the exact order amount before fulfilling or resending a webhook.
The same looking wallet address or tx hash format can mislead support teams. Always start by confirming whether the payment belongs to TRC20, ERC20, or BEP20.
Customer screenshots are useful for communication, but fulfillment should depend on explorer data, token contract, amount, destination, and confirmations.
Once a payment is verified, the merchant backend should still update the order idempotently so retries or manual resend do not fulfill twice.
Integration notes
Common causes include wrong network, wrong token contract, rounded amount, late payment after expiration, or a transaction that has not reached the configured confirmation threshold.
A successful blockchain transaction is not enough. You should confirm the transfer event belongs to the official USDT contract configured for that network.
Explorers prove what happened on-chain. Your payment system still needs to check order status, duplicate tx hash, expiration, and fulfillment history.
These answers help developers, founders, and support teams understand the payment lifecycle before accepting real USDT payments.
No. USDT exists on multiple networks, but each order should only match the network selected at checkout.
The transaction may be on the wrong network, use the wrong token contract, send the wrong amount, pay after expiration, or still be below the required confirmation count.
Screenshots can help locate a transaction, but final fulfillment should be based on explorer data and your payment system checks.
Create orders, monitor transfers, and notify your backend without asking customers to send screenshots.
Create free account