├── .editorconfig ├── .env ├── .env-cmdrc ├── .env.production ├── .gitignore ├── .gitlab-ci.yml ├── .husky └── pre-commit ├── .linguirc ├── .prettierrc.json ├── Dockerfile ├── LICENSE ├── README.md ├── auth ├── app.js ├── config │ ├── config.env.example │ └── database.js ├── controllers │ ├── orderController.js │ ├── paymentController.js │ ├── productController.js │ └── userController.js ├── data │ ├── cart.json │ ├── images │ │ ├── 1594728176097-61zBrD4EswL._AC_SL1500_.jpg │ │ ├── 1594728821919-714hGsMXZaL._AC_UX679_.jpg │ │ ├── 1594738805136-71htAr2SpBL._AC_SL1500_.jpg │ │ ├── 1594738887088-81+WmLbpzvL._AC_SL1500_.jpg │ │ ├── 1594739091288-716irmhfMkL._AC_SL1500_.jpg │ │ ├── 1594739168624-61NwNFbA9FL._AC_SL1000_.jpg │ │ ├── 1594739262021-61TAggR+upL._AC_SL1500_.jpg │ │ └── travel_macbookpro13_front.png │ ├── invoice │ │ ├── invoice-5f096ef911137b230cccbcde.pdf │ │ ├── invoice-5f09c880622ce4371411fb65.pdf │ │ ├── invoice-5f0da2c500b7001ab054bcaf.pdf │ │ └── invoice-5f156c42e74db20a30e0b5b0.pdf │ ├── products.json │ └── util │ │ ├── fileDelete.js │ │ └── path.js ├── middlewares │ ├── common │ │ └── index.js │ ├── helpers │ │ ├── asyncErrorHandler.js │ │ ├── createNotification.js │ │ ├── dbConnection.js │ │ ├── dbErrorHandler.js │ │ ├── error.js │ │ ├── fileRemover.js │ │ ├── geoDistance.js │ │ ├── imageCompressor.js │ │ ├── mailer.js │ │ ├── multer.js │ │ └── waterMarker.js │ ├── user_actions │ │ ├── auth.js │ │ ├── getRatingInfo.js │ │ └── userHas.js │ └── validator │ │ └── index.js ├── models │ ├── Address.js │ ├── Admin.js │ ├── AdminBank.js │ ├── AdminFiles.js │ ├── AdminWarehouse.js │ ├── Banner.js │ ├── BusinessInfo.js │ ├── Cart.js │ ├── Category.js │ ├── Dispatcher.js │ ├── Districts.js │ ├── Lead.js │ ├── ManualOrder.js │ ├── Notification.js │ ├── Order.js │ ├── Payment.js │ ├── Product.js │ ├── ProductBrand.js │ ├── ProductImages.js │ ├── QnA.js │ ├── RefereshToken.js │ ├── Remark.js │ ├── Review.js │ ├── SocketMapping.js │ ├── SuggestKeywords.js │ ├── User.js │ ├── WishList.js │ ├── minedProduct.js │ ├── orderModel.js │ ├── paymentModel.js │ ├── productModel.js │ └── userModel.js ├── public │ ├── android-chrome-192x192.png │ ├── css │ │ ├── auth.css │ │ ├── cart.css │ │ ├── forms.css │ │ ├── main.css │ │ ├── orders.css │ │ └── product.css │ └── js │ │ └── main.js ├── routes │ ├── orderRoute.js │ ├── paymentRoute.js │ ├── productRoute.js │ └── userRoute.js ├── server.js └── utils │ ├── apiFeatures.js │ ├── errorHandler.js │ ├── jwtToken.js │ ├── searchFeatures.js │ ├── sendEmail.js │ └── sendToken.js ├── config-overrides.js ├── netlify.toml ├── package.json ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── arbitrum.svg ├── binance.svg ├── charting_library │ ├── ar-tv-chart.e2a841ff.html │ ├── bundles │ │ ├── 0579d40b812fa2c3ffe72e5803a6e14c.cur │ │ ├── 1403.5c193407bf9023ec51df.css │ │ ├── 1403.5c193407bf9023ec51df.rtl.css │ │ ├── 1413.0beb5c102530e80c962f.css │ │ ├── 1413.0beb5c102530e80c962f.rtl.css │ │ ├── 1529.30943dc0c4f6a9ddaaa6.js │ │ ├── 167.4a7b6d5ac49e0365fb9f.css │ │ ├── 167.4a7b6d5ac49e0365fb9f.rtl.css │ │ ├── 1778.3dcfedd5fc468612cdc9.css │ │ ├── 1778.3dcfedd5fc468612cdc9.rtl.css │ │ ├── 1829.1d41207f53b42b7a2cba.js │ │ ├── 1941.ae71d13122bc90f281f2.css │ │ ├── 1941.ae71d13122bc90f281f2.rtl.css │ │ ├── 1df47f578aeef40dd1f2328338a133be.png │ │ ├── 2091.b5cd26b120d8f015a5f6.css │ │ ├── 2091.b5cd26b120d8f015a5f6.rtl.css │ │ ├── 2162.da7cb9d498f064a9ef84.css │ │ ├── 2162.da7cb9d498f064a9ef84.rtl.css │ │ ├── 2269.e35db23226edaf77f36d.css │ │ ├── 2269.e35db23226edaf77f36d.rtl.css │ │ ├── 2273.c8e768dcdd52b58e948e.css │ │ ├── 2273.c8e768dcdd52b58e948e.rtl.css │ │ ├── 2321.4f5fec7d39b99277caa5.css │ │ ├── 2321.4f5fec7d39b99277caa5.rtl.css │ │ ├── 2359.18a49f656f3259463f4f.css │ │ ├── 2359.18a49f656f3259463f4f.rtl.css │ │ ├── 2391.07217bcacc2a0c3b5526.js │ │ ├── 2402.4ce4e3425dce9bceed85.js │ │ ├── 2444.89916595bdde00535f06.js │ │ ├── 2614.9b290389192f690dd33c.css │ │ ├── 2614.9b290389192f690dd33c.rtl.css │ │ ├── 2778.22f147dbe677a02ae3db.css │ │ ├── 2778.22f147dbe677a02ae3db.rtl.css │ │ ├── 2850.8a920beb86b4e0f023f2.css │ │ ├── 2850.8a920beb86b4e0f023f2.rtl.css │ │ ├── 306.547d2bcc2b4af2c3a922.js │ │ ├── 3223.783979b0683ba0a325de.css │ │ ├── 3223.783979b0683ba0a325de.rtl.css │ │ ├── 3293616ec0c605c7c2db25829a0a509e.woff │ │ ├── 339.79f004acba5fa5c1b85f.css │ │ ├── 339.79f004acba5fa5c1b85f.rtl.css │ │ ├── 3463.65423ae1c1f3301a6bc0.js │ │ ├── 3537.273ebe86a4260eff8e80.css │ │ ├── 3537.273ebe86a4260eff8e80.rtl.css │ │ ├── 3590.9ba8c934cf8289ea708f.js │ │ ├── 3708.b21be6dee862262304cf.css │ │ ├── 3708.b21be6dee862262304cf.rtl.css │ │ ├── 3876.fbb750fd312778403036.css │ │ ├── 3876.fbb750fd312778403036.rtl.css │ │ ├── 3894.6c50d72ee9e079af3dab.css │ │ ├── 3894.6c50d72ee9e079af3dab.rtl.css │ │ ├── 3996.3cdbd2dcf744b8239723.css │ │ ├── 3996.3cdbd2dcf744b8239723.rtl.css │ │ ├── 40566afd832a155e5e370a8bd423de4b.svg │ │ ├── 4078.43552fd4fee41d29f435.css │ │ ├── 4078.43552fd4fee41d29f435.rtl.css │ │ ├── 4093.8b84af355871cc700cb8.js │ │ ├── 40f9a03d174178efb12303caa9bc7cd8.woff2 │ │ ├── 4336.1228643b9325cd73ea59.css │ │ ├── 4336.1228643b9325cd73ea59.rtl.css │ │ ├── 439.cf0a8c77353b34e465e2.css │ │ ├── 439.cf0a8c77353b34e465e2.rtl.css │ │ ├── 4595.6423e4f6860a7dd905ff.css │ │ ├── 4595.6423e4f6860a7dd905ff.rtl.css │ │ ├── 4652.c4c887154b57ce62bd2d.css │ │ ├── 4652.c4c887154b57ce62bd2d.rtl.css │ │ ├── 4736.2eccdb294faa8c6685ac.css │ │ ├── 4736.2eccdb294faa8c6685ac.rtl.css │ │ ├── 4834.07c319579bda11b57fc3.css │ │ ├── 4834.07c319579bda11b57fc3.rtl.css │ │ ├── 4882.acb0c10fdfd40a912b89.css │ │ ├── 4882.acb0c10fdfd40a912b89.rtl.css │ │ ├── 4940.6aeb4a6f298568a71905.js │ │ ├── 4985.6abfd9453389325f7436.css │ │ ├── 4985.6abfd9453389325f7436.rtl.css │ │ ├── 4a9abefd31dab7c8239e02e925aacd78.png │ │ ├── 4fafff07d8914dc11f6d335f606ff47c.png │ │ ├── 5019.5e7f23f81809b4af9b28.js │ │ ├── 5030.3f535fc5b94422bc913a.js │ │ ├── 5254.776db7a6898f96fdd81f.js │ │ ├── 5383.22c502e2ba80f4b4fc32.js │ │ ├── 5410.21bcd4914bfb1cf880be.css │ │ ├── 5410.21bcd4914bfb1cf880be.rtl.css │ │ ├── 5453.142c8996edfadb5669ae.css │ │ ├── 5453.142c8996edfadb5669ae.rtl.css │ │ ├── 5527.b19a3c2c68b0d873fe2b.css │ │ ├── 5527.b19a3c2c68b0d873fe2b.rtl.css │ │ ├── 5551.407668886ab3145df3b5.css │ │ ├── 5551.407668886ab3145df3b5.rtl.css │ │ ├── 5637.a1b98549b1c9f19a01cf.css │ │ ├── 5637.a1b98549b1c9f19a01cf.rtl.css │ │ ├── 5698.9f7ef23e439b8f550541.css │ │ ├── 5698.9f7ef23e439b8f550541.rtl.css │ │ ├── 587.144039f5c693ee079edb.css │ │ ├── 587.144039f5c693ee079edb.rtl.css │ │ ├── 5984.fce1e6b0306b3072be07.css │ │ ├── 5984.fce1e6b0306b3072be07.rtl.css │ │ ├── 6062.56b57d0c5c641ee6c503.css │ │ ├── 6062.56b57d0c5c641ee6c503.rtl.css │ │ ├── 6143.1f43f1c13a5153841646.css │ │ ├── 6143.1f43f1c13a5153841646.rtl.css │ │ ├── 6253.8ddff4c976b3edf9f34c.css │ │ ├── 6253.8ddff4c976b3edf9f34c.rtl.css │ │ ├── 6333.75d8cc7be7c14f60fb3b.css │ │ ├── 6333.75d8cc7be7c14f60fb3b.rtl.css │ │ ├── 6473.e5bfe6a8cd8097cebb56.css │ │ ├── 6473.e5bfe6a8cd8097cebb56.rtl.css │ │ ├── 6548.bda2305976fecdd6ca1a.css │ │ ├── 6548.bda2305976fecdd6ca1a.rtl.css │ │ ├── 6612.6ea4b89e354fef333be4.css │ │ ├── 6612.6ea4b89e354fef333be4.rtl.css │ │ ├── 6637.b9569ad7b9c1ffb59c7c.css │ │ ├── 6637.b9569ad7b9c1ffb59c7c.rtl.css │ │ ├── 7039.873153a7278857ebfcd1.css │ │ ├── 7039.873153a7278857ebfcd1.rtl.css │ │ ├── 706.af12d57a740fb6b1ba5b.css │ │ ├── 706.af12d57a740fb6b1ba5b.rtl.css │ │ ├── 708.7f4b99c8dfd3f4cda1d1.js │ │ ├── 7353.9bb4f9381a2ee34bec3c.css │ │ ├── 7353.9bb4f9381a2ee34bec3c.rtl.css │ │ ├── 7365.fb40181a46db7cf2d8b0.js │ │ ├── 7371.81bb2bc38b8ec23308e1.js │ │ ├── 739.ac9682232ee125adb331.js │ │ ├── 7393f661fc7d4389ea6d4dabd2a5aeea.png │ │ ├── 7400.30502d5397989951046f.css │ │ ├── 7400.30502d5397989951046f.rtl.css │ │ ├── 7591.cea4aee1089cbf340ee7.js │ │ ├── 7607.99350c6a482907066b03.css │ │ ├── 7607.99350c6a482907066b03.rtl.css │ │ ├── 7610.9e79032a52ca259701ef.css │ │ ├── 7610.9e79032a52ca259701ef.rtl.css │ │ ├── 7703.be823882173b57ef030c.js │ │ ├── 7757.6d2b490c3cc2ed78d4dd.css │ │ ├── 7757.6d2b490c3cc2ed78d4dd.rtl.css │ │ ├── 7799.681df0cf83dba8ef3cc5.js │ │ ├── 7936.1e4e780ffda134d965f5.css │ │ ├── 7936.1e4e780ffda134d965f5.rtl.css │ │ ├── 7962.eed46026b7fd77b57cb3.js │ │ ├── 7e0cc5f7d7f5151500dd60b8d6ca60a1.png │ │ ├── 8193.01090d4d9384825040ad.css │ │ ├── 8193.01090d4d9384825040ad.rtl.css │ │ ├── 83.46ce2798763a3d5c2748.css │ │ ├── 83.46ce2798763a3d5c2748.rtl.css │ │ ├── 8434.99d7135551ebc9e84366.js │ │ ├── 8445.e3ed5f183ca7539d37f0.css │ │ ├── 8445.e3ed5f183ca7539d37f0.rtl.css │ │ ├── 847.0e2ec220427667ac4afb.js │ │ ├── 8604.9200d240b82687bc2a27.css │ │ ├── 8604.9200d240b82687bc2a27.rtl.css │ │ ├── 8625.2718a9cf5d44ca766c9d.js │ │ ├── 8680.a98f949c3d71bf32d2c7.js │ │ ├── 8856.15adfc3af04a9cdeadc5.css │ │ ├── 8856.15adfc3af04a9cdeadc5.rtl.css │ │ ├── 8858.535457f61e1b51d9add2.css │ │ ├── 8858.535457f61e1b51d9add2.rtl.css │ │ ├── 8933.9d36818107c1f276f948.css │ │ ├── 8933.9d36818107c1f276f948.rtl.css │ │ ├── 8969.d72c3357aff6000fd03e.css │ │ ├── 8969.d72c3357aff6000fd03e.rtl.css │ │ ├── 898929f1acdb622689e0fc0c95c8fcd0.png │ │ ├── 9256.c6fbca120598828685f3.css │ │ ├── 9256.c6fbca120598828685f3.rtl.css │ │ ├── 9305.009b7d4c21c45de9ca48.css │ │ ├── 9305.009b7d4c21c45de9ca48.rtl.css │ │ ├── 9354.a21ae4055d6f7729f892.css │ │ ├── 9354.a21ae4055d6f7729f892.rtl.css │ │ ├── 9423.0ad3a6d06b6bac488bb0.css │ │ ├── 9423.0ad3a6d06b6bac488bb0.rtl.css │ │ ├── 9448.cd38beceb14c87b723f6.css │ │ ├── 9448.cd38beceb14c87b723f6.rtl.css │ │ ├── 9602.a0fc3bf3e40760a87f74.css │ │ ├── 9602.a0fc3bf3e40760a87f74.rtl.css │ │ ├── 9628.8f8514eafeb1da3bbdee.js │ │ ├── 9772.0967c8fb7beae0056cf7.js │ │ ├── 9843.9822f0a3a15262042b3e.css │ │ ├── 9843.9822f0a3a15262042b3e.rtl.css │ │ ├── 9917.f67e7443dbbc7357fda3.css │ │ ├── 9917.f67e7443dbbc7357fda3.rtl.css │ │ ├── a6506134daec7169f68f563f084a9d41.svg │ │ ├── add-compare-dialog.0e0f4b81cf8178378c14.js │ │ ├── b1a63a011fd92dfb93db6db243bb036c.woff2 │ │ ├── change-interval-dialog.15fea722d205fbdde7d1.js │ │ ├── chart-bottom-toolbar.05a57b6389d7ddc2a351.js │ │ ├── chart-event-hint.cb517ed06ee9725b8a76.js │ │ ├── chart-screenshot-hint.6d0f2e7ac3cebd7b650c.js │ │ ├── chart-widget-gui.9891573a47b469e91df5.js │ │ ├── compare-model.08356f64fbfcdcdc3776.js │ │ ├── context-menu-renderer.9a0385060e4241baf12d.js │ │ ├── currency-label-menu.6dde8a17826b1fb3712c.js │ │ ├── custom-intervals-add-dialog.3506afd973a0a43dc42a.js │ │ ├── drawing-toolbar.8399395e7103ba30e756.js │ │ ├── ed68e83c16f77203e73dbc4c3a7c7fa1.cur │ │ ├── export-data.429732b8c4ae52bcac7d.js │ │ ├── f55394b616ed1ae9462c37daab941d93.png │ │ ├── floating-toolbars.913e12fe2b73959f49ca.js │ │ ├── full-tooltips-popup.c97f4f88ba2959dd66bb.js │ │ ├── general-chart-properties-dialog.742b577b84c6f9fdb26f.js │ │ ├── general-property-page.86f95ff011c77a44071d.js │ │ ├── get-error-card.dfe1662b6e974e519b68.js │ │ ├── go-to-date-dialog-impl.dadfac644efdcd254d91.js │ │ ├── hammerjs.c69dac2431e462e3fc71.js │ │ ├── header-toolbar.d302e948bcd970bc1897.js │ │ ├── library.1fbbf36d35f97ccfbd00.js │ │ ├── line-tools-icons.2ebfde56d4ef0139cc64.js │ │ ├── load-chart-dialog.418fa6c99a7803f5cc10.js │ │ ├── lollipop-tooltip-renderer.76349a508c9e9d8b8af2.js │ │ ├── lt-pane-views.a54c6c59d86ab4d390bf.js │ │ ├── lt-property-pages-with-definitions.ced0df22c184338b3396.js │ │ ├── manage-drawings-dialog.ce43d4b42ea019cc5518.js │ │ ├── new-confirm-inputs-dialog.88813711209cf273d882.js │ │ ├── new-edit-object-dialog.e069889125138e0cf97a.js │ │ ├── object-tree-dialog.ec325666665d14d13dd5.js │ │ ├── react.13567dea1b1173009d35.js │ │ ├── redux.e48a9c831cd697f8a38d.js │ │ ├── restricted-toolset.8f58ab2a275c8e1f72b1.js │ │ ├── runtime.f1210af3518e525e94d7.js │ │ ├── series-icons-map.9d92dfe755e0c94c0c8d.js │ │ ├── series-pane-views.d49b8ec162ba0c43260c.js │ │ ├── share-chart-to-social-utils.830f7e41690ac8285de5.js │ │ ├── show-theme-save-dialog.b99932982e0d8e47d562.js │ │ ├── simple-dialog.4965864a1f87b628af01.js │ │ ├── source-properties-editor.6854af2788acfa4ef4d4.js │ │ ├── study-inputs-pane-views.1763111669ad2eaa2f52.js │ │ ├── study-market.aaf59e23fa593dd538bc.js │ │ ├── study-pane-views.d9686c973fa1f1a93ff4.js │ │ ├── study-property-pages-with-definitions.72083d0a0868166ca2b7.js │ │ ├── study-template-dialog.fd30d0463b77c8858d31.js │ │ ├── symbol-info-dialog-impl.6aa56a0ae77115394b2f.js │ │ ├── symbol-search-dialog.4e741ef8a94e2a1cdf8c.js │ │ ├── take-chart-image-impl.013638618dfc6d4c1eaa.js │ │ └── vendors.3197279804dd7477f3fb.js │ ├── charting_library.cjs.js │ ├── charting_library.d.ts │ ├── charting_library.esm.js │ ├── charting_library.js │ ├── charting_library.standalone.js │ ├── cs-tv-chart.e2a841ff.html │ ├── da_DK-tv-chart.e2a841ff.html │ ├── datafeed-api.d.ts │ ├── de-tv-chart.e2a841ff.html │ ├── el-tv-chart.e2a841ff.html │ ├── en-tv-chart.e2a841ff.html │ ├── es-tv-chart.e2a841ff.html │ ├── et_EE-tv-chart.e2a841ff.html │ ├── fa-tv-chart.e2a841ff.html │ ├── fr-tv-chart.e2a841ff.html │ ├── he_IL-tv-chart.e2a841ff.html │ ├── hu_HU-tv-chart.e2a841ff.html │ ├── id_ID-tv-chart.e2a841ff.html │ ├── it-tv-chart.e2a841ff.html │ ├── ja-tv-chart.e2a841ff.html │ ├── ko-tv-chart.e2a841ff.html │ ├── ms_MY-tv-chart.e2a841ff.html │ ├── nl_NL-tv-chart.e2a841ff.html │ ├── no-tv-chart.e2a841ff.html │ ├── package.json │ ├── pl-tv-chart.e2a841ff.html │ ├── pt-tv-chart.e2a841ff.html │ ├── ro-tv-chart.e2a841ff.html │ ├── ru-tv-chart.e2a841ff.html │ ├── sk_SK-tv-chart.e2a841ff.html │ ├── sv-tv-chart.e2a841ff.html │ ├── th-tv-chart.e2a841ff.html │ ├── tr-tv-chart.e2a841ff.html │ ├── vi-tv-chart.e2a841ff.html │ ├── zh-tv-chart.e2a841ff.html │ └── zh_TW-tv-chart.e2a841ff.html ├── css │ ├── index.html │ ├── layout.css │ ├── media-screen.css │ └── vendor.min.css ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── favicon │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ ├── ms-icon-70x70.png │ └── utx-logo.svg ├── fonts │ ├── Roboto.ttf │ ├── Roboto_B.ttf │ ├── Roboto_M.ttf │ └── index.html ├── images │ ├── arrow-right.svg │ ├── bg-logo-02.png │ ├── bg-logo.png │ ├── bridge.png │ ├── dao.png │ ├── f-discord.png │ ├── f-github.png │ ├── f-telegram.png │ ├── f-twitter.png │ ├── icon-01.png │ ├── icon-02.png │ ├── icon-03.png │ ├── icon-04.png │ ├── icon-05.png │ ├── icon-06.png │ ├── icon-07.png │ ├── icon-global.png │ ├── icon-logo.png │ ├── icon-uniultra.png │ ├── index.html │ ├── layer.svg │ ├── layer_1.svg │ ├── line.png │ ├── logo-vertical.svg │ ├── logo.svg │ ├── robot.png │ └── star.png ├── index.html ├── js │ ├── index.html │ ├── script.js │ └── vendor.min.js ├── logo.png ├── og.png ├── robots.txt ├── site.webmanifest └── tradingview-chart.css ├── src ├── App │ ├── App.js │ └── App.scss ├── abis │ ├── ERC721.json │ ├── GMT.json │ ├── MintableBaseToken.json │ ├── Multicall.json │ ├── OrderBook.json │ ├── OrderBookReader.json │ ├── OrderExecutor.json │ ├── PositionManager.json │ ├── PositionRouter.json │ ├── Reader.json │ ├── ReaderV2.json │ ├── ReferralStorage.json │ ├── RewardReader.json │ ├── RewardRouter.json │ ├── RewardTracker.json │ ├── Router-v2.json │ ├── Router.json │ ├── Timelock.json │ ├── Token.json │ ├── Treasury.json │ ├── UlpManager.json │ ├── UniPool.json │ ├── UniswapV2.json │ ├── UtxMigrator.json │ ├── Vault.json │ ├── VaultReader.json │ ├── VaultV2.json │ ├── VaultV2b.json │ ├── Vester.json │ ├── WETH.json │ ├── YieldFarm.json │ └── YieldToken.json ├── charting_library.d.ts ├── components │ ├── APRLabel │ │ └── APRLabel.js │ ├── AddressDropdown │ │ ├── AddressDropdown.scss │ │ └── AddressDropdown.tsx │ ├── Button │ │ ├── Button.scss │ │ ├── Button.tsx │ │ └── ButtonLink.tsx │ ├── BuyInputSection │ │ ├── BuyInputSection.scss │ │ └── BuyInputSection.tsx │ ├── Checkbox │ │ ├── Checkbox.css │ │ └── Checkbox.js │ ├── Common │ │ ├── Card.css │ │ ├── Card.tsx │ │ ├── ConnectWalletButton.scss │ │ ├── ConnectWalletButton.tsx │ │ ├── Loader.css │ │ ├── Loader.js │ │ ├── Portal.js │ │ ├── SEO.js │ │ ├── SpinningLoader.css │ │ └── SpinningLoader.js │ ├── EventToast │ │ ├── AnnouncementIcon.js │ │ ├── EventToast.css │ │ ├── EventToast.js │ │ ├── EventToastContainer.js │ │ └── useEventToast.js │ ├── Exchange │ │ └── UsefulLinks.tsx │ ├── ExternalLink │ │ ├── ExternalLink.scss │ │ └── ExternalLink.tsx │ ├── Footer │ │ ├── Footer.css │ │ ├── Footer.tsx │ │ └── constants.ts │ ├── Header │ │ ├── AppHeaderLinks.tsx │ │ ├── AppHeaderUser.tsx │ │ ├── Header.css │ │ ├── Header.tsx │ │ ├── HeaderLink.tsx │ │ └── HomeHeaderLinks.tsx │ ├── InputSection │ │ ├── InputSection.css │ │ └── InputSection.js │ ├── Migration │ │ ├── Migration.css │ │ └── Migration.js │ ├── Modal │ │ ├── Modal.css │ │ ├── Modal.js │ │ └── ModalWithPortal.js │ ├── ModalViews │ │ ├── RedirectModal.css │ │ └── RedirectModal.js │ ├── NetworkDropdown │ │ ├── LanguageModalContent.js │ │ ├── LanguageModalContent.tsx │ │ ├── LanguagePopupHome.tsx │ │ ├── NetworkDropdown.css │ │ └── NetworkDropdown.tsx │ ├── Overlay │ │ ├── Overlay.css │ │ └── Overlay.js │ ├── Pagination │ │ ├── Pagination.css │ │ └── Pagination.tsx │ ├── Radio │ │ ├── Radio.css │ │ └── Radio.js │ ├── Select │ │ ├── Select.scss │ │ └── Select.tsx │ ├── SlippageInput │ │ ├── SlippageInput.scss │ │ └── SlippageInput.tsx │ ├── Stake │ │ └── UTXAprTooltip.tsx │ ├── StatsTooltip │ │ ├── StatsTooltip.css │ │ ├── StatsTooltip.tsx │ │ └── StatsTooltipRow.tsx │ ├── TVChartContainer │ │ ├── SaveLoadAdapter.ts │ │ ├── TVChartContainer.tsx │ │ └── constants.ts │ ├── Tab │ │ ├── Tab.css │ │ └── Tab.js │ ├── ToastifyDebug │ │ └── ToastifyDebug.tsx │ ├── ToggleSwitch │ │ ├── ToggleSwitch.scss │ │ └── ToggleSwitch.tsx │ ├── TokenCard │ │ ├── TokenCard.css │ │ └── TokenCard.js │ ├── Tooltip │ │ ├── Tooltip.css │ │ ├── Tooltip.tsx │ │ └── TooltipWithPortal.tsx │ └── Ulp │ │ ├── SwapErrorModal.tsx │ │ ├── UlpSwap.css │ │ └── UlpSwap.js ├── config │ ├── backend.ts │ ├── chains.ts │ ├── contracts.ts │ ├── env.ts │ ├── events.ts │ ├── icons.ts │ ├── links.ts │ ├── localStorage.ts │ ├── subgraph.ts │ ├── tokens.ts │ ├── tradingview.ts │ └── ui.ts ├── domain │ ├── legacy.ts │ ├── positions │ │ └── types.ts │ ├── prices.ts │ ├── stats │ │ ├── index.ts │ │ ├── types.ts │ │ ├── useFeesSummary.js │ │ ├── useTotalVolume.ts │ │ ├── useUniqueUsers.ts │ │ └── useVolumeInfo.ts │ ├── tokens │ │ ├── approveTokens.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ ├── useInfoTokens.ts │ │ └── utils.ts │ └── tradingview │ │ ├── TVDataProvider.ts │ │ ├── requests.ts │ │ ├── types.ts │ │ ├── useTVDatafeed.ts │ │ └── utils.ts ├── fonts │ ├── inter │ │ ├── inter-v12-latin-500.eot │ │ ├── inter-v12-latin-500.svg │ │ ├── inter-v12-latin-500.ttf │ │ ├── inter-v12-latin-500.woff │ │ ├── inter-v12-latin-500.woff2 │ │ ├── inter-v12-latin-regular.eot │ │ ├── inter-v12-latin-regular.svg │ │ ├── inter-v12-latin-regular.ttf │ │ ├── inter-v12-latin-regular.woff │ │ └── inter-v12-latin-regular.woff2 │ ├── relative │ │ ├── relative-book-pro.eot │ │ ├── relative-book-pro.ttf │ │ ├── relative-book-pro.woff │ │ └── relative-book-pro.woff2 │ └── roboto │ │ ├── roboto-v30-latin-500.eot │ │ ├── roboto-v30-latin-500.svg │ │ ├── roboto-v30-latin-500.ttf │ │ ├── roboto-v30-latin-500.woff │ │ ├── roboto-v30-latin-500.woff2 │ │ ├── roboto-v30-latin-regular.eot │ │ ├── roboto-v30-latin-regular.svg │ │ ├── roboto-v30-latin-regular.ttf │ │ ├── roboto-v30-latin-regular.woff │ │ └── roboto-v30-latin-regular.woff2 ├── img │ ├── Anyswap.png │ ├── Anyswap.svg │ ├── Artwork.svg │ ├── Artwork_utx.svg │ ├── Banxa.png │ ├── DROP_DOWN.svg │ ├── Hop.png │ ├── Hop.svg │ ├── Hop_dark.png │ ├── Hop_dark.svg │ ├── Synapse.png │ ├── Synapse.svg │ ├── binance.png │ ├── bitkeep.svg │ ├── bscscan.png │ ├── btn_big_arbitrum.png │ ├── btn_big_avalanche.png │ ├── btn_big_bsc.png │ ├── btn_big_purchasegmx.png │ ├── btn_big_purchasegmx.svg │ ├── buy_gmx.svg │ ├── buy_gmx_bond.svg │ ├── buy_transfer_eth.svg │ ├── cancelX.svg │ ├── caret_down.svg │ ├── caret_up.svg │ ├── coinbaseWallet.png │ ├── coingecko.png │ ├── cross.svg │ ├── dashboard_clock.svg │ ├── dashboard_down.svg │ ├── dashboard_tivi.svg │ ├── dashboard_ulp_icon.svg │ ├── dashboard_up.svg │ ├── dashboard_utx_icon.svg │ ├── earn_esutx_icon.svg │ ├── earn_eth_icon.svg │ ├── earn_info_icon.svg │ ├── earn_multi_icon.svg │ ├── earn_rewards_icon.svg │ ├── earn_stake_esutx_icon.svg │ ├── earn_stake_icon.svg │ ├── earn_stake_ulp_icon.svg │ ├── earn_stake_utx_icon.svg │ ├── edit_icon.svg │ ├── external-link.svg │ ├── flag_de.svg │ ├── flag_en.svg │ ├── flag_es.svg │ ├── flag_fr.svg │ ├── flag_ja.svg │ ├── flag_ko.svg │ ├── flag_ru.svg │ ├── flag_zh.svg │ ├── footer_logo_full.svg │ ├── gateio.svg │ ├── glp_icon.svg │ ├── gmx-logo-final-white-small.png │ ├── gmx-logo-final-white.png │ ├── gmx-logo-final.png │ ├── gmx-logo-glow.png │ ├── gmx_logo.svg │ ├── graphite-01.png │ ├── ic-communityproject.svg │ ├── ic_1inch.svg │ ├── ic_across.svg │ ├── ic_arbitrum_16.svg │ ├── ic_arbitrum_24.svg │ ├── ic_arbitrum_96.svg │ ├── ic_arbitrum_hover_16.svg │ ├── ic_arrowleft16.svg │ ├── ic_arrowright16.svg │ ├── ic_avalanche_16.svg │ ├── ic_avalanche_24.svg │ ├── ic_avalanche_96.svg │ ├── ic_avalanche_testnet_16.svg │ ├── ic_avalanche_testnet_24.svg │ ├── ic_avalanche_testnet_96.svg │ ├── ic_avax_24.svg │ ├── ic_avax_30.svg │ ├── ic_avax_40.svg │ ├── ic_banxa.svg │ ├── ic_binance.svg │ ├── ic_binance_logo.svg │ ├── ic_bondprotocol_arbitrum.svg │ ├── ic_bsc.svg │ ├── ic_bsc_96.svg │ ├── ic_btc.b_24.svg │ ├── ic_btc.b_40.svg │ ├── ic_btc_24.svg │ ├── ic_btc_40.svg │ ├── ic_bungee.png │ ├── ic_busd_24.svg │ ├── ic_buy_glp.svg │ ├── ic_bybit.svg │ ├── ic_cash.png │ ├── ic_cash.svg │ ├── ic_checked.svg │ ├── ic_coingecko_16.svg │ ├── ic_coingecko_hover_16.svg │ ├── ic_convert_down.svg │ ├── ic_copy_16.svg │ ├── ic_cost.svg │ ├── ic_dai_24.svg │ ├── ic_dai_40.svg │ ├── ic_discord.svg │ ├── ic_dodo.svg │ ├── ic_eth_24.svg │ ├── ic_eth_40.svg │ ├── ic_firebird.png │ ├── ic_frax_24.svg │ ├── ic_frax_40.svg │ ├── ic_github.svg │ ├── ic_glp_24.svg │ ├── ic_glp_40.svg │ ├── ic_glp_arbitrum.svg │ ├── ic_glp_avax.svg │ ├── ic_glp_custom.svg │ ├── ic_gmx.svg │ ├── ic_gmx_24.svg │ ├── ic_gmx_30.svg │ ├── ic_gmx_40.svg │ ├── ic_gmx_64.svg │ ├── ic_gmx_arbitrum.svg │ ├── ic_gmx_avax.svg │ ├── ic_gmx_big.svg │ ├── ic_gmx_custom.svg │ ├── ic_gmx_footer.svg │ ├── ic_hop.svg │ ├── ic_huobi.svg │ ├── ic_info.svg │ ├── ic_kucoin.svg │ ├── ic_kyberswap.svg │ ├── ic_language24.svg │ ├── ic_link_24.svg │ ├── ic_link_40.svg │ ├── ic_liquidity.svg │ ├── ic_matcha.png │ ├── ic_medium.svg │ ├── ic_menu_dots.svg │ ├── ic_metamask_16.svg │ ├── ic_metamask_hover_16.svg │ ├── ic_mim_24.svg │ ├── ic_mim_40.svg │ ├── ic_multichain.svg │ ├── ic_new_link_16.svg │ ├── ic_o3.png │ ├── ic_odos.png │ ├── ic_olympus.svg │ ├── ic_olympus_arbitrum.svg │ ├── ic_openocean.svg │ ├── ic_paraswap.svg │ ├── ic_selector_dropdowns.svg │ ├── ic_settings_16.svg │ ├── ic_settings_24.svg │ ├── ic_sign in_16.svg │ ├── ic_sign_out_16.svg │ ├── ic_simpleswaps.svg │ ├── ic_slingshot.svg │ ├── ic_stats.svg │ ├── ic_stats_big.svg │ ├── ic_substack.svg │ ├── ic_synapse.svg │ ├── ic_tansak.svg │ ├── ic_telegram.svg │ ├── ic_tether_24.svg │ ├── ic_tokens.svg │ ├── ic_totaluser.svg │ ├── ic_traderjoe_avax.png │ ├── ic_trading.svg │ ├── ic_transfer_avax.svg │ ├── ic_twitter.svg │ ├── ic_uni_24.svg │ ├── ic_uni_40.svg │ ├── ic_uni_arbitrum.svg │ ├── ic_unidex.png │ ├── ic_usdc.e_24.svg │ ├── ic_usdc.e_40.svg │ ├── ic_usdc_24.svg │ ├── ic_usdc_40.svg │ ├── ic_usdt_24.svg │ ├── ic_usdt_40.svg │ ├── ic_wallet_24.svg │ ├── ic_wavax_24.svg │ ├── ic_wavax_40.svg │ ├── ic_wbtc_24.svg │ ├── ic_wbtc_40.svg │ ├── ic_weth_24.svg │ ├── ic_weth_40.svg │ ├── ic_yield_yak.png │ ├── information-circle.svg │ ├── lg_arbitrum.svg │ ├── logo-ultra-desktop.svg │ ├── logo-ultra-small.svg │ ├── logo_GMX.svg │ ├── logo_GMX_small.svg │ ├── long.svg │ ├── long_active.svg │ ├── metamask-text.svg │ ├── metamask.png │ ├── nansen_portfolio.svg │ ├── okx-pogo.svg │ ├── open-new-tab.svg │ ├── page-not-found.svg │ ├── position-share-bg.png │ ├── search.svg │ ├── select_token_chart_icon.svg │ ├── short.svg │ ├── short_active.svg │ ├── swap.svg │ ├── swap_active.svg │ ├── trading.jpg │ ├── utx-logo-with-name.svg │ ├── utx-logo.svg │ ├── vest-utx.svg │ ├── wallet-connect-text.svg │ ├── walletconnect-circle-blue.svg │ ├── wave-01.png │ └── wave-02.png ├── index.tsx ├── lib │ ├── __tests__ │ │ └── getLiquidationPrice.spec.ts │ ├── chains │ │ └── index.ts │ ├── contracts │ │ ├── callContract.tsx │ │ ├── contractFetcher.ts │ │ ├── index.ts │ │ ├── transactionErrors.ts │ │ └── utils.ts │ ├── dates.ts │ ├── downloadImage.ts │ ├── graphqlFetcher.ts │ ├── helperToast.ts │ ├── i18n.ts │ ├── legacy.ts │ ├── localStorage │ │ └── index.ts │ ├── multicall │ │ ├── index.tsx │ │ ├── types.ts │ │ ├── useMulticall.ts │ │ └── utils.ts │ ├── numbers.ts │ ├── rpc │ │ └── index.ts │ ├── sleep.ts │ ├── subgraph │ │ ├── clients.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── testUtils.tsx │ ├── url.ts │ ├── useDebounce.ts │ ├── useEffectDebugger.ts │ ├── useGetPriceToken.ts │ ├── useLoadImage.ts │ ├── usePrevious.ts │ ├── useRouteQuery.ts │ ├── useScrollToTop.ts │ └── wallets │ │ ├── WalletConnectConnector.tsx │ │ ├── index.tsx │ │ └── useAccountType.ts ├── locales │ ├── de │ │ └── messages.po │ ├── en │ │ └── messages.po │ ├── es │ │ └── messages.po │ ├── fr │ │ └── messages.po │ ├── ja │ │ └── messages.po │ ├── ko │ │ └── messages.po │ ├── pseudo │ │ └── messages.po │ ├── ru │ │ └── messages.po │ └── zh │ │ └── messages.po ├── pages │ ├── Actions │ │ ├── Actions.css │ │ └── Actions.js │ ├── BeginAccountTransfer │ │ ├── BeginAccountTransfer.css │ │ └── BeginAccountTransfer.js │ ├── Buy │ │ ├── Buy.css │ │ └── Buy.js │ ├── BuyUTX │ │ ├── BuyUTX.css │ │ ├── BuyUTX.tsx │ │ └── constants.ts │ ├── BuyUlp │ │ ├── BuyUlp.css │ │ └── BuyUlp.js │ ├── ClaimEsUtx │ │ ├── ClaimEsUtx.css │ │ └── ClaimEsUtx.js │ ├── CompleteAccountTransfer │ │ ├── CompleteAccountTransfer.css │ │ └── CompleteAccountTransfer.js │ ├── Dashboard │ │ ├── AssetDropdown.css │ │ ├── AssetDropdown.tsx │ │ ├── Dashboard.css │ │ ├── Dashboard.js │ │ ├── DashboardV1.js │ │ ├── DashboardV2.css │ │ └── DashboardV2.js │ ├── Ecosystem │ │ ├── Ecosystem.css │ │ └── Ecosystem.js │ ├── Exchange │ │ ├── ChartTokenSelector.css │ │ ├── ChartTokenSelector.js │ │ ├── ConfimationBox.css │ │ ├── ConfirmationBox.js │ │ ├── Exchange.css │ │ ├── Exchange.js │ │ ├── ExchangeBanner.css │ │ ├── ExchangeBanner.js │ │ ├── ExchangeInfoRow.js │ │ ├── ExchangeTVChart.js │ │ ├── ExchangeWalletTokens.css │ │ ├── ExchangeWalletTokens.js │ │ ├── FeesTooltip.tsx │ │ ├── LeverageSlider.tsx │ │ ├── NetValueTooltip.tsx │ │ ├── NoLiquidityErrorModal.tsx │ │ ├── OrderEditor.js │ │ ├── OrdersList.css │ │ ├── OrdersList.js │ │ ├── OrdersToa.css │ │ ├── OrdersToa.js │ │ ├── PositionDropdown.css │ │ ├── PositionDropdown.js │ │ ├── PositionEditor.js │ │ ├── PositionList.js │ │ ├── PositionSeller.css │ │ ├── PositionSeller.js │ │ ├── PositionShare.css │ │ ├── SwapBox.js │ │ ├── SwapBox.scss │ │ ├── TokenSelector.css │ │ ├── TokenSelector.js │ │ ├── TradeHistory.css │ │ ├── TradeHistory.js │ │ └── constants.ts │ ├── Home │ │ ├── Home.css │ │ └── Home.js │ ├── Homepage │ │ ├── Homepage.js │ │ └── images │ │ │ ├── arrow-right.svg │ │ │ ├── bg-logo-02.png │ │ │ ├── bg-logo.png │ │ │ ├── bridge.png │ │ │ ├── dao.png │ │ │ ├── f-discord.png │ │ │ ├── f-github.png │ │ │ ├── f-telegram.png │ │ │ ├── f-twitter.png │ │ │ ├── icon-01.png │ │ │ ├── icon-02.png │ │ │ ├── icon-03.png │ │ │ ├── icon-04.png │ │ │ ├── icon-05.png │ │ │ ├── icon-06.png │ │ │ ├── icon-07.png │ │ │ ├── icon-global.png │ │ │ ├── icon-logo.png │ │ │ ├── icon-uniultra.png │ │ │ ├── index.html │ │ │ ├── layer.svg │ │ │ ├── layer_1.svg │ │ │ ├── line.png │ │ │ ├── logo-vertical.svg │ │ │ ├── logo.svg │ │ │ ├── robot.png │ │ │ └── star.png │ ├── Jobs │ │ ├── Jobs.css │ │ └── Jobs.js │ ├── NftWallet │ │ ├── NftWallet.css │ │ └── NftWallet.js │ ├── OrdersOverview │ │ ├── OrdersOverview.css │ │ └── OrdersOverview.js │ ├── PageNotFound │ │ ├── PageNotFound.css │ │ └── PageNotFound.js │ ├── PositionsOverview │ │ ├── PositionsOverview.css │ │ └── PositionsOverview.js │ ├── Presale │ │ └── Presale.css │ ├── ReferralTerms │ │ ├── ReferralTerms.css │ │ └── ReferralTerms.js │ ├── SellGlp │ │ └── SellGlp.css │ ├── Stake │ │ ├── Stake.css │ │ ├── Stake.js │ │ ├── StakeV1.js │ │ ├── StakeV2.css │ │ └── StakeV2.js │ ├── Stats │ │ ├── Stats.css │ │ └── Stats.tsx │ └── TermsAndConditions │ │ ├── TermsAndConditions.css │ │ └── TermsAndConditions.js ├── react-app-env.d.ts ├── reportWebVitals.js ├── styles │ ├── Font.css │ ├── Input.css │ └── Shared.css └── typings.d.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/.env -------------------------------------------------------------------------------- /.env-cmdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/.env-cmdrc -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/.env.production -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.linguirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/.linguirc -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/README.md -------------------------------------------------------------------------------- /auth/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/app.js -------------------------------------------------------------------------------- /auth/config/config.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/config/config.env.example -------------------------------------------------------------------------------- /auth/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/config/database.js -------------------------------------------------------------------------------- /auth/controllers/orderController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/controllers/orderController.js -------------------------------------------------------------------------------- /auth/controllers/paymentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/controllers/paymentController.js -------------------------------------------------------------------------------- /auth/controllers/productController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/controllers/productController.js -------------------------------------------------------------------------------- /auth/controllers/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/controllers/userController.js -------------------------------------------------------------------------------- /auth/data/cart.json: -------------------------------------------------------------------------------- 1 | {"products":[{"id":"0.41607315815753076","qty":1}],"totalPrice":12} -------------------------------------------------------------------------------- /auth/data/images/1594728176097-61zBrD4EswL._AC_SL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/images/1594728176097-61zBrD4EswL._AC_SL1500_.jpg -------------------------------------------------------------------------------- /auth/data/images/1594728821919-714hGsMXZaL._AC_UX679_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/images/1594728821919-714hGsMXZaL._AC_UX679_.jpg -------------------------------------------------------------------------------- /auth/data/images/1594738805136-71htAr2SpBL._AC_SL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/images/1594738805136-71htAr2SpBL._AC_SL1500_.jpg -------------------------------------------------------------------------------- /auth/data/images/1594738887088-81+WmLbpzvL._AC_SL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/images/1594738887088-81+WmLbpzvL._AC_SL1500_.jpg -------------------------------------------------------------------------------- /auth/data/images/1594739091288-716irmhfMkL._AC_SL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/images/1594739091288-716irmhfMkL._AC_SL1500_.jpg -------------------------------------------------------------------------------- /auth/data/images/1594739168624-61NwNFbA9FL._AC_SL1000_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/images/1594739168624-61NwNFbA9FL._AC_SL1000_.jpg -------------------------------------------------------------------------------- /auth/data/images/1594739262021-61TAggR+upL._AC_SL1500_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/images/1594739262021-61TAggR+upL._AC_SL1500_.jpg -------------------------------------------------------------------------------- /auth/data/images/travel_macbookpro13_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/images/travel_macbookpro13_front.png -------------------------------------------------------------------------------- /auth/data/invoice/invoice-5f096ef911137b230cccbcde.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/invoice/invoice-5f096ef911137b230cccbcde.pdf -------------------------------------------------------------------------------- /auth/data/invoice/invoice-5f09c880622ce4371411fb65.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/invoice/invoice-5f09c880622ce4371411fb65.pdf -------------------------------------------------------------------------------- /auth/data/invoice/invoice-5f0da2c500b7001ab054bcaf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/invoice/invoice-5f0da2c500b7001ab054bcaf.pdf -------------------------------------------------------------------------------- /auth/data/invoice/invoice-5f156c42e74db20a30e0b5b0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/invoice/invoice-5f156c42e74db20a30e0b5b0.pdf -------------------------------------------------------------------------------- /auth/data/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/products.json -------------------------------------------------------------------------------- /auth/data/util/fileDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/util/fileDelete.js -------------------------------------------------------------------------------- /auth/data/util/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/data/util/path.js -------------------------------------------------------------------------------- /auth/middlewares/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/common/index.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/asyncErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/asyncErrorHandler.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/createNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/createNotification.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/dbConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/dbConnection.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/dbErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/dbErrorHandler.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/error.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/fileRemover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/fileRemover.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/geoDistance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/geoDistance.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/imageCompressor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/imageCompressor.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/mailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/mailer.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/multer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/multer.js -------------------------------------------------------------------------------- /auth/middlewares/helpers/waterMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/helpers/waterMarker.js -------------------------------------------------------------------------------- /auth/middlewares/user_actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/user_actions/auth.js -------------------------------------------------------------------------------- /auth/middlewares/user_actions/getRatingInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/user_actions/getRatingInfo.js -------------------------------------------------------------------------------- /auth/middlewares/user_actions/userHas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/user_actions/userHas.js -------------------------------------------------------------------------------- /auth/middlewares/validator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/middlewares/validator/index.js -------------------------------------------------------------------------------- /auth/models/Address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Address.js -------------------------------------------------------------------------------- /auth/models/Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Admin.js -------------------------------------------------------------------------------- /auth/models/AdminBank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/AdminBank.js -------------------------------------------------------------------------------- /auth/models/AdminFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/AdminFiles.js -------------------------------------------------------------------------------- /auth/models/AdminWarehouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/AdminWarehouse.js -------------------------------------------------------------------------------- /auth/models/Banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Banner.js -------------------------------------------------------------------------------- /auth/models/BusinessInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/BusinessInfo.js -------------------------------------------------------------------------------- /auth/models/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Cart.js -------------------------------------------------------------------------------- /auth/models/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Category.js -------------------------------------------------------------------------------- /auth/models/Dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Dispatcher.js -------------------------------------------------------------------------------- /auth/models/Districts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Districts.js -------------------------------------------------------------------------------- /auth/models/Lead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Lead.js -------------------------------------------------------------------------------- /auth/models/ManualOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/ManualOrder.js -------------------------------------------------------------------------------- /auth/models/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Notification.js -------------------------------------------------------------------------------- /auth/models/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Order.js -------------------------------------------------------------------------------- /auth/models/Payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Payment.js -------------------------------------------------------------------------------- /auth/models/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Product.js -------------------------------------------------------------------------------- /auth/models/ProductBrand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/ProductBrand.js -------------------------------------------------------------------------------- /auth/models/ProductImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/ProductImages.js -------------------------------------------------------------------------------- /auth/models/QnA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/QnA.js -------------------------------------------------------------------------------- /auth/models/RefereshToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/RefereshToken.js -------------------------------------------------------------------------------- /auth/models/Remark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Remark.js -------------------------------------------------------------------------------- /auth/models/Review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/Review.js -------------------------------------------------------------------------------- /auth/models/SocketMapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/SocketMapping.js -------------------------------------------------------------------------------- /auth/models/SuggestKeywords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/SuggestKeywords.js -------------------------------------------------------------------------------- /auth/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/User.js -------------------------------------------------------------------------------- /auth/models/WishList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/WishList.js -------------------------------------------------------------------------------- /auth/models/minedProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/minedProduct.js -------------------------------------------------------------------------------- /auth/models/orderModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/orderModel.js -------------------------------------------------------------------------------- /auth/models/paymentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/paymentModel.js -------------------------------------------------------------------------------- /auth/models/productModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/productModel.js -------------------------------------------------------------------------------- /auth/models/userModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/models/userModel.js -------------------------------------------------------------------------------- /auth/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /auth/public/css/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/public/css/auth.css -------------------------------------------------------------------------------- /auth/public/css/cart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/public/css/cart.css -------------------------------------------------------------------------------- /auth/public/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/public/css/forms.css -------------------------------------------------------------------------------- /auth/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/public/css/main.css -------------------------------------------------------------------------------- /auth/public/css/orders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/public/css/orders.css -------------------------------------------------------------------------------- /auth/public/css/product.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/public/css/product.css -------------------------------------------------------------------------------- /auth/public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/public/js/main.js -------------------------------------------------------------------------------- /auth/routes/orderRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/routes/orderRoute.js -------------------------------------------------------------------------------- /auth/routes/paymentRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/routes/paymentRoute.js -------------------------------------------------------------------------------- /auth/routes/productRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/routes/productRoute.js -------------------------------------------------------------------------------- /auth/routes/userRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/routes/userRoute.js -------------------------------------------------------------------------------- /auth/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/server.js -------------------------------------------------------------------------------- /auth/utils/apiFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/utils/apiFeatures.js -------------------------------------------------------------------------------- /auth/utils/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/utils/errorHandler.js -------------------------------------------------------------------------------- /auth/utils/jwtToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/utils/jwtToken.js -------------------------------------------------------------------------------- /auth/utils/searchFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/utils/searchFeatures.js -------------------------------------------------------------------------------- /auth/utils/sendEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/utils/sendEmail.js -------------------------------------------------------------------------------- /auth/utils/sendToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/auth/utils/sendToken.js -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/config-overrides.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/package.json -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/arbitrum.svg -------------------------------------------------------------------------------- /public/binance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/binance.svg -------------------------------------------------------------------------------- /public/charting_library/ar-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/ar-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/bundles/1403.5c193407bf9023ec51df.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/1403.5c193407bf9023ec51df.css -------------------------------------------------------------------------------- /public/charting_library/bundles/1413.0beb5c102530e80c962f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/1413.0beb5c102530e80c962f.css -------------------------------------------------------------------------------- /public/charting_library/bundles/1529.30943dc0c4f6a9ddaaa6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/1529.30943dc0c4f6a9ddaaa6.js -------------------------------------------------------------------------------- /public/charting_library/bundles/167.4a7b6d5ac49e0365fb9f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/167.4a7b6d5ac49e0365fb9f.css -------------------------------------------------------------------------------- /public/charting_library/bundles/1778.3dcfedd5fc468612cdc9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/1778.3dcfedd5fc468612cdc9.css -------------------------------------------------------------------------------- /public/charting_library/bundles/1829.1d41207f53b42b7a2cba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/1829.1d41207f53b42b7a2cba.js -------------------------------------------------------------------------------- /public/charting_library/bundles/1941.ae71d13122bc90f281f2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/1941.ae71d13122bc90f281f2.css -------------------------------------------------------------------------------- /public/charting_library/bundles/2091.b5cd26b120d8f015a5f6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2091.b5cd26b120d8f015a5f6.css -------------------------------------------------------------------------------- /public/charting_library/bundles/2162.da7cb9d498f064a9ef84.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2162.da7cb9d498f064a9ef84.css -------------------------------------------------------------------------------- /public/charting_library/bundles/2269.e35db23226edaf77f36d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2269.e35db23226edaf77f36d.css -------------------------------------------------------------------------------- /public/charting_library/bundles/2273.c8e768dcdd52b58e948e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2273.c8e768dcdd52b58e948e.css -------------------------------------------------------------------------------- /public/charting_library/bundles/2321.4f5fec7d39b99277caa5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2321.4f5fec7d39b99277caa5.css -------------------------------------------------------------------------------- /public/charting_library/bundles/2359.18a49f656f3259463f4f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2359.18a49f656f3259463f4f.css -------------------------------------------------------------------------------- /public/charting_library/bundles/2391.07217bcacc2a0c3b5526.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2391.07217bcacc2a0c3b5526.js -------------------------------------------------------------------------------- /public/charting_library/bundles/2402.4ce4e3425dce9bceed85.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2402.4ce4e3425dce9bceed85.js -------------------------------------------------------------------------------- /public/charting_library/bundles/2444.89916595bdde00535f06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2444.89916595bdde00535f06.js -------------------------------------------------------------------------------- /public/charting_library/bundles/2614.9b290389192f690dd33c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2614.9b290389192f690dd33c.css -------------------------------------------------------------------------------- /public/charting_library/bundles/2778.22f147dbe677a02ae3db.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2778.22f147dbe677a02ae3db.css -------------------------------------------------------------------------------- /public/charting_library/bundles/2850.8a920beb86b4e0f023f2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/2850.8a920beb86b4e0f023f2.css -------------------------------------------------------------------------------- /public/charting_library/bundles/306.547d2bcc2b4af2c3a922.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/306.547d2bcc2b4af2c3a922.js -------------------------------------------------------------------------------- /public/charting_library/bundles/3223.783979b0683ba0a325de.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/3223.783979b0683ba0a325de.css -------------------------------------------------------------------------------- /public/charting_library/bundles/339.79f004acba5fa5c1b85f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/339.79f004acba5fa5c1b85f.css -------------------------------------------------------------------------------- /public/charting_library/bundles/3463.65423ae1c1f3301a6bc0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/3463.65423ae1c1f3301a6bc0.js -------------------------------------------------------------------------------- /public/charting_library/bundles/3537.273ebe86a4260eff8e80.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/3537.273ebe86a4260eff8e80.css -------------------------------------------------------------------------------- /public/charting_library/bundles/3590.9ba8c934cf8289ea708f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/3590.9ba8c934cf8289ea708f.js -------------------------------------------------------------------------------- /public/charting_library/bundles/3708.b21be6dee862262304cf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/3708.b21be6dee862262304cf.css -------------------------------------------------------------------------------- /public/charting_library/bundles/3876.fbb750fd312778403036.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/charting_library/bundles/3876.fbb750fd312778403036.rtl.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/charting_library/bundles/3894.6c50d72ee9e079af3dab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/3894.6c50d72ee9e079af3dab.css -------------------------------------------------------------------------------- /public/charting_library/bundles/3996.3cdbd2dcf744b8239723.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/3996.3cdbd2dcf744b8239723.css -------------------------------------------------------------------------------- /public/charting_library/bundles/4078.43552fd4fee41d29f435.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/4078.43552fd4fee41d29f435.css -------------------------------------------------------------------------------- /public/charting_library/bundles/4093.8b84af355871cc700cb8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/4093.8b84af355871cc700cb8.js -------------------------------------------------------------------------------- /public/charting_library/bundles/4336.1228643b9325cd73ea59.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/4336.1228643b9325cd73ea59.css -------------------------------------------------------------------------------- /public/charting_library/bundles/439.cf0a8c77353b34e465e2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/439.cf0a8c77353b34e465e2.css -------------------------------------------------------------------------------- /public/charting_library/bundles/4595.6423e4f6860a7dd905ff.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/4595.6423e4f6860a7dd905ff.css -------------------------------------------------------------------------------- /public/charting_library/bundles/4652.c4c887154b57ce62bd2d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/bundles/4652.c4c887154b57ce62bd2d.css -------------------------------------------------------------------------------- /public/charting_library/bundles/6637.b9569ad7b9c1ffb59c7c.css: -------------------------------------------------------------------------------- 1 | .button-2YcRd2gv{padding:0 5px} -------------------------------------------------------------------------------- /public/charting_library/bundles/6637.b9569ad7b9c1ffb59c7c.rtl.css: -------------------------------------------------------------------------------- 1 | .button-2YcRd2gv{padding:0 5px} -------------------------------------------------------------------------------- /public/charting_library/charting_library.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/charting_library.cjs.js -------------------------------------------------------------------------------- /public/charting_library/charting_library.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/charting_library.d.ts -------------------------------------------------------------------------------- /public/charting_library/charting_library.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/charting_library.esm.js -------------------------------------------------------------------------------- /public/charting_library/charting_library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/charting_library.js -------------------------------------------------------------------------------- /public/charting_library/charting_library.standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/charting_library.standalone.js -------------------------------------------------------------------------------- /public/charting_library/cs-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/cs-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/da_DK-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/da_DK-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/datafeed-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/datafeed-api.d.ts -------------------------------------------------------------------------------- /public/charting_library/de-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/de-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/el-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/el-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/en-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/en-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/es-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/es-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/et_EE-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/et_EE-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/fa-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/fa-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/fr-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/fr-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/he_IL-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/he_IL-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/hu_HU-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/hu_HU-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/id_ID-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/id_ID-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/it-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/it-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/ja-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/ja-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/ko-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/ko-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/ms_MY-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/ms_MY-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/nl_NL-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/nl_NL-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/no-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/no-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/package.json -------------------------------------------------------------------------------- /public/charting_library/pl-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/pl-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/pt-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/pt-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/ro-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/ro-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/ru-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/ru-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/sk_SK-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/sk_SK-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/sv-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/sv-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/th-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/th-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/tr-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/tr-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/vi-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/vi-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/zh-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/zh-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/charting_library/zh_TW-tv-chart.e2a841ff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/charting_library/zh_TW-tv-chart.e2a841ff.html -------------------------------------------------------------------------------- /public/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/css/index.html -------------------------------------------------------------------------------- /public/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/css/layout.css -------------------------------------------------------------------------------- /public/css/media-screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/css/media-screen.css -------------------------------------------------------------------------------- /public/css/vendor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/css/vendor.min.css -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /public/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /public/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/apple-icon.png -------------------------------------------------------------------------------- /public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/manifest.json -------------------------------------------------------------------------------- /public/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/favicon/utx-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/favicon/utx-logo.svg -------------------------------------------------------------------------------- /public/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/fonts/Roboto.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto_B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/fonts/Roboto_B.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto_M.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/fonts/Roboto_M.ttf -------------------------------------------------------------------------------- /public/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/fonts/index.html -------------------------------------------------------------------------------- /public/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/arrow-right.svg -------------------------------------------------------------------------------- /public/images/bg-logo-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/bg-logo-02.png -------------------------------------------------------------------------------- /public/images/bg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/bg-logo.png -------------------------------------------------------------------------------- /public/images/bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/bridge.png -------------------------------------------------------------------------------- /public/images/dao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/dao.png -------------------------------------------------------------------------------- /public/images/f-discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/f-discord.png -------------------------------------------------------------------------------- /public/images/f-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/f-github.png -------------------------------------------------------------------------------- /public/images/f-telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/f-telegram.png -------------------------------------------------------------------------------- /public/images/f-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/f-twitter.png -------------------------------------------------------------------------------- /public/images/icon-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/icon-01.png -------------------------------------------------------------------------------- /public/images/icon-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/icon-02.png -------------------------------------------------------------------------------- /public/images/icon-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/icon-03.png -------------------------------------------------------------------------------- /public/images/icon-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/icon-04.png -------------------------------------------------------------------------------- /public/images/icon-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/icon-05.png -------------------------------------------------------------------------------- /public/images/icon-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/icon-06.png -------------------------------------------------------------------------------- /public/images/icon-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/icon-07.png -------------------------------------------------------------------------------- /public/images/icon-global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/icon-global.png -------------------------------------------------------------------------------- /public/images/icon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/icon-logo.png -------------------------------------------------------------------------------- /public/images/icon-uniultra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/icon-uniultra.png -------------------------------------------------------------------------------- /public/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/index.html -------------------------------------------------------------------------------- /public/images/layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/layer.svg -------------------------------------------------------------------------------- /public/images/layer_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/layer_1.svg -------------------------------------------------------------------------------- /public/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/line.png -------------------------------------------------------------------------------- /public/images/logo-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/logo-vertical.svg -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/images/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/robot.png -------------------------------------------------------------------------------- /public/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/images/star.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/js/index.html -------------------------------------------------------------------------------- /public/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/js/script.js -------------------------------------------------------------------------------- /public/js/vendor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/js/vendor.min.js -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/og.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/tradingview-chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/public/tradingview-chart.css -------------------------------------------------------------------------------- /src/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/App/App.js -------------------------------------------------------------------------------- /src/App/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/App/App.scss -------------------------------------------------------------------------------- /src/abis/ERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/ERC721.json -------------------------------------------------------------------------------- /src/abis/GMT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/GMT.json -------------------------------------------------------------------------------- /src/abis/MintableBaseToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/MintableBaseToken.json -------------------------------------------------------------------------------- /src/abis/Multicall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/Multicall.json -------------------------------------------------------------------------------- /src/abis/OrderBook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/OrderBook.json -------------------------------------------------------------------------------- /src/abis/OrderBookReader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/OrderBookReader.json -------------------------------------------------------------------------------- /src/abis/OrderExecutor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/OrderExecutor.json -------------------------------------------------------------------------------- /src/abis/PositionManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/PositionManager.json -------------------------------------------------------------------------------- /src/abis/PositionRouter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/PositionRouter.json -------------------------------------------------------------------------------- /src/abis/Reader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/Reader.json -------------------------------------------------------------------------------- /src/abis/ReaderV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/ReaderV2.json -------------------------------------------------------------------------------- /src/abis/ReferralStorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/ReferralStorage.json -------------------------------------------------------------------------------- /src/abis/RewardReader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/RewardReader.json -------------------------------------------------------------------------------- /src/abis/RewardRouter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/RewardRouter.json -------------------------------------------------------------------------------- /src/abis/RewardTracker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/RewardTracker.json -------------------------------------------------------------------------------- /src/abis/Router-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/Router-v2.json -------------------------------------------------------------------------------- /src/abis/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/Router.json -------------------------------------------------------------------------------- /src/abis/Timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/Timelock.json -------------------------------------------------------------------------------- /src/abis/Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/Token.json -------------------------------------------------------------------------------- /src/abis/Treasury.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/Treasury.json -------------------------------------------------------------------------------- /src/abis/UlpManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/UlpManager.json -------------------------------------------------------------------------------- /src/abis/UniPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/UniPool.json -------------------------------------------------------------------------------- /src/abis/UniswapV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/UniswapV2.json -------------------------------------------------------------------------------- /src/abis/UtxMigrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/UtxMigrator.json -------------------------------------------------------------------------------- /src/abis/Vault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/Vault.json -------------------------------------------------------------------------------- /src/abis/VaultReader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/VaultReader.json -------------------------------------------------------------------------------- /src/abis/VaultV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/VaultV2.json -------------------------------------------------------------------------------- /src/abis/VaultV2b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/VaultV2b.json -------------------------------------------------------------------------------- /src/abis/Vester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/Vester.json -------------------------------------------------------------------------------- /src/abis/WETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/WETH.json -------------------------------------------------------------------------------- /src/abis/YieldFarm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/YieldFarm.json -------------------------------------------------------------------------------- /src/abis/YieldToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/abis/YieldToken.json -------------------------------------------------------------------------------- /src/charting_library.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/charting_library.d.ts -------------------------------------------------------------------------------- /src/components/APRLabel/APRLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/APRLabel/APRLabel.js -------------------------------------------------------------------------------- /src/components/AddressDropdown/AddressDropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/AddressDropdown/AddressDropdown.scss -------------------------------------------------------------------------------- /src/components/AddressDropdown/AddressDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/AddressDropdown/AddressDropdown.tsx -------------------------------------------------------------------------------- /src/components/Button/Button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Button/Button.scss -------------------------------------------------------------------------------- /src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/components/Button/ButtonLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Button/ButtonLink.tsx -------------------------------------------------------------------------------- /src/components/BuyInputSection/BuyInputSection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/BuyInputSection/BuyInputSection.scss -------------------------------------------------------------------------------- /src/components/BuyInputSection/BuyInputSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/BuyInputSection/BuyInputSection.tsx -------------------------------------------------------------------------------- /src/components/Checkbox/Checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Checkbox/Checkbox.css -------------------------------------------------------------------------------- /src/components/Checkbox/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Checkbox/Checkbox.js -------------------------------------------------------------------------------- /src/components/Common/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Common/Card.css -------------------------------------------------------------------------------- /src/components/Common/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Common/Card.tsx -------------------------------------------------------------------------------- /src/components/Common/ConnectWalletButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Common/ConnectWalletButton.scss -------------------------------------------------------------------------------- /src/components/Common/ConnectWalletButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Common/ConnectWalletButton.tsx -------------------------------------------------------------------------------- /src/components/Common/Loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Common/Loader.css -------------------------------------------------------------------------------- /src/components/Common/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Common/Loader.js -------------------------------------------------------------------------------- /src/components/Common/Portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Common/Portal.js -------------------------------------------------------------------------------- /src/components/Common/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Common/SEO.js -------------------------------------------------------------------------------- /src/components/Common/SpinningLoader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Common/SpinningLoader.css -------------------------------------------------------------------------------- /src/components/Common/SpinningLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Common/SpinningLoader.js -------------------------------------------------------------------------------- /src/components/EventToast/AnnouncementIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/EventToast/AnnouncementIcon.js -------------------------------------------------------------------------------- /src/components/EventToast/EventToast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/EventToast/EventToast.css -------------------------------------------------------------------------------- /src/components/EventToast/EventToast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/EventToast/EventToast.js -------------------------------------------------------------------------------- /src/components/EventToast/EventToastContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/EventToast/EventToastContainer.js -------------------------------------------------------------------------------- /src/components/EventToast/useEventToast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/EventToast/useEventToast.js -------------------------------------------------------------------------------- /src/components/Exchange/UsefulLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Exchange/UsefulLinks.tsx -------------------------------------------------------------------------------- /src/components/ExternalLink/ExternalLink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/ExternalLink/ExternalLink.scss -------------------------------------------------------------------------------- /src/components/ExternalLink/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/ExternalLink/ExternalLink.tsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Footer/Footer.css -------------------------------------------------------------------------------- /src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/Footer/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Footer/constants.ts -------------------------------------------------------------------------------- /src/components/Header/AppHeaderLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Header/AppHeaderLinks.tsx -------------------------------------------------------------------------------- /src/components/Header/AppHeaderUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Header/AppHeaderUser.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Header/Header.css -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Header/HeaderLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Header/HeaderLink.tsx -------------------------------------------------------------------------------- /src/components/Header/HomeHeaderLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Header/HomeHeaderLinks.tsx -------------------------------------------------------------------------------- /src/components/InputSection/InputSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/InputSection/InputSection.css -------------------------------------------------------------------------------- /src/components/InputSection/InputSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/InputSection/InputSection.js -------------------------------------------------------------------------------- /src/components/Migration/Migration.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Migration/Migration.css -------------------------------------------------------------------------------- /src/components/Migration/Migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Migration/Migration.js -------------------------------------------------------------------------------- /src/components/Modal/Modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Modal/Modal.css -------------------------------------------------------------------------------- /src/components/Modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Modal/Modal.js -------------------------------------------------------------------------------- /src/components/Modal/ModalWithPortal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Modal/ModalWithPortal.js -------------------------------------------------------------------------------- /src/components/ModalViews/RedirectModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/ModalViews/RedirectModal.css -------------------------------------------------------------------------------- /src/components/ModalViews/RedirectModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/ModalViews/RedirectModal.js -------------------------------------------------------------------------------- /src/components/NetworkDropdown/LanguageModalContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/NetworkDropdown/LanguageModalContent.js -------------------------------------------------------------------------------- /src/components/NetworkDropdown/LanguageModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/NetworkDropdown/LanguageModalContent.tsx -------------------------------------------------------------------------------- /src/components/NetworkDropdown/LanguagePopupHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/NetworkDropdown/LanguagePopupHome.tsx -------------------------------------------------------------------------------- /src/components/NetworkDropdown/NetworkDropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/NetworkDropdown/NetworkDropdown.css -------------------------------------------------------------------------------- /src/components/NetworkDropdown/NetworkDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/NetworkDropdown/NetworkDropdown.tsx -------------------------------------------------------------------------------- /src/components/Overlay/Overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Overlay/Overlay.css -------------------------------------------------------------------------------- /src/components/Overlay/Overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Overlay/Overlay.js -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Pagination/Pagination.css -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Pagination/Pagination.tsx -------------------------------------------------------------------------------- /src/components/Radio/Radio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Radio/Radio.css -------------------------------------------------------------------------------- /src/components/Radio/Radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Radio/Radio.js -------------------------------------------------------------------------------- /src/components/Select/Select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Select/Select.scss -------------------------------------------------------------------------------- /src/components/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Select/Select.tsx -------------------------------------------------------------------------------- /src/components/SlippageInput/SlippageInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/SlippageInput/SlippageInput.scss -------------------------------------------------------------------------------- /src/components/SlippageInput/SlippageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/SlippageInput/SlippageInput.tsx -------------------------------------------------------------------------------- /src/components/Stake/UTXAprTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Stake/UTXAprTooltip.tsx -------------------------------------------------------------------------------- /src/components/StatsTooltip/StatsTooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/StatsTooltip/StatsTooltip.css -------------------------------------------------------------------------------- /src/components/StatsTooltip/StatsTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/StatsTooltip/StatsTooltip.tsx -------------------------------------------------------------------------------- /src/components/StatsTooltip/StatsTooltipRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/StatsTooltip/StatsTooltipRow.tsx -------------------------------------------------------------------------------- /src/components/TVChartContainer/SaveLoadAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/TVChartContainer/SaveLoadAdapter.ts -------------------------------------------------------------------------------- /src/components/TVChartContainer/TVChartContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/TVChartContainer/TVChartContainer.tsx -------------------------------------------------------------------------------- /src/components/TVChartContainer/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/TVChartContainer/constants.ts -------------------------------------------------------------------------------- /src/components/Tab/Tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Tab/Tab.css -------------------------------------------------------------------------------- /src/components/Tab/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Tab/Tab.js -------------------------------------------------------------------------------- /src/components/ToastifyDebug/ToastifyDebug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/ToastifyDebug/ToastifyDebug.tsx -------------------------------------------------------------------------------- /src/components/ToggleSwitch/ToggleSwitch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/ToggleSwitch/ToggleSwitch.scss -------------------------------------------------------------------------------- /src/components/ToggleSwitch/ToggleSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/ToggleSwitch/ToggleSwitch.tsx -------------------------------------------------------------------------------- /src/components/TokenCard/TokenCard.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/TokenCard/TokenCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/TokenCard/TokenCard.js -------------------------------------------------------------------------------- /src/components/Tooltip/Tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Tooltip/Tooltip.css -------------------------------------------------------------------------------- /src/components/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/Tooltip/TooltipWithPortal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Tooltip/TooltipWithPortal.tsx -------------------------------------------------------------------------------- /src/components/Ulp/SwapErrorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Ulp/SwapErrorModal.tsx -------------------------------------------------------------------------------- /src/components/Ulp/UlpSwap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Ulp/UlpSwap.css -------------------------------------------------------------------------------- /src/components/Ulp/UlpSwap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/components/Ulp/UlpSwap.js -------------------------------------------------------------------------------- /src/config/backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/backend.ts -------------------------------------------------------------------------------- /src/config/chains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/chains.ts -------------------------------------------------------------------------------- /src/config/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/contracts.ts -------------------------------------------------------------------------------- /src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/env.ts -------------------------------------------------------------------------------- /src/config/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/events.ts -------------------------------------------------------------------------------- /src/config/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/icons.ts -------------------------------------------------------------------------------- /src/config/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/links.ts -------------------------------------------------------------------------------- /src/config/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/localStorage.ts -------------------------------------------------------------------------------- /src/config/subgraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/subgraph.ts -------------------------------------------------------------------------------- /src/config/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/tokens.ts -------------------------------------------------------------------------------- /src/config/tradingview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/tradingview.ts -------------------------------------------------------------------------------- /src/config/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/config/ui.ts -------------------------------------------------------------------------------- /src/domain/legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/legacy.ts -------------------------------------------------------------------------------- /src/domain/positions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/positions/types.ts -------------------------------------------------------------------------------- /src/domain/prices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/prices.ts -------------------------------------------------------------------------------- /src/domain/stats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/stats/index.ts -------------------------------------------------------------------------------- /src/domain/stats/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/stats/types.ts -------------------------------------------------------------------------------- /src/domain/stats/useFeesSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/stats/useFeesSummary.js -------------------------------------------------------------------------------- /src/domain/stats/useTotalVolume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/stats/useTotalVolume.ts -------------------------------------------------------------------------------- /src/domain/stats/useUniqueUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/stats/useUniqueUsers.ts -------------------------------------------------------------------------------- /src/domain/stats/useVolumeInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/stats/useVolumeInfo.ts -------------------------------------------------------------------------------- /src/domain/tokens/approveTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/tokens/approveTokens.tsx -------------------------------------------------------------------------------- /src/domain/tokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/tokens/index.ts -------------------------------------------------------------------------------- /src/domain/tokens/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/tokens/types.ts -------------------------------------------------------------------------------- /src/domain/tokens/useInfoTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/tokens/useInfoTokens.ts -------------------------------------------------------------------------------- /src/domain/tokens/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/tokens/utils.ts -------------------------------------------------------------------------------- /src/domain/tradingview/TVDataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/tradingview/TVDataProvider.ts -------------------------------------------------------------------------------- /src/domain/tradingview/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/tradingview/requests.ts -------------------------------------------------------------------------------- /src/domain/tradingview/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/tradingview/types.ts -------------------------------------------------------------------------------- /src/domain/tradingview/useTVDatafeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/tradingview/useTVDatafeed.ts -------------------------------------------------------------------------------- /src/domain/tradingview/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/domain/tradingview/utils.ts -------------------------------------------------------------------------------- /src/fonts/inter/inter-v12-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/inter/inter-v12-latin-500.eot -------------------------------------------------------------------------------- /src/fonts/inter/inter-v12-latin-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/inter/inter-v12-latin-500.svg -------------------------------------------------------------------------------- /src/fonts/inter/inter-v12-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/inter/inter-v12-latin-500.ttf -------------------------------------------------------------------------------- /src/fonts/inter/inter-v12-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/inter/inter-v12-latin-500.woff -------------------------------------------------------------------------------- /src/fonts/inter/inter-v12-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/inter/inter-v12-latin-500.woff2 -------------------------------------------------------------------------------- /src/fonts/inter/inter-v12-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/inter/inter-v12-latin-regular.eot -------------------------------------------------------------------------------- /src/fonts/inter/inter-v12-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/inter/inter-v12-latin-regular.svg -------------------------------------------------------------------------------- /src/fonts/inter/inter-v12-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/inter/inter-v12-latin-regular.ttf -------------------------------------------------------------------------------- /src/fonts/inter/inter-v12-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/inter/inter-v12-latin-regular.woff -------------------------------------------------------------------------------- /src/fonts/inter/inter-v12-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/inter/inter-v12-latin-regular.woff2 -------------------------------------------------------------------------------- /src/fonts/relative/relative-book-pro.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/relative/relative-book-pro.eot -------------------------------------------------------------------------------- /src/fonts/relative/relative-book-pro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/relative/relative-book-pro.ttf -------------------------------------------------------------------------------- /src/fonts/relative/relative-book-pro.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/relative/relative-book-pro.woff -------------------------------------------------------------------------------- /src/fonts/relative/relative-book-pro.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/relative/relative-book-pro.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-v30-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/roboto/roboto-v30-latin-500.eot -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-v30-latin-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/roboto/roboto-v30-latin-500.svg -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-v30-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/roboto/roboto-v30-latin-500.ttf -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-v30-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/roboto/roboto-v30-latin-500.woff -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-v30-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/roboto/roboto-v30-latin-500.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-v30-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/roboto/roboto-v30-latin-regular.eot -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-v30-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/roboto/roboto-v30-latin-regular.svg -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-v30-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/roboto/roboto-v30-latin-regular.ttf -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-v30-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/roboto/roboto-v30-latin-regular.woff -------------------------------------------------------------------------------- /src/fonts/roboto/roboto-v30-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/fonts/roboto/roboto-v30-latin-regular.woff2 -------------------------------------------------------------------------------- /src/img/Anyswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Anyswap.png -------------------------------------------------------------------------------- /src/img/Anyswap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Anyswap.svg -------------------------------------------------------------------------------- /src/img/Artwork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Artwork.svg -------------------------------------------------------------------------------- /src/img/Artwork_utx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Artwork_utx.svg -------------------------------------------------------------------------------- /src/img/Banxa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Banxa.png -------------------------------------------------------------------------------- /src/img/DROP_DOWN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/DROP_DOWN.svg -------------------------------------------------------------------------------- /src/img/Hop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Hop.png -------------------------------------------------------------------------------- /src/img/Hop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Hop.svg -------------------------------------------------------------------------------- /src/img/Hop_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Hop_dark.png -------------------------------------------------------------------------------- /src/img/Hop_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Hop_dark.svg -------------------------------------------------------------------------------- /src/img/Synapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Synapse.png -------------------------------------------------------------------------------- /src/img/Synapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/Synapse.svg -------------------------------------------------------------------------------- /src/img/binance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/binance.png -------------------------------------------------------------------------------- /src/img/bitkeep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/bitkeep.svg -------------------------------------------------------------------------------- /src/img/bscscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/bscscan.png -------------------------------------------------------------------------------- /src/img/btn_big_arbitrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/btn_big_arbitrum.png -------------------------------------------------------------------------------- /src/img/btn_big_avalanche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/btn_big_avalanche.png -------------------------------------------------------------------------------- /src/img/btn_big_bsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/btn_big_bsc.png -------------------------------------------------------------------------------- /src/img/btn_big_purchasegmx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/btn_big_purchasegmx.png -------------------------------------------------------------------------------- /src/img/btn_big_purchasegmx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/btn_big_purchasegmx.svg -------------------------------------------------------------------------------- /src/img/buy_gmx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/buy_gmx.svg -------------------------------------------------------------------------------- /src/img/buy_gmx_bond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/buy_gmx_bond.svg -------------------------------------------------------------------------------- /src/img/buy_transfer_eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/buy_transfer_eth.svg -------------------------------------------------------------------------------- /src/img/cancelX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/cancelX.svg -------------------------------------------------------------------------------- /src/img/caret_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/caret_down.svg -------------------------------------------------------------------------------- /src/img/caret_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/caret_up.svg -------------------------------------------------------------------------------- /src/img/coinbaseWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/coinbaseWallet.png -------------------------------------------------------------------------------- /src/img/coingecko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/coingecko.png -------------------------------------------------------------------------------- /src/img/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/cross.svg -------------------------------------------------------------------------------- /src/img/dashboard_clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/dashboard_clock.svg -------------------------------------------------------------------------------- /src/img/dashboard_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/dashboard_down.svg -------------------------------------------------------------------------------- /src/img/dashboard_tivi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/dashboard_tivi.svg -------------------------------------------------------------------------------- /src/img/dashboard_ulp_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/dashboard_ulp_icon.svg -------------------------------------------------------------------------------- /src/img/dashboard_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/dashboard_up.svg -------------------------------------------------------------------------------- /src/img/dashboard_utx_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/dashboard_utx_icon.svg -------------------------------------------------------------------------------- /src/img/earn_esutx_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/earn_esutx_icon.svg -------------------------------------------------------------------------------- /src/img/earn_eth_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/earn_eth_icon.svg -------------------------------------------------------------------------------- /src/img/earn_info_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/earn_info_icon.svg -------------------------------------------------------------------------------- /src/img/earn_multi_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/earn_multi_icon.svg -------------------------------------------------------------------------------- /src/img/earn_rewards_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/earn_rewards_icon.svg -------------------------------------------------------------------------------- /src/img/earn_stake_esutx_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/earn_stake_esutx_icon.svg -------------------------------------------------------------------------------- /src/img/earn_stake_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/earn_stake_icon.svg -------------------------------------------------------------------------------- /src/img/earn_stake_ulp_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/earn_stake_ulp_icon.svg -------------------------------------------------------------------------------- /src/img/earn_stake_utx_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/earn_stake_utx_icon.svg -------------------------------------------------------------------------------- /src/img/edit_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/edit_icon.svg -------------------------------------------------------------------------------- /src/img/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/external-link.svg -------------------------------------------------------------------------------- /src/img/flag_de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/flag_de.svg -------------------------------------------------------------------------------- /src/img/flag_en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/flag_en.svg -------------------------------------------------------------------------------- /src/img/flag_es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/flag_es.svg -------------------------------------------------------------------------------- /src/img/flag_fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/flag_fr.svg -------------------------------------------------------------------------------- /src/img/flag_ja.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/flag_ja.svg -------------------------------------------------------------------------------- /src/img/flag_ko.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/flag_ko.svg -------------------------------------------------------------------------------- /src/img/flag_ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/flag_ru.svg -------------------------------------------------------------------------------- /src/img/flag_zh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/flag_zh.svg -------------------------------------------------------------------------------- /src/img/footer_logo_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/footer_logo_full.svg -------------------------------------------------------------------------------- /src/img/gateio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/gateio.svg -------------------------------------------------------------------------------- /src/img/glp_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/glp_icon.svg -------------------------------------------------------------------------------- /src/img/gmx-logo-final-white-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/gmx-logo-final-white-small.png -------------------------------------------------------------------------------- /src/img/gmx-logo-final-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/gmx-logo-final-white.png -------------------------------------------------------------------------------- /src/img/gmx-logo-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/gmx-logo-final.png -------------------------------------------------------------------------------- /src/img/gmx-logo-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/gmx-logo-glow.png -------------------------------------------------------------------------------- /src/img/gmx_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/gmx_logo.svg -------------------------------------------------------------------------------- /src/img/graphite-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/graphite-01.png -------------------------------------------------------------------------------- /src/img/ic-communityproject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic-communityproject.svg -------------------------------------------------------------------------------- /src/img/ic_1inch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_1inch.svg -------------------------------------------------------------------------------- /src/img/ic_across.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_across.svg -------------------------------------------------------------------------------- /src/img/ic_arbitrum_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_arbitrum_16.svg -------------------------------------------------------------------------------- /src/img/ic_arbitrum_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_arbitrum_24.svg -------------------------------------------------------------------------------- /src/img/ic_arbitrum_96.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_arbitrum_96.svg -------------------------------------------------------------------------------- /src/img/ic_arbitrum_hover_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_arbitrum_hover_16.svg -------------------------------------------------------------------------------- /src/img/ic_arrowleft16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_arrowleft16.svg -------------------------------------------------------------------------------- /src/img/ic_arrowright16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_arrowright16.svg -------------------------------------------------------------------------------- /src/img/ic_avalanche_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_avalanche_16.svg -------------------------------------------------------------------------------- /src/img/ic_avalanche_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_avalanche_24.svg -------------------------------------------------------------------------------- /src/img/ic_avalanche_96.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_avalanche_96.svg -------------------------------------------------------------------------------- /src/img/ic_avalanche_testnet_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_avalanche_testnet_16.svg -------------------------------------------------------------------------------- /src/img/ic_avalanche_testnet_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_avalanche_testnet_24.svg -------------------------------------------------------------------------------- /src/img/ic_avalanche_testnet_96.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_avalanche_testnet_96.svg -------------------------------------------------------------------------------- /src/img/ic_avax_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_avax_24.svg -------------------------------------------------------------------------------- /src/img/ic_avax_30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_avax_30.svg -------------------------------------------------------------------------------- /src/img/ic_avax_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_avax_40.svg -------------------------------------------------------------------------------- /src/img/ic_banxa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_banxa.svg -------------------------------------------------------------------------------- /src/img/ic_binance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_binance.svg -------------------------------------------------------------------------------- /src/img/ic_binance_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_binance_logo.svg -------------------------------------------------------------------------------- /src/img/ic_bondprotocol_arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_bondprotocol_arbitrum.svg -------------------------------------------------------------------------------- /src/img/ic_bsc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_bsc.svg -------------------------------------------------------------------------------- /src/img/ic_bsc_96.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_bsc_96.svg -------------------------------------------------------------------------------- /src/img/ic_btc.b_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_btc.b_24.svg -------------------------------------------------------------------------------- /src/img/ic_btc.b_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_btc.b_40.svg -------------------------------------------------------------------------------- /src/img/ic_btc_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_btc_24.svg -------------------------------------------------------------------------------- /src/img/ic_btc_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_btc_40.svg -------------------------------------------------------------------------------- /src/img/ic_bungee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_bungee.png -------------------------------------------------------------------------------- /src/img/ic_busd_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_busd_24.svg -------------------------------------------------------------------------------- /src/img/ic_buy_glp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_buy_glp.svg -------------------------------------------------------------------------------- /src/img/ic_bybit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_bybit.svg -------------------------------------------------------------------------------- /src/img/ic_cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_cash.png -------------------------------------------------------------------------------- /src/img/ic_cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_cash.svg -------------------------------------------------------------------------------- /src/img/ic_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_checked.svg -------------------------------------------------------------------------------- /src/img/ic_coingecko_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_coingecko_16.svg -------------------------------------------------------------------------------- /src/img/ic_coingecko_hover_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_coingecko_hover_16.svg -------------------------------------------------------------------------------- /src/img/ic_convert_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_convert_down.svg -------------------------------------------------------------------------------- /src/img/ic_copy_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_copy_16.svg -------------------------------------------------------------------------------- /src/img/ic_cost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_cost.svg -------------------------------------------------------------------------------- /src/img/ic_dai_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_dai_24.svg -------------------------------------------------------------------------------- /src/img/ic_dai_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_dai_40.svg -------------------------------------------------------------------------------- /src/img/ic_discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_discord.svg -------------------------------------------------------------------------------- /src/img/ic_dodo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_dodo.svg -------------------------------------------------------------------------------- /src/img/ic_eth_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_eth_24.svg -------------------------------------------------------------------------------- /src/img/ic_eth_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_eth_40.svg -------------------------------------------------------------------------------- /src/img/ic_firebird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_firebird.png -------------------------------------------------------------------------------- /src/img/ic_frax_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_frax_24.svg -------------------------------------------------------------------------------- /src/img/ic_frax_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_frax_40.svg -------------------------------------------------------------------------------- /src/img/ic_github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_github.svg -------------------------------------------------------------------------------- /src/img/ic_glp_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_glp_24.svg -------------------------------------------------------------------------------- /src/img/ic_glp_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_glp_40.svg -------------------------------------------------------------------------------- /src/img/ic_glp_arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_glp_arbitrum.svg -------------------------------------------------------------------------------- /src/img/ic_glp_avax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_glp_avax.svg -------------------------------------------------------------------------------- /src/img/ic_glp_custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_glp_custom.svg -------------------------------------------------------------------------------- /src/img/ic_gmx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_gmx.svg -------------------------------------------------------------------------------- /src/img/ic_gmx_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_gmx_24.svg -------------------------------------------------------------------------------- /src/img/ic_gmx_30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_gmx_30.svg -------------------------------------------------------------------------------- /src/img/ic_gmx_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_gmx_40.svg -------------------------------------------------------------------------------- /src/img/ic_gmx_64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_gmx_64.svg -------------------------------------------------------------------------------- /src/img/ic_gmx_arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_gmx_arbitrum.svg -------------------------------------------------------------------------------- /src/img/ic_gmx_avax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_gmx_avax.svg -------------------------------------------------------------------------------- /src/img/ic_gmx_big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_gmx_big.svg -------------------------------------------------------------------------------- /src/img/ic_gmx_custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_gmx_custom.svg -------------------------------------------------------------------------------- /src/img/ic_gmx_footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_gmx_footer.svg -------------------------------------------------------------------------------- /src/img/ic_hop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_hop.svg -------------------------------------------------------------------------------- /src/img/ic_huobi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_huobi.svg -------------------------------------------------------------------------------- /src/img/ic_info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_info.svg -------------------------------------------------------------------------------- /src/img/ic_kucoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_kucoin.svg -------------------------------------------------------------------------------- /src/img/ic_kyberswap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_kyberswap.svg -------------------------------------------------------------------------------- /src/img/ic_language24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_language24.svg -------------------------------------------------------------------------------- /src/img/ic_link_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_link_24.svg -------------------------------------------------------------------------------- /src/img/ic_link_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_link_40.svg -------------------------------------------------------------------------------- /src/img/ic_liquidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_liquidity.svg -------------------------------------------------------------------------------- /src/img/ic_matcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_matcha.png -------------------------------------------------------------------------------- /src/img/ic_medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_medium.svg -------------------------------------------------------------------------------- /src/img/ic_menu_dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_menu_dots.svg -------------------------------------------------------------------------------- /src/img/ic_metamask_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_metamask_16.svg -------------------------------------------------------------------------------- /src/img/ic_metamask_hover_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_metamask_hover_16.svg -------------------------------------------------------------------------------- /src/img/ic_mim_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_mim_24.svg -------------------------------------------------------------------------------- /src/img/ic_mim_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_mim_40.svg -------------------------------------------------------------------------------- /src/img/ic_multichain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_multichain.svg -------------------------------------------------------------------------------- /src/img/ic_new_link_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_new_link_16.svg -------------------------------------------------------------------------------- /src/img/ic_o3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_o3.png -------------------------------------------------------------------------------- /src/img/ic_odos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_odos.png -------------------------------------------------------------------------------- /src/img/ic_olympus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_olympus.svg -------------------------------------------------------------------------------- /src/img/ic_olympus_arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_olympus_arbitrum.svg -------------------------------------------------------------------------------- /src/img/ic_openocean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_openocean.svg -------------------------------------------------------------------------------- /src/img/ic_paraswap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_paraswap.svg -------------------------------------------------------------------------------- /src/img/ic_selector_dropdowns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_selector_dropdowns.svg -------------------------------------------------------------------------------- /src/img/ic_settings_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_settings_16.svg -------------------------------------------------------------------------------- /src/img/ic_settings_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_settings_24.svg -------------------------------------------------------------------------------- /src/img/ic_sign in_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_sign in_16.svg -------------------------------------------------------------------------------- /src/img/ic_sign_out_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_sign_out_16.svg -------------------------------------------------------------------------------- /src/img/ic_simpleswaps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_simpleswaps.svg -------------------------------------------------------------------------------- /src/img/ic_slingshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_slingshot.svg -------------------------------------------------------------------------------- /src/img/ic_stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_stats.svg -------------------------------------------------------------------------------- /src/img/ic_stats_big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_stats_big.svg -------------------------------------------------------------------------------- /src/img/ic_substack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_substack.svg -------------------------------------------------------------------------------- /src/img/ic_synapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_synapse.svg -------------------------------------------------------------------------------- /src/img/ic_tansak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_tansak.svg -------------------------------------------------------------------------------- /src/img/ic_telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_telegram.svg -------------------------------------------------------------------------------- /src/img/ic_tether_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_tether_24.svg -------------------------------------------------------------------------------- /src/img/ic_tokens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_tokens.svg -------------------------------------------------------------------------------- /src/img/ic_totaluser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_totaluser.svg -------------------------------------------------------------------------------- /src/img/ic_traderjoe_avax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_traderjoe_avax.png -------------------------------------------------------------------------------- /src/img/ic_trading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_trading.svg -------------------------------------------------------------------------------- /src/img/ic_transfer_avax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_transfer_avax.svg -------------------------------------------------------------------------------- /src/img/ic_twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_twitter.svg -------------------------------------------------------------------------------- /src/img/ic_uni_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_uni_24.svg -------------------------------------------------------------------------------- /src/img/ic_uni_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_uni_40.svg -------------------------------------------------------------------------------- /src/img/ic_uni_arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_uni_arbitrum.svg -------------------------------------------------------------------------------- /src/img/ic_unidex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_unidex.png -------------------------------------------------------------------------------- /src/img/ic_usdc.e_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_usdc.e_24.svg -------------------------------------------------------------------------------- /src/img/ic_usdc.e_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_usdc.e_40.svg -------------------------------------------------------------------------------- /src/img/ic_usdc_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_usdc_24.svg -------------------------------------------------------------------------------- /src/img/ic_usdc_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_usdc_40.svg -------------------------------------------------------------------------------- /src/img/ic_usdt_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_usdt_24.svg -------------------------------------------------------------------------------- /src/img/ic_usdt_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_usdt_40.svg -------------------------------------------------------------------------------- /src/img/ic_wallet_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_wallet_24.svg -------------------------------------------------------------------------------- /src/img/ic_wavax_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_wavax_24.svg -------------------------------------------------------------------------------- /src/img/ic_wavax_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_wavax_40.svg -------------------------------------------------------------------------------- /src/img/ic_wbtc_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_wbtc_24.svg -------------------------------------------------------------------------------- /src/img/ic_wbtc_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_wbtc_40.svg -------------------------------------------------------------------------------- /src/img/ic_weth_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_weth_24.svg -------------------------------------------------------------------------------- /src/img/ic_weth_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_weth_40.svg -------------------------------------------------------------------------------- /src/img/ic_yield_yak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/ic_yield_yak.png -------------------------------------------------------------------------------- /src/img/information-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/information-circle.svg -------------------------------------------------------------------------------- /src/img/lg_arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/lg_arbitrum.svg -------------------------------------------------------------------------------- /src/img/logo-ultra-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/logo-ultra-desktop.svg -------------------------------------------------------------------------------- /src/img/logo-ultra-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/logo-ultra-small.svg -------------------------------------------------------------------------------- /src/img/logo_GMX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/logo_GMX.svg -------------------------------------------------------------------------------- /src/img/logo_GMX_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/logo_GMX_small.svg -------------------------------------------------------------------------------- /src/img/long.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/long.svg -------------------------------------------------------------------------------- /src/img/long_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/long_active.svg -------------------------------------------------------------------------------- /src/img/metamask-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/metamask-text.svg -------------------------------------------------------------------------------- /src/img/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/metamask.png -------------------------------------------------------------------------------- /src/img/nansen_portfolio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/nansen_portfolio.svg -------------------------------------------------------------------------------- /src/img/okx-pogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/okx-pogo.svg -------------------------------------------------------------------------------- /src/img/open-new-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/open-new-tab.svg -------------------------------------------------------------------------------- /src/img/page-not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/page-not-found.svg -------------------------------------------------------------------------------- /src/img/position-share-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/position-share-bg.png -------------------------------------------------------------------------------- /src/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/search.svg -------------------------------------------------------------------------------- /src/img/select_token_chart_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/select_token_chart_icon.svg -------------------------------------------------------------------------------- /src/img/short.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/short.svg -------------------------------------------------------------------------------- /src/img/short_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/short_active.svg -------------------------------------------------------------------------------- /src/img/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/swap.svg -------------------------------------------------------------------------------- /src/img/swap_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/swap_active.svg -------------------------------------------------------------------------------- /src/img/trading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/trading.jpg -------------------------------------------------------------------------------- /src/img/utx-logo-with-name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/utx-logo-with-name.svg -------------------------------------------------------------------------------- /src/img/utx-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/utx-logo.svg -------------------------------------------------------------------------------- /src/img/vest-utx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/vest-utx.svg -------------------------------------------------------------------------------- /src/img/wallet-connect-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/wallet-connect-text.svg -------------------------------------------------------------------------------- /src/img/walletconnect-circle-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/walletconnect-circle-blue.svg -------------------------------------------------------------------------------- /src/img/wave-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/wave-01.png -------------------------------------------------------------------------------- /src/img/wave-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/img/wave-02.png -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/lib/__tests__/getLiquidationPrice.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/__tests__/getLiquidationPrice.spec.ts -------------------------------------------------------------------------------- /src/lib/chains/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/chains/index.ts -------------------------------------------------------------------------------- /src/lib/contracts/callContract.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/contracts/callContract.tsx -------------------------------------------------------------------------------- /src/lib/contracts/contractFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/contracts/contractFetcher.ts -------------------------------------------------------------------------------- /src/lib/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/contracts/index.ts -------------------------------------------------------------------------------- /src/lib/contracts/transactionErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/contracts/transactionErrors.ts -------------------------------------------------------------------------------- /src/lib/contracts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/contracts/utils.ts -------------------------------------------------------------------------------- /src/lib/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/dates.ts -------------------------------------------------------------------------------- /src/lib/downloadImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/downloadImage.ts -------------------------------------------------------------------------------- /src/lib/graphqlFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/graphqlFetcher.ts -------------------------------------------------------------------------------- /src/lib/helperToast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/helperToast.ts -------------------------------------------------------------------------------- /src/lib/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/i18n.ts -------------------------------------------------------------------------------- /src/lib/legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/legacy.ts -------------------------------------------------------------------------------- /src/lib/localStorage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/localStorage/index.ts -------------------------------------------------------------------------------- /src/lib/multicall/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/multicall/index.tsx -------------------------------------------------------------------------------- /src/lib/multicall/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/multicall/types.ts -------------------------------------------------------------------------------- /src/lib/multicall/useMulticall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/multicall/useMulticall.ts -------------------------------------------------------------------------------- /src/lib/multicall/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/multicall/utils.ts -------------------------------------------------------------------------------- /src/lib/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/numbers.ts -------------------------------------------------------------------------------- /src/lib/rpc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/rpc/index.ts -------------------------------------------------------------------------------- /src/lib/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/sleep.ts -------------------------------------------------------------------------------- /src/lib/subgraph/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/subgraph/clients.ts -------------------------------------------------------------------------------- /src/lib/subgraph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/subgraph/index.ts -------------------------------------------------------------------------------- /src/lib/subgraph/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/subgraph/utils.ts -------------------------------------------------------------------------------- /src/lib/testUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/testUtils.tsx -------------------------------------------------------------------------------- /src/lib/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/url.ts -------------------------------------------------------------------------------- /src/lib/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/useDebounce.ts -------------------------------------------------------------------------------- /src/lib/useEffectDebugger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/useEffectDebugger.ts -------------------------------------------------------------------------------- /src/lib/useGetPriceToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/useGetPriceToken.ts -------------------------------------------------------------------------------- /src/lib/useLoadImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/useLoadImage.ts -------------------------------------------------------------------------------- /src/lib/usePrevious.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/usePrevious.ts -------------------------------------------------------------------------------- /src/lib/useRouteQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/useRouteQuery.ts -------------------------------------------------------------------------------- /src/lib/useScrollToTop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/useScrollToTop.ts -------------------------------------------------------------------------------- /src/lib/wallets/WalletConnectConnector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/wallets/WalletConnectConnector.tsx -------------------------------------------------------------------------------- /src/lib/wallets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/wallets/index.tsx -------------------------------------------------------------------------------- /src/lib/wallets/useAccountType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/lib/wallets/useAccountType.ts -------------------------------------------------------------------------------- /src/locales/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/locales/de/messages.po -------------------------------------------------------------------------------- /src/locales/en/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/locales/en/messages.po -------------------------------------------------------------------------------- /src/locales/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/locales/es/messages.po -------------------------------------------------------------------------------- /src/locales/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/locales/fr/messages.po -------------------------------------------------------------------------------- /src/locales/ja/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/locales/ja/messages.po -------------------------------------------------------------------------------- /src/locales/ko/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/locales/ko/messages.po -------------------------------------------------------------------------------- /src/locales/pseudo/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/locales/pseudo/messages.po -------------------------------------------------------------------------------- /src/locales/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/locales/ru/messages.po -------------------------------------------------------------------------------- /src/locales/zh/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/locales/zh/messages.po -------------------------------------------------------------------------------- /src/pages/Actions/Actions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Actions/Actions.css -------------------------------------------------------------------------------- /src/pages/Actions/Actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Actions/Actions.js -------------------------------------------------------------------------------- /src/pages/BeginAccountTransfer/BeginAccountTransfer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/BeginAccountTransfer/BeginAccountTransfer.css -------------------------------------------------------------------------------- /src/pages/BeginAccountTransfer/BeginAccountTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/BeginAccountTransfer/BeginAccountTransfer.js -------------------------------------------------------------------------------- /src/pages/Buy/Buy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Buy/Buy.css -------------------------------------------------------------------------------- /src/pages/Buy/Buy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Buy/Buy.js -------------------------------------------------------------------------------- /src/pages/BuyUTX/BuyUTX.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/BuyUTX/BuyUTX.css -------------------------------------------------------------------------------- /src/pages/BuyUTX/BuyUTX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/BuyUTX/BuyUTX.tsx -------------------------------------------------------------------------------- /src/pages/BuyUTX/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/BuyUTX/constants.ts -------------------------------------------------------------------------------- /src/pages/BuyUlp/BuyUlp.css: -------------------------------------------------------------------------------- 1 | .buy-ulp-content { 2 | padding-top: 4.65rem; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/BuyUlp/BuyUlp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/BuyUlp/BuyUlp.js -------------------------------------------------------------------------------- /src/pages/ClaimEsUtx/ClaimEsUtx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/ClaimEsUtx/ClaimEsUtx.css -------------------------------------------------------------------------------- /src/pages/ClaimEsUtx/ClaimEsUtx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/ClaimEsUtx/ClaimEsUtx.js -------------------------------------------------------------------------------- /src/pages/Dashboard/AssetDropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Dashboard/AssetDropdown.css -------------------------------------------------------------------------------- /src/pages/Dashboard/AssetDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Dashboard/AssetDropdown.tsx -------------------------------------------------------------------------------- /src/pages/Dashboard/Dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Dashboard/Dashboard.css -------------------------------------------------------------------------------- /src/pages/Dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Dashboard/Dashboard.js -------------------------------------------------------------------------------- /src/pages/Dashboard/DashboardV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Dashboard/DashboardV1.js -------------------------------------------------------------------------------- /src/pages/Dashboard/DashboardV2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Dashboard/DashboardV2.css -------------------------------------------------------------------------------- /src/pages/Dashboard/DashboardV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Dashboard/DashboardV2.js -------------------------------------------------------------------------------- /src/pages/Ecosystem/Ecosystem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Ecosystem/Ecosystem.css -------------------------------------------------------------------------------- /src/pages/Ecosystem/Ecosystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Ecosystem/Ecosystem.js -------------------------------------------------------------------------------- /src/pages/Exchange/ChartTokenSelector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/ChartTokenSelector.css -------------------------------------------------------------------------------- /src/pages/Exchange/ChartTokenSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/ChartTokenSelector.js -------------------------------------------------------------------------------- /src/pages/Exchange/ConfimationBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/ConfimationBox.css -------------------------------------------------------------------------------- /src/pages/Exchange/ConfirmationBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/ConfirmationBox.js -------------------------------------------------------------------------------- /src/pages/Exchange/Exchange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/Exchange.css -------------------------------------------------------------------------------- /src/pages/Exchange/Exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/Exchange.js -------------------------------------------------------------------------------- /src/pages/Exchange/ExchangeBanner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/ExchangeBanner.css -------------------------------------------------------------------------------- /src/pages/Exchange/ExchangeBanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/ExchangeBanner.js -------------------------------------------------------------------------------- /src/pages/Exchange/ExchangeInfoRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/ExchangeInfoRow.js -------------------------------------------------------------------------------- /src/pages/Exchange/ExchangeTVChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/ExchangeTVChart.js -------------------------------------------------------------------------------- /src/pages/Exchange/ExchangeWalletTokens.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/ExchangeWalletTokens.css -------------------------------------------------------------------------------- /src/pages/Exchange/ExchangeWalletTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/ExchangeWalletTokens.js -------------------------------------------------------------------------------- /src/pages/Exchange/FeesTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/FeesTooltip.tsx -------------------------------------------------------------------------------- /src/pages/Exchange/LeverageSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/LeverageSlider.tsx -------------------------------------------------------------------------------- /src/pages/Exchange/NetValueTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/NetValueTooltip.tsx -------------------------------------------------------------------------------- /src/pages/Exchange/NoLiquidityErrorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/NoLiquidityErrorModal.tsx -------------------------------------------------------------------------------- /src/pages/Exchange/OrderEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/OrderEditor.js -------------------------------------------------------------------------------- /src/pages/Exchange/OrdersList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/OrdersList.css -------------------------------------------------------------------------------- /src/pages/Exchange/OrdersList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/OrdersList.js -------------------------------------------------------------------------------- /src/pages/Exchange/OrdersToa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/OrdersToa.css -------------------------------------------------------------------------------- /src/pages/Exchange/OrdersToa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/OrdersToa.js -------------------------------------------------------------------------------- /src/pages/Exchange/PositionDropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/PositionDropdown.css -------------------------------------------------------------------------------- /src/pages/Exchange/PositionDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/PositionDropdown.js -------------------------------------------------------------------------------- /src/pages/Exchange/PositionEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/PositionEditor.js -------------------------------------------------------------------------------- /src/pages/Exchange/PositionList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/PositionList.js -------------------------------------------------------------------------------- /src/pages/Exchange/PositionSeller.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/PositionSeller.css -------------------------------------------------------------------------------- /src/pages/Exchange/PositionSeller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/PositionSeller.js -------------------------------------------------------------------------------- /src/pages/Exchange/PositionShare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/PositionShare.css -------------------------------------------------------------------------------- /src/pages/Exchange/SwapBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/SwapBox.js -------------------------------------------------------------------------------- /src/pages/Exchange/SwapBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/SwapBox.scss -------------------------------------------------------------------------------- /src/pages/Exchange/TokenSelector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/TokenSelector.css -------------------------------------------------------------------------------- /src/pages/Exchange/TokenSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/TokenSelector.js -------------------------------------------------------------------------------- /src/pages/Exchange/TradeHistory.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/TradeHistory.css -------------------------------------------------------------------------------- /src/pages/Exchange/TradeHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/TradeHistory.js -------------------------------------------------------------------------------- /src/pages/Exchange/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Exchange/constants.ts -------------------------------------------------------------------------------- /src/pages/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Home/Home.css -------------------------------------------------------------------------------- /src/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Home/Home.js -------------------------------------------------------------------------------- /src/pages/Homepage/Homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/Homepage.js -------------------------------------------------------------------------------- /src/pages/Homepage/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/arrow-right.svg -------------------------------------------------------------------------------- /src/pages/Homepage/images/bg-logo-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/bg-logo-02.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/bg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/bg-logo.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/bridge.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/dao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/dao.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/f-discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/f-discord.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/f-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/f-github.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/f-telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/f-telegram.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/f-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/f-twitter.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/icon-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/icon-01.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/icon-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/icon-02.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/icon-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/icon-03.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/icon-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/icon-04.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/icon-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/icon-05.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/icon-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/icon-06.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/icon-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/icon-07.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/icon-global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/icon-global.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/icon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/icon-logo.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/icon-uniultra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/icon-uniultra.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/index.html -------------------------------------------------------------------------------- /src/pages/Homepage/images/layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/layer.svg -------------------------------------------------------------------------------- /src/pages/Homepage/images/layer_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/layer_1.svg -------------------------------------------------------------------------------- /src/pages/Homepage/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/line.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/logo-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/logo-vertical.svg -------------------------------------------------------------------------------- /src/pages/Homepage/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/logo.svg -------------------------------------------------------------------------------- /src/pages/Homepage/images/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/robot.png -------------------------------------------------------------------------------- /src/pages/Homepage/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Homepage/images/star.png -------------------------------------------------------------------------------- /src/pages/Jobs/Jobs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Jobs/Jobs.css -------------------------------------------------------------------------------- /src/pages/Jobs/Jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Jobs/Jobs.js -------------------------------------------------------------------------------- /src/pages/NftWallet/NftWallet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/NftWallet/NftWallet.css -------------------------------------------------------------------------------- /src/pages/NftWallet/NftWallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/NftWallet/NftWallet.js -------------------------------------------------------------------------------- /src/pages/OrdersOverview/OrdersOverview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/OrdersOverview/OrdersOverview.css -------------------------------------------------------------------------------- /src/pages/OrdersOverview/OrdersOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/OrdersOverview/OrdersOverview.js -------------------------------------------------------------------------------- /src/pages/PageNotFound/PageNotFound.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/PageNotFound/PageNotFound.css -------------------------------------------------------------------------------- /src/pages/PageNotFound/PageNotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/PageNotFound/PageNotFound.js -------------------------------------------------------------------------------- /src/pages/PositionsOverview/PositionsOverview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/PositionsOverview/PositionsOverview.css -------------------------------------------------------------------------------- /src/pages/PositionsOverview/PositionsOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/PositionsOverview/PositionsOverview.js -------------------------------------------------------------------------------- /src/pages/Presale/Presale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Presale/Presale.css -------------------------------------------------------------------------------- /src/pages/ReferralTerms/ReferralTerms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/ReferralTerms/ReferralTerms.css -------------------------------------------------------------------------------- /src/pages/ReferralTerms/ReferralTerms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/ReferralTerms/ReferralTerms.js -------------------------------------------------------------------------------- /src/pages/SellGlp/SellGlp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/SellGlp/SellGlp.css -------------------------------------------------------------------------------- /src/pages/Stake/Stake.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Stake/Stake.css -------------------------------------------------------------------------------- /src/pages/Stake/Stake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Stake/Stake.js -------------------------------------------------------------------------------- /src/pages/Stake/StakeV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Stake/StakeV1.js -------------------------------------------------------------------------------- /src/pages/Stake/StakeV2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Stake/StakeV2.css -------------------------------------------------------------------------------- /src/pages/Stake/StakeV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Stake/StakeV2.js -------------------------------------------------------------------------------- /src/pages/Stats/Stats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Stats/Stats.css -------------------------------------------------------------------------------- /src/pages/Stats/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/Stats/Stats.tsx -------------------------------------------------------------------------------- /src/pages/TermsAndConditions/TermsAndConditions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/TermsAndConditions/TermsAndConditions.css -------------------------------------------------------------------------------- /src/pages/TermsAndConditions/TermsAndConditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/pages/TermsAndConditions/TermsAndConditions.js -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/styles/Font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/styles/Font.css -------------------------------------------------------------------------------- /src/styles/Input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/styles/Input.css -------------------------------------------------------------------------------- /src/styles/Shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/styles/Shared.css -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperDev313/Trading_Platform_Ultrax/HEAD/yarn.lock --------------------------------------------------------------------------------