Skip to content
This repository was archived by the owner on Oct 4, 2019. It is now read-only.

ethereumproject/web3.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

84dc984 · Aug 30, 2016
Jul 19, 2016
Oct 21, 2015
Jul 19, 2016
Jun 29, 2016
Mar 30, 2015
Nov 5, 2014
Jul 30, 2015
May 23, 2015
Nov 6, 2014
Oct 5, 2015
Aug 17, 2016
Jun 10, 2015
Aug 28, 2016
May 30, 2016
Oct 5, 2015
Oct 8, 2015
Oct 8, 2015
Aug 18, 2016
Aug 18, 2016
Jul 16, 2015

Repository files navigation

Migration 0.13.0 -> 0.14.0

web3.js version 0.14.0 supports multiple instances of web3 object. To migrate to this version, please follow the guide:

-var web3 = require('web3');
+var Web3 = require('web3');
+var web3 = new Web3();

Ethereum JavaScript API

This is the Ethereum compatible JavaScript API which implements the Generic JSON RPC spec. It's available for component as an embeddable js and as a meteor.js package.

dependency status dev dependency status Stories in Ready

You need to run a local Ethereum node to use this library.

Documentation

Installation

Meteor.js

meteor add ethereumclassic:web3

As Browser module

Component

component install ethereumproject/web3.js
  • Include web3.min.js in your html file. (not required for the meteor package)

Usage

Use the web3 object directly from global namespace:

console.log(web3); // {eth: .., shh: ...} // it's here!

Set a provider (HttpProvider)

web3.setProvider(new web3.providers.HttpProvider('http://localhost:8545'));

There you go, now you can use it:

var coinbase = web3.eth.coinbase;
var balance = web3.eth.getBalance(coinbase);

You can find more examples in example directory.

Contribute!

Requirements

  • Node.js
  • npm
sudo apt-get update
sudo apt-get install nodejs
sudo apt-get install npm
sudo apt-get install nodejs-legacy

Building (gulp)

npm run-script build

Testing (mocha)

npm test