added embarkArtifacts to gitignore.

This commit is contained in:
Corey 2019-06-04 10:47:05 -04:00
parent 13f3a7203b
commit e0becc32a6
4 changed files with 13 additions and 10 deletions

1
.gitignore vendored
View File

@ -8,6 +8,7 @@ __pycache__/
chains.json
.password
embark_demo/
embarkArtifacts/
# egg-related
viper.egg-info/

View File

@ -12,6 +12,11 @@
- `namesystem.js`
- `storage.js`
- `webserver.js`
- `contracts`: Folder for storing all Solidity contracts
- `common`: Common standard contracts
- `status`: Status specific contracts
- `sticker-market`: **Main focus contracts**
- `token`: Standard token contracts
- `doc`
- `project_questions.md`: file answering a list of questions around project status
- `specification.md`: current specefication document

View File

@ -53,11 +53,14 @@
## Wrapping up a Project
- [x] Have you run analyzers on the contracts?
- No.
- [ ] Which ones?
- [ ] Where are the resutls and their response write-ups?
- [ ] Has the specification sheet been updated throughout the project?
- Yes
- [x] Which ones?
- `slither@0.6.4`, current output in `./analyzers/slither/`
- `embark-graph@4.0.2`, current output in `./analyzers/embark-graph/`
- [x] Where are the resutls and their response write-ups?
- [x] Has the specification sheet been updated throughout the project?
- [ ] How often?
not sure @Rachel?
- [x] Have you performed any STRIDE sessions to hunt for vulnerabilities?
- No.
- [x] Has it been tested on a testnet?

View File

@ -1,10 +1,4 @@
{
"dappConnection": [
"$WEB3",
"ws://localhost:8546",
"http://localhost:8545"
],
"dappAutoEnable": true,
"warnIfMetamask": true,
"blockchainClient": "geth"
}