aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/eth-ledger-keyring-listener.js
blob: 1c02f061039e94d4eb66d0266bd9cee4abffd576 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
const extension = require('extensionizer')
const {EventEmitter} = require('events')


// HD path differs from eth-hd-keyring - MEW, Parity, Geth and Official Ledger clients use same unusual derivation for Ledger
const hdPathString = `m/44'/60'/0'`
const type = 'Ledger Hardware Keyring'
const ORIGIN  = 'http://localhost:9000'

class LedgerKeyring extends EventEmitter {
  constructor (opts = {}) {
    super()
    this.type = type
    this.page = 0
    this.perPage = 5
    this.unlockedAccount = 0
    this.paths = {}
    this.iframe = null
    this.setupIframe()
    this.deserialize(opts)
  }

  setupIframe(){
    this.iframe = document.createElement('iframe')
    this.iframe.src = ORIGIN
    console.log('Injecting ledger iframe')
    document.head.appendChild(this.iframe)

    
     /*
    Passing messages from iframe to background script
    */
    console.log('[LEDGER]: LEDGER FROM-IFRAME LISTENER READY')
    
  }

  sendMessage(msg, cb) {
    console.log('[LEDGER]: SENDING MESSAGE TO IFRAME', msg)
    this.iframe.contentWindow.postMessage({...msg, target: 'LEDGER-IFRAME'}, '*')
    window.addEventListener('message', event => {
      if(event.origin !== ORIGIN) return false
      if (event.data && event.data.action && event.data.action.search(name) !== -1) {
        console.log('[LEDGER]: GOT MESAGE FROM IFRAME', event.data)
        cb(event.data)
      }
    })
  }

  serialize () {
    return Promise.resolve({hdPath: this.hdPath, accounts: this.accounts})
  }

  deserialize (opts = {}) {
    this.hdPath = opts.hdPath || hdPathString
    this.unlocked = opts.unlocked || false
    this.accounts = opts.accounts || []
    return Promise.resolve()
  }

  isUnlocked () {
    return this.unlocked
  }

  setAccountToUnlock (index) {
    this.unlockedAccount = parseInt(index, 10)
  }

  unlock () {

    if (this.isUnlocked()) return Promise.resolve('already unlocked')

    return new Promise((resolve, reject) => {
      this.sendMessage({
        action: 'ledger-unlock',
        params: {
          hdPath: this.hdPath,
        },
      },
      ({action, success, payload}) => {  
        if (success) {
          resolve(payload)
        } else {
          reject(payload)
        }
      })
    })
  }

  async addAccounts (n = 1) {
    return new Promise((resolve, reject) => {
      this.unlock()
      .then(_ => {
        this.sendMessage({
          action: 'ledger-add-account',
          params: {
            n,
          },
        },
        ({action, success, payload}) => {
          if (success) {
            resolve(payload)
          } else {
            reject(payload)
          }        
        })
      })
    })
  }

  getFirstPage () {
    this.page = 0
    return this.__getPage(1)
  }

  getNextPage () {
    return this.__getPage(1)
  }

  getPreviousPage () {
    return this.__getPage(-1)
  }

  __getPage (increment) {

    this.page += increment

    if (this.page <= 0) { this.page = 1 }

    return new Promise((resolve, reject) => {
      this.unlock()
        .then(_ => {
          this.sendMessage({
            action: 'ledger-get-page',
            params: {
              page: this.page,
            },
          },
          ({action, success, payload}) => {
            if (success) {
              resolve(payload)
            } else {
              reject(payload)
            }        
          })
      })
    })
  }

  getAccounts () {
    return Promise.resolve(this.accounts.slice())
  }

  removeAccount (address) {
    if (!this.accounts.map(a => a.toLowerCase()).includes(address.toLowerCase())) {
      throw new Error(`Address ${address} not found in this keyring`)
    }
    this.accounts = this.accounts.filter(a => a.toLowerCase() !== address.toLowerCase())
  }

  // tx is an instance of the ethereumjs-transaction class.
  async signTransaction (address, tx) {
    return new Promise((resolve, reject) => {
      this.unlock()
        .then(_ => {
          console.log('[LEDGER]: sending message ', 'ledger-sign-transaction')
          this.sendMessage({
            action: 'ledger-sign-transaction',
            params: {
              address,
              tx,
            },
          },
          ({action, success, payload}) => {
            if (success) {
              resolve(payload)
            } else {
              reject(payload)
            }        
          })
      })
    })
  }

  async signMessage (withAccount, data) {
    throw new Error('Not supported on this device')
  }

  // For personal_sign, we need to prefix the message:
  async signPersonalMessage (withAccount, message) {
    return new Promise((resolve, reject) => {
      this.unlock()
        .then(_ => {
          console.log('[LEDGER]: sending message ', 'ledger-sign-personal-message')
          this.sendMessage({
            action: 'ledger-sign-personal-message',
            params: {
              withAccount,
              message,
            },
          },
          ({action, success, payload}) => {
            if (success) {
              resolve(payload)
            } else {
              reject(payload)
            }        
          })
      })
    })
  }

  async signTypedData (withAccount, typedData) {
    throw new Error('Not supported on this device')
  }

  async exportAccount (address) {
    throw new Error('Not supported on this device')
  }

  forgetDevice () {
    this.accounts = []
    this.unlocked = false
    this.page = 0
    this.unlockedAccount = 0
    this.paths = {}
  }
}

LedgerKeyring.type = type
module.exports = LedgerKeyring