aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/idStore.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-04-07 03:01:10 +0800
committerDan Finlay <dan@danfinlay.com>2016-04-07 03:01:10 +0800
commit874d9c1ab825c5bd0b6b5d05d0136bb9b77b4638 (patch)
tree3ba3d9936bebcc7e957f45c6315f2a24cfac581a /app/scripts/lib/idStore.js
parent8258ab2da13177862bb098f7fedb4187bb2832dc (diff)
downloadtangerine-wallet-browser-874d9c1ab825c5bd0b6b5d05d0136bb9b77b4638.tar
tangerine-wallet-browser-874d9c1ab825c5bd0b6b5d05d0136bb9b77b4638.tar.gz
tangerine-wallet-browser-874d9c1ab825c5bd0b6b5d05d0136bb9b77b4638.tar.bz2
tangerine-wallet-browser-874d9c1ab825c5bd0b6b5d05d0136bb9b77b4638.tar.lz
tangerine-wallet-browser-874d9c1ab825c5bd0b6b5d05d0136bb9b77b4638.tar.xz
tangerine-wallet-browser-874d9c1ab825c5bd0b6b5d05d0136bb9b77b4638.tar.zst
tangerine-wallet-browser-874d9c1ab825c5bd0b6b5d05d0136bb9b77b4638.zip
Add ability to export private keys
Diffstat (limited to 'app/scripts/lib/idStore.js')
-rw-r--r--app/scripts/lib/idStore.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js
index 8ac5185db..f44300273 100644
--- a/app/scripts/lib/idStore.js
+++ b/app/scripts/lib/idStore.js
@@ -123,6 +123,11 @@ IdentityStore.prototype.submitPassword = function(password, cb){
})
}
+IdentityStore.prototype.exportAccount = function(address, cb) {
+ var privateKey = this._idmgmt.exportPrivateKey(address)
+ cb(null, privateKey)
+}
+
// comes from dapp via zero-client hooked-wallet provider
IdentityStore.prototype.addUnconfirmedTransaction = function(txParams, cb){
@@ -337,6 +342,10 @@ function IdManagement(opts) {
this.getSeed = function(){
return this.keyStore.getSeed(this.derivedKey)
}
+
+ this.exportPrivateKey = function(address) {
+ return this.keyStore.exportPrivateKey(address, this.derivedKey, this.hdPathString)
+ }
}