mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
e6c4d63ccd
Calls to `eth.sign` are now transiently persisted in memory, and displayed in a chronological stack with pending transactions (which are still persisted to disk). This allows the user a method to sign/cancel transactions even if they miss the Chrome notification. Improved a lot of the view routing, to avoid cases where routes would show an empty account view, or transition to the accounts list when it shouldn't. Broke the transaction approval view into a couple components so messages and transactions could have their own templates.
64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
const React = require('react')
|
|
const render = require('react-dom').render
|
|
const h = require('react-hyperscript')
|
|
const extend = require('xtend')
|
|
const Root = require('./app/root')
|
|
const actions = require('./app/actions')
|
|
const configureStore = require('./app/store')
|
|
|
|
module.exports = launchApp
|
|
|
|
function launchApp(opts) {
|
|
|
|
var accountManager = opts.accountManager
|
|
actions._setAccountManager(accountManager)
|
|
|
|
// check if we are unlocked first
|
|
accountManager.getState(function(err, metamaskState){
|
|
if (err) throw err
|
|
startApp(metamaskState, accountManager, opts)
|
|
})
|
|
|
|
}
|
|
|
|
function startApp(metamaskState, accountManager, opts){
|
|
|
|
// parse opts
|
|
var store = configureStore({
|
|
|
|
// metamaskState represents the cross-tab state
|
|
metamask: metamaskState,
|
|
|
|
// appState represents the current tab's popup state
|
|
appState: {
|
|
currentDomain: opts.currentDomain,
|
|
},
|
|
|
|
// Which blockchain we are using:
|
|
networkVersion: opts.networkVersion,
|
|
})
|
|
|
|
// if unconfirmed txs, start on txConf page
|
|
if (Object.keys(metamaskState.unconfTxs || {}).length) {
|
|
store.dispatch(actions.showConfTxPage())
|
|
}
|
|
|
|
// if unconfirmed messages, start on msgConf page
|
|
if (Object.keys(metamaskState.unconfMsgs || {}).length) {
|
|
store.dispatch(actions.showConfTxPage())
|
|
}
|
|
|
|
accountManager.on('update', function(metamaskState){
|
|
store.dispatch(actions.updateMetamaskState(metamaskState))
|
|
})
|
|
|
|
// start app
|
|
render(
|
|
h(Root, {
|
|
// inject initial state
|
|
store: store,
|
|
}
|
|
), opts.container)
|
|
|
|
}
|