1.0.1 • Published 3 years ago

dartweb v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

What is DartWeb?

Dart Web - Developer Document

DartWeb aims to deliver a unified, seamless development experience influenced by Ethereum's Web3 implementation. We have taken the core ideas and expanded upon it to unlock the functionality of DART's unique feature set along with offering new tools for integrating DApps in the browser, Node.js and IoT devices.

Compatibility

  • Version built for Node.js v6 and above
  • Version built for browsers with more than 0.25% market share

You can access either version specifically from the dist folder.

DartWeb is also compatible with frontend frameworks such as:

  • Angular
  • React
  • Vue.

You can also ship DartWeb in a Chrome extension.

Installation

Node.js

npm install dartweb

or

yarn add dartweb

Browser

First, don't use the release section of this repo, it has not updated in a long time.

Then easiest way to use DartWeb in a browser is to install it as above and copy the dist file to your working folder. For example:

cp node_modules/dartweb/dist/DartWeb.js ./js/dartweb.js

so that you can call it in your HTML page as

<script src="./js/dartweb.js"><script>

Creating an Instance

First off, in your javascript file, define DartWeb:

const DartWeb = require('dartweb')

The easiest way to instantiate dartWeb is to run

const dartWeb = new DartWeb({
     fullNode: 'http://ip:port',
    solidityNode: 'http://ip:port'
    eventServer: 'http://ip:port',
    privateKey: '...'
})

but you can continue to use the old way:

const dartWeb = new DartWeb(fullNode, solidityNode, eventServer, privateKey)