Track 1 · Foundations5 of 5
What XChain is and isn't
The trade-offs are deliberate. Knowing the boundaries helps you pick the right tool.
XChain makes some firm choices in exchange for its core guarantees: inherited blockchain security, full determinism, and no new trust layer. Here's where the boundaries are, plainly.
Everything is public
All balances, transfers, holders, orders, and contract state are fully public. The obfuscation on the data is not encryption. XChain is not a privacy coin; if a value must stay confidential, don't put it on-chain in the clear. (You can encrypt the contents of a message between two parties, but never the fact that it happened.)
It runs at block speed
XChain has no consensus of its own; it inherits ordering from the base chain. So confirmations, order matching, and settlement all wait for blocks. It's not built for point-of-sale, gaming, or high-frequency trading.
Not a "world computer"
Contracts can call each other (and contracts on other chains), but only by emitting new actions, never as a synchronous call that returns a value mid-run. You get composition with a small audit surface, not EVM-style synchronous DeFi. That's the price of guaranteeing a contract can never corrupt the ledger.
Bitcoin-family chains only
XChain runs on UTXO chains like Bitcoin, Litecoin, and Dogecoin. It doesn't bridge to account-model ecosystems (Ethereum, Solana), and there are no wrapped external assets.
Full trust means running a node
To verify state trustlessly you can run the software and replay the chain yourself, or use SPV light-client verification: lightweight clients check facts (such as a balance or an action) against quorum-signed checkpoint roots, so the explorer only transports proofs and is never trusted. Tokens on a smaller chain also inherit that chain's smaller security budget; choose confirmation thresholds accordingly.
Is XChain right for you?
A strong fit for
- Tokens secured directly by Bitcoin-family proof-of-work, no bridge
- A transparent, fully-replayable, auditable asset ledger
- A native DEX and trustless swaps among BTC / LTC / DOGE
- NFTs: 1-of-1s, editions, and collections with on-chain content
- Contracts that react to real-world data or AI judgments
- Self-hostable, permissionless, independently verifiable infrastructure
Look elsewhere if you need
- Confidential balances or private transfers
- Sub-second / real-time settlement
- Deep synchronous DeFi composability (EVM-style)
- Interop with Ethereum / Solana assets and liquidity