Skip to content

Commit

Permalink
Merge ce8fb91 into 799f262
Browse files Browse the repository at this point in the history
  • Loading branch information
gjgd committed Jul 29, 2018
2 parents 799f262 + ce8fb91 commit 80ca656
Show file tree
Hide file tree
Showing 12 changed files with 795 additions and 102 deletions.
13 changes: 13 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
"extends": "eslint-config-google",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"rules": {
"max-len": "off",
"require-jsdoc": "off",
}
};
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@ This repo contains smart contracts that are under development.

Check out the [wiki](https://github.com/transmute-industries/network-contracts/wiki) for more info!

## Install the project

```
npm install
```

## Run the tests

```
npm i
npm run test
npm install -g ganache-cli
ganache-cli
npm run test:unit
npm run test:integration
```
Loading

0 comments on commit 80ca656

Please sign in to comment.