aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2018-06-04 02:27:25 +0800
committerkumavis <aaron@kumavis.me>2018-06-04 02:27:25 +0800
commitd4cdd1a0f304141a6ce6d5c817953f06080a6299 (patch)
tree89babd6d4c9c24c41f81ab7d10bfd58ea52f51d3 /app/scripts/controllers
parenta08e58f0fdc3f2377cd35b8557828161bff3f7b7 (diff)
downloadtangerine-wallet-browser-d4cdd1a0f304141a6ce6d5c817953f06080a6299.tar
tangerine-wallet-browser-d4cdd1a0f304141a6ce6d5c817953f06080a6299.tar.gz
tangerine-wallet-browser-d4cdd1a0f304141a6ce6d5c817953f06080a6299.tar.bz2
tangerine-wallet-browser-d4cdd1a0f304141a6ce6d5c817953f06080a6299.tar.lz
tangerine-wallet-browser-d4cdd1a0f304141a6ce6d5c817953f06080a6299.tar.xz
tangerine-wallet-browser-d4cdd1a0f304141a6ce6d5c817953f06080a6299.tar.zst
tangerine-wallet-browser-d4cdd1a0f304141a6ce6d5c817953f06080a6299.zip
metamask - update preferences controller identities on keyring controller update
Diffstat (limited to 'app/scripts/controllers')
-rw-r--r--app/scripts/controllers/preferences.js31
1 files changed, 28 insertions, 3 deletions
diff --git a/app/scripts/controllers/preferences.js b/app/scripts/controllers/preferences.js
index a4ff1207e..38136e174 100644
--- a/app/scripts/controllers/preferences.js
+++ b/app/scripts/controllers/preferences.js
@@ -63,6 +63,13 @@ class PreferencesController {
this.store.updateState({ currentLocale: key })
}
+ /**
+ * Updates identities to only include specified addresses. Removes identities
+ * not included in addresses array
+ *
+ * @param {arrays} addresses An array of hex addresses
+ *
+ */
setAddresses (addresses) {
const oldIdentities = this.store.getState().identities
const identities = addresses.reduce((ids, address, index) => {
@@ -74,6 +81,24 @@ class PreferencesController {
}
/**
+ * Adds addresses to the identities object without removing identities
+ *
+ * @param {arrays} addresses An array of hex addresses
+ *
+ */
+ addAddresses (addresses) {
+ const identities = this.store.getState().identities
+ addresses.forEach((address) => {
+ // skip if already exists
+ if (identities[address]) return
+ // add missing identity
+ const identityCount = Object.keys(identities).length
+ identities[address] = { name: `Account ${identityCount + 1}`, address }
+ })
+ this.store.updateState({ identities })
+ }
+
+ /**
* Setter for the `selectedAddress` property
*
* @param {string} _address A new hex address for an account
@@ -111,7 +136,7 @@ class PreferencesController {
/**
* Adds a new token to the token array, or updates the token if passed an address that already exists.
* Modifies the existing tokens array from the store. All objects in the tokens array array AddedToken objects.
- * @see AddedToken {@link AddedToken}
+ * @see AddedToken {@link AddedToken}
*
* @param {string} rawAddress Hex address of the token contract. May or may not be a checksum address.
* @param {string} symbol The symbol of the token
@@ -197,7 +222,7 @@ class PreferencesController {
}
/**
- * Setter for the `currentAccountTab` property
+ * Setter for the `currentAccountTab` property
*
* @param {string} currentAccountTab Specifies the new tab to be marked as current
* @returns {Promise<void>} Promise resolves with undefined
@@ -215,7 +240,7 @@ class PreferencesController {
* The returned list will have a max length of 2. If the _url currently exists it the list, it will be moved to the
* end of the list. The current list is modified and returned as a promise.
*
- * @param {string} _url The rpc url to add to the frequentRpcList.
+ * @param {string} _url The rpc url to add to the frequentRpcList.
* @returns {Promise<array>} The updated frequentRpcList.
*
*/