Go to file
dependabot[bot] 6df653f662
Build(deps): bump react-toastify from 9.1.3 to 10.0.4 (#764)
Bumps [react-toastify](https://github.com/fkhadra/react-toastify) from 9.1.3 to 10.0.4.
- [Release notes](https://github.com/fkhadra/react-toastify/releases)
- [Commits](https://github.com/fkhadra/react-toastify/compare/v9.1.3...v10.0.4)

---
updated-dependencies:
- dependency-name: react-toastify
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-05 08:46:03 +01:00
.github Fixes bob (#443) 2023-09-11 10:14:40 +02:00
.husky Mp 2837 pre commit hook (#549) 2023-10-17 09:03:15 +02:00
.vscode Upgrade next (#100) 2023-02-24 09:47:27 +01:00
public List milkTIA (#757) 2024-01-31 14:37:31 +01:00
src perps: remove modify module and adjust main module (#761) 2024-02-02 14:05:40 +01:00
.env.example update osmosis nodes to Rhino (#762) 2024-02-02 14:05:00 +01:00
.eslintignore [task] add LTV to vault tables (#381) 2023-08-21 14:02:32 +03:00
.eslintrc.json feat: refactored the toast responses (#442) 2023-09-11 10:35:13 +02:00
.gitignore [CM details] support changes (#359) 2023-08-14 09:55:53 -03:00
.prettierignore Mp 2837 pre commit hook (#549) 2023-10-17 09:03:15 +02:00
.prettierrc feat: refactored the toast responses (#442) 2023-09-11 10:35:13 +02:00
Dockerfile Upgrade next (#100) 2023-02-24 09:47:27 +01:00
generate_types.sh Withdraw assets from account (#43) 2022-11-07 16:36:12 +00:00
install_charting_library.js add scripts for installing charting_library + update readme (#298) 2023-07-13 14:38:08 +02:00
install_charting_library.sh add scripts for installing charting_library + update readme (#298) 2023-07-13 14:38:08 +02:00
next.config.js Set new caching rules (#542) 2023-10-14 16:54:41 +02:00
package.json Build(deps): bump react-toastify from 9.1.3 to 10.0.4 (#764) 2024-02-05 08:46:03 +01:00
postcss.config.js initial setup wip 2022-09-02 15:30:58 +01:00
README.md add scripts for installing charting_library + update readme (#298) 2023-07-13 14:38:08 +02:00
sentry.client.config.js WIP (#12) 2022-09-29 20:21:31 +01:00
sentry.properties sentry setup 2022-09-02 22:29:22 +01:00
sentry.server.config.js WIP (#12) 2022-09-29 20:21:31 +01:00
tailwind.config.js v2.2.0 (#746) 2024-01-25 14:30:01 +01:00
tsconfig.json v2.2.0 (#746) 2024-01-25 14:30:01 +01:00
validate-env.js v2.2.0 (#746) 2024-01-25 14:30:01 +01:00
vercel.json Env update (#113) 2023-03-09 10:26:16 +01:00
yarn.lock Build(deps): bump react-toastify from 9.1.3 to 10.0.4 (#764) 2024-02-05 08:46:03 +01:00

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, install the dependencies:

yarn install

Then, run the development server:

yarn dev

Open http://localhost:3000 with your browser to see the result.

Trading charts

The trade charts are sourced with the TradingView charting_library. In order to enable the charts, request has to be requested from TradingView. This allows the charting_library package to be pulled-in during the application build process. For this, it is recommended to do the following:

  1. Request access to the TradingView repository
  2. Create a private fork
  3. Generate a Personal Access Token from Github
  4. Add the following to the environment variables: a. CHARTING_LIBRARY_USERNAME -> the username of the account with access b. CHARTING_LIBRARY_ACCESS_TOKEN -> the access token c. CHARTING_LIBRARY_REPOSITORY -> the URI of the Github repository
  5. Build the application by executing the install_charting_library.sh script prior.

For development on localhost, run yarn install-charting-library. Ensure that you have a .env.local file defined with the variables mentioned above.