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
  1. Vistara Components
  2. What is Vimana?

API Reference

PreviousWhat is Vimana?NextWhat are Spacecores?

Last updated 11 months ago

Github:

Syntax: vimana run [NODE_TYPE] [OPTIONS]

Example:

vimana run celestia light-node
vimana run celestia bridge-node

Launch via service: service creation for light-node

tee /etc/systemd/system/vinama.service > /dev/null <<EOF
[Unit]
Description=Vinama
After=network.target
[Service]
Type=simple
User=$USER
ExecStart=vimana run celestia light-node
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF

launch

systemctl daemon-reload
systemctl enable vinama
systemctl restart vinama && journalctl -u vinama -f -o cat

service creation for bridge-node

tee /etc/systemd/system/vinama-bridge.service > /dev/null <<EOF
[Unit]
Description=Vinama
After=network.target
[Service]
Type=simple
User=$USER
ExecStart=vimana run celestia bridge-node
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF

launch

systemctl daemon-reload
systemctl enable vinama-bridge
systemctl restart vinama-bridge && journalctl -u vinama-bridge -f -o cat

πŸ›°οΈ
https://github.com/Vistara-Labs/vimana/blob/main/CREATE_COMPONENT.md