Radiant Blockchain: Ecosystem Introduction

Version 1.1 Last Updated: February 2026

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

FeatureDescription
ConsensusSHA512/256 Proof-of-Work
Block Time5 minutes
Block Size256 MB
Max Supply21,000,000,000 RXD
Decimals8 (like Bitcoin)
Block Reward25,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:

2. Native Script Capabilities

Radiant extends Bitcoin's script language with:

3. Performance at Scale


The Glyph Token Standard

Glyph is Radiant's native token protocol, enabling:

Token TypeUse Cases
Fungible Tokens (FT)Currencies, points, shares, voting tokens
Non-Fungible Tokens (NFT)Art, collectibles, tickets, certificates
Data Tokens (DAT)Timestamps, attestations, anchors
ContainersNFT collections, albums, bundles

Glyph v2 Features


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

ComponentDescriptionLink
Radiant-CoreFull node implementationGitHub
ElectrumXElectrum server for light clientsGitHub
Block ExplorersView transactions and tokensradiantexplorer.com

Development Tools

ToolPurposeLink
radiantjsJavaScript/TypeScript SDKGitHub
RadiantScriptSmart contract languageGitHub
rxdebScript debuggerGitHub
constantsShared protocol constantsGitHub
radiant-mcp-serverAI integration (MCP + REST API)GitHub

Wallets

WalletPlatformFeatures
Photonic WalletWeb, Desktop (Tauri)Glyph tokens, minting, IPFS
Electron WalletDesktop, MobileTraditional wallet, multi-platform
ChainbowMobile (Android/iOS)User-friendly mobile wallet
TangemHardwareCold storage support

Applications

AppPurposeStatus
Glyph-minerMine Glyph tokensBeta
RadiantMMDecentralized exchangeDevelopment
radiant-node-helperNode management UIStable

Getting Started

For Users

  1. Get a Wallet
  2. Get Some RXD
  3. Explore

For Miners

  1. Choose Mining Software — NVIDIA: CCMiner, BZMiner, Rigel. AMD: SRBMiner, Wildrig. Browser: Glyph-miner WebGPU
  2. Join a PoolVipor, K1pool, Woolypooly
  3. Start Mining — See Mining Guide

For Developers

  1. Set Up Development Environment
    npm install @radiantblockchain/radiantjs
    npm install @radiantblockchain/constants
  2. Run a Node
    docker run -d --name radiant-node \
      -p 7332:7332 -p 7333:7333 \
      radiant-core:latest
  3. Write Smart Contracts — See Developer Guide

Network Parameters

Mainnet

ParameterValue
P2P Port7333
RPC Port7332
Address Prefix1... (P2PKH)
Magic Bytes0xe3e1f3e8

Testnet

ParameterValue
P2P Port17333
RPC Port17332
Address Prefixm... or n...

ElectrumX Servers (Mainnet)

ServerTCPSSL
electrumx.radiantexplorer.com5001050012
electrumx.radiantblockchain.org5001050012
electrumx.radiant4people.com5001050012

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)

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

FeatureRadiantBitcoinEthereumSolana
ModelUTXOUTXOAccountAccount
ConsensusPoWPoWPoSPoS
Block Time5 min10 min12 sec400 ms
Smart ContractsScriptScriptEVMSVM
TokensNative (Glyph)OrdinalsERC-20SPL
ScalabilityOn-chainLimitedL2On-chain

Community & Resources

Official Channels

PlatformLink
Websiteradiantblockchain.org
Discorddiscord.gg/radiantblockchain
Telegramt.me/RadiantBlockchain
Twitter/X@RXD_Community
Redditr/Radiant_RXD

Development Resources

ResourceLink
Radiant-Core GitHubgithub.com/Radiant-Core
Community GitHubgithub.com/RadiantBlockchain-Community
REP Proposalsgithub.com/Radiant-Core/REP
Whitepaperradiantblockchain.org/radiant.pdf

Roadmap Highlights

Completed

In Progress

Planned


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.