Skip to content

Commit

Permalink
Smart Contract Completed & Test WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
remedcu committed Oct 15, 2020
1 parent ecbb56d commit 3f7d2e1
Show file tree
Hide file tree
Showing 17 changed files with 1,553 additions and 22 deletions.
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,13 @@ dist
.tern-port

# package-lock.json
package-lock.json
package-lock.json

# build folder from truffle migrate
build

# solidity test coverage (solidity-coverage)
coverage.json

# VSCode
.vscode
15 changes: 15 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": true,
"singleQuote": false,
"bracketSpacing": true,
"explicitTypes": "always"
}
}
]
}
5 changes: 5 additions & 0 deletions .solcover.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
providerOptions: {
total_accounts: 12
}
}
3 changes: 3 additions & 0 deletions .solhint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "solhint:default"
}
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: node_js
node_js:
- "10"

cache:
directories:
- node_modules

before_script:
- npm install
- bash startGanache.sh

script:
- truffle migrate --reset
- npm run test

after_script:
- bash stopGanache.sh
- npm run coverage
- cat coverage/lcov.info | coveralls
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
[![Build Status](https://travis-ci.org/remedcu/Inherichain.svg?branch=main)](https://travis-ci.org/remedcu/Inherichain) [![Coverage Status](https://coveralls.io/repos/github/remedcu/Inherichain/badge.svg?branch=main)](https://coveralls.io/github/remedcu/Inherichain?branch=main)

# Inherichain
A wallet which has inheritance built in on the Ethereum Blockchain.
Loading

0 comments on commit 3f7d2e1

Please sign in to comment.