Skip to content

Commit

Permalink
Merge pull request #68 from austintgriffith/add-hardhat
Browse files Browse the repository at this point in the history
Buidler -> Hardhat
  • Loading branch information
austintgriffith authored Nov 8, 2020
2 parents d4e0a9f + a08f48d commit c9f7d9b
Show file tree
Hide file tree
Showing 21 changed files with 46 additions and 1,029 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
packages/buidler/*.txt
packages/hardhat/*.txt
**/aws.json

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
**/node_modules
packages/buidler/artifacts
packages/hardhat/artifacts
packages/react-app/src/contracts
packages/buidler/cache
packages/hardhat/cache

docker/**/data

Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@
"react-app:start": "yarn workspace @scaffold-eth/react-app start",
"react-app:test": "yarn workspace @scaffold-eth/react-app test",
"build": "yarn workspace @scaffold-eth/react-app build --max-old-space-size=12288",
"chain": "yarn workspace @scaffold-eth/buidler chain",
"node": "yarn workspace @scaffold-eth/buidler chain",
"test": "yarn workspace @scaffold-eth/buidler test",
"chain": "yarn workspace @scaffold-eth/hardhat chain",
"node": "yarn workspace @scaffold-eth/hardhat chain",
"test": "yarn workspace @scaffold-eth/hardhat test",
"start": "yarn workspace @scaffold-eth/react-app start",
"compile": "yarn workspace @scaffold-eth/buidler compile",
"deploy": "yarn workspace @scaffold-eth/buidler deploy",
"watch": "yarn workspace @scaffold-eth/buidler watch",
"accounts": "yarn workspace @scaffold-eth/buidler accounts",
"balance": "yarn workspace @scaffold-eth/buidler balance",
"send": "yarn workspace @scaffold-eth/buidler send",
"compile": "yarn workspace @scaffold-eth/hardhat compile",
"deploy": "yarn workspace @scaffold-eth/hardhat deploy",
"watch": "yarn workspace @scaffold-eth/hardhat watch",
"accounts": "yarn workspace @scaffold-eth/hardhat accounts",
"balance": "yarn workspace @scaffold-eth/hardhat balance",
"send": "yarn workspace @scaffold-eth/hardhat send",
"ipfs": "yarn workspace @scaffold-eth/react-app ipfs",
"surge": "yarn workspace @scaffold-eth/react-app surge",
"s3": "yarn workspace @scaffold-eth/react-app s3",
"ship": "yarn workspace @scaffold-eth/react-app ship",
"generate": "cd packages/buidler && npx buidler generate",
"account": "cd packages/buidler && npx buidler account",
"flatten": "cd packages/buidler && npx buidler flatten",
"generate": "cd packages/hardhat && npx hardhat generate",
"account": "cd packages/hardhat && npx hardhat account",
"flatten": "cd packages/hardhat && npx hardhat flatten",
"graph-run-node": "cd docker/graph-node && docker-compose up",
"graph-remove-node": "cd docker/graph-node && docker-compose down",
"graph-prepare": "mustache packages/subgraph/config/config.json packages/subgraph/src/subgraph.template.yaml > packages/subgraph/subgraph.yaml",
Expand Down
5 changes: 0 additions & 5 deletions packages/contracts/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions packages/contracts/package.json

This file was deleted.

11 changes: 0 additions & 11 deletions packages/contracts/src/abis.js

This file was deleted.

222 changes: 0 additions & 222 deletions packages/contracts/src/abis/erc20.json

This file was deleted.

Loading

0 comments on commit c9f7d9b

Please sign in to comment.