-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
All tests passing with latest daostack-arc
- updated node version - install truffle locally - testrpc => ganache - remove contracts from git - remove images folder - use our own migration script - Use truffle-core-migrate-without-compile to avoid recompiling contracts - use non-nconf config system for now while we sort out whether it can work for us - no longer migrate from within arc folder - rename contracts folder for linux - include ability to run tests in package - Remove commented code
- Loading branch information
1 parent
f68992f
commit 4a5e9fd
Showing
90 changed files
with
4,095 additions
and
167,580 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
{ | ||
"presets": ["es2015"], | ||
"plugins": ["syntax-async-functions"] | ||
"plugins": ["syntax-async-functions"], | ||
// for VS Code test code debugging | ||
"sourceMaps": "inline" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
node_modules/ | ||
.node-xmlhttprequest-sync* | ||
.node-xmlhttprequest-content* | ||
*.tgz | ||
.vscode/ | ||
testrpcDb/ | ||
ganacheDb/ | ||
dist/ | ||
ganacheDb.zip | ||
migrated_contracts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"providerUrl": "http://localhost:8545", | ||
"network": "kovan", | ||
"gasLimit": 6500000 | ||
} | ||
"network": "ganache", | ||
"gasLimit": 6015000, | ||
"apiToken": "" | ||
} |
Oops, something went wrong.