|
|
@ -2,6 +2,7 @@ const Dnode = require('dnode') |
|
|
|
const Multiplex = require('multiplex') |
|
|
|
const Multiplex = require('multiplex') |
|
|
|
const Through = require('through2') |
|
|
|
const Through = require('through2') |
|
|
|
const eos = require('end-of-stream') |
|
|
|
const eos = require('end-of-stream') |
|
|
|
|
|
|
|
const combineStreams = require('pumpify') |
|
|
|
const extend = require('xtend') |
|
|
|
const extend = require('xtend') |
|
|
|
const EthStore = require('eth-store') |
|
|
|
const EthStore = require('eth-store') |
|
|
|
const PortStream = require('./lib/port-stream.js') |
|
|
|
const PortStream = require('./lib/port-stream.js') |
|
|
@ -28,10 +29,6 @@ function connectRemote(remotePort){ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
function handleEthRpcRequestStream(stream){ |
|
|
|
function handleEthRpcRequestStream(stream){ |
|
|
|
// portStream
|
|
|
|
|
|
|
|
stream.on('data', function(data){ |
|
|
|
|
|
|
|
console.log(data) |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
stream.on('data', onRpcRequest.bind(null, stream)) |
|
|
|
stream.on('data', onRpcRequest.bind(null, stream)) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -76,7 +73,7 @@ function onRpcRequest(remoteStream, payload){ |
|
|
|
// provider engine errors are included in response objects
|
|
|
|
// provider engine errors are included in response objects
|
|
|
|
// if (!payload.isMetamaskInternal) console.log('MetaMaskPlugin - RPC complete:', payload, '->', response)
|
|
|
|
// if (!payload.isMetamaskInternal) console.log('MetaMaskPlugin - RPC complete:', payload, '->', response)
|
|
|
|
try { |
|
|
|
try { |
|
|
|
remoteStream.push(response) |
|
|
|
remoteStream.write(response) |
|
|
|
} catch (err) { |
|
|
|
} catch (err) { |
|
|
|
console.error(err) |
|
|
|
console.error(err) |
|
|
|
} |
|
|
|
} |
|
|
@ -101,10 +98,12 @@ function handleInternalCommunication(portStream){ |
|
|
|
mx.destroy() |
|
|
|
mx.destroy() |
|
|
|
}) |
|
|
|
}) |
|
|
|
var dnodeStream = mx.createSharedStream('dnode') |
|
|
|
var dnodeStream = mx.createSharedStream('dnode') |
|
|
|
var providerStream = |
|
|
|
var providerStream = combineStreams( |
|
|
|
jsonStringifyStream() |
|
|
|
jsonStringifyStream(), |
|
|
|
.pipe(mx.createSharedStream('provider')) |
|
|
|
mx.createSharedStream('provider'), |
|
|
|
.pipe(jsonParseStream()) |
|
|
|
jsonParseStream() |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
linkDnode(dnodeStream) |
|
|
|
linkDnode(dnodeStream) |
|
|
|
handleEthRpcRequestStream(providerStream) |
|
|
|
handleEthRpcRequestStream(providerStream) |
|
|
|
} |
|
|
|
} |
|
|
|