Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 488 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 488 Bytes

iolite-web3

This is a wrapper over the original web3.js library. Use it with iolite-provider to be able to use extra fields of iOlite.

Install

npm install --save iolite-web3

Usage

const Web3 = require('iolite-web3')
const IoliteProvider = require('iolite-provider')

const provider = new IoliteProvider('https://sia.node.iolite.io')
const web3 = new Web3(provider)
});