Whitepaper · Version 1.0

TronUSD (USDx)

A fully-reserved, redeemable dollar stablecoin on Tron.

2026-09-07

Abstract

TronUSD (ticker USDx) is a TRC-20 stablecoin on the Tron network whose value comes from real 1:1 reserves plus on-chain redemption, not from an algorithm, a displayed number, or a thin liquidity pool. Every USDx in circulation is backed by a reserve dollar (USDT) held in a smart-contract vault, and anyone can verify at any time that reserves are greater than or equal to the circulating supply. USDx can be minted by depositing reserve and redeemed for reserve, both 1:1, directly on-chain.

1. Motivation

Stablecoins are the settlement layer of on-chain finance. But "stable" only means something if a token is genuinely backed and genuinely redeemable. Designs that mint unbacked supply, or that hold a $1 price only through a liquidity pool, break under stress. TronUSD takes the conservative path: it is fully reserved and redeemable, and that property is enforced by code, not by promise.

2. Design principles

  1. Backed, not algorithmic, not pool-only. Supply grows only when a matching reserve dollar arrives. No mechanism can mint unbacked USDx.
  2. On-chain provability. The backing invariant, reserves greater than or equal to supply, is a public, verifiable fact readable from the chain.
  3. Trustless redemption. Redemption is a smart-contract function, not a support ticket. Holders exit to reserve 1:1 without asking permission.
  4. Own brand. USDx is its own mark; it does not imitate any existing token.
  5. Roles on a multisig. Administrative powers are held by a multisig, never a single hot key, before the token serves external holders.

3. How TronUSD works

Mint. A user deposits reserve (USDT) into the vault and receives the same amount of USDx. Deposit 1,000 USDT, receive 1,000 USDx.

Redeem. A user returns USDx to the vault and receives the same amount of reserve. The returned USDx is burned.

Because minting requires a reserve deposit and redemption releases exactly that reserve, the amount of USDx in existence always matches the reserve held. There is no cap on how much can be minted, only on the ratio, which is fixed at 1:1.

4. Reserves and the backing guarantee

The reserve asset is USDT-TRC20 (TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t). Reserves are held in the vault contract itself, on-chain, so backing is transparent rather than asserted. The vault exposes reserves(), the token exposes totalSupply(), and fullyBacked() returns true whenever reserves are greater than or equal to supply.

This holds by construction: the vault is the only contract permitted to mint or burn USDx, so USDx cannot come into existence without a reserve dollar arriving first. In normal operation the two are exactly equal; reserve donations or controlled burns can only push reserves above supply, never below.

5. Smart-contract architecture

TronUSD is two contracts: the token (a standard TRC-20 with 6 decimals, role-based access control, a pause switch, and a compliance blocklist) and the vault (which holds the reserve and is the sole minter and burner of USDx). Minting and burning authority is held only by the vault contract, never by any wallet, which is precisely what makes unbacked minting impossible.

6. Governance and security

7. Redemption

Redemption is trustless and always available while the contract is not paused: return USDx to the vault, receive reserve 1:1. Because the reserve sits in the vault, no counterparty has to approve a redemption; the contract settles it.

8. Risks

TronUSD is conservative by design, but no stablecoin is risk-free.

9. Roadmap

  1. Independent security audit and publication of the report.
  2. Migration of all administrative roles to a multisig.
  3. Reserve attestation, a recurring independent proof that reserves are greater than or equal to supply.
  4. Wallet, explorer, and price-feed listings.
  5. Optional liquidity as a convenience on top of redemption.

10. Contract addresses (Tron mainnet)

ContractAddress
TronUSD (USDx) tokenTUMn8fq9MHzMidGBBwqbBPZuCJchanToZu
Reserve vaultTSqH3YUP7VnQPfAiWWu1ET7jR9FnYY8snf
Reserve asset (USDT-TRC20)TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t

Verify on Tronscan.

11. Disclaimer

This document is for information only. It is not an offer to sell, a solicitation, or investment, legal, or tax advice. Digital assets carry risk. TronUSD's backing and redemption are provided by the smart contracts described above; nothing here is a guarantee of value, availability, or fitness for any purpose. Prospective issuers and holders should obtain their own legal and compliance advice in their jurisdiction.