CRYPTO

Right coin, wrong network: how a deposit goes missing

Illustration for “Right coin, wrong network: how a deposit goes missing”
A token like USDT is not one asset. It is a separate asset on every chain it exists on — TRON, Ethereum, Polygon and others — and a deposit address is valid on exactly one of them. Send the Ethereum version to an address that is only being watched on TRON and the coins arrive on a chain nobody is looking at. Some mistakes protect themselves: a TRON address begins with T, a Bitcoin address with 1, 3 or bc1, and a wallet will refuse to send across formats. The dangerous case is the one that looks right — Ethereum, Polygon and other EVM chains all use the same 0x address, so a transfer on the wrong one goes through without complaint. This wallet asks you to choose the network before it issues an address, and some coins (XRP) need a destination tag as well as an address.
BETKYO RESEARCHPUBLISHED 2026-09-01UPDATED 2026-09-018 MIN READ

One name, several assets

On an exchange, “USDT” is one line in a list. On the blockchains, it is at least half a dozen different things. There is a USDT contract on Ethereum, another on TRON, another on Polygon, and so on. They are pegged to the same dollar and issued by the same company, but a unit of one is not a unit of another, any more than a dollar in one bank’s ledger is a dollar in a different bank’s ledger. Moving between them is a conversion, not a transfer.

This is why an exchange withdrawal form asks a question that feels redundant — *which network?* — and why the answer matters more than the amount. The address you paste is only meaningful on the chain it was generated for.

ENGINE-VERIFIEDFrom the client wallet: networkDefinition.ts names the rails deposits are taken on — Bitcoin, Litecoin, Ethereum (ERC20), Tron (TRC20), Polygon and Ripple. CoinStore.ts classifies each coin by type, and the NETWORK type is annotated in the source as “a token that exists on several chains: the network must be chosen before deposit or withdrawal, because only then is there an address.” The deposit screen calls /coin/getAvailableCoinNetworkList for the coin you picked and issues an address for the network you select — the address does not exist until the network does.

That ordering is the whole safeguard. An address issued for TRON is being watched on TRON. A deposit that arrives for that same string of characters on some other chain is not seen, because nothing is looking there.

The mistakes that refuse themselves

Most chains have their own address format, and that is more protection than it sounds. A wallet validates the address before it signs anything, so sending across formats usually fails before it starts.

Address formats on the networks this wallet accepts — what the first characters tell you
NETWORKADDRESS BEGINS WITHEXAMPLE SHAPE
Bitcoin1, 3, or bc1bc1q… (about 42 characters)
LitecoinL, M, or ltc1ltc1q…
TRON (TRC20)TT… (34 characters)
Ripple (XRP)rr… — plus a numeric destination tag
Ethereum (ERC20)0x0x… (42 characters)
Polygon0x0x… — identical to Ethereum

Five distinct formats, and one collision. The last two rows are the problem.

Paste a TRON address into an Ethereum send and the wallet will say the address is invalid; paste a Bitcoin address into a TRON send and the same. Those errors are not failures. They are the format doing its job — the mistake is caught at the sender, before any coins move, at no cost.

The one that does not

Ethereum, Polygon, BNB Chain, Arbitrum and every other EVM-compatible network share the same address format. The same private key controls the same 0x address on all of them. That is a convenience for developers and a trap for everyone else, because it means a transfer to the wrong EVM chain is valid. The wallet sees a well-formed address and signs. The chain accepts it. The coins land — on a network where the deposit address was never registered.

Concretely: an address issued here for Ethereum, sent to from an exchange with Polygon selected, receives Polygon tokens at an Ethereum address. Nothing rejected it. Nothing will credit it either, because the deposit system is watching Ethereum for that address and Polygon is a different ledger.

Whether coins in that position can be recovered depends on something the sender cannot see: whether the operator holds the key to that address on the chain the coins landed on, and whether it has a process for sweeping them. Sometimes it does. It is never automatic, it is never fast, and it is never something to count on. The honest framing is that a wrong-network EVM transfer is a recovery request, not a deposit.

