aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/idStore.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-03-30 03:21:46 +0800
committerDan Finlay <dan@danfinlay.com>2016-03-30 03:21:46 +0800
commitd6dee7e748dbb61e3ae1a8f30f05b132badf951d (patch)
tree5be6d6813c675c4007e8cf8c2390d7cd73b5a215 /app/scripts/lib/idStore.js
parent39160d3025a1d9e327f48b034c083808663e2481 (diff)
downloadtangerine-wallet-browser-d6dee7e748dbb61e3ae1a8f30f05b132badf951d.tar
tangerine-wallet-browser-d6dee7e748dbb61e3ae1a8f30f05b132badf951d.tar.gz
tangerine-wallet-browser-d6dee7e748dbb61e3ae1a8f30f05b132badf951d.tar.bz2
tangerine-wallet-browser-d6dee7e748dbb61e3ae1a8f30f05b132badf951d.tar.lz
tangerine-wallet-browser-d6dee7e748dbb61e3ae1a8f30f05b132badf951d.tar.xz
tangerine-wallet-browser-d6dee7e748dbb61e3ae1a8f30f05b132badf951d.tar.zst
tangerine-wallet-browser-d6dee7e748dbb61e3ae1a8f30f05b132badf951d.zip
Add auto-fauceting
When first creating a vault, the first account is submitted to our `rawtestrpc` faucet, receiving `1.337` ether within 15-30 seconds.
Diffstat (limited to 'app/scripts/lib/idStore.js')
-rw-r--r--app/scripts/lib/idStore.js20
1 files changed, 16 insertions, 4 deletions
diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js
index acd34074b..af76cb7bc 100644
--- a/app/scripts/lib/idStore.js
+++ b/app/scripts/lib/idStore.js
@@ -7,6 +7,7 @@ const async = require('async')
const clone = require('clone')
const extend = require('xtend')
const createId = require('web3-provider-engine/util/random-id')
+const autoFaucet = require('./auto-faucet')
module.exports = IdentityStore
@@ -47,6 +48,7 @@ IdentityStore.prototype.createNewVault = function(password, entropy, cb){
this._cacheSeedWordsUntilConfirmed(seedWords)
this._loadIdentities()
this._didUpdate()
+ this._autoFaucet()
cb(null, seedWords)
})
}
@@ -186,14 +188,14 @@ IdentityStore.prototype._cacheSeedWordsUntilConfirmed = function(seedWords) {
// load identities from keyStoreet
IdentityStore.prototype._loadIdentities = function(){
if (!this._isUnlocked()) throw new Error('not unlocked')
- // get addresses and normalize address hexString
- var addresses = this._keyStore.getAddresses(this.hdPathString).map((address) => { return '0x'+address })
- addresses.forEach((address) => {
+
+ var addresses = this._getAddresses()
+ addresses.forEach((address, i) => {
// // add to ethStore
this._ethStore.addAccount(address)
// add to identities
var identity = {
- name: 'Wally',
+ name: 'Wallet ' + (i+1),
img: 'QmW6hcwYzXrNkuHrpvo58YeZvbZxUddv69ATSHY3BHpPdd',
address: address,
}
@@ -268,6 +270,16 @@ IdentityStore.prototype._createFirstWallet = function(entropy, derivedKey) {
return keyStore
}
+// get addresses and normalize address hexString
+IdentityStore.prototype._getAddresses = function() {
+ return this._keyStore.getAddresses(this.hdPathString).map((address) => { return '0x'+address })
+}
+
+IdentityStore.prototype._autoFaucet = function() {
+ var addresses = this._getAddresses()
+ autoFaucet(addresses[0])
+}
+
function IdManagement(opts) {
if (!opts) opts = {}