npm i -D @dappface/ethereum-provider
import { EthereumProvider } from '@dappface/ethereum-provider'
import Web3 from 'web3.js' // optional
const ethereum = new EthereumProvider({
url: 'wss://your-remote-node-url'
})
window.ethereum = ethereum
// optionally wrap with your favorite ethereum util library
const web3 = new Web3(ethereum)
// TODO
// TODO
// TODO
// TODO