@radarrelay/web3-builder
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

web3-builder

A tool to build and manage your own Web3 instance.

npm version

Introduction

This package simplifies the process to create your own Web3 instance, change the active wallet, and update the connection to the Ethereum network.

This is made possible using building blocks called subproviders. Subproviders are like normal web3 providers, but only handle a subset of RPC methods. They can be used to route, or otherwise handle, RPC calls before returning a result to the caller.

web3-builder uses subproviders to build out the Web3 object like so:

screen shot 2018-06-01 at 12 13 31 pm

If you'd like more flexibility when creating Web3 Providers consider using web3-provider-engine directly.

Installation

npm

npm install @radarrelay/web3-builder

Yarn

yarn add @radarrelay/web3-builder

Usage

Web3 Creation

import { Web3Builder } from '@radarrelay/web3-builder';
import { InjectedWeb3Subprovider } from '@radarrelay/subproviders';

const walletSubprovider = new InjectedWeb3Subprovider(window.web3.currentProvider);
let web3 = Web3Builder.createWeb3(walletSubprovider, InfuraNetwork.Kovan);

Update Wallet

import { EthLightwalletSubprovider } from '@radarrelay/subproviders';

const newWalletSubprovider = new EthLightwalletSubprovider(signing, keystore, pwDerivedKey);

// Updating the wallet returns a new instance of web3
web3 = Web3Builder.updateWallet(newWalletSubprovider);

Update Network

// Updating the rpc connection returns a new instance of web3
web3 = Web3Builder.updateRpcConnection(InfuraNetwork.Mainnet);

Grab the Provider

Want to use your own version of Web3?

You can grab the Ethereum Provider and instantiate your preferred version of Web3:

import * as Web3 from 'web3';

const anotherWeb3Instance = new Web3(web3.currentProvider);

OR

import * as Web3 from 'web3';

const anotherWeb3Instance = new Web3(web3Builder.provider);

Contributing

Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Package Sidebar

Install

npm i @radarrelay/web3-builder

Weekly Downloads

0

Version

0.2.0

License

MIT

Unpacked Size

117 kB

Total Files

18

Last publish

Collaborators

  • chpwssn
  • ian-radar
  • sj-radar
  • cavan-radar