Skip to content

Commit

Permalink
feat: add liquidity snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
viet-nv committed Dec 13, 2023
1 parent 9bbfb67 commit 62dbeb2
Show file tree
Hide file tree
Showing 4 changed files with 75,022 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ export const APP_PATHS = {
IAM_CONSENT: '/consent',

DEPRECATED_NOTI_CENTER: '/notification-center/overview',
ELASTIC_SNAPSHOT: '/elastic-snapshot',
} as const

export const TERM_FILES_PATH = {
Expand Down
4 changes: 4 additions & 0 deletions src/pages/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ const Login = lazy(() => import('./Oauth/Login'))
const Logout = lazy(() => import('./Oauth/Logout'))
const Consent = lazy(() => import('./Oauth/Consent'))

const ElasticSnapshot = lazy(() => import('./ElasticSnapshot'))

// test page for swap only through elastic
const ElasticSwap = lazy(() => import('./ElasticSwap'))
const SwapV3 = lazy(() => import('./SwapV3'))
Expand Down Expand Up @@ -386,6 +388,8 @@ export default function App() {
<Route path={APP_PATHS.IAM_LOGOUT} element={<Logout />} />
<Route path={APP_PATHS.IAM_CONSENT} element={<Consent />} />

<Route path={APP_PATHS.ELASTIC_SNAPSHOT} element={<ElasticSnapshot />} />

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

0 comments on commit 62dbeb2

Please sign in to comment.