Skip to content

Limitless-VIP/limitless-paper-wallet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

paper_wallet

Limitless VIP Paper Wallet - It is an offline wallet, regarded as cold storage. It is recommended that you run it locally on your computer instead of generating the keys directly on the site. For the extra paranoid; you can run the generator and print the wallets using a secure offline environment and correctly wipe the environment and printer memory after use.

Installation

To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:

# Clone this repository
git clone https://github.com/Limitless-VIP/limitless-paper-wallet

# Go into the repository
cd limitless-paper-wallet

# Install dependencies
npm install

# Run the app
npm start

Build

npm install
electron-packager . Limitless-Paper-Wallet --overwrite --platform=darwin --arch=x64 --icon=build/icon.icns --prune=true --out=release-builds
electron-packager . Limitless-Paper-Wallet --overwrite --asar --platform=linux --arch=ia32 --icon=build/android-icon-192x192.png --prune=true --out=release-builds
electron-packager . Limitless-Paper-Wallet --overwrite --asar --platform=linux --arch=x64 --icon=build/android-icon-192x192.png --prune=true --out=release-builds
electron-packager . Limitless-Paper-Wallet --overwrite --asar --platform=linux --arch=arm64 --icon=build/android-icon-192x192.png --prune=true --out=release-builds
electron-packager . Limitless-Paper-Wallet --overwrite --asar --platform=win32 --arch=ia32 --icon=build/icon-128x128.ico --prune=true --out=release-builds --version-string.CompanyName=Limitless-Cryptocurrency --version-string.FileDescription=Limitless-Paper-Wallet --version-string.ProductName=Limitless-Paper-Wallet
electron-packager . Limitless --overwrite --asar --platform=win32 --arch=x64 --icon=build/icon-128x128.ico --prune=true --out=release-builds --version-string.CompanyName=Limitless-Cryptocurrency --version-string.FileDescription=Limitless-Paper-Wallet --version-string.ProductName=Limitless-Paper-Wallet

Note: If you're using Linux Bash for Windows, see this guide or use node from the command prompt.

Resources for learning Electron