You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
meriadec d7eccc8046
Push transaction script & skeleton of sync
7 years ago
.circleci Integrate live-common library 7 years ago
.storybook Integrate countervalues changes 7 years ago
build Add Linux requirements in README. Add Linux icon. 7 years ago
flow-defs Add flow test globals 7 years ago
scripts Fix flow for react-redux 7 years ago
src Push transaction script & skeleton of sync 7 years ago
static Integrate exchange page 7 years ago
webpack Improved AddAccount Modal 7 years ago
.babelrc Use REAL babel.config in electron-webpack 7 years ago
.eslintrc Fix flow for react-redux 7 years ago
.flowconfig Add IsUnlocked, and simple application reducer 7 years ago
.gitignore refactor icons to move react element into constants 7 years ago
.prettierignore Reverse transactions in accounts reducers 7 years ago
.prettierrc init 🎉 7 years ago
LICENSE Add LICENSE 7 years ago
README.md Push transaction script & skeleton of sync 7 years ago
alix.js Push transaction script & skeleton of sync 7 years ago
babel.config.js Use REAL babel.config in electron-webpack 7 years ago
crowdin.yml crowdin config 7 years ago
electron-builder.yml Ledger Wallet Desktop -> Ledger Live 7 years ago
jest.config.js Fix jest config 7 years ago
package.json Remove ledger-test-library. Prepare sync. 7 years ago
yarn.lock Push transaction script & skeleton of sync 7 years ago

README.md

Ledger Live - Desktop

CircleCI Crowdin

⚠️ Disclaimer: this project is under active development. Use at your own risks.

Installation

Requirements

Project has been tested under NodeJS v9.3.0, with Yarn v1.3.0 and Python v2.7.10 (used by node-gyp to build native addons). You will also need a C++ compiler.

Setup

  1. Install dependencies
yarn
  1. Create .env file
# ENV VARIABLES
# -------------

# Where errors will be tracked
SENTRY_URL=http://...

# OPTIONAL ENV VARIABLES
# ----------------------

# Developer tools position (used only in dev)
# can be one of: right, bottom, undocked, detach
DEV_TOOLS_MODE=bottom

# Filter debug output
DEBUG=lwd*,-lwd:syncb

# hide the dev window
HIDE_DEV_WINDOW=0

Development commands

# Launch the app
yarn start

# Launch the storybook
yarn storybook

# Code quality checks
yarn lint                # launch eslint
yarn prettier            # launch prettier
yarn flow                # launch flow
yarn test                # launch unit tests

Building from source

# Build & package the whole app
# Creates a .dmg for Mac, .exe installer for Windows, or .AppImage for Linux
# Output files will be created in dist/ folder
yarn dist

Note: Use yarn dist:dir to speed up the process: it will skip the packaging step. Handy for debugging builds. You can also use BUNDLE_ANALYZER=1 yarn dist:dir to generate webpack-bundle-analyzer report.

License

The MIT License

Copyright (c) 2017-present Ledger https://www.ledgerwallet.com/

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.