Skip to content

Commit

Permalink
Merge pull request #3203 from OlympusDAO/develop
Browse files Browse the repository at this point in the history
[Release] - Olympus Governance Frontend Support
  • Loading branch information
brightiron authored Sep 25, 2024
2 parents 16e1ce6 + 26e6aa9 commit 0cb40d5
Show file tree
Hide file tree
Showing 52 changed files with 4,037 additions and 581 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"@mui/x-data-grid": "^6.18.5",
"@olympusdao/component-library": "3.1.7",
"@olympusdao/treasury-subgraph-client": "^1.1.0",
"@openchainxyz/abi-guesser": "^1.0.2",
"@rainbow-me/rainbowkit": "^0.12.18",
"@reduxjs/toolkit": "^1.9.3",
"@tanstack/react-query": "^4.2.3",
Expand All @@ -58,12 +59,13 @@
"react-ga": "^3.3.1",
"react-ga4": "^2.1.0",
"react-hot-toast": "^2.4.1",
"react-markdown": "^8.0.7",
"react-markdown": "^9.0.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.21.1",
"react-step-progress-bar": "^1.0.3",
"react-uid": "^2.3.2",
"recharts": "^2.10.3",
"remark-gfm": "^4.0.0",
"tinycolor2": "^1.6.0",
"typescript": "^5.3.3",
"wagmi": "^0.12.19"
Expand Down
6 changes: 5 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ import { girth as gTheme } from "src/themes/girth.js";
import { light as lightTheme } from "src/themes/light.js";
import { BondModalContainer } from "src/views/Bond/components/BondModal/BondModal";
import { BondModalContainerV3 } from "src/views/Bond/components/BondModal/BondModalContainerV3";
import { Governance } from "src/views/Governance/Governance";
import { Governance } from "src/views/Governance";
import { Delegate } from "src/views/Governance/Delegation";
import { ProposalPage } from "src/views/Governance/Proposals";
import { Cooler } from "src/views/Lending/Cooler";
import { Vault } from "src/views/Liquidity/Vault";
import { MyBalances } from "src/views/MyBalances";
Expand Down Expand Up @@ -255,6 +257,8 @@ function App() {
<Route path="/lending/cooler" element={<Cooler />} />
<Route path="/utility" element={<Utility />} />
<Route path="/governance" element={<Governance />} />
<Route path="/governance/delegate" element={<Delegate />} />
<Route path="/governance/proposals/:id" element={<ProposalPage />} />

<Route path="*" element={<NotFound />} />
</Routes>
Expand Down
Loading

0 comments on commit 0cb40d5

Please sign in to comment.