Skip to content

Commit c47da3f

Browse files
committedAug 26, 2021
Initial commit
0 parents  commit c47da3f

File tree

113 files changed

+28349
-0
lines changed

Some content is hidden

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

113 files changed

+28349
-0
lines changed
 

‎.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

‎.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
packages/backend/*.txt
2+
packages/subgraph/subgraph.yaml
3+
packages/subgraph/generated
4+
packages/subgraph/abis
5+
packages/hardhat/*.txt
6+
**/aws.json
7+
8+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
9+
**/node_modules
10+
packages/hardhat/artifacts
11+
packages/hardhat/deployments
12+
packages/react-app/src/contracts/*
13+
!packages/react-app/src/contracts/contracts.js
14+
packages/hardhat/cache
15+
16+
docker/**/data
17+
18+
packages/subgraph/config/config.json
19+
tenderly.yaml
20+
21+
# dependencies
22+
/node_modules
23+
/.pnp
24+
.pnp.js
25+
26+
# testing
27+
coverage
28+
29+
# production
30+
build
31+
32+
# misc
33+
.DS_Store
34+
.env*
35+
36+
# debug
37+
npm-debug.log*
38+
yarn-debug.log*
39+
yarn-error.log*
40+
41+
.idea

0 commit comments

Comments
 (0)