Go to file
Marek Kotewicz 4f9aaec191 Merge pull request #94 from ethereum/signature
signature methods separated from abi.js
2015-03-04 00:12:18 +01:00
dist removed web3 dependency from abi.js 2015-03-03 18:38:23 +01:00
example event_inc example 2015-02-02 11:52:56 +01:00
lib removed web3 dependency from abi.js 2015-03-03 18:38:23 +01:00
test added transactionCount && uncleCount methods 2015-02-17 19:55:02 +01:00
.bowerrc Converted to node module 2014-11-05 19:46:01 +02:00
.editorconfig Updated bower.json & Readme 2014-11-05 22:33:28 +02:00
.gitignore travis coveralls 2015-02-17 08:59:19 +01:00
.jshintrc jshint is more strict 2015-02-25 15:53:28 +01:00
.npmignore Refactoring 2014-11-06 22:51:37 +02:00
.travis.yml travis coveralls 2015-02-16 22:53:04 +01:00
LICENSE Converted to node module 2014-11-05 19:46:01 +02:00
README.md updated link to json-rpc wiki 2015-02-23 15:44:03 +01:00
bower.json Bower version bump 2015-02-24 23:56:23 +02:00
gulpfile.js jshint is more strict 2015-02-25 15:53:28 +01:00
index.js providermanager -> requestmanager 2015-02-06 00:02:14 +01:00
package.json removed ws from package.json 2015-02-22 22:55:36 +02:00

README.md

Ethereum JavaScript API

This is the Ethereum compatible JavaScript API which implements the Generic JSON RPC spec. It's available on npm as a node module and also for bower and component as an embeddable js

NPM version Build Status dependency status dev dependency statusCoverage Status

Installation

Node.js

npm install ethereum.js

For browser

Bower

bower install ethereum.js

Component

component install ethereum/ethereum.js
  • Include ethereum.min.js in your html file.
  • Include bignumber.js

Usage

Require the library:

var web3 = require('web3');

Set a provider (QtSyncProvider, HttpSyncProvider)

web3.setProvider(new web3.providers.HttpSyncProvider());

There you go, now you can use it:

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

For another example see example/index.html.

Contribute!

Requirements

  • Node.js
  • npm
  • gulp (build)
  • mocha (tests)
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

Please note this repo is in it's early stage.

If you'd like to run a WebSocket ethereum node check out go-ethereum.

To install ethereum and spawn a node:

go get github.com/ethereum/go-ethereum/ethereum
ethereum -ws -loglevel=4