File tree Expand file tree Collapse file tree 1 file changed +32
-1
lines changed
Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,41 @@ A secure wallet generator for Octra blockchain written in TypeScript using Bun's
1111- ** Web Interface** : Modern, responsive web UI
1212- ** Real-time Generation** : Streaming updates during wallet creation
1313- ** Auto-save** : Automatically saves generated wallets to disk
14+ - ** Cross-platform Executables** : Pre-built binaries for Linux, Windows, and macOS (x64 & ARM)
1415
1516## Installation
1617
17- ### Build from Source
18+ ### Option 1: Download Pre-built Executable (Recommended)
19+
20+ 1 . ** Download the latest release:**
21+ - Go to the [ Releases page] ( ../../releases )
22+ - Download the appropriate binary for your platform:
23+ - ` wallet-generator-linux-x64.tar.gz ` for Linux x64
24+ - ` wallet-generator-windows-x64.zip ` for Windows x64
25+ - ` wallet-generator-macos-x64.tar.gz ` for macOS Intel
26+ - ` wallet-generator-macos-arm64.tar.gz ` for macOS Apple Silicon
27+
28+ 2 . ** Extract and run:**
29+
30+ ** Linux/macOS:**
31+ ``` bash
32+ tar -xzf wallet-generator-* .tar.gz
33+ chmod +x wallet-generator
34+ # On macOS, you may need to remove quarantine flag to run unsigned binary:
35+ xattr -r -d com.apple.quarantine wallet-generator
36+ ./wallet-generator
37+ ```
38+
39+ ** Windows:**
40+ ``` bash
41+ # Extract the .zip file
42+ .\w allet-generator.exe
43+ ```
44+
45+ 3 . ** Open your browser:**
46+ Navigate to ` http://localhost:8888 `
47+
48+ ### Option 2: Build from Source
1849
19501 . ** Install Bun (if not already installed):**
2051
You can’t perform that action at this time.
0 commit comments