Non-custodial settlement
Payments go to the merchant wallet you configure. BoltUtil monitors chain activity and does not need to hold user funds.
Every payment webhook should be verified before you credit a customer balance or fulfill an order. BoltUtil signs payloads with your merchant webhook secret.
payload = raw_request_body
signature = HMAC_SHA256(payload, webhook_secret)
// Compare with the X-Bolt-Signature header by constant-time comparison.Use signature verification on every webhook endpoint that receives payment status updates.
Read the raw request body exactly as received.
Calculate HMAC-SHA256 with the webhook secret.
Compare it to the signature header with constant-time comparison.
Only then update your local order state.
Payments go to the merchant wallet you configure. BoltUtil monitors chain activity and does not need to hold user funds.
Accept USDT on TRC20, ERC20, and BEP20 with a single order API and unified webhook payload.
Your system receives a signed callback when a transaction is detected and confirmed on-chain.
These answers help developers, founders, and support teams understand the payment lifecycle before accepting real USDT payments.
No. BoltUtil is designed as a non-custodial monitoring and notification layer. The merchant configures their own settlement wallet.
The scanner matches network, destination address, exact USDT amount, order status, and expiration window before updating the order.
The current production focus is TRC20, ERC20, and BEP20.
Create orders, monitor transfers, and notify your backend without asking customers to send screenshots.
Create free account