Socket
Socket
Sign inDemoInstall

daostack-arc.js

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

daostack-arc.js

A JavaScript library for interacting with daostack-arc ethereum smart contracts


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

master: Build Status

Mission Statement

DaoStack-Arc.js is a javascript library providing access to DAOStack Arc ethereum smart contracts (Daostack-Arc).

Daostack-Arc is a widely open collaboration to build the basic framework for Decentralized Autonomous Organizations (DAO) through bootstrap, or dogfooding. Find the DaoStack-Arc repository here.

Contributing

Contributions and pull requests are very welcome. Join us on Slack.

If you want to contribute to the code, check out CONTRIBUTING.md.

Arc Configuration

The default configuration settings for Arc can be found in config/default.json, they are:

{
  "providerUrl": "http://localhost:8545",
  "network": "kovan", // Options are 'homestead', 'ropsten', 'rinkeby', 'kovan'
  "gasLimit": [a number like 6015000]
}

To get a configuration setting use:

import { config } from 'daostack-arc.js';
config.get('network');

You can override configuration settings at runtime with:

import { config } from 'daostack-arc.js';
config.set('network', 'ropsten');

You can also override the default configuration settings with environment variables:

gasLimit=7000000 node yourprojectindex.js

Keywords

FAQs

Package last updated on 02 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc