/ .gitignore
.gitignore
1 # Byte-compiled / optimized / DLL files 2 __pycache__/ 3 *.py[cod] 4 *$py.class 5 6 # embark 7 .embark 8 chains.json 9 .password 10 flattenedContracts 11 embarkArtifacts 12 config/livenet/password 13 config/production/password 14 dist 15 embarkArtifacts 16 17 18 # egg-related 19 viper.egg-info/ 20 build/ 21 dist/ 22 .eggs/ 23 24 # pyenv 25 .python-version 26 27 # dotenv 28 .env 29 30 # virtualenv 31 .venv/ 32 venv/ 33 ENV/ 34 35 # Coverage tests 36 .coverage 37 .cache/ 38 coverage/ 39 coverageEnv/ 40 coverage.json 41 42 # node 43 node_modules/ 44 npm-debug.log 45 package-lock.json 46 47 # other 48 .vs/ 49 bin/ 50 .trash/