Build on a network that works for you.
Bitcoin is jammed up. Expensive. Slow to confirm. TEXITcoin is new, accessible, cheap — and increased utility benefits individuals, not banks. Everything you need to build on TXC lives here.
TEXITcoin Core is now 100% open source.
For the first time since genesis, the full, unredacted source code — and the complete commit history — is public. Audit it. Fork it. Spin up your own node. Build on top of it. The chain has nothing to hide.
The key that made TEXITcoin a permissioned network is gone. Anyone, anywhere, can now run a node and join the network. Mining rewards still route exclusively to community-issued addresses — so banks, nation-states, and unlimited-capital actors can't slurp them up. The more you participate, the more hash power you accumulate.
# clone the source git clone https://github.com/blockchainmint1/texitcoin.git cd texitcoin # build TEXITcoin Core ./autogen.sh && ./configure && make -j$(nproc) # run a full node — no permission key required ./src/texitcoind -daemon # verify you're on the canonical chain ./src/texitcoin-cli getblockhash 0 # → b628195b74011675c216718bba39e04b631c1c82c060e8ee3e975ea87377b8ca
Spin up a TXC node from scratch — guided, in minutes.
Don't want to wrangle autogen.sh, build flags, and config files by hand? The TXC Node Setup app walks you through every step — pick your OS, answer a few questions, and get a copy-paste recipe that gets a full node synced and listening on the network.
- Step-by-step install for Linux, macOS, and Windows (WSL).
- Auto-generates a
texitcoin.conftuned to how you'll use the node. - Sanity checks: genesis hash, peer count, sync progress, RPC reachability.
- Optional add-ons: mining, Esplora/mempool, Omni layer, systemd service.
- 1Pick your platformUbuntu/Debian, Fedora, macOS, or Windows (WSL2).
- 2Choose a node profileFull node, pruned, mining, or Esplora/mempool index.
- 3Copy the generated commandsDependencies, build, config, firewall, and service unit.
- 4Verify & join the networkGenesis hash check, peer count, and sync progress.
Why build on Bitcoin when you can build to benefit yourself?
Bitcoin is jammed up
Congested mempools, slow confirmations, and fees that price out everyday use. Building on Bitcoin today means building for institutions.
TXC is new, fast, and cheap
3-minute blocks, sub-cent fees, and headroom for real throughput. Users actually transact — they don't just HODL.
Mined in Texas, by individuals
Texas power. Texas land, workers, infrastructure. Mining rewards owned by individuals — not banks. Utility benefits the people building it.
The chain, right now.
Last confirmed blocks
Every tool, in one place.
Explorers, wallets, the mining pool, swap, the L2, wrapped TXC, hardware, and apps already running on the network.
Block Explorer
Browse blocks, transactions, addresses, and chain history.
Mempool
Live mempool view, fee estimates, and mining stats. Powers our public REST API.
Mining Pool
Point your Scrypt miner here. Stratum URL, worker stats, and payouts.
Web Wallet
Send, receive, and manage TXC in the browser. Non-custodial.
TXC Swap
On/off-ramp between TXC, LTC, and other supported assets.
Layer 2 & Tokens
Issue tokens, browse the L2, and explore programmable assets on TXC.
Three layers, one network.
The base chain via mempool/Esplora, tokens via Omni Layer (the same stack CryptoPOP runs on), and content addressing via streamTXC. All public, all free, no API key.
Public REST endpoints for blocks, transactions, addresses, mempool, fees, mining stats, and broadcast. Mirrors the open-source mempool.space spec — most existing Bitcoin/Litecoin tooling works against it with a base-URL swap.
# Get the latest block curl https://mempool.texitcoin.org/api/blocks | jq '.[0]' # Network hashrate curl https://mempool.texitcoin.org/api/v1/mining/hashrate/3d # Recommended fees (sat/vB) curl https://mempool.texitcoin.org/api/v1/fees/recommended # Address balance curl https://mempool.texitcoin.org/api/address/<txc_address> # Broadcast a signed tx curl -X POST -d '<rawtx_hex>' \ https://mempool.texitcoin.org/api/tx
- GET
/api/blocksLatest 10 confirmed blocks (height, timestamp, tx count, size, difficulty). - GET
/api/block/:hashFull block details by block hash. - GET
/api/block-height/:heightLook up a block hash by its height. - GET
/api/tx/:txidTransaction details, inputs/outputs, and confirmation status. - GET
/api/address/:addressAddress summary: balance, tx count, and chain stats. - GET
/api/address/:address/txsTransaction history for any address (paginated). - GET
/api/mempoolLive mempool size, fee histogram, and pending tx count. - GET
/api/v1/fees/recommendedFee recommendations: fastest, half-hour, hour, economy. - GET
/api/v1/mining/hashrate/3dNetwork hashrate samples — perfect for charts and dashboards. - GET
/api/v1/mining/pools/1wMining pool distribution and block counts. - GET
/api/v1/difficulty-adjustmentProgress toward the next difficulty retarget. - POST
/api/txBroadcast a signed raw transaction to the network.
Ship something on a network built for builders.
Got a tool, integration, or app running on TXC? We'll list it here.