---
title: "Radix Developer Resources"
path: "/developers/radix-developer-resources"
bannerImage: "https://j9ytchrzkvqpcul7.public.blob.vercel-storage.com/14a1ad09-1409-4a90-9e3f-1514f7bd33e7.jpg"
version: "5.1.0"
author: "Hydrate"
createdAt: "2026-01-21T17:15:10.456Z"
updatedAt: "2026-06-28T10:15:49.319Z"
---

# Radix Developer Resources

A curated hub of documentation, tooling, SDKs, and community resources for developers building on Radix. Whether you are writing your first Scrypto blueprint or running production infrastructure, start here — then dive into the focused guides under [Getting Started](/developers/getting-started), [Scrypto](/developers/scrypto), [Transactions](/developers/transactions), [Frontend](/developers/frontend), and [Infrastructure](/developers/infrastructure).

## **✅ Quick Start**

The fastest way to start building is the official [Scrypto Starter](https://github.com/radixdlt/scrypto-starter) repository, which ships with a pre-configured VS Code Dev Container so you do not have to install the Rust toolchain manually. The full step-by-step path lives in the [Radix Documentation](https://docs.radixdlt.com/docs/getting-started).

1. $1
2. $1
3. $1
4. $1
5. $1
6. $1

## **🏁 Starter Pack**

Essential resources to help you build and grow your application on Radix:

1. $1
2. $1
3. $1
4. $1
5. $1
6. $1
7. $1

## **📚 Documentation**

- [Radix Technical Documentation](https://docs.radixdlt.com/docs) — the canonical docs site for the entire stack.

- [Scrypto: Learning Step-by-Step](https://docs.radixdlt.com/docs/learning-step-by-step) — from first blueprint to full dApp.

- [Radix Engine](https://docs.radixdlt.com/docs/engine-tech-docs) — the asset-oriented state machine that runs transactions.

- [Radix dApp Toolkit](https://docs.radixdlt.com/docs/dapp-toolkit) — Connect Button, Wallet SDK, and Gateway SDK in one interface.

- [ROLA (Radix Off-Ledger Auth)](https://docs.radixdlt.com/docs/rola-radix-off-ledger-auth) — prove wallet ownership for login.

- [Radix Engine Toolkit](https://docs.radixdlt.com/docs/radix-engine-toolkit) — manifest construction, SBOR, and address derivation.

- [Network APIs](https://docs.radixdlt.com/docs/network-apis) — Gateway, Core, and System API overview.

- [Radix Wallet](/contents/tech/core-protocols/radix-wallet) — wiki reference for the Babylon wallet.

## **🔌 APIs & Specs**

- [Gateway API Spec](https://docs.radixdlt.com/api-reference/gateway-api-specs.html) — read aggregated ledger state and submit transactions ([mainnet Swagger](https://mainnet.radixdlt.com/swagger/)).

- [Core API Spec](https://docs.radixdlt.com/api-reference/core-api-specs.html) — full-node API for integrators and the `/stream/transactions` event stream.

- [System API Spec](https://docs.radixdlt.com/api-reference/system-api-specs.html) — node operations and health.

## **📦 SDKs & Packages**

- [Radix dApp Toolkit](https://github.com/radixdlt/radix-dapp-toolkit) — the recommended front-end integration library (Connect Button + SDKs).

- [Gateway API SDK (npm)](https://www.npmjs.com/package/@radixdlt/babylon-gateway-api-sdk) — typed JS/TS client for the Gateway.

- [Core API SDK (npm)](https://www.npmjs.com/package/@radixdlt/babylon-core-api-sdk) — typed JS/TS client for the Core API.

- [ROLA (npm)](https://www.npmjs.com/package/@radixdlt/rola) — verify Radix Off-Ledger Auth signatures server-side.

- [scrypto](https://docs.rs/scrypto/latest/scrypto/index.html) / [scrypto-test](https://docs.rs/scrypto-test/latest/scrypto_test/) / [radix-engine](https://docs.rs/radix-engine/latest/radix_engine/) — Rust crates on docs.rs.

- [Radix Wallet Connector](https://chromewebstore.google.com/detail/radix-wallet-connector/bfeplaecgkoeckiidkgkmlllfbaeplgm) — browser extension that bridges dApps to the wallet.

## **🛠️ Community Tools & Explorers**

As the Radix Foundation winds down, much developer infrastructure is now community-hosted. The following tools are actively maintained by the community:

- [RadixScan Console](https://console.radixscan.io/) — developer console and step-by-step [Manifest Builder](https://console.radixscan.io/manifest-builder) that sends transactions straight to your wallet (switches between Mainnet and Stokenet).

- [RadixScan Dashboard](https://dashboard.radixscan.io/) — account, resource, and transaction explorer.

- [RadixScan Agent Layer](https://ai.radixscan.io/) — keyless [MCP server](https://ai.radixscan.io/llms.txt) for AI agents to read the ledger and build, validate, and simulate manifests (non-custodial; signing happens in the wallet).

- [GenkiPool Community Tools](https://radix-community.genkipool.com/) — wallet connection, batched transactions, and one-transaction staking/unstaking across multiple validators.

- [ShardSpace](https://shardspace.app/) — create and manage dApp definitions (Mainnet and Stokenet).

- [Radix Billboard](https://instruct.radixbillboard.com/) — visual transaction manifest builder.

## **🤖 Agentic & AI Development**

Radix is being built into a settlement layer for the agentic economy — AI agents that read on-chain state, build transactions, and pay for services. See the dedicated guide: [AI Agents & x402 Payments](/developers/infrastructure/ai-agents-and-x402).

- [x402](https://x402.org/) — the open HTTP-402 payment standard for AI agents and APIs; multi-chain [implementation](https://github.com/xstelea/x402) with Radix support in development.

- [RadixScan Agent Layer](https://ai.radixscan.io/) — keyless [MCP server](https://ai.radixscan.io/llms.txt) for reading the ledger and building, validating, and simulating manifests (non-custodial).

- [Awesome Radix MCP Servers](https://github.com/xstelea/awesome-radix-mcp-servers) — curated index of Radix MCP servers.

- [Radix Context](/developers/infrastructure/radix-context) & [Radix Skills](https://github.com/xstelea/radix-skills) — context files and installable skills that give coding agents Radix expertise.

- [AI Agent Wallet](https://t.me/agent_wallet_ai_radix) — open-source natural-language wallet SDK for agents (DEX, lending, staking).

## **⿻ Scrypto Libraries**

Open-source crates and libraries that extend Scrypto and the wider toolchain:

- [scrypto-math](https://github.com/ociswap/scrypto-math) — high-precision math (exp, ln, pow) for Scrypto.

- [scrypto-avltree](https://github.com/ociswap/scrypto-avltree) — an on-ledger AVL tree data structure.

- [ice_rrc404v1](https://github.com/aus87/ice_rrc404v1) — an RRC-404 style hybrid token/NFT implementation.

- [radix-web3.js](https://github.com/xstelea/radix-web3.js) — an Effect-native TypeScript toolkit; see the [SBOR “ez mode” docs](https://xstelea.github.io/radix-web3.js/sbor).

## **⚡ Hyperscale (Xi'an) Developer Resources**

Hyperscale is the in-progress sharded execution layer for Radix's Xi'an release, built in Rust. It is the most active area of protocol development. See the wiki overview at [hyperscale-rs](/contents/tech/research/hyperscale-rs).

- [POLARIS](https://github.com/flightofthefox/polaris) — the leaderless BFT beacon-chain prototype repository.

- [Web3 Modules: Hyperscale](https://pprogrammingg.github.io/web3_modules/hyperscale/index.html) — community learning notes on the Hyperscale architecture.

- [Learn-Hyperscale-rs](https://github.com/leomagal/Learn-Hyperscale-rs) — community guides and flowcharts for Rust and distributed systems with Hyperscale-RS.

<Infobox>

</Infobox>