The same shape of loss exists on Bitcoin-family chains with a shared history — Bitcoin and Bitcoin Cash addresses were once interchangeable, which is why Bitcoin Cash adopted a different format. Every collision like this eventually gets its own prefix. Until then, the selector at the exchange is the only guard.

The coin that needs a second number

XRP adds a different failure. A custodian typically holds all customer XRP in a small number of addresses and tells them apart by a destination tag — a number attached to the transaction that says whose deposit this is. The address routes the coins to the custodian; the tag routes them to you.

ENGINE-VERIFIEDThe wallet models this as its own coin type, TAG, in CoinStore.ts. For XRP the deposit screen shows a second field beside the address, labelled “Tag”, with its own copy button (deposit.tsx). The address alone is not a complete destination.

Send XRP to the right address with no tag and it arrives at the custodian correctly and unattributed — the ledger delivered it, and nobody knows it is yours. That is usually recoverable with the transaction hash and some patience, because the coins are at least on the right chain in the right place. But it is a manual match, and the deposit does not credit until someone makes it.

Before you press send

  1. Choose the network on the deposit screen first, then copy the address. The address is generated for that network; an address copied before choosing is an address for a guess.
  2. Match the network at the sending side to the one on the deposit screen, by name — TRC20 to Tron (TRC20), ERC20 to Ethereum (ERC20). If the sender offers a network the deposit screen does not list, it is not a supported rail; do not send on it.
  3. Look at the first characters of the address against the table above. If they do not fit the network you chose, stop. If they fit but the network is EVM, that check has told you nothing — go back to step two.
  4. For XRP, copy the tag as well as the address, and confirm the sending form has a field for it. A form with nowhere to put the tag is a form that will lose it.
  5. Send a small amount first on any network you have not used before. The cost of a test transfer is the network fee; the cost of skipping it is the whole deposit.

None of this is the house being difficult. It is the house being unable to see chains it is not watching — which is also, from the other direction, the reason a deposit waits for confirmations once it does arrive on the right one.

Once it lands, one roll checks everything
Dice: the quickest verifiable round to run after a first deposit clears
Dice →
FAQ

What happens if I send crypto on the wrong network?

If the address format does not match the chain, the sending wallet usually refuses and nothing moves. If it does match — as it does across Ethereum, Polygon and other EVM chains, which share the 0x format — the transfer succeeds on a chain the deposit system is not watching, and it is not credited. Recovery is a manual request and is not guaranteed.

Is USDT on TRON the same as USDT on Ethereum?

No. They are separate assets on separate ledgers, pegged to the same dollar. A deposit address is valid on one chain only; the version of USDT you send must be the one that chain carries.

Why does the deposit screen ask for a network before showing an address?

Because the address only exists for a specific chain. The wallet asks the server which networks a coin is available on, and issues an address for the one you choose — so that the chain being watched and the chain you send on are the same by construction.

What is an XRP destination tag?

A number attached to an XRP transaction that tells a custodian which customer a deposit belongs to. The address routes coins to the custodian; the tag routes them to you. XRP sent without it arrives unattributed and must be matched by hand.

How can I tell which network an address is for?

Often from its first characters — T for TRON, r for XRP, 1/3/bc1 for Bitcoin, L/M/ltc1 for Litecoin. The exception is 0x, which Ethereum, Polygon and every other EVM chain share; for those, only the network selector tells you.

SOURCES & REFERENCES
  • Betkyo client source: networkDefinition.ts (the supported rails), ECoinType NETWORK and TAG with their source annotations in CoinStore.ts, the network-first address flow in deposit.tsx and useCoinNetworks.ts
  • Address formats are public protocol conventions — Bitcoin BIP-173 (bech32), TRON base58 with the T prefix, the XRP Ledger destination tag, and EVM 0x addresses shared across Ethereum-compatible chains
THE GAMES IN THIS ARTICLE
Betkyo Research — written by the team that builds these games. Every probability quoted in the Journal is derived from our engine source or a cited reference, never copied from another site. Figures are re-checked whenever the engines change.

18+ · PLAY RESPONSIBLY · THE JOURNAL IS EDITORIAL CONTENT, NOT BETTING ADVICE