/Building on Netrun/Getting Started

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/cli

Step 2: Initialize a Project

mkdir my-netrun-project
cd my-netrun-project
netrun init

Step 3: Connect Your Wallet

netrun wallet connect

Follow 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