Skip to content

Commit

Permalink
Merge pull request #172 from metagov/disp
Browse files Browse the repository at this point in the history
Display Old and New Contract registrations on Mainnet and upgrade Wagmi + Connectkit
  • Loading branch information
Rashmi-278 authored Nov 5, 2023
2 parents f4ea43f + 094de98 commit 88114b4
Show file tree
Hide file tree
Showing 8 changed files with 270 additions and 196 deletions.
8 changes: 4 additions & 4 deletions daostar-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"axios-hooks": "^4.0.0",
"babel-jest": "^29.4.1",
"caip": "^1.1.0",
"connectkit": "^1.1.2",
"connectkit": "^1.5.3",
"ethers": "^5.7.2",
"graphql": "^15.0.0",
"jest": "^29.4.1",
Expand All @@ -49,13 +49,13 @@
"typescript": "^5.2.2",
"typewriter-effect": "^2.19.0",
"validator": "^13.7.0",
"wagmi": "^0.12.19",
"wagmi": "^1.4.5",
"web-vitals": "^2.1.4",
"web3": "^1.8.1"
},
"scripts": {
"start": "PORT=8000 REACT_APP_API_URL=http://localhost:8080/https://api.daostar.org react-scripts start",
"build": "REACT_APP_API_URL=https://api.daostar.org react-scripts build",
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "REACT_APP_API_URL=https://api.daostar.org npm run build",
"deploy": "REACT_APP_API_URL=https://api.daostar.org gh-pages -d build",
"test": "react-scripts test",
Expand Down
7 changes: 6 additions & 1 deletion daostar-website/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,15 @@
-->
<script defer type="module">
import { Application } from './scripts/runtime.js';
console.log('application', Application);
try {
console.log('application', Application);
const app = new Application();
console.log('app', app);
app.load('/scripts/scene.json');
} catch (error) {
console.error(error)
}

</script>

<script defer src="/scripts/main.js"></script>
Expand Down
Loading

0 comments on commit 88114b4

Please sign in to comment.