Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.lasersell.io/llms.txt

Use this file to discover all available pages before exploring further.

Quick Install

The fastest way to install on any platform:
curl -fsSL https://dl.lasersell.io/install.sh | bash
lasersell --version
If that works, skip to the Quickstart. Platform-specific options are below.

Platform Guides

curl -fsSL https://dl.lasersell.io/install.sh | bash

Manual APT setup

curl -fsSL https://dl.lasersell.io/KEY.gpg | sudo gpg --dearmor -o /usr/share/keyrings/lasersell-archive-keyring.gpg
ARCH="$(dpkg --print-architecture)"
echo "deb [arch=${ARCH} signed-by=/usr/share/keyrings/lasersell-archive-keyring.gpg] https://dl.lasersell.io stable main" | sudo tee /etc/apt/sources.list.d/lasersell.list > /dev/null
sudo apt update
sudo apt install lasersell

Upgrading

MethodCommand
APTsudo apt update && sudo apt install lasersell
Homebrewbrew upgrade lasersell
install.sh / TarballRerun curl -fsSL https://dl.lasersell.io/install.sh | bash
Dockerdocker pull lasersell/lasersell

CLI Flags

FlagShortDescription
--setupForce-run the onboarding wizard
--config <path>-fPath to a custom config file
--debugWrite debug-level logs to ~/.lasersell/debug.log
--smokeRun a connectivity health check and exit
--export-private-keyExport your wallet’s base58 private key to stdout
--smoke, --setup, and --export-private-key are mutually exclusive.