From e0becc32a6a42e4a17977ba2214d7ecdd149f676 Mon Sep 17 00:00:00 2001 From: Corey Petty Date: Tue, 4 Jun 2019 10:47:05 -0400 Subject: [PATCH] added embarkArtifacts to gitignore. --- .gitignore | 1 + README.md | 5 +++++ docs/project_questions.md | 11 +++++++---- embarkArtifacts/config/blockchain.json | 6 ------ 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 1e05e31..9193fb4 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ __pycache__/ chains.json .password embark_demo/ +embarkArtifacts/ # egg-related viper.egg-info/ diff --git a/README.md b/README.md index 517a6de..cabbbb0 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/project_questions.md b/docs/project_questions.md index b3e40ce..9eb1499 100644 --- a/docs/project_questions.md +++ b/docs/project_questions.md @@ -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? diff --git a/embarkArtifacts/config/blockchain.json b/embarkArtifacts/config/blockchain.json index 5d4e6ac..162e11f 100644 --- a/embarkArtifacts/config/blockchain.json +++ b/embarkArtifacts/config/blockchain.json @@ -1,10 +1,4 @@ { - "dappConnection": [ - "$WEB3", - "ws://localhost:8546", - "http://localhost:8545" - ], - "dappAutoEnable": true, "warnIfMetamask": true, "blockchainClient": "geth" } \ No newline at end of file