Skip to content

Commit

Permalink
Update PSDX:
Browse files Browse the repository at this point in the history
:
  • Loading branch information
ryanneilparker committed Oct 6, 2022
1 parent ffa569d commit ab538d3
Show file tree
Hide file tree
Showing 6 changed files with 16,276 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
wilderness_dao/README.md
11 changes: 11 additions & 0 deletions wilderness_dao/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
node_modules
.env
coverage
coverage.json
typechain
typechain-types

#Hardhat files
cache
artifacts

13 changes: 13 additions & 0 deletions wilderness_dao/hardhat.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
require("@nomiclabs/hardhat-waffle");
require("dotenv").config({ path: ".env" });
const ALCHEMY_API_KEY_URL = process.env.ALCHEMY_API_KEY_URL;
const RINKEBY_PRIVATE_KEY = process.env.RINKEBY_PRIVATE_KEY;
module.exports = {
solidity: "0.8.4",
networks: {
rinkeby: {
url: ALCHEMY_API_KEY_URL,
accounts: [RINKEBY_PRIVATE_KEY],
},
},
};
Loading

0 comments on commit ab538d3

Please sign in to comment.