Getting Started with Netrun
This guide will walk you through setting up your development environment and creating your first programmable asset on Netrun.
Prerequisites
- —Node.js 18+ or Rust 1.70+
- —A Solana wallet (Phantom, Solflare, or Backpack recommended)
- —Some SOL for transaction fees
Step 1: Install the CLI
npm install -g @netrun/cliStep 2: Initialize a Project
mkdir my-netrun-project cd my-netrun-project netrun init
Step 3: Connect Your Wallet
netrun wallet connectFollow the prompts to connect your Solana wallet to the CLI.
Step 4: Create Your First Asset
netrun create asset --name "My First Asset"Tip
Use --network devnet for testing before deploying to mainnet.
Next Steps
- —Explore the SDK documentation for programmatic access
- —Learn about modules and how to build on them
- —Join the community to connect with other builders