nifty-wallet/app/scripts/metamask-controller.js

1536 lines
53 KiB
JavaScript
Raw Normal View History

2018-03-15 15:27:10 -07:00
/**
* @file The central metamask controller. Aggregates other controllers and exports an api.
* @copyright Copyright (c) 2018 MetaMask
* @license MIT
*/
const EventEmitter = require('events')
const pump = require('pump')
const Dnode = require('dnode')
2017-01-24 19:47:00 -08:00
const ObservableStore = require('obs-store')
const ComposableObservableStore = require('./lib/ComposableObservableStore')
const asStream = require('obs-store/lib/asStream')
const AccountTracker = require('./lib/account-tracker')
const RpcEngine = require('json-rpc-engine')
const debounce = require('debounce')
const createEngineStream = require('json-rpc-middleware-stream/engineStream')
const createFilterMiddleware = require('eth-json-rpc-filters')
const createOriginMiddleware = require('./lib/createOriginMiddleware')
const createLoggerMiddleware = require('./lib/createLoggerMiddleware')
const createProviderMiddleware = require('./lib/createProviderMiddleware')
const setupMultiplex = require('./lib/stream-utils.js').setupMultiplex
2017-09-22 14:38:40 -07:00
const KeyringController = require('eth-keyring-controller')
const NetworkController = require('./controllers/network')
2017-02-27 10:39:48 -08:00
const PreferencesController = require('./controllers/preferences')
const CurrencyController = require('./controllers/currency')
const NoticeController = require('./notice-controller')
2017-02-27 10:39:48 -08:00
const ShapeShiftController = require('./controllers/shapeshift')
2017-03-09 13:58:42 -08:00
const AddressBookController = require('./controllers/address-book')
const InfuraController = require('./controllers/infura')
const BlacklistController = require('./controllers/blacklist')
const RecentBlocksController = require('./controllers/recent-blocks')
const MessageManager = require('./lib/message-manager')
const PersonalMessageManager = require('./lib/personal-message-manager')
2017-09-29 09:24:08 -07:00
const TypedMessageManager = require('./lib/typed-message-manager')
2017-05-16 10:27:41 -07:00
const TransactionController = require('./controllers/transactions')
const BalancesController = require('./controllers/computed-balances')
const TokenRatesController = require('./controllers/token-rates')
2018-06-27 13:29:24 -07:00
const DetectTokensController = require('./controllers/detect-tokens')
const nodeify = require('./lib/nodeify')
const accountImporter = require('./account-import-strategies')
const getBuyEthUrl = require('./lib/buy-eth-url')
2017-11-20 13:27:29 -08:00
const Mutex = require('await-semaphore').Mutex
const version = require('../manifest.json').version
const BN = require('ethereumjs-util').BN
const GWEI_BN = new BN('1000000000')
const percentile = require('percentile')
2018-03-02 15:32:57 -08:00
const seedPhraseVerifier = require('./lib/seed-phrase-verifier')
const log = require('loglevel')
2018-06-12 22:32:13 -07:00
const TrezorKeyring = require('eth-trezor-keyring')
2018-08-11 22:34:01 -07:00
const LedgerBridgeKeyring = require('eth-ledger-bridge-keyring')
const EthQuery = require('eth-query')
2018-09-10 14:11:57 -07:00
const ethUtil = require('ethereumjs-util')
const sigUtil = require('eth-sig-util')
module.exports = class MetamaskController extends EventEmitter {
2018-03-15 15:27:10 -07:00
/**
* @constructor
* @param {Object} opts
2018-03-15 15:27:10 -07:00
*/
constructor (opts) {
super()
2018-01-25 12:28:11 -08:00
this.defaultMaxListeners = 20
this.sendUpdate = debounce(this.privateSendUpdate.bind(this), 200)
2016-06-24 17:00:35 -07:00
this.opts = opts
2017-04-26 21:05:45 -07:00
const initState = opts.initState || {}
this.recordFirstTimeInfo(initState)
2017-01-11 19:04:19 -08:00
// this keeps track of how many "controllerStream" connections are open
// the only thing that uses controller connections are open metamask UI instances
this.activeControllerConnections = 0
// platform-specific api
this.platform = opts.platform
2017-01-11 19:04:19 -08:00
// observable state store
this.store = new ComposableObservableStore(initState)
// lock to ensure only one vault created at once
this.createVaultMutex = new Mutex()
2017-02-02 20:59:47 -08:00
// network store
this.networkController = new NetworkController(initState.NetworkController)
// preferences controller
this.preferencesController = new PreferencesController({
initState: initState.PreferencesController,
initLangCode: opts.initLangCode,
showWatchAssetUi: opts.showWatchAssetUi,
network: this.networkController,
})
// currency controller
this.currencyController = new CurrencyController({
initState: initState.CurrencyController,
})
this.currencyController.updateConversionRate()
this.currencyController.scheduleConversionInterval()
// infura controller
this.infuraController = new InfuraController({
initState: initState.InfuraController,
})
this.infuraController.scheduleInfuraNetworkCheck()
this.blacklistController = new BlacklistController()
this.blacklistController.scheduleUpdates()
// rpc provider
2018-08-17 09:56:07 -07:00
this.initializeProvider()
this.provider = this.networkController.getProviderAndBlockTracker().provider
this.blockTracker = this.networkController.getProviderAndBlockTracker().blockTracker
// token exchange rate tracker
this.tokenRatesController = new TokenRatesController({
preferences: this.preferencesController.store,
})
this.recentBlocksController = new RecentBlocksController({
blockTracker: this.blockTracker,
provider: this.provider,
})
// account tracker watches balances, nonces, and any code at their address.
2017-09-22 14:16:19 -07:00
this.accountTracker = new AccountTracker({
provider: this.provider,
blockTracker: this.blockTracker,
})
// start and stop polling for balances based on activeControllerConnections
this.on('controllerConnectionChanged', (activeControllerConnections) => {
if (activeControllerConnections > 0) {
this.accountTracker.start()
} else {
this.accountTracker.stop()
}
})
2017-01-11 19:04:19 -08:00
// key mgmt
2018-08-11 22:34:01 -07:00
const additionalKeyrings = [TrezorKeyring, LedgerBridgeKeyring]
this.keyringController = new KeyringController({
2018-06-10 00:52:32 -07:00
keyringTypes: additionalKeyrings,
2017-01-28 13:12:12 -08:00
initState: initState.KeyringController,
getNetwork: this.networkController.getNetworkState.bind(this.networkController),
encryptor: opts.encryptor || undefined,
2016-06-24 16:13:27 -07:00
})
this.keyringController.memStore.subscribe((s) => this._onKeyringControllerUpdate(s))
2018-07-19 16:46:46 -07:00
// detect tokens controller
this.detectTokensController = new DetectTokensController({
preferences: this.preferencesController,
network: this.networkController,
keyringMemStore: this.keyringController.memStore,
})
// address book controller
this.addressBookController = new AddressBookController({
initState: initState.AddressBookController,
preferencesStore: this.preferencesController.store,
})
// tx mgmt
2017-05-16 10:27:41 -07:00
this.txController = new TransactionController({
initState: initState.TransactionController || initState.TransactionManager,
networkStore: this.networkController.networkStore,
2017-02-02 21:09:17 -08:00
preferencesStore: this.preferencesController.store,
2016-12-16 10:33:36 -08:00
txHistoryLimit: 40,
getNetwork: this.networkController.getNetworkState.bind(this),
signTransaction: this.keyringController.signTransaction.bind(this.keyringController),
2016-12-16 10:33:36 -08:00
provider: this.provider,
blockTracker: this.blockTracker,
getGasPrice: this.getGasPrice.bind(this),
2016-12-16 10:33:36 -08:00
})
2018-09-09 17:33:09 -07:00
this.txController.on('newUnapprovedTx', () => opts.showUnapprovedTx())
2018-07-20 04:20:40 -07:00
this.txController.on(`tx:status-update`, (txId, status) => {
2018-07-20 10:58:26 -07:00
if (status === 'confirmed' || status === 'failed') {
2018-07-20 04:20:40 -07:00
const txMeta = this.txController.txStateManager.getTx(txId)
this.platform.showTransactionNotification(txMeta)
}
})
2017-09-12 15:06:19 -07:00
// computed balances (accounting for pending transactions)
this.balancesController = new BalancesController({
accountTracker: this.accountTracker,
2017-09-12 15:06:19 -07:00
txController: this.txController,
blockTracker: this.blockTracker,
2017-09-12 15:06:19 -07:00
})
this.networkController.on('networkDidChange', () => {
this.balancesController.updateAllBalances()
})
this.balancesController.updateAllBalances()
2017-09-12 15:06:19 -07:00
// notices
this.noticeController = new NoticeController({
initState: initState.NoticeController,
version,
firstVersion: initState.firstTimeInfo.version,
})
this.shapeshiftController = new ShapeShiftController({
initState: initState.ShapeShiftController,
})
this.networkController.lookupNetwork()
this.messageManager = new MessageManager()
this.personalMessageManager = new PersonalMessageManager()
2018-09-10 14:11:57 -07:00
this.typedMessageManager = new TypedMessageManager({ networkController: this.networkController })
this.publicConfigStore = this.initPublicConfigStore()
this.store.updateStructure({
TransactionController: this.txController.store,
KeyringController: this.keyringController.store,
PreferencesController: this.preferencesController.store,
AddressBookController: this.addressBookController.store,
CurrencyController: this.currencyController.store,
NoticeController: this.noticeController.store,
ShapeShiftController: this.shapeshiftController.store,
NetworkController: this.networkController.store,
InfuraController: this.infuraController.store,
})
2018-01-31 10:49:58 -08:00
this.memStore = new ComposableObservableStore(null, {
NetworkController: this.networkController.store,
AccountTracker: this.accountTracker.store,
TxController: this.txController.memStore,
BalancesController: this.balancesController.store,
TokenRatesController: this.tokenRatesController.store,
MessageManager: this.messageManager.memStore,
PersonalMessageManager: this.personalMessageManager.memStore,
TypesMessageManager: this.typedMessageManager.memStore,
KeyringController: this.keyringController.memStore,
PreferencesController: this.preferencesController.store,
RecentBlocksController: this.recentBlocksController.store,
AddressBookController: this.addressBookController.store,
CurrencyController: this.currencyController.store,
NoticeController: this.noticeController.memStore,
ShapeshiftController: this.shapeshiftController.store,
InfuraController: this.infuraController.store,
})
this.memStore.subscribe(this.sendUpdate.bind(this))
}
2018-03-15 15:27:10 -07:00
/**
* Constructor helper: initialize a provider.
*/
initializeProvider () {
const providerOpts = {
static: {
eth_syncing: false,
web3_clientVersion: `MetaMask/v${version}`,
},
2018-09-25 12:14:37 -07:00
version,
// account mgmt
2018-08-17 09:56:07 -07:00
getAccounts: async () => {
const isUnlocked = this.keyringController.memStore.getState().isUnlocked
const selectedAddress = this.preferencesController.getSelectedAddress()
// only show address if account is unlocked
if (isUnlocked && selectedAddress) {
2018-08-17 09:56:07 -07:00
return [selectedAddress]
} else {
return []
}
},
// tx signing
2018-08-17 09:56:07 -07:00
processTransaction: this.newUnapprovedTransaction.bind(this),
// msg signing
processEthSignMessage: this.newUnsignedMessage.bind(this),
processPersonalMessage: this.newUnsignedPersonalMessage.bind(this),
getPendingNonce: this.getPendingNonce.bind(this),
}
const providerProxy = this.networkController.initializeProvider(providerOpts)
return providerProxy
}
2018-03-15 15:27:10 -07:00
/**
* Constructor helper: initialize a public config store.
2018-04-18 17:54:50 -07:00
* This store is used to make some config info available to Dapps synchronously.
2018-03-15 15:27:10 -07:00
*/
2017-01-26 21:19:09 -08:00
initPublicConfigStore () {
// get init state
const publicConfigStore = new ObservableStore()
// memStore -> transform -> publicConfigStore
this.on('update', (memState) => {
this.isClientOpenAndUnlocked = memState.isUnlocked && this._isClientOpen
const publicState = selectPublicState(memState)
publicConfigStore.putState(publicState)
})
function selectPublicState (memState) {
const result = {
selectedAddress: memState.isUnlocked ? memState.selectedAddress : undefined,
networkVersion: memState.network,
}
2017-01-26 21:19:09 -08:00
return result
}
return publicConfigStore
}
//=============================================================================
// EXPOSED TO THE UI SUBSYSTEM
//=============================================================================
2017-01-26 21:19:09 -08:00
2018-03-15 15:27:10 -07:00
/**
* The metamask-state of the various controllers, made available to the UI
*
* @returns {Object} status
2018-03-15 15:27:10 -07:00
*/
getState () {
const vault = this.keyringController.store.getState().vault
const isInitialized = !!vault
2017-09-13 14:20:19 -07:00
return {
...{ isInitialized },
...this.memStore.getFlatState(),
...{
// TODO: Remove usages of lost accounts
lostAccounts: [],
},
}
}
2018-03-15 15:27:10 -07:00
/**
2018-04-20 09:26:24 -07:00
* Returns an Object containing API Callback Functions.
* These functions are the interface for the UI.
* The API object can be transmitted over a stream with dnode.
*
2018-04-20 09:26:24 -07:00
* @returns {Object} Object containing API functions.
2018-03-15 15:27:10 -07:00
*/
getApi () {
const keyringController = this.keyringController
const preferencesController = this.preferencesController
2017-05-16 10:27:41 -07:00
const txController = this.txController
const noticeController = this.noticeController
const addressBookController = this.addressBookController
2017-09-29 16:09:38 -07:00
const networkController = this.networkController
return {
// etc
2017-04-26 21:05:45 -07:00
getState: (cb) => cb(null, this.getState()),
setCurrentCurrency: this.setCurrentCurrency.bind(this),
setUseBlockie: this.setUseBlockie.bind(this),
2018-03-15 17:29:45 -07:00
setCurrentLocale: this.setCurrentLocale.bind(this),
2017-04-26 21:05:45 -07:00
markAccountsFound: this.markAccountsFound.bind(this),
markPasswordForgotten: this.markPasswordForgotten.bind(this),
unMarkPasswordForgotten: this.unMarkPasswordForgotten.bind(this),
getGasPrice: (cb) => cb(null, this.getGasPrice()),
2017-09-29 16:09:38 -07:00
// coinbase
buyEth: this.buyEth.bind(this),
2016-08-18 10:40:35 -07:00
// shapeshift
2016-08-18 15:20:26 -07:00
createShapeShiftTx: this.createShapeShiftTx.bind(this),
// primary HD keyring management
addNewAccount: nodeify(this.addNewAccount, this),
2017-04-26 21:05:45 -07:00
placeSeedWords: this.placeSeedWords.bind(this),
verifySeedPhrase: nodeify(this.verifySeedPhrase, this),
2017-04-26 21:05:45 -07:00
clearSeedWordCache: this.clearSeedWordCache.bind(this),
resetAccount: nodeify(this.resetAccount, this),
2018-07-10 21:20:40 -07:00
removeAccount: nodeify(this.removeAccount, this),
importAccountWithStrategy: nodeify(this.importAccountWithStrategy, this),
// hardware wallets
2018-06-10 00:52:32 -07:00
connectHardware: nodeify(this.connectHardware, this),
forgetDevice: nodeify(this.forgetDevice, this),
checkHardwareStatus: nodeify(this.checkHardwareStatus, this),
unlockHardwareWalletAccount: nodeify(this.unlockHardwareWalletAccount, this),
2018-06-10 00:52:32 -07:00
// vault management
submitPassword: nodeify(this.submitPassword, this),
2017-09-29 16:09:38 -07:00
// network management
setProviderType: nodeify(networkController.setProviderType, networkController),
setCustomRpc: nodeify(this.setCustomRpc, this),
// PreferencesController
2017-07-12 15:06:49 -07:00
setSelectedAddress: nodeify(preferencesController.setSelectedAddress, preferencesController),
addToken: nodeify(preferencesController.addToken, preferencesController),
removeToken: nodeify(preferencesController.removeToken, preferencesController),
2018-08-03 16:24:12 -07:00
removeSuggestedTokens: nodeify(preferencesController.removeSuggestedTokens, preferencesController),
2017-07-12 15:06:49 -07:00
setCurrentAccountTab: nodeify(preferencesController.setCurrentAccountTab, preferencesController),
setAccountLabel: nodeify(preferencesController.setAccountLabel, preferencesController),
2017-11-14 08:04:55 -08:00
setFeatureFlag: nodeify(preferencesController.setFeatureFlag, preferencesController),
// AddressController
2017-07-12 15:06:49 -07:00
setAddressBook: nodeify(addressBookController.setAddressBook, addressBookController),
// KeyringController
2017-07-12 15:06:49 -07:00
setLocked: nodeify(keyringController.setLocked, keyringController),
createNewVaultAndKeychain: nodeify(this.createNewVaultAndKeychain, this),
createNewVaultAndRestore: nodeify(this.createNewVaultAndRestore, this),
2017-07-12 15:06:49 -07:00
addNewKeyring: nodeify(keyringController.addNewKeyring, keyringController),
exportAccount: nodeify(keyringController.exportAccount, keyringController),
2017-05-16 10:27:41 -07:00
// txController
cancelTransaction: nodeify(txController.cancelTransaction, txController),
updateTransaction: nodeify(txController.updateTransaction, txController),
2017-07-12 15:06:49 -07:00
updateAndApproveTransaction: nodeify(txController.updateAndApproveTransaction, txController),
2017-12-06 20:20:15 -08:00
retryTransaction: nodeify(this.retryTransaction, this),
2018-09-09 10:07:23 -07:00
createCancelTransaction: nodeify(this.createCancelTransaction, this),
getFilteredTxList: nodeify(txController.getFilteredTxList, txController),
isNonceTaken: nodeify(txController.isNonceTaken, txController),
estimateGas: nodeify(this.estimateGas, this),
// messageManager
2017-07-12 15:06:49 -07:00
signMessage: nodeify(this.signMessage, this),
2017-04-26 21:05:45 -07:00
cancelMessage: this.cancelMessage.bind(this),
2017-02-22 16:23:13 -08:00
// personalMessageManager
2017-07-12 15:06:49 -07:00
signPersonalMessage: nodeify(this.signPersonalMessage, this),
2017-04-26 21:05:45 -07:00
cancelPersonalMessage: this.cancelPersonalMessage.bind(this),
2017-09-29 09:24:08 -07:00
// personalMessageManager
signTypedMessage: nodeify(this.signTypedMessage, this),
cancelTypedMessage: this.cancelTypedMessage.bind(this),
// notices
2017-04-26 21:05:45 -07:00
checkNotices: noticeController.updateNoticesList.bind(noticeController),
markNoticeRead: noticeController.markNoticeRead.bind(noticeController),
}
}
2018-01-08 15:41:57 -08:00
2018-03-15 15:27:10 -07:00
//=============================================================================
// VAULT / KEYRING RELATED METHODS
//=============================================================================
2018-03-15 15:27:10 -07:00
/**
2018-04-18 17:54:50 -07:00
* Creates a new Vault and create a new keychain.
*
2018-04-18 17:54:50 -07:00
* A vault, or KeyringController, is a controller that contains
* many different account strategies, currently called Keyrings.
* Creating it new means wiping all previous keyrings.
*
2018-04-18 17:54:50 -07:00
* A keychain, or keyring, controls many accounts with a single backup and signing strategy.
* For example, a mnemonic phrase can generate many accounts, and is a keyring.
*
2018-04-18 17:54:50 -07:00
* @param {string} password
*
2018-04-20 09:26:24 -07:00
* @returns {Object} vault
2018-03-15 15:27:10 -07:00
*/
2017-11-20 13:27:29 -08:00
async createNewVaultAndKeychain (password) {
const releaseLock = await this.createVaultMutex.acquire()
try {
let vault
const accounts = await this.keyringController.getAccounts()
if (accounts.length > 0) {
vault = await this.keyringController.fullUpdate()
} else {
2017-11-28 15:35:20 -08:00
vault = await this.keyringController.createNewVaultAndKeychain(password)
const accounts = await this.keyringController.getAccounts()
this.preferencesController.setAddresses(accounts)
this.selectFirstIdentity()
}
releaseLock()
return vault
} catch (err) {
releaseLock()
throw err
2017-11-20 13:27:29 -08:00
}
}
2018-03-15 15:27:10 -07:00
/**
2018-04-18 17:54:50 -07:00
* Create a new Vault and restore an existent keyring.
2018-03-15 15:27:10 -07:00
* @param {} password
* @param {} seed
*/
2017-11-20 13:27:29 -08:00
async createNewVaultAndRestore (password, seed) {
const releaseLock = await this.createVaultMutex.acquire()
try {
let accounts, lastBalance
const keyringController = this.keyringController
// clear known identities
this.preferencesController.setAddresses([])
// create new vault
const vault = await keyringController.createNewVaultAndRestore(password, seed)
const ethQuery = new EthQuery(this.provider)
accounts = await keyringController.getAccounts()
lastBalance = await this.getBalance(accounts[accounts.length - 1], ethQuery)
const primaryKeyring = keyringController.getKeyringsByType('HD Key Tree')[0]
if (!primaryKeyring) {
throw new Error('MetamaskController - No HD Key Tree found')
}
// seek out the first zero balance
while (lastBalance !== '0x0') {
await keyringController.addNewAccount(primaryKeyring)
accounts = await keyringController.getAccounts()
lastBalance = await this.getBalance(accounts[accounts.length - 1], ethQuery)
}
// set new identities
this.preferencesController.setAddresses(accounts)
this.selectFirstIdentity()
releaseLock()
return vault
} catch (err) {
releaseLock()
throw err
}
}
/**
* Get an account balance from the AccountTracker or request it directly from the network.
* @param {string} address - The account address
* @param {EthQuery} ethQuery - The EthQuery instance to use when asking the network
*/
getBalance (address, ethQuery) {
return new Promise((resolve, reject) => {
const cached = this.accountTracker.store.getState().accounts[address]
if (cached && cached.balance) {
resolve(cached.balance)
} else {
ethQuery.getBalance(address, (error, balance) => {
if (error) {
reject(error)
log.error(error)
} else {
resolve(balance || '0x0')
}
})
}
})
}
/*
* Submits the user's password and attempts to unlock the vault.
* Also synchronizes the preferencesController, to ensure its schema
* is up to date with known accounts once the vault is decrypted.
*
* @param {string} password - The user's password
* @returns {Promise<object>} - The keyringController update.
*/
async submitPassword (password) {
await this.keyringController.submitPassword(password)
const accounts = await this.keyringController.getAccounts()
// verify keyrings
const nonSimpleKeyrings = this.keyringController.keyrings.filter(keyring => keyring.type !== 'Simple Key Pair')
2018-06-05 12:20:24 -07:00
if (nonSimpleKeyrings.length > 1 && this.diagnostics) {
await this.diagnostics.reportMultipleKeyrings(nonSimpleKeyrings)
}
await this.preferencesController.syncAddresses(accounts)
return this.keyringController.fullUpdate()
}
2018-04-18 17:54:50 -07:00
/**
* @type Identity
* @property {string} name - The account nickname.
* @property {string} address - The account's ethereum address, in lower case.
* @property {boolean} mayBeFauceting - Whether this account is currently
* receiving funds from our automatic Ropsten faucet.
*/
2018-03-15 15:27:10 -07:00
/**
* Sets the first address in the state to the selected address
2018-03-15 15:27:10 -07:00
*/
selectFirstIdentity () {
const { identities } = this.preferencesController.store.getState()
const address = Object.keys(identities)[0]
this.preferencesController.setSelectedAddress(address)
}
2018-06-10 00:52:32 -07:00
//
// Hardware
//
2018-08-13 16:29:43 -07:00
async getKeyringForDevice (deviceName, hdPath = null) {
let keyringName = null
switch (deviceName) {
case 'trezor':
keyringName = TrezorKeyring.type
break
case 'ledger':
2018-08-11 22:34:01 -07:00
keyringName = LedgerBridgeKeyring.type
break
default:
2018-08-14 00:42:23 -07:00
throw new Error('MetamaskController:getKeyringForDevice - Unknown device')
}
let keyring = await this.keyringController.getKeyringsByType(keyringName)[0]
if (!keyring) {
keyring = await this.keyringController.addNewKeyring(keyringName)
}
2018-08-14 00:42:23 -07:00
if (hdPath && keyring.setHdPath) {
keyring.setHdPath(hdPath)
2018-08-13 16:29:43 -07:00
}
2018-08-13 22:26:18 -07:00
keyring.network = this.networkController.getProviderConfig().type
return keyring
}
2018-06-10 00:52:32 -07:00
/**
* Fetch account list from a trezor device.
*
* @returns [] accounts
*/
2018-08-13 16:29:43 -07:00
async connectHardware (deviceName, page, hdPath) {
const keyring = await this.getKeyringForDevice(deviceName, hdPath)
let accounts = []
switch (page) {
case -1:
accounts = await keyring.getPreviousPage()
break
case 1:
accounts = await keyring.getNextPage()
break
default:
accounts = await keyring.getFirstPage()
2018-06-12 23:09:25 -07:00
}
// Merge with existing accounts
// and make sure addresses are not repeated
2018-08-10 23:35:20 -07:00
const oldAccounts = await this.keyringController.getAccounts()
const accountsToTrack = [...new Set(oldAccounts.concat(accounts.map(a => a.address.toLowerCase())))]
this.accountTracker.syncWithAddresses(accountsToTrack)
return accounts
2018-06-10 00:52:32 -07:00
}
/**
* Check if the device is unlocked
*
* @returns {Promise<boolean>}
*/
2018-08-13 16:29:43 -07:00
async checkHardwareStatus (deviceName, hdPath) {
const keyring = await this.getKeyringForDevice(deviceName, hdPath)
return keyring.isUnlocked()
}
/**
* Clear
*
* @returns {Promise<boolean>}
*/
async forgetDevice (deviceName) {
const keyring = await this.getKeyringForDevice(deviceName)
keyring.forgetDevice()
return true
}
2018-06-10 00:52:32 -07:00
/**
* Imports an account from a trezor device.
*
* @returns {} keyState
*/
2018-08-13 16:29:43 -07:00
async unlockHardwareWalletAccount (index, deviceName, hdPath) {
const keyring = await this.getKeyringForDevice(deviceName, hdPath)
2018-06-10 00:52:32 -07:00
2018-06-10 16:02:54 -07:00
keyring.setAccountToUnlock(index)
const oldAccounts = await this.keyringController.getAccounts()
const keyState = await this.keyringController.addNewAccount(keyring)
const newAccounts = await this.keyringController.getAccounts()
2018-06-10 00:52:32 -07:00
this.preferencesController.setAddresses(newAccounts)
newAccounts.forEach(address => {
if (!oldAccounts.includes(address)) {
2018-08-20 21:04:30 -07:00
// Set the account label to Trezor 1 / Ledger 1, etc
this.preferencesController.setAccountLabel(address, `${deviceName[0].toUpperCase()}${deviceName.slice(1)} ${parseInt(index, 10) + 1}`)
// Select the account
2018-06-10 00:52:32 -07:00
this.preferencesController.setSelectedAddress(address)
}
})
const { identities } = this.preferencesController.store.getState()
return { ...keyState, identities }
}
2018-06-12 23:09:25 -07:00
2018-06-10 00:52:32 -07:00
2018-04-18 17:54:50 -07:00
//
// Account Management
//
2018-03-15 15:27:10 -07:00
/**
2018-04-18 17:54:50 -07:00
* Adds a new account to the default (first) HD seed phrase Keyring.
*
2018-03-15 15:27:10 -07:00
* @returns {} keyState
*/
async addNewAccount () {
const primaryKeyring = this.keyringController.getKeyringsByType('HD Key Tree')[0]
if (!primaryKeyring) {
throw new Error('MetamaskController - No HD Key Tree found')
}
const keyringController = this.keyringController
const oldAccounts = await keyringController.getAccounts()
const keyState = await keyringController.addNewAccount(primaryKeyring)
const newAccounts = await keyringController.getAccounts()
await this.verifySeedPhrase()
this.preferencesController.setAddresses(newAccounts)
newAccounts.forEach((address) => {
if (!oldAccounts.includes(address)) {
this.preferencesController.setSelectedAddress(address)
}
})
const {identities} = this.preferencesController.store.getState()
return {...keyState, identities}
}
2018-03-15 15:27:10 -07:00
/**
* Adds the current vault's seed words to the UI's state tree.
*
2018-03-15 15:27:10 -07:00
* Used when creating a first vault, to allow confirmation.
* Also used when revealing the seed words in the confirmation view.
2018-04-18 17:54:50 -07:00
*
* @param {Function} cb - A callback called on completion.
*/
placeSeedWords (cb) {
2018-03-03 13:08:10 -08:00
this.verifySeedPhrase()
.then((seedWords) => {
this.preferencesController.setSeedWords(seedWords)
return cb(null, seedWords)
})
.catch((err) => {
2018-03-03 13:08:10 -08:00
return cb(err)
})
2018-03-03 13:08:10 -08:00
}
2018-03-15 15:27:10 -07:00
/**
* Verifies the validity of the current vault's seed phrase.
*
* Validity: seed phrase restores the accounts belonging to the current vault.
2018-03-15 15:27:10 -07:00
*
* Called when the first account is created and on unlocking the vault.
2018-04-18 17:54:50 -07:00
*
* @returns {Promise<string>} Seed phrase to be confirmed by the user.
2018-03-15 15:27:10 -07:00
*/
async verifySeedPhrase () {
2018-03-03 13:08:10 -08:00
const primaryKeyring = this.keyringController.getKeyringsByType('HD Key Tree')[0]
if (!primaryKeyring) {
throw new Error('MetamaskController - No HD Key Tree found')
}
const serialized = await primaryKeyring.serialize()
const seedWords = serialized.mnemonic
const accounts = await primaryKeyring.getAccounts()
if (accounts.length < 1) {
throw new Error('MetamaskController - No accounts found')
}
try {
await seedPhraseVerifier.verifyAccounts(accounts, seedWords)
return seedWords
} catch (err) {
log.error(err.message)
throw err
}
}
2018-03-15 15:27:10 -07:00
/**
* Remove the primary account seed phrase from the UI's state tree.
*
2018-03-15 15:27:10 -07:00
* The seed phrase remains available in the background process.
*
2018-04-18 17:54:50 -07:00
* @param {function} cb Callback function called with the current address.
2018-03-15 15:27:10 -07:00
*/
clearSeedWordCache (cb) {
this.preferencesController.setSeedWords(null)
cb(null, this.preferencesController.getSelectedAddress())
}
2018-03-15 15:27:10 -07:00
/**
2018-04-18 17:54:50 -07:00
* Clears the transaction history, to allow users to force-reset their nonces.
* Mostly used in development environments, when networks are restarted with
* the same network ID.
*
* @returns Promise<string> The current selected address.
2018-03-15 15:27:10 -07:00
*/
2018-04-18 17:54:50 -07:00
async resetAccount () {
const selectedAddress = this.preferencesController.getSelectedAddress()
this.txController.wipeTransactions(selectedAddress)
this.networkController.resetConnection()
return selectedAddress
2018-01-31 00:33:15 -08:00
}
2018-07-10 21:20:40 -07:00
/**
2018-07-11 17:01:44 -07:00
* Removes an account from state / storage.
2018-07-10 21:20:40 -07:00
*
* @param {string[]} address A hex address
*
*/
async removeAccount (address) {
2018-07-11 17:01:44 -07:00
// Remove account from the preferences controller
2018-07-10 21:20:40 -07:00
this.preferencesController.removeAddress(address)
2018-07-11 17:01:44 -07:00
// Remove account from the account tracker controller
2018-08-20 21:04:07 -07:00
this.accountTracker.removeAccount([address])
2018-07-11 17:01:44 -07:00
// Remove account from the keyring
await this.keyringController.removeAccount(address)
2018-07-10 21:20:40 -07:00
return address
}
2018-03-15 15:27:10 -07:00
/**
2018-04-18 17:54:50 -07:00
* Imports an account with the specified import strategy.
* These are defined in app/scripts/account-import-strategies
* Each strategy represents a different way of serializing an Ethereum key pair.
*
2018-04-20 09:26:24 -07:00
* @param {string} strategy - A unique identifier for an account import strategy.
2018-04-18 17:54:50 -07:00
* @param {any} args - The data required by that strategy to import an account.
* @param {Function} cb - A callback function called with a state update on success.
2018-03-15 15:27:10 -07:00
*/
async importAccountWithStrategy (strategy, args) {
const privateKey = await accountImporter.importAccount(strategy, args)
const keyring = await this.keyringController.addNewKeyring('Simple Key Pair', [ privateKey ])
const accounts = await keyring.getAccounts()
// update accounts in preferences controller
2018-05-28 23:14:38 -07:00
const allAccounts = await this.keyringController.getAccounts()
this.preferencesController.setAddresses(allAccounts)
// set new account as selected
await this.preferencesController.setSelectedAddress(accounts[0])
}
// ---------------------------------------------------------------------------
2018-04-18 17:54:50 -07:00
// Identity Management (signature operations)
2018-08-17 09:56:07 -07:00
/**
* Called when a Dapp suggests a new tx to be signed.
* this wrapper needs to exist so we can provide a reference to
* "newUnapprovedTransaction" before "txController" is instantiated
*
* @param {Object} msgParams - The params passed to eth_sign.
* @param {Object} req - (optional) the original request, containing the origin
*/
async newUnapprovedTransaction (txParams, req) {
return await this.txController.newUnapprovedTransaction(txParams, req)
}
2018-04-18 17:54:50 -07:00
// eth_sign methods:
2018-03-15 15:27:10 -07:00
/**
2018-04-18 17:54:50 -07:00
* Called when a Dapp uses the eth_sign method, to request user approval.
* eth_sign is a pure signature of arbitrary data. It is on a deprecation
* path, since this data can be a transaction, or can leak private key
* information.
*
* @param {Object} msgParams - The params passed to eth_sign.
* @param {Function} cb = The callback function called with the signature.
2018-03-15 15:27:10 -07:00
*/
2018-08-17 09:56:07 -07:00
newUnsignedMessage (msgParams, req) {
const promise = this.messageManager.addUnapprovedMessageAsync(msgParams, req)
2018-04-18 17:54:50 -07:00
this.sendUpdate()
this.opts.showUnconfirmedMessage()
2018-08-17 09:56:07 -07:00
return promise
2018-04-18 17:54:50 -07:00
}
/**
* Signifies user intent to complete an eth_sign method.
*
* @param {Object} msgParams The params passed to eth_call.
2018-04-20 09:26:24 -07:00
* @returns {Promise<Object>} Full state update.
2018-04-18 17:54:50 -07:00
*/
signMessage (msgParams) {
log.info('MetaMaskController - signMessage')
const msgId = msgParams.metamaskId
// sets the status op the message to 'approved'
// and removes the metamaskId for signing
return this.messageManager.approveMessage(msgParams)
.then((cleanMsgParams) => {
// signs the message
return this.keyringController.signMessage(cleanMsgParams)
})
.then((rawSig) => {
// tells the listener that the message has been signed
// and can be returned to the dapp
this.messageManager.setMsgStatusSigned(msgId, rawSig)
return this.getState()
})
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Used to cancel a message submitted via eth_sign.
*
2018-04-20 09:26:24 -07:00
* @param {string} msgId - The id of the message to cancel.
2018-04-18 17:54:50 -07:00
*/
cancelMessage (msgId, cb) {
const messageManager = this.messageManager
messageManager.rejectMsg(msgId)
if (cb && typeof cb === 'function') {
cb(null, this.getState())
}
}
// personal_sign methods:
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Called when a dapp uses the personal_sign method.
* This is identical to the Geth eth_sign method, and may eventually replace
* eth_sign.
*
* We currently define our eth_sign and personal_sign mostly for legacy Dapps.
*
2018-04-18 17:54:50 -07:00
* @param {Object} msgParams - The params of the message to sign & return to the Dapp.
* @param {Function} cb - The callback function called with the signature.
* Passed back to the requesting Dapp.
2018-03-15 15:27:10 -07:00
*/
2018-08-17 09:56:07 -07:00
async newUnsignedPersonalMessage (msgParams, req) {
const promise = this.personalMessageManager.addUnapprovedMessageAsync(msgParams, req)
this.sendUpdate()
this.opts.showUnconfirmedMessage()
2018-08-17 09:56:07 -07:00
return promise
}
2018-03-15 15:27:10 -07:00
/**
2018-04-18 17:54:50 -07:00
* Signifies a user's approval to sign a personal_sign message in queue.
* Triggers signing, and the callback function from newUnsignedPersonalMessage.
*
* @param {Object} msgParams - The params of the message to sign & return to the Dapp.
2018-04-23 14:47:11 -07:00
* @returns {Promise<Object>} - A full state update.
2018-03-15 15:27:10 -07:00
*/
signPersonalMessage (msgParams) {
log.info('MetaMaskController - signPersonalMessage')
const msgId = msgParams.metamaskId
// sets the status op the message to 'approved'
// and removes the metamaskId for signing
return this.personalMessageManager.approveMessage(msgParams)
.then((cleanMsgParams) => {
// signs the message
return this.keyringController.signPersonalMessage(cleanMsgParams)
})
.then((rawSig) => {
// tells the listener that the message has been signed
// and can be returned to the dapp
this.personalMessageManager.setMsgStatusSigned(msgId, rawSig)
return this.getState()
})
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Used to cancel a personal_sign type message.
2018-04-20 09:26:24 -07:00
* @param {string} msgId - The ID of the message to cancel.
2018-04-18 17:54:50 -07:00
* @param {Function} cb - The callback function called with a full state update.
*/
cancelPersonalMessage (msgId, cb) {
const messageManager = this.personalMessageManager
messageManager.rejectMsg(msgId)
if (cb && typeof cb === 'function') {
cb(null, this.getState())
}
}
// eth_signTypedData methods
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Called when a dapp uses the eth_signTypedData method, per EIP 712.
*
* @param {Object} msgParams - The params passed to eth_signTypedData.
* @param {Function} cb - The callback function, called with the signature.
*/
2018-08-17 09:56:07 -07:00
newUnsignedTypedMessage (msgParams, req) {
const promise = this.typedMessageManager.addUnapprovedMessageAsync(msgParams, req)
this.sendUpdate()
this.opts.showUnconfirmedMessage()
return promise
2018-04-18 17:54:50 -07:00
}
2018-03-15 15:27:10 -07:00
/**
2018-04-18 17:54:50 -07:00
* The method for a user approving a call to eth_signTypedData, per EIP 712.
* Triggers the callback in newUnsignedTypedMessage.
*
* @param {Object} msgParams - The params passed to eth_signTypedData.
* @returns {Object} Full state update.
2018-03-15 15:27:10 -07:00
*/
2018-09-10 14:11:57 -07:00
async signTypedMessage (msgParams) {
log.info('MetaMaskController - eth_signTypedData')
2017-09-29 09:24:08 -07:00
const msgId = msgParams.metamaskId
2018-09-10 14:11:57 -07:00
const version = msgParams.version
try {
const cleanMsgParams = await this.typedMessageManager.approveMessage(msgParams)
const address = sigUtil.normalize(cleanMsgParams.from)
const keyring = await this.keyringController.getKeyringForAccount(address)
const wallet = keyring._getWalletForAccount(address)
const privKey = ethUtil.toBuffer(wallet.getPrivateKey())
let signature
switch (version) {
case 'V1':
signature = sigUtil.signTypedDataLegacy(privKey, { data: cleanMsgParams.data })
break
case 'V3':
2018-09-10 14:11:57 -07:00
signature = sigUtil.signTypedData(privKey, { data: JSON.parse(cleanMsgParams.data) })
break
}
this.typedMessageManager.setMsgStatusSigned(msgId, signature)
return this.getState()
} catch (error) {
log.info('MetaMaskController - eth_signTypedData failed.', error)
this.typedMessageManager.errorMessage(msgId, error)
}
2017-09-29 09:24:08 -07:00
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Used to cancel a eth_signTypedData type message.
2018-04-20 09:26:24 -07:00
* @param {string} msgId - The ID of the message to cancel.
2018-04-18 17:54:50 -07:00
* @param {Function} cb - The callback function called with a full state update.
*/
cancelTypedMessage (msgId, cb) {
const messageManager = this.typedMessageManager
messageManager.rejectMsg(msgId)
if (cb && typeof cb === 'function') {
cb(null, this.getState())
}
}
// ---------------------------------------------------------------------------
2018-04-18 17:54:50 -07:00
// MetaMask Version 3 Migration Account Restauration Methods
2018-03-15 15:27:10 -07:00
/**
2018-04-18 17:54:50 -07:00
* A legacy method (probably dead code) that was used when we swapped out our
* key management library that we depended on.
*
* Described in:
* https://medium.com/metamask/metamask-3-migration-guide-914b79533cdd
*
2018-04-18 17:54:50 -07:00
* @deprecated
2018-03-15 15:27:10 -07:00
* @param {} migratorOutput
*/
2017-04-26 21:05:45 -07:00
restoreOldVaultAccounts (migratorOutput) {
2017-01-27 19:35:03 -08:00
const { serialized } = migratorOutput
return this.keyringController.restoreKeyring(serialized)
.then(() => migratorOutput)
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A legacy method used to record user confirmation that they understand
* that some of their accounts have been recovered but should be backed up.
* This function no longer does anything and will be removed.
2018-04-18 17:54:50 -07:00
*
* @deprecated
* @param {Function} cb - A callback function called with a full state update.
*/
markAccountsFound (cb) {
// TODO Remove me
2018-04-18 17:54:50 -07:00
cb(null, this.getState())
}
2018-04-20 09:26:24 -07:00
/**
* An account object
* @typedef Account
* @property string privateKey - The private key of the account.
*/
2018-03-15 15:27:10 -07:00
/**
2018-04-18 17:54:50 -07:00
* Probably no longer needed, related to the Version 3 migration.
* Imports a hash of accounts to private keys into the vault.
*
2018-04-18 17:54:50 -07:00
* Described in:
* https://medium.com/metamask/metamask-3-migration-guide-914b79533cdd
*
2018-03-15 15:27:10 -07:00
* Uses the array's private keys to create a new Simple Key Pair keychain
* and add it to the keyring controller.
2018-04-18 17:54:50 -07:00
* @deprecated
2018-04-20 09:26:24 -07:00
* @param {Account[]} lostAccounts -
* @returns {Keyring[]} An array of the restored keyrings.
2018-03-15 15:27:10 -07:00
*/
2017-01-27 19:35:03 -08:00
importLostAccounts ({ lostAccounts }) {
const privKeys = lostAccounts.map(acct => acct.privateKey)
return this.keyringController.restoreKeyring({
type: 'Simple Key Pair',
data: privKeys,
})
}
//=============================================================================
// END (VAULT / KEYRING RELATED METHODS)
//=============================================================================
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Allows a user to try to speed up a transaction by retrying it
* with higher gas.
*
2018-04-20 09:26:24 -07:00
* @param {string} txId - The ID of the transaction to speed up.
2018-04-18 17:54:50 -07:00
* @param {Function} cb - The callback function called with a full state update.
*/
2017-12-06 20:20:15 -08:00
async retryTransaction (txId, cb) {
await this.txController.retryTransaction(txId)
const state = await this.getState()
return state
}
2018-09-09 10:07:23 -07:00
/**
* Allows a user to attempt to cancel a previously submitted transaction by creating a new
* transaction.
* @param {number} originalTxId - the id of the txMeta that you want to attempt to cancel
* @param {string=} customGasPrice - the hex value to use for the cancel transaction
* @returns {object} MetaMask state
*/
async createCancelTransaction (originalTxId, customGasPrice, cb) {
await this.txController.createCancelTransaction(originalTxId, customGasPrice)
const state = await this.getState()
2017-12-06 20:20:15 -08:00
return state
}
estimateGas (estimateGasParams) {
return new Promise((resolve, reject) => {
return this.txController.txGasUtil.query.estimateGas(estimateGasParams, (err, res) => {
if (err) {
return reject(err)
}
return resolve(res)
})
})
}
2018-04-18 17:54:50 -07:00
//=============================================================================
// PASSWORD MANAGEMENT
//=============================================================================
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Allows a user to begin the seed phrase recovery process.
* @param {Function} cb - A callback function called when complete.
*/
2018-07-02 15:49:33 -07:00
markPasswordForgotten (cb) {
this.preferencesController.setPasswordForgotten(true)
this.sendUpdate()
cb()
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Allows a user to end the seed phrase recovery process.
* @param {Function} cb - A callback function called when complete.
*/
2018-07-02 15:49:33 -07:00
unMarkPasswordForgotten (cb) {
this.preferencesController.setPasswordForgotten(false)
this.sendUpdate()
cb()
}
//=============================================================================
// SETUP
//=============================================================================
2017-01-27 19:35:03 -08:00
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Used to create a multiplexed stream for connecting to an untrusted context
* like a Dapp or other extension.
* @param {*} connectionStream - The Duplex stream to connect to.
2018-04-20 09:26:24 -07:00
* @param {string} originDomain - The domain requesting the stream, which
2018-04-18 17:54:50 -07:00
* may trigger a blacklist reload.
*/
setupUntrustedCommunication (connectionStream, originDomain) {
// Check if new connection is blacklisted
if (this.blacklistController.checkForPhishing(originDomain)) {
log.debug('MetaMask - sending phishing warning for', originDomain)
this.sendPhishingWarning(connectionStream, originDomain)
return
}
// setup multiplexing
const mux = setupMultiplex(connectionStream)
// connect features
this.setupProviderConnection(mux.createStream('provider'), originDomain)
this.setupPublicConfig(mux.createStream('publicConfig'))
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Used to create a multiplexed stream for connecting to a trusted context,
* like our own user interfaces, which have the provider APIs, but also
* receive the exported API from this controller, which includes trusted
* functions, like the ability to approve transactions or sign messages.
*
* @param {*} connectionStream - The duplex stream to connect to.
2018-04-20 09:26:24 -07:00
* @param {string} originDomain - The domain requesting the connection,
2018-04-18 17:54:50 -07:00
* used in logging and error reporting.
*/
setupTrustedCommunication (connectionStream, originDomain) {
// setup multiplexing
const mux = setupMultiplex(connectionStream)
// connect features
this.setupControllerConnection(mux.createStream('controller'))
this.setupProviderConnection(mux.createStream('provider'), originDomain)
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Called when we detect a suspicious domain. Requests the browser redirects
* to our anti-phishing page.
*
* @private
* @param {*} connectionStream - The duplex stream to the per-page script,
* for sending the reload attempt to.
2018-04-20 09:26:24 -07:00
* @param {string} hostname - The URL that triggered the suspicion.
2018-04-18 17:54:50 -07:00
*/
sendPhishingWarning (connectionStream, hostname) {
const mux = setupMultiplex(connectionStream)
const phishingStream = mux.createStream('phishing')
phishingStream.write({ hostname })
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for providing our API over a stream using Dnode.
* @param {*} outStream - The stream to provide our API over.
*/
setupControllerConnection (outStream) {
const api = this.getApi()
const dnode = Dnode(api)
// report new active controller connection
this.activeControllerConnections++
this.emit('controllerConnectionChanged', this.activeControllerConnections)
// connect dnode api to remote connection
pump(
outStream,
dnode,
outStream,
(err) => {
// report new active controller connection
this.activeControllerConnections--
this.emit('controllerConnectionChanged', this.activeControllerConnections)
// report any error
if (err) log.error(err)
}
)
dnode.on('remote', (remote) => {
// push updates to popup
2018-09-09 17:33:09 -07:00
const sendUpdate = (update) => remote.sendUpdate(update)
this.on('update', sendUpdate)
2018-09-09 17:33:09 -07:00
// remove update listener once the connection ends
dnode.on('end', () => this.removeListener('update', sendUpdate))
2017-01-27 19:35:03 -08:00
})
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for serving our ethereum provider over a given stream.
* @param {*} outStream - The stream to provide over.
2018-04-20 09:26:24 -07:00
* @param {string} origin - The URI of the requesting resource.
2018-04-18 17:54:50 -07:00
*/
setupProviderConnection (outStream, origin) {
// setup json rpc engine stack
const engine = new RpcEngine()
// create filter polyfill middleware
const filterMiddleware = createFilterMiddleware({
provider: this.provider,
2018-08-17 09:56:07 -07:00
blockTracker: this.blockTracker,
})
engine.push(createOriginMiddleware({ origin }))
engine.push(createLoggerMiddleware({ origin }))
engine.push(filterMiddleware)
engine.push(this.preferencesController.requestWatchAsset.bind(this.preferencesController))
2018-09-10 14:11:57 -07:00
engine.push(this.createTypedDataMiddleware('eth_signTypedData', 'V1').bind(this))
engine.push(this.createTypedDataMiddleware('eth_signTypedData_v1', 'V1').bind(this))
engine.push(this.createTypedDataMiddleware('eth_signTypedData_v3', 'V3', true).bind(this))
engine.push(createProviderMiddleware({ provider: this.provider }))
// setup connection
const providerStream = createEngineStream({ engine })
pump(
outStream,
providerStream,
outStream,
(err) => {
// cleanup filter polyfill middleware
filterMiddleware.destroy()
if (err) log.error(err)
}
)
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for providing our public config info over a stream.
* This includes info we like to be synchronous if possible, like
* the current selected account, and network ID.
*
* Since synchronous methods have been deprecated in web3,
* this is a good candidate for deprecation.
*
* @param {*} outStream - The stream to provide public config over.
*/
setupPublicConfig (outStream) {
2018-09-09 17:33:09 -07:00
const configStream = asStream(this.publicConfigStore)
pump(
2018-09-09 17:33:09 -07:00
configStream,
outStream,
(err) => {
2018-09-09 17:33:09 -07:00
configStream.destroy()
if (err) log.error(err)
}
)
}
2018-04-20 09:26:24 -07:00
/**
* Handle a KeyringController update
* @param {object} state the KC state
* @return {Promise<void>}
* @private
*/
async _onKeyringControllerUpdate (state) {
const {isUnlocked, keyrings} = state
const addresses = keyrings.reduce((acc, {accounts}) => acc.concat(accounts), [])
if (!addresses.length) {
return
}
// Ensure preferences + identities controller know about all addresses
this.preferencesController.addAddresses(addresses)
this.accountTracker.syncWithAddresses(addresses)
const wasLocked = !isUnlocked
if (wasLocked) {
const oldSelectedAddress = this.preferencesController.getSelectedAddress()
if (!addresses.includes(oldSelectedAddress)) {
const address = addresses[0]
await this.preferencesController.setSelectedAddress(address)
}
}
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for emitting the full MetaMask state to all registered listeners.
* @private
*/
privateSendUpdate () {
this.emit('update', this.getState())
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for estimating a good gas price at recent prices.
* Returns the lowest price that would have been included in
* 50% of recent blocks.
*
2018-04-20 09:26:24 -07:00
* @returns {string} A hex representation of the suggested wei gas price.
2018-04-18 17:54:50 -07:00
*/
getGasPrice () {
const { recentBlocksController } = this
const { recentBlocks } = recentBlocksController.store.getState()
// Return 1 gwei if no blocks have been observed:
if (recentBlocks.length === 0) {
return '0x' + GWEI_BN.toString(16)
}
const lowestPrices = recentBlocks.map((block) => {
if (!block.gasPrices || block.gasPrices.length < 1) {
return GWEI_BN
}
return block.gasPrices
.map(hexPrefix => hexPrefix.substr(2))
.map(hex => new BN(hex, 16))
.sort((a, b) => {
return a.gt(b) ? 1 : -1
})[0]
})
.map(number => number.div(GWEI_BN).toNumber())
const percentileNum = percentile(50, lowestPrices)
const percentileNumBn = new BN(percentileNum)
return '0x' + percentileNumBn.mul(GWEI_BN).toString(16)
}
/**
* Returns the nonce that will be associated with a transaction once approved
* @param address {string} - The hex string address for the transaction
* @returns Promise<number>
*/
async getPendingNonce (address) {
const { nonceDetails, releaseLock} = await this.txController.nonceTracker.getNonceLock(address)
const pendingNonce = nonceDetails.params.highestSuggested
releaseLock()
return pendingNonce
}
2018-03-15 15:27:10 -07:00
//=============================================================================
// CONFIG
//=============================================================================
2017-01-27 19:35:03 -08:00
// Log blocks
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for setting the user's preferred display currency.
2018-04-20 09:26:24 -07:00
* @param {string} currencyCode - The code of the preferred currency.
2018-04-18 17:54:50 -07:00
* @param {Function} cb - A callback function returning currency info.
*/
setCurrentCurrency (currencyCode, cb) {
try {
this.currencyController.setCurrentCurrency(currencyCode)
this.currencyController.updateConversionRate()
const data = {
conversionRate: this.currencyController.getConversionRate(),
currentCurrency: this.currencyController.getCurrentCurrency(),
conversionDate: this.currencyController.getConversionDate(),
}
cb(null, data)
} catch (err) {
cb(err)
}
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for forwarding the user to the easiest way to obtain ether,
* or the network "gas" currency, for the current selected network.
*
2018-04-20 09:26:24 -07:00
* @param {string} address - The address to fund.
* @param {string} amount - The amount of ether desired, as a base 10 string.
2018-04-18 17:54:50 -07:00
*/
buyEth (address, amount) {
if (!amount) amount = '5'
const network = this.networkController.getNetworkState()
const url = getBuyEthUrl({ network, address, amount })
if (url) this.platform.openWindow({ url })
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for triggering a shapeshift currency transfer.
2018-04-20 09:26:24 -07:00
* @param {string} depositAddress - The address to deposit to.
2018-04-18 17:54:50 -07:00
* @property {string} depositType - An abbreviation of the type of crypto currency to be deposited.
*/
2016-08-18 15:20:26 -07:00
createShapeShiftTx (depositAddress, depositType) {
this.shapeshiftController.createShapeShiftTx(depositAddress, depositType)
2016-08-18 10:40:35 -07:00
}
2017-09-29 16:09:38 -07:00
// network
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for selecting a custom URL for an ethereum RPC provider.
2018-04-20 09:26:24 -07:00
* @param {string} rpcTarget - A URL for a valid Ethereum RPC API.
2018-04-18 17:54:50 -07:00
* @returns {Promise<String>} - The RPC Target URL confirmed.
*/
async setCustomRpc (rpcTarget) {
this.networkController.setRpcTarget(rpcTarget)
2017-09-29 16:09:38 -07:00
await this.preferencesController.updateFrequentRpcList(rpcTarget)
return rpcTarget
}
2017-09-29 16:09:38 -07:00
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* Sets whether or not to use the blockie identicon format.
2018-04-20 09:26:24 -07:00
* @param {boolean} val - True for bockie, false for jazzicon.
2018-04-18 17:54:50 -07:00
* @param {Function} cb - A callback function called when complete.
*/
2017-11-25 14:57:54 -08:00
setUseBlockie (val, cb) {
try {
this.preferencesController.setUseBlockie(val)
cb(null)
} catch (err) {
cb(err)
}
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for setting a user's current locale, affecting the language rendered.
2018-04-20 09:26:24 -07:00
* @param {string} key - Locale identifier.
2018-04-18 17:54:50 -07:00
* @param {Function} cb - A callback function called when complete.
*/
2018-03-15 17:29:45 -07:00
setCurrentLocale (key, cb) {
try {
this.preferencesController.setCurrentLocale(key)
cb(null)
} catch (err) {
cb(err)
}
}
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for initializing storage the first time.
* @param {Object} initState - The default state to initialize with.
* @private
*/
recordFirstTimeInfo (initState) {
if (!('firstTimeInfo' in initState)) {
initState.firstTimeInfo = {
version,
date: Date.now(),
}
}
}
// TODO: Replace isClientOpen methods with `controllerConnectionChanged` events.
2018-04-20 09:26:24 -07:00
/**
2018-04-18 17:54:50 -07:00
* A method for recording whether the MetaMask user interface is open or not.
* @private
2018-04-20 09:26:24 -07:00
* @param {boolean} open
2018-04-18 17:54:50 -07:00
*/
set isClientOpen (open) {
this._isClientOpen = open
this.isClientOpenAndUnlocked = this.getState().isUnlocked && open
2018-07-20 16:58:03 -07:00
this.detectTokensController.isOpen = open
}
2018-04-20 09:26:24 -07:00
/**
2018-07-30 17:44:22 -07:00
* A method for activating the retrieval of price data,
* which should only be fetched when the UI is visible.
2018-04-18 17:54:50 -07:00
* @private
2018-04-20 09:26:24 -07:00
* @param {boolean} active - True if price data should be getting fetched.
2018-04-18 17:54:50 -07:00
*/
set isClientOpenAndUnlocked (active) {
this.tokenRatesController.isActive = active
}
2018-09-10 14:11:57 -07:00
/**
* Creates RPC engine middleware for processing eth_signTypedData requests
*
* @param {Object} req - request object
* @param {Object} res - response object
* @param {Function} - next
* @param {Function} - end
*/
createTypedDataMiddleware (methodName, version, reverse) {
2018-09-10 14:11:57 -07:00
return async (req, res, next, end) => {
const { method, params } = req
if (method === methodName) {
const promise = this.typedMessageManager.addUnapprovedMessageAsync({
data: reverse ? params[1] : params[0],
from: reverse ? params[0] : params[1],
2018-09-10 14:11:57 -07:00
}, req, version)
this.sendUpdate()
this.opts.showUnconfirmedMessage()
try {
res.result = await promise
end()
} catch (error) {
end(error)
}
} else {
next()
}
}
}
}