2017-01-05 20:06:18 +01:00
|
|
|
const EventEmitter = require('events')
|
2016-06-24 22:05:21 +02:00
|
|
|
const extend = require('xtend')
|
2017-09-08 06:17:49 +02:00
|
|
|
const pump = require('pump')
|
2017-01-27 05:52:46 +01:00
|
|
|
const Dnode = require('dnode')
|
2017-01-25 04:47:00 +01:00
|
|
|
const ObservableStore = require('obs-store')
|
2017-11-28 22:09:18 +01:00
|
|
|
const asStream = require('obs-store/lib/asStream')
|
2017-09-22 22:59:25 +02:00
|
|
|
const AccountTracker = require('./lib/account-tracker')
|
2017-01-27 00:09:31 +01:00
|
|
|
const EthQuery = require('eth-query')
|
2017-08-25 00:44:40 +02:00
|
|
|
const RpcEngine = require('json-rpc-engine')
|
2017-09-14 00:17:26 +02:00
|
|
|
const debounce = require('debounce')
|
2017-08-25 00:44:40 +02:00
|
|
|
const createEngineStream = require('json-rpc-middleware-stream/engineStream')
|
2017-09-08 06:26:25 +02:00
|
|
|
const createFilterMiddleware = require('eth-json-rpc-filters')
|
2017-09-14 00:17:26 +02:00
|
|
|
const createOriginMiddleware = require('./lib/createOriginMiddleware')
|
|
|
|
const createLoggerMiddleware = require('./lib/createLoggerMiddleware')
|
|
|
|
const createProviderMiddleware = require('./lib/createProviderMiddleware')
|
2017-01-27 05:52:46 +01:00
|
|
|
const setupMultiplex = require('./lib/stream-utils.js').setupMultiplex
|
2017-09-22 23:38:40 +02:00
|
|
|
const KeyringController = require('eth-keyring-controller')
|
2017-05-18 23:54:02 +02:00
|
|
|
const NetworkController = require('./controllers/network')
|
2017-02-27 19:39:48 +01:00
|
|
|
const PreferencesController = require('./controllers/preferences')
|
|
|
|
const CurrencyController = require('./controllers/currency')
|
2016-12-07 23:34:15 +01:00
|
|
|
const NoticeController = require('./notice-controller')
|
2017-02-27 19:39:48 +01:00
|
|
|
const ShapeShiftController = require('./controllers/shapeshift')
|
2017-03-09 22:58:42 +01:00
|
|
|
const AddressBookController = require('./controllers/address-book')
|
2017-06-22 21:32:08 +02:00
|
|
|
const InfuraController = require('./controllers/infura')
|
2017-08-03 00:54:59 +02:00
|
|
|
const BlacklistController = require('./controllers/blacklist')
|
2017-12-18 01:36:03 +01:00
|
|
|
const RecentBlocksController = require('./controllers/recent-blocks')
|
2017-01-28 01:11:59 +01:00
|
|
|
const MessageManager = require('./lib/message-manager')
|
2017-02-21 23:25:47 +01:00
|
|
|
const PersonalMessageManager = require('./lib/personal-message-manager')
|
2017-09-29 18:24:08 +02:00
|
|
|
const TypedMessageManager = require('./lib/typed-message-manager')
|
2017-05-16 19:27:41 +02:00
|
|
|
const TransactionController = require('./controllers/transactions')
|
2017-09-22 23:06:54 +02:00
|
|
|
const BalancesController = require('./controllers/computed-balances')
|
2016-06-25 00:52:56 +02:00
|
|
|
const ConfigManager = require('./lib/config-manager')
|
2016-11-28 21:43:44 +01:00
|
|
|
const nodeify = require('./lib/nodeify')
|
2017-01-19 00:17:08 +01:00
|
|
|
const accountImporter = require('./account-import-strategies')
|
2017-04-05 03:23:46 +02:00
|
|
|
const getBuyEthUrl = require('./lib/buy-eth-url')
|
2017-11-20 22:27:29 +01:00
|
|
|
const Mutex = require('await-semaphore').Mutex
|
2017-01-11 09:46:44 +01:00
|
|
|
const version = require('../manifest.json').version
|
2018-01-06 06:24:20 +01:00
|
|
|
const BN = require('ethereumjs-util').BN
|
|
|
|
const GWEI_BN = new BN('1000000000')
|
|
|
|
const percentile = require('percentile')
|
2016-11-22 01:46:26 +01:00
|
|
|
|
2017-01-05 20:06:18 +01:00
|
|
|
module.exports = class MetamaskController extends EventEmitter {
|
2016-06-24 22:05:21 +02:00
|
|
|
|
|
|
|
constructor (opts) {
|
2017-01-05 20:06:18 +01:00
|
|
|
super()
|
2017-06-16 03:00:24 +02:00
|
|
|
|
|
|
|
this.sendUpdate = debounce(this.privateSendUpdate.bind(this), 200)
|
|
|
|
|
2016-06-25 02:00:35 +02:00
|
|
|
this.opts = opts
|
2017-04-27 06:05:45 +02:00
|
|
|
const initState = opts.initState || {}
|
2017-11-28 20:14:57 +01:00
|
|
|
this.recordFirstTimeInfo(initState)
|
2017-01-12 04:04:19 +01:00
|
|
|
|
2017-03-31 03:33:19 +02:00
|
|
|
// platform-specific api
|
|
|
|
this.platform = opts.platform
|
|
|
|
|
2017-01-12 04:04:19 +01:00
|
|
|
// observable state store
|
2017-01-28 22:12:12 +01:00
|
|
|
this.store = new ObservableStore(initState)
|
2017-01-28 01:11:59 +01:00
|
|
|
|
2017-11-20 22:47:35 +01:00
|
|
|
// lock to ensure only one vault created at once
|
|
|
|
this.createVaultMutex = new Mutex()
|
|
|
|
|
2017-02-03 05:59:47 +01:00
|
|
|
// network store
|
2017-05-18 23:54:02 +02:00
|
|
|
this.networkController = new NetworkController(initState.NetworkController)
|
2017-06-22 21:32:08 +02:00
|
|
|
|
2017-01-12 04:04:19 +01:00
|
|
|
// config manager
|
|
|
|
this.configManager = new ConfigManager({
|
|
|
|
store: this.store,
|
|
|
|
})
|
2017-01-27 00:09:31 +01:00
|
|
|
|
2017-01-30 21:42:24 +01:00
|
|
|
// preferences controller
|
2017-01-30 22:01:07 +01:00
|
|
|
this.preferencesController = new PreferencesController({
|
|
|
|
initState: initState.PreferencesController,
|
2017-01-30 21:42:24 +01:00
|
|
|
})
|
|
|
|
|
2017-02-03 08:32:24 +01:00
|
|
|
// currency controller
|
|
|
|
this.currencyController = new CurrencyController({
|
|
|
|
initState: initState.CurrencyController,
|
|
|
|
})
|
|
|
|
this.currencyController.updateConversionRate()
|
|
|
|
this.currencyController.scheduleConversionInterval()
|
|
|
|
|
2017-06-22 21:32:08 +02:00
|
|
|
// infura controller
|
|
|
|
this.infuraController = new InfuraController({
|
|
|
|
initState: initState.InfuraController,
|
|
|
|
})
|
|
|
|
this.infuraController.scheduleInfuraNetworkCheck()
|
|
|
|
|
2017-08-03 00:54:59 +02:00
|
|
|
this.blacklistController = new BlacklistController({
|
|
|
|
initState: initState.BlacklistController,
|
|
|
|
})
|
|
|
|
this.blacklistController.scheduleUpdates()
|
2017-06-22 21:32:08 +02:00
|
|
|
|
2017-10-19 00:09:32 +02:00
|
|
|
// rpc provider
|
|
|
|
this.provider = this.initializeProvider()
|
|
|
|
this.blockTracker = this.provider._blockTracker
|
2017-01-27 00:09:31 +01:00
|
|
|
|
2017-12-18 01:36:03 +01:00
|
|
|
this.recentBlocksController = new RecentBlocksController({
|
|
|
|
blockTracker: this.blockTracker,
|
|
|
|
})
|
|
|
|
|
2017-01-27 00:09:31 +01:00
|
|
|
// eth data query tools
|
|
|
|
this.ethQuery = new EthQuery(this.provider)
|
2017-09-26 23:30:29 +02:00
|
|
|
// account tracker watches balances, nonces, and any code at their address.
|
2017-09-22 23:16:19 +02:00
|
|
|
this.accountTracker = new AccountTracker({
|
2017-02-03 07:05:06 +01:00
|
|
|
provider: this.provider,
|
2017-09-08 06:26:25 +02:00
|
|
|
blockTracker: this.blockTracker,
|
2017-02-03 07:05:06 +01:00
|
|
|
})
|
2017-01-28 01:11:59 +01:00
|
|
|
|
2017-01-12 04:04:19 +01:00
|
|
|
// key mgmt
|
2016-10-21 04:01:04 +02:00
|
|
|
this.keyringController = new KeyringController({
|
2017-01-28 22:12:12 +01:00
|
|
|
initState: initState.KeyringController,
|
2017-05-18 23:54:02 +02:00
|
|
|
getNetwork: this.networkController.getNetworkState.bind(this.networkController),
|
2017-09-22 22:25:08 +02:00
|
|
|
encryptor: opts.encryptor || undefined,
|
2016-06-25 01:13:27 +02:00
|
|
|
})
|
2017-09-22 22:59:25 +02:00
|
|
|
|
2017-09-29 20:19:54 +02:00
|
|
|
// If only one account exists, make sure it is selected.
|
2017-10-19 02:07:22 +02:00
|
|
|
this.keyringController.memStore.subscribe((state) => {
|
|
|
|
const addresses = state.keyrings.reduce((res, keyring) => {
|
|
|
|
return res.concat(keyring.accounts)
|
|
|
|
}, [])
|
2017-09-29 20:19:54 +02:00
|
|
|
if (addresses.length === 1) {
|
|
|
|
const address = addresses[0]
|
|
|
|
this.preferencesController.setSelectedAddress(address)
|
|
|
|
}
|
2017-10-19 00:08:34 +02:00
|
|
|
this.accountTracker.syncWithAddresses(addresses)
|
2017-04-04 18:38:56 +02:00
|
|
|
})
|
2017-01-27 00:09:31 +01:00
|
|
|
|
2017-03-10 19:34:46 +01:00
|
|
|
// address book controller
|
|
|
|
this.addressBookController = new AddressBookController({
|
|
|
|
initState: initState.AddressBookController,
|
|
|
|
}, this.keyringController)
|
|
|
|
|
2017-01-27 00:09:31 +01:00
|
|
|
// tx mgmt
|
2017-05-16 19:27:41 +02:00
|
|
|
this.txController = new TransactionController({
|
|
|
|
initState: initState.TransactionController || initState.TransactionManager,
|
2017-05-18 23:54:02 +02:00
|
|
|
networkStore: this.networkController.networkStore,
|
2017-02-03 06:09:17 +01:00
|
|
|
preferencesStore: this.preferencesController.store,
|
2016-12-16 19:33:36 +01:00
|
|
|
txHistoryLimit: 40,
|
2017-05-18 23:54:02 +02:00
|
|
|
getNetwork: this.networkController.getNetworkState.bind(this),
|
2017-01-13 11:00:11 +01:00
|
|
|
signTransaction: this.keyringController.signTransaction.bind(this.keyringController),
|
2016-12-16 19:33:36 +01:00
|
|
|
provider: this.provider,
|
2017-09-08 06:26:25 +02:00
|
|
|
blockTracker: this.blockTracker,
|
2017-05-24 02:06:19 +02:00
|
|
|
ethQuery: this.ethQuery,
|
2018-01-06 06:24:20 +01:00
|
|
|
getGasPrice: this.getGasPrice.bind(this),
|
2016-12-16 19:33:36 +01:00
|
|
|
})
|
2017-11-06 13:35:51 +01:00
|
|
|
this.txController.on('newUnapprovedTx', opts.showUnapprovedTx.bind(opts))
|
2017-01-28 01:11:59 +01:00
|
|
|
|
2017-09-13 00:06:19 +02:00
|
|
|
// computed balances (accounting for pending transactions)
|
|
|
|
this.balancesController = new BalancesController({
|
2017-09-22 22:59:25 +02:00
|
|
|
accountTracker: this.accountTracker,
|
2017-09-13 00:06:19 +02:00
|
|
|
txController: this.txController,
|
2017-09-26 20:33:36 +02:00
|
|
|
blockTracker: this.blockTracker,
|
2017-09-13 00:06:19 +02:00
|
|
|
})
|
2017-09-14 00:02:05 +02:00
|
|
|
this.networkController.on('networkDidChange', () => {
|
|
|
|
this.balancesController.updateAllBalances()
|
|
|
|
})
|
|
|
|
this.balancesController.updateAllBalances()
|
2017-09-13 00:06:19 +02:00
|
|
|
|
2017-01-27 00:09:31 +01:00
|
|
|
// notices
|
|
|
|
this.noticeController = new NoticeController({
|
2017-02-03 07:23:45 +01:00
|
|
|
initState: initState.NoticeController,
|
2017-11-28 20:14:57 +01:00
|
|
|
version,
|
2017-11-28 20:22:09 +01:00
|
|
|
firstVersion: initState.firstTimeInfo.version,
|
2017-01-27 00:09:31 +01:00
|
|
|
})
|
|
|
|
this.noticeController.updateNoticesList()
|
|
|
|
// to be uncommented when retrieving notices from a remote server.
|
|
|
|
// this.noticeController.startPolling()
|
2016-10-11 23:33:30 +02:00
|
|
|
|
2017-02-04 05:45:20 +01:00
|
|
|
this.shapeshiftController = new ShapeShiftController({
|
|
|
|
initState: initState.ShapeShiftController,
|
|
|
|
})
|
|
|
|
|
2017-05-18 23:54:02 +02:00
|
|
|
this.networkController.lookupNetwork()
|
2017-01-28 01:11:59 +01:00
|
|
|
this.messageManager = new MessageManager()
|
2017-02-21 23:25:47 +01:00
|
|
|
this.personalMessageManager = new PersonalMessageManager()
|
2017-09-29 18:24:08 +02:00
|
|
|
this.typedMessageManager = new TypedMessageManager()
|
2017-01-27 00:09:31 +01:00
|
|
|
this.publicConfigStore = this.initPublicConfigStore()
|
2016-10-11 23:33:30 +02:00
|
|
|
|
2017-02-03 03:21:22 +01:00
|
|
|
// manual disk state subscriptions
|
2017-05-16 19:27:41 +02:00
|
|
|
this.txController.store.subscribe((state) => {
|
|
|
|
this.store.updateState({ TransactionController: state })
|
2017-02-03 08:47:00 +01:00
|
|
|
})
|
2017-01-29 07:12:15 +01:00
|
|
|
this.keyringController.store.subscribe((state) => {
|
|
|
|
this.store.updateState({ KeyringController: state })
|
|
|
|
})
|
2017-01-30 22:01:07 +01:00
|
|
|
this.preferencesController.store.subscribe((state) => {
|
|
|
|
this.store.updateState({ PreferencesController: state })
|
2017-01-30 21:42:24 +01:00
|
|
|
})
|
2017-03-09 22:58:42 +01:00
|
|
|
this.addressBookController.store.subscribe((state) => {
|
|
|
|
this.store.updateState({ AddressBookController: state })
|
|
|
|
})
|
2017-02-03 08:32:24 +01:00
|
|
|
this.currencyController.store.subscribe((state) => {
|
|
|
|
this.store.updateState({ CurrencyController: state })
|
|
|
|
})
|
2017-02-03 08:47:00 +01:00
|
|
|
this.noticeController.store.subscribe((state) => {
|
|
|
|
this.store.updateState({ NoticeController: state })
|
|
|
|
})
|
2017-02-04 05:45:20 +01:00
|
|
|
this.shapeshiftController.store.subscribe((state) => {
|
|
|
|
this.store.updateState({ ShapeShiftController: state })
|
|
|
|
})
|
2017-05-23 08:12:28 +02:00
|
|
|
this.networkController.store.subscribe((state) => {
|
2017-05-18 23:54:02 +02:00
|
|
|
this.store.updateState({ NetworkController: state })
|
|
|
|
})
|
2017-08-03 00:54:59 +02:00
|
|
|
this.blacklistController.store.subscribe((state) => {
|
|
|
|
this.store.updateState({ BlacklistController: state })
|
|
|
|
})
|
2017-12-18 01:36:03 +01:00
|
|
|
this.recentBlocksController.store.subscribe((state) => {
|
|
|
|
this.store.updateState({ RecentBlocks: state })
|
|
|
|
})
|
2017-06-22 21:32:08 +02:00
|
|
|
this.infuraController.store.subscribe((state) => {
|
|
|
|
this.store.updateState({ InfuraController: state })
|
|
|
|
})
|
2017-02-03 03:21:22 +01:00
|
|
|
|
|
|
|
// manual mem state subscriptions
|
2017-12-18 01:36:03 +01:00
|
|
|
const sendUpdate = this.sendUpdate.bind(this)
|
|
|
|
this.networkController.store.subscribe(sendUpdate)
|
|
|
|
this.accountTracker.store.subscribe(sendUpdate)
|
|
|
|
this.txController.memStore.subscribe(sendUpdate)
|
|
|
|
this.balancesController.store.subscribe(sendUpdate)
|
|
|
|
this.messageManager.memStore.subscribe(sendUpdate)
|
|
|
|
this.personalMessageManager.memStore.subscribe(sendUpdate)
|
|
|
|
this.typedMessageManager.memStore.subscribe(sendUpdate)
|
|
|
|
this.keyringController.memStore.subscribe(sendUpdate)
|
|
|
|
this.preferencesController.store.subscribe(sendUpdate)
|
|
|
|
this.recentBlocksController.store.subscribe(sendUpdate)
|
|
|
|
this.addressBookController.store.subscribe(sendUpdate)
|
|
|
|
this.currencyController.store.subscribe(sendUpdate)
|
|
|
|
this.noticeController.memStore.subscribe(sendUpdate)
|
|
|
|
this.shapeshiftController.store.subscribe(sendUpdate)
|
|
|
|
this.infuraController.store.subscribe(sendUpdate)
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
|
|
|
|
2017-01-27 06:19:09 +01:00
|
|
|
//
|
|
|
|
// Constructor helpers
|
|
|
|
//
|
|
|
|
|
2017-10-19 00:09:32 +02:00
|
|
|
initializeProvider () {
|
|
|
|
const providerOpts = {
|
|
|
|
static: {
|
|
|
|
eth_syncing: false,
|
|
|
|
web3_clientVersion: `MetaMask/v${version}`,
|
|
|
|
},
|
|
|
|
// account mgmt
|
|
|
|
getAccounts: (cb) => {
|
|
|
|
const isUnlocked = this.keyringController.memStore.getState().isUnlocked
|
|
|
|
const result = []
|
|
|
|
const selectedAddress = this.preferencesController.getSelectedAddress()
|
|
|
|
|
|
|
|
// only show address if account is unlocked
|
|
|
|
if (isUnlocked && selectedAddress) {
|
|
|
|
result.push(selectedAddress)
|
|
|
|
}
|
|
|
|
cb(null, result)
|
|
|
|
},
|
|
|
|
// tx signing
|
|
|
|
processTransaction: nodeify(async (txParams) => await this.txController.newUnapprovedTransaction(txParams), this),
|
|
|
|
// old style msg signing
|
|
|
|
processMessage: this.newUnsignedMessage.bind(this),
|
|
|
|
// personal_sign msg signing
|
|
|
|
processPersonalMessage: this.newUnsignedPersonalMessage.bind(this),
|
|
|
|
processTypedMessage: this.newUnsignedTypedMessage.bind(this),
|
|
|
|
}
|
|
|
|
const providerProxy = this.networkController.initializeProvider(providerOpts)
|
|
|
|
return providerProxy
|
|
|
|
}
|
|
|
|
|
2017-01-27 06:19:09 +01:00
|
|
|
initPublicConfigStore () {
|
|
|
|
// get init state
|
2017-05-05 02:56:30 +02:00
|
|
|
const publicConfigStore = new ObservableStore()
|
2017-05-05 02:50:59 +02:00
|
|
|
|
|
|
|
// memStore -> transform -> publicConfigStore
|
|
|
|
this.on('update', (memState) => {
|
|
|
|
const publicState = selectPublicState(memState)
|
|
|
|
publicConfigStore.putState(publicState)
|
|
|
|
})
|
|
|
|
|
|
|
|
function selectPublicState (memState) {
|
|
|
|
const result = {
|
|
|
|
selectedAddress: memState.isUnlocked ? memState.selectedAddress : undefined,
|
|
|
|
networkVersion: memState.network,
|
|
|
|
}
|
2017-01-27 06:19:09 +01:00
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
return publicConfigStore
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2017-01-27 07:30:12 +01:00
|
|
|
// State Management
|
2017-01-27 06:19:09 +01:00
|
|
|
//
|
|
|
|
|
2016-06-25 00:52:56 +02:00
|
|
|
getState () {
|
2017-02-01 09:31:26 +01:00
|
|
|
const wallet = this.configManager.getWallet()
|
|
|
|
const vault = this.keyringController.store.getState().vault
|
|
|
|
const isInitialized = (!!wallet || !!vault)
|
2017-09-13 23:20:19 +02:00
|
|
|
|
2017-02-01 05:02:38 +01:00
|
|
|
return extend(
|
2017-02-01 09:31:26 +01:00
|
|
|
{
|
|
|
|
isInitialized,
|
|
|
|
},
|
2017-05-23 07:56:10 +02:00
|
|
|
this.networkController.store.getState(),
|
2017-09-26 23:15:16 +02:00
|
|
|
this.accountTracker.store.getState(),
|
2017-05-16 19:27:41 +02:00
|
|
|
this.txController.memStore.getState(),
|
2017-02-03 03:21:22 +01:00
|
|
|
this.messageManager.memStore.getState(),
|
2017-02-21 23:25:47 +01:00
|
|
|
this.personalMessageManager.memStore.getState(),
|
2017-09-29 18:24:08 +02:00
|
|
|
this.typedMessageManager.memStore.getState(),
|
2017-02-03 02:07:52 +01:00
|
|
|
this.keyringController.memStore.getState(),
|
2017-09-13 23:20:19 +02:00
|
|
|
this.balancesController.store.getState(),
|
2017-02-01 05:02:38 +01:00
|
|
|
this.preferencesController.store.getState(),
|
2017-03-09 22:58:42 +01:00
|
|
|
this.addressBookController.store.getState(),
|
2017-02-03 08:32:24 +01:00
|
|
|
this.currencyController.store.getState(),
|
2017-02-03 07:23:45 +01:00
|
|
|
this.noticeController.memStore.getState(),
|
2017-06-22 21:32:08 +02:00
|
|
|
this.infuraController.store.getState(),
|
2017-12-18 01:36:03 +01:00
|
|
|
this.recentBlocksController.store.getState(),
|
2017-02-01 09:31:26 +01:00
|
|
|
// config manager
|
|
|
|
this.configManager.getConfig(),
|
2017-02-04 05:45:20 +01:00
|
|
|
this.shapeshiftController.store.getState(),
|
2017-02-01 05:02:38 +01:00
|
|
|
{
|
|
|
|
lostAccounts: this.configManager.getLostAccounts(),
|
2017-02-03 01:54:16 +01:00
|
|
|
seedWords: this.configManager.getSeedWords(),
|
2017-02-01 05:02:38 +01:00
|
|
|
}
|
|
|
|
)
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
|
|
|
|
2017-01-27 06:19:09 +01:00
|
|
|
//
|
|
|
|
// Remote Features
|
|
|
|
//
|
|
|
|
|
2016-06-25 00:52:56 +02:00
|
|
|
getApi () {
|
2016-10-21 04:01:04 +02:00
|
|
|
const keyringController = this.keyringController
|
2017-01-30 22:01:07 +01:00
|
|
|
const preferencesController = this.preferencesController
|
2017-05-16 19:27:41 +02:00
|
|
|
const txController = this.txController
|
2016-12-16 21:44:47 +01:00
|
|
|
const noticeController = this.noticeController
|
2017-03-10 00:10:27 +01:00
|
|
|
const addressBookController = this.addressBookController
|
2017-09-30 01:09:38 +02:00
|
|
|
const networkController = this.networkController
|
2016-06-24 22:05:21 +02:00
|
|
|
|
|
|
|
return {
|
2017-01-27 07:30:12 +01:00
|
|
|
// etc
|
2017-04-27 06:05:45 +02:00
|
|
|
getState: (cb) => cb(null, this.getState()),
|
|
|
|
setCurrentCurrency: this.setCurrentCurrency.bind(this),
|
|
|
|
markAccountsFound: this.markAccountsFound.bind(this),
|
2017-09-30 01:09:38 +02:00
|
|
|
|
2016-07-21 22:41:10 +02:00
|
|
|
// coinbase
|
|
|
|
buyEth: this.buyEth.bind(this),
|
2016-08-18 19:40:35 +02:00
|
|
|
// shapeshift
|
2016-08-19 00:20:26 +02:00
|
|
|
createShapeShiftTx: this.createShapeShiftTx.bind(this),
|
2017-01-28 01:11:59 +01:00
|
|
|
|
2017-01-27 07:30:12 +01:00
|
|
|
// primary HD keyring management
|
2017-10-19 21:15:26 +02:00
|
|
|
addNewAccount: nodeify(this.addNewAccount, this),
|
2017-04-27 06:05:45 +02:00
|
|
|
placeSeedWords: this.placeSeedWords.bind(this),
|
|
|
|
clearSeedWordCache: this.clearSeedWordCache.bind(this),
|
|
|
|
importAccountWithStrategy: this.importAccountWithStrategy.bind(this),
|
2017-01-27 07:30:12 +01:00
|
|
|
|
|
|
|
// vault management
|
2017-10-19 02:07:22 +02:00
|
|
|
submitPassword: nodeify(keyringController.submitPassword, keyringController),
|
2017-01-27 07:30:12 +01:00
|
|
|
|
2017-09-30 01:09:38 +02:00
|
|
|
// network management
|
|
|
|
setProviderType: nodeify(networkController.setProviderType, networkController),
|
|
|
|
setCustomRpc: nodeify(this.setCustomRpc, this),
|
|
|
|
|
2017-01-30 22:01:07 +01:00
|
|
|
// PreferencesController
|
2017-07-13 00:06:49 +02:00
|
|
|
setSelectedAddress: nodeify(preferencesController.setSelectedAddress, preferencesController),
|
|
|
|
addToken: nodeify(preferencesController.addToken, preferencesController),
|
|
|
|
setCurrentAccountTab: nodeify(preferencesController.setCurrentAccountTab, preferencesController),
|
2017-01-30 22:01:07 +01:00
|
|
|
|
2017-03-10 00:10:27 +01:00
|
|
|
// AddressController
|
2017-07-13 00:06:49 +02:00
|
|
|
setAddressBook: nodeify(addressBookController.setAddressBook, addressBookController),
|
2017-03-10 00:10:27 +01:00
|
|
|
|
2017-01-27 07:30:12 +01:00
|
|
|
// KeyringController
|
2017-07-13 00:06:49 +02:00
|
|
|
setLocked: nodeify(keyringController.setLocked, keyringController),
|
2017-10-17 22:25:27 +02:00
|
|
|
createNewVaultAndKeychain: nodeify(this.createNewVaultAndKeychain, this),
|
|
|
|
createNewVaultAndRestore: nodeify(this.createNewVaultAndRestore, this),
|
2017-07-13 00:06:49 +02:00
|
|
|
addNewKeyring: nodeify(keyringController.addNewKeyring, keyringController),
|
|
|
|
saveAccountLabel: nodeify(keyringController.saveAccountLabel, keyringController),
|
|
|
|
exportAccount: nodeify(keyringController.exportAccount, keyringController),
|
2017-01-27 07:30:12 +01:00
|
|
|
|
2017-05-16 19:27:41 +02:00
|
|
|
// txController
|
2017-07-26 20:56:52 +02:00
|
|
|
cancelTransaction: nodeify(txController.cancelTransaction, txController),
|
2017-07-13 00:06:49 +02:00
|
|
|
updateAndApproveTransaction: nodeify(txController.updateAndApproveTransaction, txController),
|
2017-12-07 05:20:15 +01:00
|
|
|
retryTransaction: nodeify(this.retryTransaction, this),
|
2017-02-03 05:20:13 +01:00
|
|
|
|
|
|
|
// messageManager
|
2017-07-13 00:06:49 +02:00
|
|
|
signMessage: nodeify(this.signMessage, this),
|
2017-04-27 06:05:45 +02:00
|
|
|
cancelMessage: this.cancelMessage.bind(this),
|
2017-01-27 07:30:12 +01:00
|
|
|
|
2017-02-23 01:23:13 +01:00
|
|
|
// personalMessageManager
|
2017-07-13 00:06:49 +02:00
|
|
|
signPersonalMessage: nodeify(this.signPersonalMessage, this),
|
2017-04-27 06:05:45 +02:00
|
|
|
cancelPersonalMessage: this.cancelPersonalMessage.bind(this),
|
2017-01-27 07:30:12 +01:00
|
|
|
|
2017-09-29 18:24:08 +02:00
|
|
|
// personalMessageManager
|
|
|
|
signTypedMessage: nodeify(this.signTypedMessage, this),
|
|
|
|
cancelTypedMessage: this.cancelTypedMessage.bind(this),
|
|
|
|
|
2016-12-07 23:34:15 +01:00
|
|
|
// notices
|
2017-04-27 06:05:45 +02:00
|
|
|
checkNotices: noticeController.updateNoticesList.bind(noticeController),
|
2016-12-16 21:44:47 +01:00
|
|
|
markNoticeRead: noticeController.markNoticeRead.bind(noticeController),
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-27 05:52:46 +01:00
|
|
|
setupUntrustedCommunication (connectionStream, originDomain) {
|
2017-08-02 23:26:10 +02:00
|
|
|
// Check if new connection is blacklisted
|
2017-08-03 00:54:59 +02:00
|
|
|
if (this.blacklistController.checkForPhishing(originDomain)) {
|
2017-09-13 19:28:29 +02:00
|
|
|
log.debug('MetaMask - sending phishing warning for', originDomain)
|
2017-08-02 23:26:10 +02:00
|
|
|
this.sendPhishingWarning(connectionStream, originDomain)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-01-27 05:52:46 +01:00
|
|
|
// setup multiplexing
|
2017-09-13 19:21:00 +02:00
|
|
|
const mux = setupMultiplex(connectionStream)
|
2017-01-27 05:52:46 +01:00
|
|
|
// connect features
|
2017-09-13 19:21:00 +02:00
|
|
|
this.setupProviderConnection(mux.createStream('provider'), originDomain)
|
|
|
|
this.setupPublicConfig(mux.createStream('publicConfig'))
|
2017-01-27 05:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
setupTrustedCommunication (connectionStream, originDomain) {
|
|
|
|
// setup multiplexing
|
2017-09-13 19:21:00 +02:00
|
|
|
const mux = setupMultiplex(connectionStream)
|
2017-01-27 05:52:46 +01:00
|
|
|
// connect features
|
2017-09-13 19:21:00 +02:00
|
|
|
this.setupControllerConnection(mux.createStream('controller'))
|
|
|
|
this.setupProviderConnection(mux.createStream('provider'), originDomain)
|
2017-01-27 05:52:46 +01:00
|
|
|
}
|
|
|
|
|
2017-08-02 23:26:10 +02:00
|
|
|
sendPhishingWarning (connectionStream, hostname) {
|
2017-09-13 19:21:00 +02:00
|
|
|
const mux = setupMultiplex(connectionStream)
|
|
|
|
const phishingStream = mux.createStream('phishing')
|
2017-08-02 23:26:10 +02:00
|
|
|
phishingStream.write({ hostname })
|
|
|
|
}
|
|
|
|
|
2017-01-27 05:52:46 +01:00
|
|
|
setupControllerConnection (outStream) {
|
|
|
|
const api = this.getApi()
|
|
|
|
const dnode = Dnode(api)
|
2017-09-08 06:17:49 +02:00
|
|
|
pump(
|
|
|
|
outStream,
|
|
|
|
dnode,
|
|
|
|
outStream,
|
|
|
|
(err) => {
|
2017-09-13 19:28:29 +02:00
|
|
|
if (err) log.error(err)
|
2017-09-08 06:17:49 +02:00
|
|
|
}
|
|
|
|
)
|
2017-01-27 05:52:46 +01:00
|
|
|
dnode.on('remote', (remote) => {
|
|
|
|
// push updates to popup
|
|
|
|
const sendUpdate = remote.sendUpdate.bind(remote)
|
|
|
|
this.on('update', sendUpdate)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-09-14 00:17:26 +02:00
|
|
|
setupProviderConnection (outStream, origin) {
|
2017-09-08 06:17:49 +02:00
|
|
|
// setup json rpc engine stack
|
2017-08-25 00:44:40 +02:00
|
|
|
const engine = new RpcEngine()
|
2017-09-14 00:19:44 +02:00
|
|
|
|
|
|
|
// create filter polyfill middleware
|
|
|
|
const filterMiddleware = createFilterMiddleware({
|
2017-09-08 06:26:25 +02:00
|
|
|
provider: this.provider,
|
|
|
|
blockTracker: this.blockTracker,
|
2017-09-14 00:19:44 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
engine.push(createOriginMiddleware({ origin }))
|
|
|
|
engine.push(createLoggerMiddleware({ origin }))
|
|
|
|
engine.push(filterMiddleware)
|
2017-08-25 00:44:40 +02:00
|
|
|
engine.push(createProviderMiddleware({ provider: this.provider }))
|
2017-09-08 06:17:49 +02:00
|
|
|
|
2017-08-25 00:44:40 +02:00
|
|
|
// setup connection
|
|
|
|
const providerStream = createEngineStream({ engine })
|
2017-09-08 06:17:49 +02:00
|
|
|
pump(
|
|
|
|
outStream,
|
|
|
|
providerStream,
|
|
|
|
outStream,
|
|
|
|
(err) => {
|
2017-09-14 00:19:44 +02:00
|
|
|
// cleanup filter polyfill middleware
|
|
|
|
filterMiddleware.destroy()
|
2017-09-13 19:28:29 +02:00
|
|
|
if (err) log.error(err)
|
2017-09-08 06:17:49 +02:00
|
|
|
}
|
|
|
|
)
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
|
|
|
|
2017-01-28 04:35:03 +01:00
|
|
|
setupPublicConfig (outStream) {
|
2017-09-08 06:17:49 +02:00
|
|
|
pump(
|
2017-11-28 22:09:18 +01:00
|
|
|
asStream(this.publicConfigStore),
|
2017-09-08 06:17:49 +02:00
|
|
|
outStream,
|
|
|
|
(err) => {
|
2017-09-13 19:28:29 +02:00
|
|
|
if (err) log.error(err)
|
2017-09-08 06:17:49 +02:00
|
|
|
}
|
2017-01-28 04:35:03 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-16 03:00:24 +02:00
|
|
|
privateSendUpdate () {
|
2017-02-01 05:02:38 +01:00
|
|
|
this.emit('update', this.getState())
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 06:24:20 +01:00
|
|
|
getGasPrice () {
|
|
|
|
const { recentBlocksController } = this
|
|
|
|
const { recentBlocks } = recentBlocksController.store.getState()
|
2018-01-09 00:08:05 +01:00
|
|
|
|
|
|
|
// Return 1 gwei if no blocks have been observed:
|
|
|
|
if (recentBlocks.length === 0) {
|
|
|
|
return '0x' + GWEI_BN.toString(16)
|
|
|
|
}
|
|
|
|
|
2018-01-06 06:24:20 +01:00
|
|
|
const lowestPrices = recentBlocks.map((block) => {
|
2018-01-09 00:41:57 +01:00
|
|
|
if (!block.gasPrices || block.gasPrices.length < 1) {
|
|
|
|
return GWEI_BN
|
2018-01-06 07:08:03 +01:00
|
|
|
}
|
|
|
|
return block.gasPrices
|
|
|
|
.map(hexPrefix => hexPrefix.substr(2))
|
|
|
|
.map(hex => new BN(hex, 16))
|
2018-01-06 06:24:20 +01:00
|
|
|
.sort((a, b) => {
|
|
|
|
return a.gt(b) ? 1 : -1
|
|
|
|
})[0]
|
|
|
|
})
|
|
|
|
.map(number => number.div(GWEI_BN).toNumber())
|
2018-01-09 00:41:57 +01:00
|
|
|
|
2018-01-06 07:08:03 +01:00
|
|
|
const percentileNum = percentile(50, lowestPrices)
|
|
|
|
const percentileNumBn = new BN(percentileNum)
|
|
|
|
return '0x' + percentileNumBn.mul(GWEI_BN).toString(16)
|
2018-01-06 06:24:20 +01:00
|
|
|
}
|
|
|
|
|
2017-01-27 07:30:12 +01:00
|
|
|
//
|
|
|
|
// Vault Management
|
|
|
|
//
|
|
|
|
|
2017-11-20 22:27:29 +01:00
|
|
|
async createNewVaultAndKeychain (password) {
|
|
|
|
const release = await this.createVaultMutex.acquire()
|
2017-11-20 22:47:35 +01:00
|
|
|
let vault
|
|
|
|
|
|
|
|
try {
|
|
|
|
const accounts = await this.keyringController.getAccounts()
|
|
|
|
|
|
|
|
if (accounts.length > 0) {
|
|
|
|
vault = await this.keyringController.fullUpdate()
|
|
|
|
|
|
|
|
} else {
|
2017-11-29 00:35:20 +01:00
|
|
|
vault = await this.keyringController.createNewVaultAndKeychain(password)
|
2017-11-20 22:47:35 +01:00
|
|
|
this.selectFirstIdentity(vault)
|
|
|
|
}
|
|
|
|
release()
|
|
|
|
} catch (err) {
|
|
|
|
release()
|
|
|
|
throw err
|
2017-11-20 22:27:29 +01:00
|
|
|
}
|
2017-10-17 22:09:41 +02:00
|
|
|
|
2017-11-20 22:47:35 +01:00
|
|
|
return vault
|
2017-11-20 22:27:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async createNewVaultAndRestore (password, seed) {
|
|
|
|
const release = await this.createVaultMutex.acquire()
|
2018-01-04 01:06:46 +01:00
|
|
|
try {
|
|
|
|
const vault = await this.keyringController.createNewVaultAndRestore(password, seed)
|
|
|
|
this.selectFirstIdentity(vault)
|
|
|
|
release()
|
|
|
|
return vault
|
|
|
|
} catch (err) {
|
|
|
|
release()
|
|
|
|
throw err
|
|
|
|
}
|
2017-10-17 22:19:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
selectFirstIdentity (vault) {
|
|
|
|
const { identities } = vault
|
|
|
|
const address = Object.keys(identities)[0]
|
|
|
|
this.preferencesController.setSelectedAddress(address)
|
|
|
|
}
|
|
|
|
|
2017-01-27 07:30:12 +01:00
|
|
|
//
|
|
|
|
// Opinionated Keyring Management
|
|
|
|
//
|
|
|
|
|
2017-10-19 21:15:26 +02:00
|
|
|
async addNewAccount (cb) {
|
2017-01-27 07:30:12 +01:00
|
|
|
const primaryKeyring = this.keyringController.getKeyringsByType('HD Key Tree')[0]
|
|
|
|
if (!primaryKeyring) return cb(new Error('MetamaskController - No HD Key Tree found'))
|
2017-10-19 21:15:26 +02:00
|
|
|
const keyringController = this.keyringController
|
|
|
|
const oldAccounts = await keyringController.getAccounts()
|
|
|
|
const keyState = await keyringController.addNewAccount(primaryKeyring)
|
|
|
|
const newAccounts = await keyringController.getAccounts()
|
|
|
|
|
|
|
|
newAccounts.forEach((address) => {
|
|
|
|
if (!oldAccounts.includes(address)) {
|
|
|
|
this.preferencesController.setSelectedAddress(address)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return keyState
|
2017-01-27 07:30:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Adds the current vault's seed words to the UI's state tree.
|
|
|
|
//
|
|
|
|
// Used when creating a first vault, to allow confirmation.
|
|
|
|
// Also used when revealing the seed words in the confirmation view.
|
|
|
|
placeSeedWords (cb) {
|
|
|
|
const primaryKeyring = this.keyringController.getKeyringsByType('HD Key Tree')[0]
|
|
|
|
if (!primaryKeyring) return cb(new Error('MetamaskController - No HD Key Tree found'))
|
|
|
|
primaryKeyring.serialize()
|
|
|
|
.then((serialized) => {
|
|
|
|
const seedWords = serialized.mnemonic
|
|
|
|
this.configManager.setSeedWords(seedWords)
|
2017-03-28 17:23:25 +02:00
|
|
|
cb(null, seedWords)
|
2017-01-27 07:30:12 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearSeedWordCache
|
|
|
|
//
|
|
|
|
// Removes the primary account's seed words from the UI's state tree,
|
|
|
|
// ensuring they are only ever available in the background process.
|
|
|
|
clearSeedWordCache (cb) {
|
|
|
|
this.configManager.setSeedWords(null)
|
2017-01-30 22:09:46 +01:00
|
|
|
cb(null, this.preferencesController.getSelectedAddress())
|
2017-01-27 07:30:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
importAccountWithStrategy (strategy, args, cb) {
|
|
|
|
accountImporter.importAccount(strategy, args)
|
|
|
|
.then((privateKey) => {
|
|
|
|
return this.keyringController.addNewKeyring('Simple Key Pair', [ privateKey ])
|
|
|
|
})
|
|
|
|
.then(keyring => keyring.getAccounts())
|
2017-01-31 00:08:31 +01:00
|
|
|
.then((accounts) => this.preferencesController.setSelectedAddress(accounts[0]))
|
2017-01-27 07:30:12 +01:00
|
|
|
.then(() => { cb(null, this.keyringController.fullUpdate()) })
|
|
|
|
.catch((reason) => { cb(reason) })
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Identity Management
|
|
|
|
//
|
2017-12-07 05:20:15 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
async retryTransaction (txId, cb) {
|
|
|
|
await this.txController.retryTransaction(txId)
|
|
|
|
const state = await this.getState()
|
|
|
|
return state
|
|
|
|
}
|
|
|
|
|
2017-01-27 07:30:12 +01:00
|
|
|
|
2016-06-25 00:52:56 +02:00
|
|
|
newUnsignedMessage (msgParams, cb) {
|
2017-04-27 06:05:45 +02:00
|
|
|
const msgId = this.messageManager.addUnapprovedMessage(msgParams)
|
2017-02-01 20:54:01 +01:00
|
|
|
this.sendUpdate()
|
|
|
|
this.opts.showUnconfirmedMessage()
|
|
|
|
this.messageManager.once(`${msgId}:finished`, (data) => {
|
|
|
|
switch (data.status) {
|
2017-02-03 23:59:07 +01:00
|
|
|
case 'signed':
|
2017-02-01 20:54:01 +01:00
|
|
|
return cb(null, data.rawSig)
|
|
|
|
case 'rejected':
|
2017-02-24 01:00:43 +01:00
|
|
|
return cb(new Error('MetaMask Message Signature: User denied message signature.'))
|
2017-02-01 20:54:01 +01:00
|
|
|
default:
|
|
|
|
return cb(new Error(`MetaMask Message Signature: Unknown problem: ${JSON.stringify(msgParams)}`))
|
|
|
|
}
|
2017-01-28 01:11:59 +01:00
|
|
|
})
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
|
|
|
|
2017-02-23 23:23:45 +01:00
|
|
|
newUnsignedPersonalMessage (msgParams, cb) {
|
2017-02-24 01:00:43 +01:00
|
|
|
if (!msgParams.from) {
|
|
|
|
return cb(new Error('MetaMask Message Signature: from field is required.'))
|
|
|
|
}
|
|
|
|
|
2017-04-27 06:05:45 +02:00
|
|
|
const msgId = this.personalMessageManager.addUnapprovedMessage(msgParams)
|
2017-02-23 23:23:45 +01:00
|
|
|
this.sendUpdate()
|
|
|
|
this.opts.showUnconfirmedMessage()
|
|
|
|
this.personalMessageManager.once(`${msgId}:finished`, (data) => {
|
|
|
|
switch (data.status) {
|
|
|
|
case 'signed':
|
|
|
|
return cb(null, data.rawSig)
|
|
|
|
case 'rejected':
|
2017-02-24 01:00:43 +01:00
|
|
|
return cb(new Error('MetaMask Message Signature: User denied message signature.'))
|
2017-02-23 23:23:45 +01:00
|
|
|
default:
|
|
|
|
return cb(new Error(`MetaMask Message Signature: Unknown problem: ${JSON.stringify(msgParams)}`))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-09-29 18:24:08 +02:00
|
|
|
newUnsignedTypedMessage (msgParams, cb) {
|
2017-10-05 23:39:35 +02:00
|
|
|
let msgId
|
|
|
|
try {
|
|
|
|
msgId = this.typedMessageManager.addUnapprovedMessage(msgParams)
|
|
|
|
this.sendUpdate()
|
|
|
|
this.opts.showUnconfirmedMessage()
|
|
|
|
} catch (e) {
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
|
2017-09-29 18:24:08 +02:00
|
|
|
this.typedMessageManager.once(`${msgId}:finished`, (data) => {
|
|
|
|
switch (data.status) {
|
|
|
|
case 'signed':
|
|
|
|
return cb(null, data.rawSig)
|
|
|
|
case 'rejected':
|
|
|
|
return cb(new Error('MetaMask Message Signature: User denied message signature.'))
|
|
|
|
default:
|
|
|
|
return cb(new Error(`MetaMask Message Signature: Unknown problem: ${JSON.stringify(msgParams)}`))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-01-28 01:11:59 +01:00
|
|
|
signMessage (msgParams, cb) {
|
2017-02-23 23:23:45 +01:00
|
|
|
log.info('MetaMaskController - signMessage')
|
2017-01-28 01:11:59 +01:00
|
|
|
const msgId = msgParams.metamaskId
|
2017-02-23 23:23:45 +01:00
|
|
|
|
|
|
|
// 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()
|
|
|
|
})
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
|
|
|
|
2017-04-27 06:05:45 +02:00
|
|
|
cancelMessage (msgId, cb) {
|
2017-02-24 01:00:43 +01:00
|
|
|
const messageManager = this.messageManager
|
|
|
|
messageManager.rejectMsg(msgId)
|
|
|
|
if (cb && typeof cb === 'function') {
|
|
|
|
cb(null, this.getState())
|
|
|
|
}
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
|
|
|
|
2017-02-21 23:25:47 +01:00
|
|
|
// Prefixed Style Message Signing Methods:
|
2017-02-21 23:30:07 +01:00
|
|
|
approvePersonalMessage (msgParams, cb) {
|
2017-04-27 06:05:45 +02:00
|
|
|
const msgId = this.personalMessageManager.addUnapprovedMessage(msgParams)
|
2017-02-21 23:25:47 +01:00
|
|
|
this.sendUpdate()
|
|
|
|
this.opts.showUnconfirmedMessage()
|
|
|
|
this.personalMessageManager.once(`${msgId}:finished`, (data) => {
|
|
|
|
switch (data.status) {
|
|
|
|
case 'signed':
|
|
|
|
return cb(null, data.rawSig)
|
|
|
|
case 'rejected':
|
|
|
|
return cb(new Error('MetaMask Message Signature: User denied transaction signature.'))
|
|
|
|
default:
|
|
|
|
return cb(new Error(`MetaMask Message Signature: Unknown problem: ${JSON.stringify(msgParams)}`))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
signPersonalMessage (msgParams) {
|
2017-02-23 23:23:45 +01:00
|
|
|
log.info('MetaMaskController - signPersonalMessage')
|
2017-02-21 23:25:47 +01:00
|
|
|
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)
|
2017-02-23 23:23:45 +01:00
|
|
|
return this.getState()
|
2017-02-21 23:25:47 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-09-29 18:24:08 +02:00
|
|
|
signTypedMessage (msgParams) {
|
|
|
|
log.info('MetaMaskController - signTypedMessage')
|
|
|
|
const msgId = msgParams.metamaskId
|
|
|
|
// sets the status op the message to 'approved'
|
|
|
|
// and removes the metamaskId for signing
|
|
|
|
return this.typedMessageManager.approveMessage(msgParams)
|
|
|
|
.then((cleanMsgParams) => {
|
|
|
|
// signs the message
|
|
|
|
return this.keyringController.signTypedMessage(cleanMsgParams)
|
|
|
|
})
|
|
|
|
.then((rawSig) => {
|
|
|
|
// tells the listener that the message has been signed
|
|
|
|
// and can be returned to the dapp
|
|
|
|
this.typedMessageManager.setMsgStatusSigned(msgId, rawSig)
|
|
|
|
return this.getState()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-04-27 06:05:45 +02:00
|
|
|
cancelPersonalMessage (msgId, cb) {
|
2017-02-24 01:00:43 +01:00
|
|
|
const messageManager = this.personalMessageManager
|
|
|
|
messageManager.rejectMsg(msgId)
|
|
|
|
if (cb && typeof cb === 'function') {
|
|
|
|
cb(null, this.getState())
|
|
|
|
}
|
|
|
|
}
|
2017-01-28 04:35:03 +01:00
|
|
|
|
2017-09-29 18:24:08 +02:00
|
|
|
cancelTypedMessage (msgId, cb) {
|
|
|
|
const messageManager = this.typedMessageManager
|
|
|
|
messageManager.rejectMsg(msgId)
|
|
|
|
if (cb && typeof cb === 'function') {
|
|
|
|
cb(null, this.getState())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-28 04:35:03 +01:00
|
|
|
markAccountsFound (cb) {
|
|
|
|
this.configManager.setLostAccounts([])
|
|
|
|
this.sendUpdate()
|
|
|
|
cb(null, this.getState())
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
|
|
|
|
2017-04-27 06:05:45 +02:00
|
|
|
restoreOldVaultAccounts (migratorOutput) {
|
2017-01-28 04:35:03 +01:00
|
|
|
const { serialized } = migratorOutput
|
|
|
|
return this.keyringController.restoreKeyring(serialized)
|
|
|
|
.then(() => migratorOutput)
|
|
|
|
}
|
|
|
|
|
2017-04-27 06:05:45 +02:00
|
|
|
restoreOldLostAccounts (migratorOutput) {
|
2017-01-28 04:35:03 +01:00
|
|
|
const { lostAccounts } = migratorOutput
|
|
|
|
if (lostAccounts) {
|
|
|
|
this.configManager.setLostAccounts(lostAccounts.map(acct => acct.address))
|
|
|
|
return this.importLostAccounts(migratorOutput)
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
2017-01-28 04:35:03 +01:00
|
|
|
return Promise.resolve(migratorOutput)
|
2016-06-24 22:05:21 +02:00
|
|
|
}
|
|
|
|
|
2017-01-28 04:35:03 +01:00
|
|
|
// IMPORT LOST ACCOUNTS
|
|
|
|
// @Object with key lostAccounts: @Array accounts <{ address, privateKey }>
|
|
|
|
// Uses the array's private keys to create a new Simple Key Pair keychain
|
|
|
|
// and add it to the keyring controller.
|
|
|
|
importLostAccounts ({ lostAccounts }) {
|
|
|
|
const privKeys = lostAccounts.map(acct => acct.privateKey)
|
|
|
|
return this.keyringController.restoreKeyring({
|
|
|
|
type: 'Simple Key Pair',
|
|
|
|
data: privKeys,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// config
|
|
|
|
//
|
2016-06-24 22:05:21 +02:00
|
|
|
|
2017-01-28 04:35:03 +01:00
|
|
|
// Log blocks
|
2016-10-06 12:24:28 +02:00
|
|
|
|
2017-02-03 08:32:24 +01:00
|
|
|
setCurrentCurrency (currencyCode, cb) {
|
2016-07-21 18:30:58 +02:00
|
|
|
try {
|
2017-02-03 08:32:24 +01:00
|
|
|
this.currencyController.setCurrentCurrency(currencyCode)
|
|
|
|
this.currencyController.updateConversionRate()
|
2016-07-21 19:15:34 +02:00
|
|
|
const data = {
|
2017-02-03 08:32:24 +01:00
|
|
|
conversionRate: this.currencyController.getConversionRate(),
|
2017-03-15 01:06:16 +01:00
|
|
|
currentCurrency: this.currencyController.getCurrentCurrency(),
|
2017-02-03 08:32:24 +01:00
|
|
|
conversionDate: this.currencyController.getConversionDate(),
|
2016-07-21 19:15:34 +02:00
|
|
|
}
|
2017-02-03 08:32:24 +01:00
|
|
|
cb(null, data)
|
2016-12-16 21:44:47 +01:00
|
|
|
} catch (err) {
|
2017-02-03 08:32:24 +01:00
|
|
|
cb(err)
|
2016-07-22 01:44:50 +02:00
|
|
|
}
|
2016-07-22 20:15:47 +02:00
|
|
|
}
|
|
|
|
|
2016-07-21 22:41:10 +02:00
|
|
|
buyEth (address, amount) {
|
|
|
|
if (!amount) amount = '5'
|
2017-05-18 23:54:02 +02:00
|
|
|
const network = this.networkController.getNetworkState()
|
2017-04-05 03:23:46 +02:00
|
|
|
const url = getBuyEthUrl({ network, address, amount })
|
2017-03-31 03:33:19 +02:00
|
|
|
if (url) this.platform.openWindow({ url })
|
2016-07-21 22:41:10 +02:00
|
|
|
}
|
|
|
|
|
2016-08-19 00:20:26 +02:00
|
|
|
createShapeShiftTx (depositAddress, depositType) {
|
2017-02-04 05:45:20 +01:00
|
|
|
this.shapeshiftController.createShapeShiftTx(depositAddress, depositType)
|
2016-08-18 19:40:35 +02:00
|
|
|
}
|
2016-12-21 20:01:04 +01:00
|
|
|
|
2017-09-30 01:09:38 +02:00
|
|
|
// network
|
2016-12-22 02:21:10 +01:00
|
|
|
|
2017-09-30 01:09:38 +02:00
|
|
|
async setCustomRpc (rpcTarget, rpcList) {
|
2017-05-18 23:54:02 +02:00
|
|
|
this.networkController.setRpcTarget(rpcTarget)
|
2017-09-30 01:09:38 +02:00
|
|
|
await this.preferencesController.updateFrequentRpcList(rpcTarget)
|
|
|
|
return rpcTarget
|
2016-12-22 02:21:10 +01:00
|
|
|
}
|
2017-09-30 01:09:38 +02:00
|
|
|
|
2017-11-28 20:14:57 +01:00
|
|
|
recordFirstTimeInfo (initState) {
|
|
|
|
if (!('firstTimeInfo' in initState)) {
|
|
|
|
initState.firstTimeInfo = {
|
|
|
|
version,
|
|
|
|
date: Date.now(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-22 00:47:25 +02:00
|
|
|
}
|