Socket
Socket
Sign inDemoInstall

@doc.ai/nrn-brainstem

Package Overview
Dependencies
Maintainers
8
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@doc.ai/nrn-brainstem

NRN and related smart contracts


Version published
Maintainers
8
Created
Source

nrn-brainstem

Stem and related smart contracts


This repository is home to all of doc.ai's smart contracts. It makes available the smart contracts themselves (in solidity), the tests that we run against each contract, and evaluations of these contracts in terms of properties such as gas overhead and security.

The respository also includes tools that can be used to deploy these contracts to Ethereum-based blockchains.


Smart contracts

  • stem

Deployment

To deploy a smart contract in this repository, you can use the deploy script. For example, to deploy the Stem contract through a geth node, assuming you start off in the respository root directory, you could run:

node deploy.js --provider-type ipc \
  --provider <path to geth ipc socket> \
  --contract-file src/stem.sol \
  --contract-name Stem \
  --sender-address <address of wallet which should send the transaction> \
  Stem STM 1200000

The last three positional arguments are passed directly to the contract constructor. In this case, they specify that the Stem contract should be deployed with name Stem, symbol STM, and with a supply of 1,200,000 tokens.

You can get more help on the deploy script at the command line:

node deploy.js --help

You can use the connect script to connect to a deployed contract. This is useful if you would like to interact with a contract that you deployed through a node REPL, for example.

Development

Requirements

Getting set up

Simply run:

npm install

Running tests

From project root:

npm test

To run specific tests:

npm test <path to test>

FAQs

Package last updated on 09 Nov 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