All Projects → LedgerHQ → Ledger Live Mobile

LedgerHQ / Ledger Live Mobile

Licence: apache-2.0
Ledger Live (Mobile)

Projects that are alternatives of or similar to Ledger Live Mobile

Bcoin
Javascript bitcoin library for node.js and browsers
Stars: ✭ 2,625 (+1017.02%)
Mutual labels:  cryptocurrency, wallet
Multicurrencywallet
Bitcoin, Ethereum, ERC20 crypto wallets with Atomic Swap exchange. Release announce: https://twitter.com/SwapOnlineTeam/status/1321844352369500160
Stars: ✭ 136 (-42.13%)
Mutual labels:  cryptocurrency, wallet
Raiwebwallet
Raiblocks raiwallet.com wallet source code
Stars: ✭ 113 (-51.91%)
Mutual labels:  cryptocurrency, wallet
Esteem Surfer
Ecency desktop formerly known as Esteem Surfer - reimagined desktop social wallet, contribute and get rewarded (for Windows, Mac, Linux)
Stars: ✭ 100 (-57.45%)
Mutual labels:  cryptocurrency, wallet
Unstoppable Wallet Ios
A secure and decentralized Bitcoin and other cryptocurrency wallet for iPhone. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 180 (-23.4%)
Mutual labels:  cryptocurrency, wallet
Beancounter
Utility to audit the balance of Hierarchical Deterministic (HD) wallets. Supports multisig + segwit wallets.
Stars: ✭ 109 (-53.62%)
Mutual labels:  cryptocurrency, wallet
Monero Python
A comprehensive Python module for handling Monero cryptocurrency
Stars: ✭ 122 (-48.09%)
Mutual labels:  cryptocurrency, wallet
Cated
CATEd - Cryptocurrency Analytics and Trading Engine for Django
Stars: ✭ 84 (-64.26%)
Mutual labels:  cryptocurrency, wallet
Unstoppable Wallet Android
A secure and decentralized Bitcoin and other cryptocurrency wallet for Android phones. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 165 (-29.79%)
Mutual labels:  cryptocurrency, wallet
Canoe
Canoe is a Nano Wallet heavily based on the MIT licensed Copay wallet from Bitpay
Stars: ✭ 146 (-37.87%)
Mutual labels:  cryptocurrency, wallet
Etherwalletkit
Ethereum Wallet Toolkit for iOS - You can implement an Ethereum wallet without a server and blockchain knowledge.
Stars: ✭ 96 (-59.15%)
Mutual labels:  cryptocurrency, wallet
Wallet713
A wallet that makes it easy to send, store, and swap Grin.
Stars: ✭ 198 (-15.74%)
Mutual labels:  cryptocurrency, wallet
Guarda Android Wallets
Mobile cryptocurrency wallets for Android
Stars: ✭ 95 (-59.57%)
Mutual labels:  cryptocurrency, wallet
Stacks Wallet
Stacks Wallet—Send and receive STX tokens on the Stacks Blockchain.
Stars: ✭ 112 (-52.34%)
Mutual labels:  cryptocurrency, wallet
Eltwallet
Non-custodial decentralized mobile wallet
Stars: ✭ 88 (-62.55%)
Mutual labels:  cryptocurrency, wallet
Solar
🌞 Stellar wallet. Secure and user-friendly.
Stars: ✭ 117 (-50.21%)
Mutual labels:  cryptocurrency, wallet
Mobile Wallet
📲 Multi Platform ARK Mobile Wallet
Stars: ✭ 76 (-67.66%)
Mutual labels:  cryptocurrency, wallet
Airgap Wallet
The AirGap Wallet is installed on an everyday smartphone. This app has only access to public information.
Stars: ✭ 78 (-66.81%)
Mutual labels:  cryptocurrency, wallet
Peatiocryptoexchange
An open-source Crypto-Currency exchange. Peatio v3.0 Coming Soon !
Stars: ✭ 141 (-40%)
Mutual labels:  cryptocurrency, wallet
Zold
An Experimental Non-Blockchain Cryptocurrency for Fast Micro Payments
Stars: ✭ 183 (-22.13%)
Mutual labels:  cryptocurrency, wallet

ledger-live-mobile

Ledger Live is a mobile companion app for Ledger hardware wallets. It allows users to manage their crypto assets securely, such as Bitcoin, Ethereum, XRP and many others. Ledger Live mobile is available for iOS and Android.

Architecture

Ledger Live is a native mobile application built with React Native, React, Redux, RxJS, etc. and some native libraries. The architecture is analog to the desktop application and also uses our C++ library, lib-ledger-core, to deal with blockchains (sync, broadcast...) via ledger-core-react-native-bindings. It communicates with the Ledger Nano X via Bluetooth (or USB for using the Ledger Nano S on Android) to manage installed applications, update the device firmware, verify public addresses and sign transactions with ledgerjs. We also share some logic in live-common.

Developing on ledger-live-mobile

Pre-requisites

  • Node LTS version
  • Yarn 1.10.1 or above

iOS

  • XCode

Android

  • Android Studio

Scripts

yarn install

install dependencies.

yarn start

Runs your app in development mode.

Sometimes you may need to reset or clear the React Native packager's cache. To do so, you can pass the --reset-cache flag to the start script:

yarn start -- --reset-cache

yarn test

yarn run ios

or open ios/ledgerlivemobile.xcworkspace

yarn run android

or open android/ in Android Studio.

yarn android:clean

Delete the application data for Ledger Live Mobile, equivalent to doing it manually through settings

yarn android:import importDataString

Passing a base64 encoded export string (the export from desktop) will trigger an import activity and allow easy data setting for development.

Environment variables

Optional environment variables you can put in .env, .env.production or .env.staging for debug, release, or staging release builds respectively.

DEVICE_PROXY_URL=http://localhost:8435   # enable a dev mode to use the device over HTTP. use with https://github.com/LedgerHQ/ledgerjs/tree/master/packages/hw-http-proxy-devserver
BRIDGESTREAM_DATA=...       # come from console.log of the desktop app during the qrcode export. allow to bypass the bridgestream scanning
DEBUG_RNDEBUGGER=1          # enable react native debugger
DISABLE_READ_ONLY=1         # disables readonly mode by default

Maintenance

Refresh the flow-typed from flow-typed Github

yarn sync-flowtyped

Refresh the languages (when we add new languages)

yarn sync-locales

Debugging

Javascript / React

It's recommended to use react-native-debugger instead of Chrome dev tools as it features some additional React and Redux panels.

  • Get the react-native-debugger app from the official repo
  • Run it
  • Run Ledger Live Mobile in debug mode (yarn ios or yarn android)
  • Open React Native Development menu (shake gesture)
  • Chose Enable Remote JS Debugging

Keep in mind that doing so will run your Javascript code on a Chromium JS engine (V8) on your computer, instead of iOS' system JS engine (JavaScript Core), or our bundled JS engine (JSC for now, soon to be replaced with Hermes) on Android.

Native code

XCode / Android studio

Run the app from the Apple or Google own IDE to get some native debugging features like breakpoints etc.

And more

Flipper 🐬

Flipper has been integrated in the project, so you can use it to get additional debugging information (like network monitoring) and find other useful data you could previously get from scattered places, here neatly presented in a single interface (like logs and crash reports for both platforms).

React Native integration seems pretty bleeding edge right now, so don't expect everything to work just yet.

  • Install Flipper on your computer
  • Launch it 🚀
  • Run Ledger Live Mobile in debug as usual
  • No need to enable remote debug!

Extra Docs 📄

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].