Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
'@typescript-eslint',
'rulesdir',
],
ignorePatterns: ['dist', 'es', 'src/apis', 'docs/api'],
ignorePatterns: ['dist', 'es', 'src/apis', 'docs/api', 'test/environment/ledger/browser'],
rules: {
'rulesdir/tsdoc-syntax': 'error',
'no-spaced-func': 'off',
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ coverage.*
site
/src/apis/
/tooling/autorest/compiler-swagger.yaml
/test/environment/ledger/browser
57 changes: 57 additions & 0 deletions docs/guides/ledger-wallet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Ledger Hardware Wallet

This guide explains basic interactions on getting access to aeternity accounts on Ledger Hardware Wallet using JS SDK.

## Prerequisite
Run the code from below you need:
- a Ledger Hardware Wallet like Ledger Nano X, Ledger Nano S
- to install [Ledger Live](https://www.ledger.com/ledger-live)
- to install aeternity@0.4.4 or above app from Ledger Live to HW
- to have Ledger HW connected to computer, unlocked, with aeternity app opened

## Usage
To work with accounts on Ledger HW firstly you need to choose a transport implementation. Ledger HW can be connected through USB or Bluetooth using a specific [NPM package](https://developers.ledger.com/docs/transport/choose-the-transport/).

After creating a transport instance you need to create a factory of Ledger accounts
```js
import { AccountLedgerFactory } from '@aeternity/aepp-sdk';

const accountFactory = new AccountLedgerFactory(transport);
```
Using the factory, you can create instances of specific accounts by providing an index
```js
const account = await accountFactory.initialize(0);
console.log(account.address); // 'ak_2dA...'
console.log(await account.signTransaction('tx_...')); // 'tx_...' (with signature added)
```
The private key for the account would be derived on the Ledger device using the provided index and the mnemonic phrase it was initialized with.

The complete examples of how to use it in nodejs and browser can be found [here](../../test/environment/ledger).

## Account verification
To protect from MITM attacks is it recommended to ensure that the accessed account is the account actually available on Ledger. To do so, the app should show to user the address it have access to, the same as Ledger HW should show the address on its screen, and user should ensure that addresses the same. To trigger verification process you need to use `getAddress` method
```js
await accountFactory.getAddress(<account index>, true)
```

## Account persistence
Account can be persisted and restored by saving values of `index`, `address` properties
```js
import { AccountLedger } from '@aeternity/aepp-sdk';

const accountIndex = accountToPersist.index;
const accountAddress = accountToPersist.address;

const restoredAccount = new AccountLedger(transport, accountIndex, accountAddress);
```
It can be used to remember accounts between app restarts.

## Account discovery
In addition to the above, it is possible to get access to a sequence of accounts that already have been used on chain. It is needed, for example, to restore the previously used accounts in case the user connects Ledger HW to an app that doesn't aware of them.
```js
import { Node } from '@aeternity/aepp-sdk';

const node = new Node('https://testnet.aeternity.io');
const accounts = await accountFactory.discover(node);
console.log(accounts[0].address); // 'ak_2dA...'
```
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ nav:
- Wallet interaction:
- guides/connect-aepp-to-wallet.md
- guides/build-wallet.md
- guides/ledger-wallet.md
- transaction-options.md
- Examples & Tutorials:
- NodeJS:
Expand Down
Loading