Coder Social home page Coder Social logo

fullnode's Introduction

fullnode (alpha)

fullnode is a javascript implementation of bitcoin intended to satisfy certain goals:

  1. Support ease-of-use by being internally consistent. It should not be necessary to read the source code of a class or function to know how to use it.

  2. Have 100% test coverage, or nearly so, so that the library is known to be reliable. This should include running standard test vectors from bitcoin core.

  3. Library objects have an interface suitable for use with a command-line interface and API, in particular having toString, fromString, toJSON, fromJSON, methods. Other common methods are toBuffer, fromBuffer relevant for binary formats such as transactions and blocks.

  4. All standard features of the bitcoin protocol are implemented and saved in lib/. All BIPs are correctly implemented and, where appropriate, saved as bipxx.js in lib/ (since that is their standard name). Any non-standard features (such as colored coins or stealth addresses) are placed in the lib/expmt/ folder and are accessible at fullnode.expmt. Once they are standardized and given a BIP, they are renamed and placed in lib/.

  5. Expose everything, including dependencies. This makes it possible to develop apps that require fine-grained control over the basics, such as big numbers and points. However, it also means that you can hurt yourself if you misuse these primitives.

  6. It is always possible to create a new object without using "new".

  7. Compatible with browserify (i.e., using require('fullnode/lib/message') should work both in node, and be automatically work in the browser with used in conjunction with browserify).

  8. Minimize the use of dependencies so that all code can be easily audited.

  9. All instance methods modify the state of the object and return the object, unless there is a good reason to do something different. To access the result of an instance method, you must access the object property(s) that it modifies.

Alpha Caveat

fullnode is still alpha, and has an unstable API. Once the code has been audited, the API will be settled, and version 1.0 will be released. It is recommended not to use fullnode for production software until that time.

Notable Features

  • 90%+ test coverage
  • Browserifiable
  • Stealth keys, addresses, message
  • Bitcoin-style message signing and verification
  • Exposed big number and point classes
  • Deterministic k (deterministic signatures; RFC 6979)
  • Script interpreter, validated against bitcoind tests

Documentation

npm install -g groc
groc

Browser bundle

npm install -g browserify
npm install -g uglifyify
npm run build

Testing and Coverage

npm install -g mocha
npm install -g istanbul
npm test

You can see the coverage report at coverage/lcov-report/index.html.

Or, to build tests for the browser:

npm run build

Then open test/index.html in your browser.

fullnode's People

Contributors

ryanxcharles avatar petertodd avatar

Watchers

Digger avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.