You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
// 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.');
|
|
}
|
|
};
|
|
|
|
cleanContextForImports();
|
|
|
|
/* eslint-disable import/first */
|
|
import log from 'loglevel';
|
|
import { WindowPostMessageStream } from '@metamask/post-message-stream';
|
|
import { initializeProvider } from '@metamask/providers/dist/initializeInpageProvider';
|
|
|
|
restoreContextAfterImports();
|
|
|
|
log.setDefaultLevel(process.env.METAMASK_DEBUG ? 'debug' : 'warn');
|
|
|
|
//
|
|
// setup plugin communication
|
|
//
|
|
|
|
// setup background connection
|
|
const metamaskStream = new WindowPostMessageStream({
|
|
name: 'metamask-inpage',
|
|
target: 'metamask-contentscript',
|
|
});
|
|
|
|
initializeProvider({
|
|
connectionStream: metamaskStream,
|
|
logger: log,
|
|
shouldShimWeb3: true,
|
|
});
|
|
|