Skip to content

Commit

Permalink
Merge pull request #13 from HausDAO/feature/v0.2.2
Browse files Browse the repository at this point in the history
ups the version and adds the env variable
  • Loading branch information
skuhlmann committed Sep 5, 2023
2 parents 5dd463b + 6a05180 commit 366aa73
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
1 change: 1 addition & 0 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ VITE_WALLET_CONNECT_ID=
# optional will use rate limited if not set
VITE_OPTIMISM_ALCHEMY_KEY=
VITE_ARBITRUM_ALCHEMY_KEY=
VITE_POLYGONPOS_ALCHEMY_KEY=

# add blockexplorer api keys for any supported networks
VITE_ETHERSCAN_KEY=
Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
"preview": "vite preview"
},
"dependencies": {
"@daohaus/abis": "^0.2.0",
"@daohaus/connect": "^0.2.0",
"@daohaus/connect-context": "^0.2.0",
"@daohaus/contract-utils": "^0.2.0",
"@daohaus/form-builder": "^0.2.0",
"@daohaus/form-builder-base": "^0.2.0",
"@daohaus/keychain-utils": "^0.2.0",
"@daohaus/moloch-v3-data": "^0.2.0",
"@daohaus/moloch-v3-fields": "^0.2.0",
"@daohaus/moloch-v3-hooks": "^0.2.0",
"@daohaus/moloch-v3-legos": "^0.2.0",
"@daohaus/moloch-v3-macro-ui": "^0.2.0",
"@daohaus/profile-data": "^0.2.0",
"@daohaus/tx-builder": "^0.2.0",
"@daohaus/ui": "^0.2.0",
"@daohaus/utils": "^0.2.0",
"@daohaus/abis": "^0.2.2",
"@daohaus/connect": "^0.2.2",
"@daohaus/connect-context": "^0.2.2",
"@daohaus/contract-utils": "^0.2.2",
"@daohaus/form-builder": "^0.2.2",
"@daohaus/form-builder-base": "^0.2.2",
"@daohaus/keychain-utils": "^0.2.2",
"@daohaus/moloch-v3-data": "^0.2.2",
"@daohaus/moloch-v3-fields": "^0.2.2",
"@daohaus/moloch-v3-hooks": "^0.2.2",
"@daohaus/moloch-v3-legos": "^0.2.2",
"@daohaus/moloch-v3-macro-ui": "^0.2.2",
"@daohaus/profile-data": "^0.2.2",
"@daohaus/tx-builder": "^0.2.2",
"@daohaus/ui": "^0.2.2",
"@daohaus/utils": "^0.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
Expand Down
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export default ({ mode }) => {
NX_WALLET_CONNECT_ID: process.env.VITE_WALLET_CONNECT_ID,
NX_OPTIMISM_ALCHEMY_KEY: process.env.VITE_OPTIMISM_ALCHEMY_KEY,
NX_ARBITRUM_ALCHEMY_KEY: process.env.VITE_ARBITRUM_ALCHEMY_KEY,
NX_POLYGONPOS_ALCHEMY_KEY: process.env.VITE_POLYGONPOS_ALCHEMY_KEY,
},
},
optimizeDeps: {
Expand Down

0 comments on commit 366aa73

Please sign in to comment.