Skip to content

Commit 02e741d

Browse files
committed
Inherit BC-DAPP, Cleanup
1 parent 7f1a123 commit 02e741d

210 files changed

Lines changed: 93915 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# React development variables
2+
REACT_APP_MARKET_API_URL=
3+
REACT_APP_KEY_MNEMONIC=""
4+
REACT_APP_KEY_INFURA_API_KEY=""
5+
REACT_APP_ETH_NETWORKS=mainnet,kovan
6+
REACT_APP_GIT_SHA=""
7+
8+
# Override network rpc urls here
9+
# REACT_APP_SUPPORTED_NETWORK_1="https://mainnet.eth.cloud.ava.do"
10+
# REACT_APP_SUPPORTED_NETWORK_3=""
11+
# REACT_APP_SUPPORTED_NETWORK_4=""
12+
# REACT_APP_SUPPORTED_NETWORK_42=""
13+
# REACT_APP_SUPPORTED_NETWORK_66=""
14+
15+
# NodeJS environment to use, can be development or production
16+
NODE_ENV="development"

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
/contracts/build
14+
15+
# config
16+
/src/config/contracts.json
17+
18+
# misc
19+
.DS_Store
20+
.env
21+
.env.local
22+
.env.development.local
23+
.env.test.local
24+
.env.production.local
25+
26+
npm-debug.log*
27+
yarn-debug.log*
28+
yarn-error.log*
29+
30+
.openzeppelin/.session
31+
.openzeppelin/dev-*.json

.idea/.gitignore

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v10.16.3

0 commit comments

Comments
 (0)