Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan-crypto committed Feb 18, 2022
1 parent 428bc77 commit 3873dbf
Show file tree
Hide file tree
Showing 17 changed files with 34,244 additions and 13,901 deletions.
7 changes: 7 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@


{
"presets": [
"@babel/preset-env"
]
}
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,13 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

node_modules
.env
coverage
coverage.json
typechain

#Hardhat files
cache
artifacts
70 changes: 0 additions & 70 deletions README.md

This file was deleted.

11 changes: 11 additions & 0 deletions hardhat.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
require("@nomiclabs/hardhat-waffle");

module.exports = {
solidity: "0.8.4",
paths: {
artifacts: "./src/backend/artifacts",
sources: "./src/backend/contracts",
cache: "./src/backend/cache",
tests: "./src/backend/test"
},
};
Loading

0 comments on commit 3873dbf

Please sign in to comment.