Vistara
  • πŸ‘‹Welcome to Vistara
  • Overview
    • What is Vistara?
    • Vision for Vistara
    • Vistara Network
  • πŸ›°οΈVistara Components
    • What is Hypercore?
      • The Decentralized Hypervisor
    • What is Vimana?
      • API Reference
    • What are Spacecores?
  • πŸ“–Guides
    • Getting Started
    • Building a Spacecore
    • Confidentiality and Verifiability
      • Decentralized approaches
      • What can you do with Vistara?
      • How do we implement it?
  • Blueprints
    • EigenLayer AVSOps
    • Secure Enclaves
    • Open Compute for Morpheus
    • AI Inference Service
  • πŸ‘©β€πŸ’»Getting Involved
    • Contribute to Vistara
    • Community & Support
    • Ecosystem Collaborators
    • πŸ—ΊοΈOpportunities in Vistara
  • πŸŽ“Learn
    • The Decentralized Paradigm
    • Virtualization Demystified
    • Building Consensus
Powered by GitBook
On this page
  • Quick Start
  • Installation
  1. Guides

Getting Started

Vimana is an open-source project written in Go. It provides a CLI to launch spacecores on the decentralized network. This enables anyone to run different types of nodes seamlessly, e.g. light node, full node, bridge node, and RPCs for Berachain.

Quick Start

Open the terminal and run:

  curl -L https://vistara-labs.github.io/vimana/install.sh | bash && vimana init
  vimana run celestia light-node

Installation

Install Binary:

curl -L https://vistara-labs.github.io/vimana/install.sh | bash

Install from Source:

make build

Run Celestia light node:

vimana run celestia light-node

See options for a specific node type:

vimana run celestia light-node --help

Usage:
  vimana run celestia bridge-node [flags]

Flags:
  -h, --help             help for bridge-node
      --network string   Specifies the Celestia network (default "arabica")
      --rpc string       Specifies the Celestia RPC endpoint (default "consensus-validator.celestia-arabica-10.com")

You can pass in the network and rpc endpoint as flags, or default (arabica) is used if not specified.

vimana run celestia light-node --network arabica --rpc consensus-validator.celestia-arabica-10.com

PreviousWhat are Spacecores?NextBuilding a Spacecore

Last updated 11 months ago

πŸ“–