RADIX WikiRADIX Wiki

Introduction

Building on Radix asks you to unlearn one habit before anything else works. On most networks a token is a number your contract keeps in a mapping, and moving it means writing code that decrements one entry and increments another. On Radix the engine owns the asset. A resource moves between vaults through the engine’s own rules, and a blueprint that tries to lose it will not compile into a transaction that commits.

That single change removes a category of bug rather than a line of code, and it is why the learning path below starts with resources rather than with syntax.

Agents

The newest branch here is for software that acts on its own behalf. Radix Context and Radix Skills package the protocol’s documentation for coding agents, and x402 payments covers the emerging way an agent pays for a request it has just been refused. Radix’s subintents make that pattern unusually clean, because a client can commit to an exact payment without holding the XRD to pay the network fee.

What to expect

Scrypto is Rust, so the borrow checker is part of the job and the compile times are real. In exchange, most of what a Solidity audit looks for is unrepresentable: there is no reentrancy path through a resource transfer, no approve-and-drain, and no way to mint an asset a blueprint was not authorized to mint. Whether that trade suits a given project is a judgment about the team as much as the protocol, and it is worth making before the first blueprint rather than after.

Official documentation

API specifications

SDKs and libraries

Scrypto crates

  • scrypto-math – high-precision math (exp, ln, pow) for Scrypto.

  • scrypto-avltree – an on-ledger AVL tree data structure.

  • RRC-404 (ice_rrc404v1) – a hybrid fungible/non-fungible token standard for Radix, with a reference implementation in Scrypto.

Community tools and explorers

As the Radix Foundation winds down, much developer infrastructure is now community-hosted. The following are actively maintained; the Tools section covers several of them at length.

  • RadixScan Console – developer console and step-by-step Manifest Builder that sends transactions straight to your wallet (switches between Mainnet and Stokenet).

  • RadixScan Dashboard – account, resource, and transaction explorer.

  • GenkiPool Community Tools – wallet connection, batched transactions, and one-transaction staking/unstaking across multiple validators.

  • ShardSpace – create and manage dApp definitions (Mainnet and Stokenet).

  • Instruct (app) – visual transaction manifest builder for Mainnet and Stokenet, from The Radix Billboard team.

  • Hookah (GitHub) – a self-hostable Radix event-monitoring and webhook-delivery platform (MIT-licensed): register triggers on on-ledger events and receive webhook callbacks when matching events appear in the transaction stream. Runs as a hosted service at hookah.ing.

  • Radix Desktop Tool (GitHub) – open-source MIT desktop utility for batched single→multiple and multiple→multiple token transfers.

For agents

The AI Agents section covers these in depth; what follows are the endpoints and indexes themselves.

  • RadixScan Agent Layer – keyless MCP server for reading the ledger and building, validating, and simulating manifests (non-custodial; signing happens in the wallet).

  • RADIX.wiki MCP Server – this wiki’s own keyless MCP endpoint at radix.wiki/api/mcp, plus llms.txt, markdown twins and a ROLA-gated write path.

  • Awesome Radix MCP Servers – curated index of Radix MCP servers.

  • x402 – the open HTTP-402 payment standard for AI agents and APIs; multi-chain implementation with Radix support in development.

Hyperscale (Xi’an)

Hyperscale is the in-progress sharded execution layer for Radix’s Xi’an release, written in Rust, and the most active area of protocol development. It is expected to run a purpose-built VM written from scratch rather than a sharded Radix Engine, with the migration cost for existing dApps put at best case a recompile, worst case an automatic source transpiler. The wiki’s account is at hyperscale-rs.

  • hyperscale-rs – the implementation, including the POLARIS leaderless BFT beacon-chain prototype.

  • Web3 Modules: Hyperscale – community learning notes on the architecture.

  • Learn-Hyperscale-rs – community guides and flowcharts for Rust and distributed systems with Hyperscale-RS.

Community and funding

HydrateLast updated Sep 3, 2026v3.3.013 revisions