What is Radiant?
Radiant (RXD) is a Layer 1 proof-of-work blockchain designed for digital assets and instant payments. Built on the foundations of Bitcoin's UTXO model, Radiant introduces unique innovations that enable true digital ownership without requiring smart contract virtual machines.
Key Characteristics
| Feature | Description |
| Consensus | SHA512/256 Proof-of-Work |
| Block Time | 5 minutes |
| Block Size | 256 MB |
| Max Supply | 21,000,000,000 RXD |
| Decimals | 8 (like Bitcoin) |
| Block Reward | 25,000 RXD (halving every 210,000 blocks) |
Why Radiant?
1. True Digital Ownership
Unlike account-based blockchains, Radiant uses the UTXO model enhanced with induction proofs and a reference system. This enables:
- Verifiable Authenticity: Every token has a traceable origin
- No Counterfeits: References provide cryptographic proof of ownership
- Scalable Assets: Millions of unique tokens without global state
2. Native Script Capabilities
Radiant extends Bitcoin's script language with:
- 64-bit Arithmetic: Native support for large numbers
- Transaction Introspection: Scripts can inspect their own transaction
- Reference Opcodes: Track and validate token authenticity
- State Separators: Enable stateful contracts
- V2 Hash Opcodes (Block 410,000+): OP_BLAKE3 and OP_K12 for on-chain proof-of-work validation
- Bitwise Shifts (Block 410,000+): OP_LSHIFT and OP_RSHIFT for on-chain difficulty adjustment
- Induction Proofs: O(1) provenance verification via references and TxId v3 preimage
- Transaction State (
OP_PUSH_TX_STATE): Access txid, total input/output values for fee verification and self-referencing contracts
3. Performance at Scale
- High Throughput: 256 MB blocks support massive transaction volumes
- Low Fees: Economically viable for micro-transactions
- Instant Confirmation: Transactions propagate in seconds (0-conf safe for small amounts)
The Glyph Token Standard
Glyph is Radiant's native token protocol, enabling:
| Token Type | Use Cases |
| Fungible Tokens (FT) | Currencies, points, shares, voting tokens |
| Non-Fungible Tokens (NFT) | Art, collectibles, tickets, certificates |
| Data Tokens (DAT) | Timestamps, attestations, anchors |
| Containers | NFT collections, albums, bundles |
Glyph v2 Features
- On-chain Royalties: Enforce creator royalties at the script level
- Decentralized Minting (dMint): Proof-of-work token distribution
- Encrypted Content: Private content with on-chain keys
- Mutable State: Updateable NFT metadata
- WAVE Naming: Blockchain-native DNS alternative
Ecosystem Overview
┌─────────────────────────────────────────────────────────────────┐
│ RADIANT ECOSYSTEM │
├─────────────────────────────────────────────────────────────────┤
│ │
│ ┌────────────────────────────────────────────────────────────┐ │
│ │ INFRASTRUCTURE LAYER │ │
│ │ │ │
│ │ ┌─────────────┐ ┌─────────────┐ ┌─────────────────────┐ │ │
│ │ │Radiant-Core │ │ ElectrumX │ │ Block Explorers │ │ │
│ │ │(Full Node) │ │ (Indexer) │ │ (radiantexplorer) │ │ │
│ │ └─────────────┘ └─────────────┘ └─────────────────────┘ │ │
│ └────────────────────────────────────────────────────────────┘ │
│ │
│ ┌────────────────────────────────────────────────────────────┐ │
│ │ DEVELOPMENT LAYER │ │
│ │ │ │
│ │ ┌─────────────┐ ┌─────────────┐ ┌─────────────────────┐ │ │
│ │ │ radiantjs │ │RadiantScript│ │ rxdeb │ │ │
│ │ │ (JS SDK) │ │ (Compiler) │ │ (Debugger) │ │ │
│ │ └─────────────┘ └─────────────┘ └─────────────────────┘ │ │
│ └────────────────────────────────────────────────────────────┘ │
│ │
│ ┌────────────────────────────────────────────────────────────┐ │
│ │ APPLICATION LAYER │ │
│ │ │ │
│ │ ┌─────────────┐ ┌─────────────┐ ┌─────────────────────┐ │ │
│ │ │ Photonic │ │ Glyph-miner │ │ RadiantMM │ │ │
│ │ │ (Wallet) │ │ (Mining) │ │ (DEX) │ │ │
│ │ └─────────────┘ └─────────────┘ └─────────────────────┘ │ │
│ └────────────────────────────────────────────────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────────┘
Core Components
Infrastructure
| Component | Description | Link |
| Radiant-Core | Full node implementation | GitHub |
| ElectrumX | Electrum server for light clients | GitHub |
| Block Explorers | View transactions and tokens | radiantexplorer.com |
Development Tools
| Tool | Purpose | Link |
| radiantjs | JavaScript/TypeScript SDK | GitHub |
| RadiantScript | Smart contract language | GitHub |
| rxdeb | Script debugger | GitHub |
| constants | Shared protocol constants | GitHub |
| radiant-mcp-server | AI integration (MCP + REST API) | GitHub |
Wallets
| Wallet | Platform | Features |
| Photonic Wallet | Web, Desktop (Tauri) | Glyph tokens, minting, IPFS |
| Electron Wallet | Desktop, Mobile | Traditional wallet, multi-platform |
| Chainbow | Mobile (Android/iOS) | User-friendly mobile wallet |
| Tangem | Hardware | Cold storage support |
Applications
| App | Purpose | Status |
| Glyph-miner | Mine Glyph tokens | Beta |
| RadiantMM | Decentralized exchange | Development |
| radiant-node-helper | Node management UI | Stable |
Getting Started
For Users
- Get a Wallet
- Get Some RXD
- Explore
For Miners
- Choose Mining Software — NVIDIA: CCMiner, BZMiner, Rigel. AMD: SRBMiner, Wildrig. Browser: Glyph-miner WebGPU
- Join a Pool — Vipor, K1pool, Woolypooly
- Start Mining — See Mining Guide
For Developers
- Set Up Development Environment
npm install @radiantblockchain/radiantjs
npm install @radiantblockchain/constants
- Run a Node
docker run -d --name radiant-node \
-p 7332:7332 -p 7333:7333 \
radiant-core:latest
- Write Smart Contracts — See Developer Guide
Network Parameters
Mainnet
| Parameter | Value |
| P2P Port | 7333 |
| RPC Port | 7332 |
| Address Prefix | 1... (P2PKH) |
| Magic Bytes | 0xe3e1f3e8 |
Testnet
| Parameter | Value |
| P2P Port | 17333 |
| RPC Port | 17332 |
| Address Prefix | m... or n... |
ElectrumX Servers (Mainnet)
| Server | TCP | SSL |
| electrumx.radiantexplorer.com | 50010 | 50012 |
| electrumx.radiantblockchain.org | 50010 | 50012 |
| electrumx.radiant4people.com | 50010 | 50012 |
Unique Technical Features
1. Reference System
Radiant's reference system provides unique token identification:
OP_PUSHINPUTREF <36-byte-ref> # Normal reference (FT)
OP_PUSHINPUTREFSINGLETON <36-byte-ref> # Singleton reference (NFT)
- Normal References: Track fungible token supply
- Singleton References: Ensure NFT uniqueness
2. Transaction Introspection
Scripts can inspect their transaction context:
OP_INPUTINDEX # Current input being evaluated
OP_TXINPUTCOUNT # Number of inputs
OP_TXOUTPUTCOUNT # Number of outputs
OP_UTXOVALUE # Value of a UTXO
OP_OUTPUTVALUE # Value of an output
OP_OUTPUTBYTECODE # Locking script of an output
3. State Management
Contracts can maintain state across transactions:
<state_data>
OP_STATESEPARATOR
<code_script>
4. 64-bit Arithmetic
Full 64-bit signed integer operations:
OP_MUL # Multiplication
OP_DIV # Division
OP_MOD # Modulo
Comparison with Other Blockchains
| Feature | Radiant | Bitcoin | Ethereum | Solana |
| Model | UTXO | UTXO | Account | Account |
| Consensus | PoW | PoW | PoS | PoS |
| Block Time | 5 min | 10 min | 12 sec | 400 ms |
| Smart Contracts | Script | Script | EVM | SVM |
| Tokens | Native (Glyph) | Ordinals | ERC-20 | SPL |
| Scalability | On-chain | Limited | L2 | On-chain |
Official Channels
Development Resources
Roadmap Highlights
Completed
- Mainnet launch with SHA512/256 PoW
- Glyph v1 token standard
- Photonic Wallet release
- ElectrumX with RocksDB support
- RadiantScript compiler
- Radiant Core 2.1.0 (February 2026) — V2 Hard Fork: 6 new/re-enabled opcodes, activation at Block 410,000
- Glyph v2 token standard (whitepaper draft-8, Release Candidate)
- Multi-algorithm dMint mining (Blake3, K12 — on-chain PoW validation)
- AI Integration (radiant-mcp-server: 56 MCP tools, REST API, Agent SDK)
- Induction proof support in RadiantScript
In Progress
- RadiantMM decentralized exchange
- WAVE naming system
- RXinDexer per-holder balance tracking
Planned
- Mobile SDK development
- Hardware wallet integrations
- Layer 2 scaling solutions
- Cross-chain bridges
Conclusion
Radiant represents a unique approach to blockchain scalability and digital assets. By building on Bitcoin's proven UTXO model while adding native token capabilities and advanced scripting, Radiant enables a new generation of decentralized applications.
Whether you're a user looking to explore digital assets, a miner seeking opportunities, or a developer building the future of finance, Radiant provides the tools and infrastructure you need.
For questions and support, join our Discord community.