Smart contracts comprising the business logic of the InstaDApp
Go to file
Sowmay Jain 411b5f7221
Merge pull request #6 from InstaDApp/insta-v2
First commit of instadapp v2 contracts.
2019-03-04 02:45:22 +05:30
.circleci Fixed failing build 2019-01-28 00:09:51 +05:30
.github/ISSUE_TEMPLATE Initial Commit 2018-10-23 13:22:31 +05:30
audit-reports Audit Report JSON 2019-02-22 22:31:11 +05:30
contracts Merge pull request #6 from InstaDApp/insta-v2 2019-03-04 02:45:22 +05:30
migrations Initial Commit 2018-10-23 13:22:31 +05:30
test Fixed failing build 2019-01-28 00:07:43 +05:30
.babelrc Initial Commit 2018-10-23 13:22:31 +05:30
.eslintignore Initial Commit 2018-10-23 13:22:31 +05:30
.eslintrc.js Initial Commit 2018-10-23 13:22:31 +05:30
.gitattributes Initial Commit 2018-10-23 13:22:31 +05:30
.gitignore Initial Commit 2018-10-23 13:22:31 +05:30
.prettierignore Initial Commit 2018-10-23 13:22:31 +05:30
.prettierrc Initial Commit 2018-10-23 13:22:31 +05:30
.solcover.js Initial Commit 2018-10-23 13:22:31 +05:30
.soliumignore Initial Commit 2018-10-23 13:22:31 +05:30
.soliumrc.json Initial Commit 2018-10-23 13:22:31 +05:30
.travis.yml Initial Commit 2018-10-23 13:22:31 +05:30
CODE_OF_CONDUCT.md Initial Commit 2018-10-23 13:22:31 +05:30
CONTRIBUTING.md Initial Commit 2018-10-23 13:22:31 +05:30
LICENSE Initial Commit 2018-10-23 13:22:31 +05:30
mocha-smart-contracts-config.json Initial Commit 2018-10-23 13:22:31 +05:30
package.json Fixed failing build 2019-01-28 00:07:43 +05:30
PULL_REQUEST_TEMPLATE.md Initial Commit 2018-10-23 13:22:31 +05:30
README.md Update README.md 2018-11-21 15:00:19 +05:30
truffle.js Audit Report using Security Tools 2019-02-22 22:30:57 +05:30

InstaDApp Contract

License: MIT Build Status Coverage Status CircleCI

Smart Contracts powering InstaDApp

Support

GitHub stars GitHub forks GitHub watchers GitHub followers

This project uses:

Installation

  1. Install Truffle and Ganache CLI globally.
npm install -g truffle@beta
npm install -g ganache-cli
  1. Create a .env file in the root directory and add your private key.

Commands:

Compile contracts:                  truffle compile
Migrate contracts:                  truffle migrate
Test contracts:                     truffle test
Run eslint:                         npm run lint
Run solium:                         npm run solium
Run solidity-coverage:              npm run coverage
Run lint, solium, and truffle test: npm run test

License

MIT License

Copyright (c) 2018 Moat Network

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.