Package Exports
- @shotaronowhere/archon
- @shotaronowhere/archon/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@shotaronowhere/archon) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Archon
Archon provides functionality for Arbitrator and Arbitrable Ethereum smart contracts as defined in ERC 792 and ERC 1497.
Documentation
See full documentation at https://archon.readthedocs.io/en/latest/index.html
Installation
npm install @kleros/archon
Basic Usage
var Archon = require('@kleros/archon');
var archon = new Archon('wss://some.local-or-remote.node:8546');
> archon.arbitrator
> archon.arbitrable
> archon.utils
> archon.version
Test
yarn ganache
yarn test
Build
yarn run build
Update Docs
The documentation is based on Sphinx. Install Sphinx with your global python or in a virtualenv
pip install sphinx
Update
.rst
files in /docsRun to generate new docs bundle
cd docs && make html
- View changes
open ./docs/_build/html/index.html
- Push changes