Lux Docs

Wallet Installation

Install Lux Wallet

Go SDK

Add the wallet package to your Go module:

go get github.com/luxfi/sdk@latest

The wallet is part of the unified SDK. Import it as:

import "github.com/luxfi/sdk/wallet"
import "github.com/luxfi/sdk/key"

Build from Source

git clone https://github.com/luxfi/sdk.git
cd sdk
go build ./...
go test ./...

Web Wallet

The web-based wallet requires no installation. Visit wallet.lux.network in any modern browser.

Supported browsers:

BrowserVersion
Chrome90+
Firefox88+
Safari14+
Edge90+

Hardware Wallet

For Ledger hardware wallet support, install the Lux app on your Ledger device via Ledger Live:

  1. Open Ledger Live
  2. Go to Manager
  3. Search for "Lux"
  4. Install the Lux app

Connect the Ledger via USB and ensure the Lux app is open before using the wallet.

Dependencies

The Go SDK wallet depends on:

PackagePurpose
github.com/luxfi/cryptoCryptographic operations
github.com/luxfi/idsID and address types
github.com/luxfi/crypto/blsBLS key generation

On this page