mirror of
https://github.com/Instadapp/dsa-connectors-old.git
synced 2024-07-29 22:47:46 +00:00
Awesome list of DSA Connectors
contracts | ||
migrations | ||
.gitignore | ||
package-lock.json | ||
package.json | ||
README.md | ||
truffle-config.js |
DSA Connectors
This repository contains the Connectors of DSA.
Installation
- Install Truffle and Ganache CLI globally.
npm install -g truffle@beta
npm install -g ganache-cli
npm instal
- Create a
.env
file in the root directory and use the below format for .env
file.
infura_key = [Infura key] //For deploying
mnemonic_key = [Mnemonic Key] // Also called as seed key
etherscan_key = [Etherscan API dev 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