2016-07-07 05:32:36 +02:00
/*global Web3*/
2019-07-05 19:01:34 +02:00
// need to make sure we aren't affected by overlapping namespaces
// and that we dont affect the app with our namespace
// mostly a fix for web3's BigNumber if AMD's "define" is defined...
let _ _define
/ * *
* Caches reference to global define object and deletes it to
* avoid conflicts with other global define objects , such as
* AMD ' s define function
* /
const cleanContextForImports = ( ) => {
_ _define = global . define
try {
global . define = undefined
} catch ( _ ) {
console . warn ( 'MetaMask - global.define could not be deleted.' )
}
}
/ * *
* Restores global define object from cached reference
* /
const restoreContextAfterImports = ( ) => {
try {
global . define = _ _define
} catch ( _ ) {
console . warn ( 'MetaMask - global.define could not be overwritten.' )
}
}
2016-04-30 00:38:24 +02:00
cleanContextForImports ( )
2016-07-07 05:20:40 +02:00
require ( 'web3/dist/web3.min.js' )
2017-10-26 00:45:26 +02:00
const log = require ( 'loglevel' )
2016-08-11 23:04:20 +02:00
const LocalMessageDuplexStream = require ( 'post-message-stream' )
2018-06-15 00:15:23 +02:00
const setupDappAutoReload = require ( './lib/auto-reload.js' )
2018-08-21 00:39:03 +02:00
const MetamaskInpageProvider = require ( 'metamask-inpage-provider' )
2019-02-20 01:42:08 +01:00
const createStandardProvider = require ( './createStandardProvider' ) . default
2018-10-08 22:54:13 +02:00
2018-10-29 22:28:59 +01:00
let warned = false
2016-04-30 00:38:24 +02:00
restoreContextAfterImports ( )
2016-04-15 21:12:04 +02:00
2018-04-12 23:06:59 +02:00
log . setDefaultLevel ( process . env . METAMASK _DEBUG ? 'debug' : 'warn' )
2015-10-10 08:14:18 +02:00
2016-02-15 06:53:54 +01:00
//
2015-12-19 07:05:16 +01:00
// setup plugin communication
2016-02-15 06:53:54 +01:00
//
2016-04-15 21:12:04 +02:00
// setup background connection
2019-02-12 15:02:24 +01:00
const metamaskStream = new LocalMessageDuplexStream ( {
2015-12-19 07:05:16 +01:00
name : 'inpage' ,
target : 'contentscript' ,
} )
2016-05-06 01:04:43 +02:00
2016-05-23 00:23:16 +02:00
// compose the inpage provider
2019-02-12 15:02:24 +01:00
const inpageProvider = new MetamaskInpageProvider ( metamaskStream )
2018-10-18 00:29:40 +02:00
2018-10-18 01:17:39 +02:00
// set a high max listener count to avoid unnecesary warnings
inpageProvider . setMaxListeners ( 100 )
2016-04-15 21:12:04 +02:00
2019-08-21 16:15:57 +02:00
let warnedOfAutoRefreshDeprecation = false
2018-10-22 21:08:26 +02:00
// augment the provider with its enable method
2018-11-05 15:03:30 +01:00
inpageProvider . enable = function ( { force } = { } ) {
2019-08-21 16:15:57 +02:00
if (
! warnedOfAutoRefreshDeprecation &&
inpageProvider . autoRefreshOnNetworkChange
) {
console . warn ( ` MetaMask: MetaMask will soon stop reloading pages on network change.
If you rely upon this behavior , add a 'networkChanged' event handler to trigger the reload manually : https : //metamask.github.io/metamask-docs/API_Reference/Ethereum_Provider#ethereum.on(eventname%2C-callback)
Set 'ethereum.autoRefreshOnNetworkChange' to 'false' to silence this warning : https : //metamask.github.io/metamask-docs/API_Reference/Ethereum_Provider#ethereum.autorefreshonnetworkchange'
` )
warnedOfAutoRefreshDeprecation = true
}
2018-09-15 01:26:03 +02:00
return new Promise ( ( resolve , reject ) => {
2019-05-03 19:32:05 +02:00
inpageProvider . sendAsync ( { method : 'eth_requestAccounts' , params : [ force ] } , ( error , response ) => {
2019-05-31 22:07:58 +02:00
if ( error || response . error ) {
reject ( error || response . error )
2018-09-27 20:19:09 +02:00
} else {
2019-05-03 19:32:05 +02:00
resolve ( response . result )
2018-09-27 20:19:09 +02:00
}
2019-05-03 19:32:05 +02:00
} )
2018-09-15 01:26:03 +02:00
} )
}
2019-03-21 20:42:23 +01:00
// give the dapps control of a refresh they can toggle this off on the window.ethereum
// this will be default true so it does not break any old apps.
inpageProvider . autoRefreshOnNetworkChange = true
2019-07-05 19:01:34 +02:00
// publicConfig isn't populated until we get a message from background.
// Using this getter will ensure the state is available
const getPublicConfigWhenReady = async ( ) => {
const store = inpageProvider . publicConfigStore
let state = store . getState ( )
// if state is missing, wait for first update
if ( ! state . networkVersion ) {
state = await new Promise ( resolve => store . once ( 'update' , resolve ) )
console . log ( 'new state' , state )
}
return state
}
2018-10-22 21:08:26 +02:00
// add metamask-specific convenience methods
inpageProvider . _metamask = new Proxy ( {
/ * *
2019-05-03 19:32:05 +02:00
* Synchronously determines if this domain is currently enabled , with a potential false negative if called to soon
2018-10-22 21:08:26 +02:00
*
2019-05-03 19:32:05 +02:00
* @ returns { boolean } - returns true if this domain is currently enabled
2018-10-22 21:08:26 +02:00
* /
isEnabled : function ( ) {
2019-05-03 19:32:05 +02:00
const { isEnabled } = inpageProvider . publicConfigStore . getState ( )
return Boolean ( isEnabled )
2018-10-22 21:08:26 +02:00
} ,
/ * *
2019-05-03 19:32:05 +02:00
* Asynchronously determines if this domain is currently enabled
2018-10-22 21:08:26 +02:00
*
2019-05-03 19:32:05 +02:00
* @ returns { Promise < boolean > } - Promise resolving to true if this domain is currently enabled
2018-10-22 21:08:26 +02:00
* /
2019-05-03 19:32:05 +02:00
isApproved : async function ( ) {
const { isEnabled } = await getPublicConfigWhenReady ( )
return Boolean ( isEnabled )
2018-10-22 21:08:26 +02:00
} ,
/ * *
* Determines if MetaMask is unlocked by the user
*
* @ returns { Promise < boolean > } - Promise resolving to true if MetaMask is currently unlocked
* /
2019-05-03 19:32:05 +02:00
isUnlocked : async function ( ) {
const { isUnlocked } = await getPublicConfigWhenReady ( )
return Boolean ( isUnlocked )
2018-10-22 21:08:26 +02:00
} ,
} , {
2018-11-17 01:54:55 +01:00
get : function ( obj , prop ) {
2018-10-29 23:51:29 +01:00
! warned && console . warn ( 'Heads up! ethereum._metamask exposes methods that have ' +
2018-10-22 21:08:26 +02:00
'not been standardized yet. This means that these methods may not be implemented ' +
2018-10-29 23:51:29 +01:00
'in other dapp browsers and may be removed from MetaMask in the future.' )
2018-10-22 21:08:26 +02:00
warned = true
return obj [ prop ]
} ,
} )
2018-10-18 00:29:40 +02:00
2018-10-08 22:54:13 +02:00
// Work around for web3@1.0 deleting the bound `sendAsync` but not the unbound
2019-07-15 22:10:46 +02:00
// `sendAsync` method on the prototype, causing `this` reference issues
2018-10-08 22:54:13 +02:00
const proxiedInpageProvider = new Proxy ( inpageProvider , {
// straight up lie that we deleted the property so that it doesnt
// throw an error in strict mode
deleteProperty : ( ) => true ,
} )
2019-02-20 01:42:08 +01:00
window . ethereum = createStandardProvider ( proxiedInpageProvider )
2018-09-15 01:26:03 +02:00
2016-04-15 06:11:35 +02:00
//
2016-05-06 01:04:43 +02:00
// setup web3
2016-04-15 06:11:35 +02:00
//
2017-10-31 17:59:26 +01:00
if ( typeof window . web3 !== 'undefined' ) {
throw new Error ( ` MetaMask detected another web3.
MetaMask will not work reliably with another web3 extension .
This usually happens if you have two MetaMasks installed ,
or MetaMask and another web3 extension . Please remove one
and try again . ` )
}
2018-09-26 16:48:17 +02:00
2019-02-12 15:02:24 +01:00
const web3 = new Web3 ( proxiedInpageProvider )
2016-06-21 22:18:32 +02:00
web3 . setProvider = function ( ) {
2017-10-26 00:45:26 +02:00
log . debug ( 'MetaMask - overrode web3.setProvider' )
2016-04-15 06:11:35 +02:00
}
2017-10-26 00:45:26 +02:00
log . debug ( 'MetaMask - injected web3' )
2018-06-12 18:28:50 +02:00
2018-06-15 00:15:23 +02:00
setupDappAutoReload ( web3 , inpageProvider . publicConfigStore )
2018-06-12 18:28:50 +02:00
// export global web3, with usage-detection and deprecation warning
2018-06-15 00:15:23 +02:00
/ * T O D O : U n c o m m e n t t h i s a r e a o n c e a u t o - r e l o a d . j s h a s b e e n d e p r e c a t e d :
2018-06-12 20:04:37 +02:00
let hasBeenWarned = false
global . web3 = new Proxy ( web3 , {
get : ( _web3 , key ) => {
// show warning once on web3 access
if ( ! hasBeenWarned && key !== 'currentProvider' ) {
console . warn ( 'MetaMask: web3 will be deprecated in the near future in favor of the ethereumProvider \nhttps://github.com/MetaMask/faq/blob/master/detecting_metamask.md#web3-deprecation' )
hasBeenWarned = true
}
// return value normally
return _web3 [ key ]
} ,
set : ( _web3 , key , value ) => {
// set value normally
_web3 [ key ] = value
} ,
} )
2018-06-15 00:15:23 +02:00
* /
2016-04-15 22:04:17 +02:00
2017-01-31 00:25:12 +01:00
// set web3 defaultAccount
2016-06-21 22:18:32 +02:00
inpageProvider . publicConfigStore . subscribe ( function ( state ) {
2017-01-31 00:38:32 +01:00
web3 . eth . defaultAccount = state . selectedAddress
2016-04-15 22:04:17 +02:00
} )
2019-04-24 19:49:38 +02:00
inpageProvider . publicConfigStore . subscribe ( function ( state ) {
if ( state . onboardingcomplete ) {
window . postMessage ( 'onboardingcomplete' , '*' )
}
} )