-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added semantic-release with a better TravisCI config; linted and moved around some files (for consistency sake)
- Loading branch information
1 parent
31022f8
commit 393c711
Showing
15 changed files
with
13,047 additions
and
7,134 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
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,4 +1,16 @@ | ||
1. Change dependabot badge to the correct one (in README) | ||
2. Add (S)CSS linting stuff | ||
3. Add git labels | ||
4. Make sure the badges are correct | ||
- [X] Add Elliptic Curve DSA | ||
- [X] Add wallets with addresses and PK/SK pairs | ||
- [ ] Prevent double-spending | ||
- [X] Make sure that only available coins can be spent and that there's enough fee which goes to the correct place | ||
- [ ] REST interface | ||
- [ ] P2P using websocket (ws package) | ||
- [ ] DB to save the blockchain and the wallets (to avoid loosing progress) | ||
- [ ] GUI for the blockchain | ||
- [X] Use Merkel trees (such as [this](https://github.com/miguelmota/merkle-tree)) | ||
- [ ] Add Proof of Stake | ||
- [ ] Add consensus to the chain ([grey paper](https://hackernoon.com/building-a-blockchain-the-grey-paper-5be456018040)) | ||
- [ ] Adding Smart contracts | ||
- [ ] Changing BANK into a proper wallet (so hide the sk and promote its wallet to itself) | ||
- [ ] Making sure the documentation covers the source modules | ||
- [X] Create a logo for the coin | ||
- [X] Add a code coverage check |
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,13 +1,24 @@ | ||
language: node_js | ||
node_js: | ||
- "node" | ||
cache: | ||
directories: | ||
- "node_modules" | ||
- ~/.npm | ||
notifications: | ||
email: false | ||
node_js: | ||
- 'node' | ||
- '10' | ||
- '9' | ||
- '8' | ||
- '6' | ||
install: | ||
npm i -g codecov | ||
# safelist | ||
- npm i | ||
- npm i codecov jest eslint | ||
script: | ||
- npm run lint | ||
- npm test | ||
- codecov | ||
after_success: | ||
- npm run travis-deploy-once "npm run semantic-release" | ||
branches: | ||
only: | ||
- master | ||
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ #vX.Y | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.