A Metamask fork with Infura removed and default networks editable
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.
|
|
|
const Web3 = require('web3')
|
|
|
|
const setupProvider = require('./lib/setup-provider.js')
|
|
|
|
|
|
|
|
//
|
|
|
|
// setup web3
|
|
|
|
//
|
|
|
|
|
|
|
|
var provider = setupProvider()
|
|
|
|
hijackProvider(provider)
|
|
|
|
var web3 = new Web3(provider)
|
|
|
|
web3.setProvider = function(){
|
|
|
|
console.log('MetaMask - overrode web3.setProvider')
|
|
|
|
}
|
|
|
|
console.log('metamask lib hijacked provider')
|
|
|
|
|
|
|
|
//
|
|
|
|
// export web3
|
|
|
|
//
|
|
|
|
|
|
|
|
global.web3 = web3
|
|
|
|
|
|
|
|
//
|
|
|
|
// ui stuff
|
|
|
|
//
|
|
|
|
|
|
|
|
var shouldPop = false
|
|
|
|
window.addEventListener('click', function(){
|
|
|
|
if (!shouldPop) return
|
|
|
|
shouldPop = false
|
|
|
|
window.open('http://127.0.0.1:9001/popup/popup.html', '', 'width=1000')
|
|
|
|
console.log('opening window...')
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
function hijackProvider(provider){
|
|
|
|
var _super = provider.sendAsync.bind(provider)
|
|
|
|
provider.sendAsync = function(payload, cb){
|
|
|
|
if (payload.method === 'eth_sendTransaction') {
|
|
|
|
console.log('saw send')
|
|
|
|
shouldPop = true
|
|
|
|
}
|
|
|
|
_super(payload, cb)
|
|
|
|
}
|
|
|
|
}
|