@trufflesuite/eth-json-rpc-infura
v4.0.3-0
Published
Fork of https://github.com/MetaMask/eth-json-rpc-infura
Downloads
19,848
Keywords
Readme
eth-json-rpc-infura
json-rpc-engine
middleware for infura's REST endpoints.
usage as provider
const createInfuraProvider = require('eth-json-rpc-infura/src/createProvider')
const Ethjs = require('ethjs')
const provider = createInfuraProvider({ network: 'mainnet' })
const eth = new Ethjs(provider)
usage as middleware
const createInfuraMiddleware = require('eth-json-rpc-infura')
const RpcEngine = require('json-rpc-engine')
const engine = new RpcEngine()
engine.push(createInfuraMiddleware({ network: 'ropsten' }))