├── .babelrc ├── .env.development ├── .env.production ├── .env.test ├── .eslintignore ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .postcssrc ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── cypress.json ├── package.json ├── public ├── bitmexWorker.js ├── css │ └── customTv.css ├── favicon.ico ├── img │ ├── 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 │ └── logo.png └── index.html ├── src ├── App │ ├── App.vue │ └── style.scss ├── assets │ ├── css │ │ ├── colors.css │ │ ├── core.css │ │ └── simplebar.css │ ├── icon8 │ │ ├── Curry-Coin.eot │ │ ├── Curry-Coin.svg │ │ ├── Curry-Coin.ttf │ │ ├── Curry-Coin.woff │ │ └── Curry-Coin.woff2 │ ├── iconfinder-icon.svg │ ├── json │ │ ├── keyMaps.js │ │ ├── pairs.js │ │ ├── precisionMaps.js │ │ └── reverseKeyMaps.js │ ├── logo.orig.png │ ├── logo.png │ ├── miner.png │ ├── miner1.png │ ├── scss │ │ ├── base │ │ │ ├── buttons.scss │ │ │ ├── checkbox.scss │ │ │ ├── colors.scss │ │ │ ├── containers.scss │ │ │ ├── core.scss │ │ │ ├── form-field.scss │ │ │ ├── icons.scss │ │ │ ├── mixins.scss │ │ │ ├── panel.scss │ │ │ ├── scrollbar.scss │ │ │ ├── tables.scss │ │ │ └── typography.scss │ │ └── uk-overrides │ │ │ ├── button.scss │ │ │ ├── modal.scss │ │ │ ├── subnav.scss │ │ │ └── tabs.scss │ ├── social-1_logo-facebook.svg │ ├── social-1_logo-google-plus.svg │ ├── social-1_logo-reddit.svg │ ├── social-1_logo-twitter.svg │ ├── sort-icon.svg │ ├── sort.svg │ ├── status.png │ ├── status_check.png │ ├── transferIcon.svg │ ├── whatsapp.svg │ └── wrench.png ├── components │ ├── ActiveTrades │ │ ├── ActiveTrades.vue │ │ ├── style.scss │ │ └── template.html │ ├── ActiveTradesMobile │ │ ├── ActiveTradesMobile.vue │ │ ├── style.scss │ │ └── template.html │ ├── BalanceTransfer │ │ ├── BalanceTransfer.vue │ │ ├── BitmexWalletDetails │ │ │ ├── BitmexWalletDetails.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitmexWalletSummary │ │ │ ├── BitmexWalletSummary.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── SummaryBequant │ │ │ ├── SummaryBequant.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── SummaryBinance │ │ │ ├── SummaryBinance.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── SummaryBitfinex │ │ │ ├── SummaryBitfinex.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── SummaryBitmex │ │ │ ├── SummaryBitmex.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── style.scss │ │ └── template.html │ ├── Deposit │ │ ├── BequantDepositAddress │ │ │ ├── BequantDepositAddress.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BinanceDepositAddress │ │ │ ├── BinanceDepositAddress.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitfinexDepositAddress │ │ │ ├── BitfinexDepositAddress.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitmexDepositAddress │ │ │ ├── BitmexDepositAddress.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── Deposit.vue │ │ ├── style.scss │ │ └── template.html │ ├── HeaderSection │ │ ├── HeaderSection.vue │ │ ├── TotalPortfolio │ │ │ ├── TotalPortfolio.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── style.scss │ │ └── template.html │ ├── History │ │ ├── BequantCompletedWithdrawalHistory │ │ │ ├── BequantCompletedWithdrawalHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BequantDepositHistory │ │ │ ├── BequantDepositHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BequantOrdersHistory │ │ │ ├── BequantOrdersHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BequantPendingWithdrawalHistory │ │ │ ├── BequantPendingWithdrawalHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BequantTradingHistory │ │ │ ├── BequantTradingHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BinanceCompletedWithdrawalHistory │ │ │ ├── BinanceCompletedWithdrawalHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BinanceDepositHistory │ │ │ ├── BinanceDepositHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BinanceOrdersHistory │ │ │ ├── BinanceOrdersHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BinancePendingWithdrawalHistory │ │ │ ├── BinancePendingWithdrawalHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BinanceTradingHistory │ │ │ ├── BinanceTradingHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitfinexCompletedWithdrawalHistory │ │ │ ├── BitfinexCompletedWithdrawalHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitfinexDepositHistory │ │ │ ├── BitfinexDepositHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitfinexOrdersHistory │ │ │ ├── BitfinexOrdersHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitfinexPendingWithdrawalHistory │ │ │ ├── BitfinexPendingWithdrawalHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitfinexPositionsHistory │ │ │ ├── BitfinexPositionsHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitfinexTradingHistory │ │ │ ├── BitfinexTradingHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitmexLiquidationOrderHistory │ │ │ ├── BitmexLiquidationOrderHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitmexOrderHistory │ │ │ ├── BitmexOrderHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitmexPositionsHistory │ │ │ ├── BitfinexPositionsHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitmexSwapFundingHistory │ │ │ ├── BitmexSwapFundingHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── BitmexTradingHistory │ │ │ ├── BitmexTradingHistory.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── History.vue │ │ ├── style.scss │ │ └── template.html │ ├── Landing │ │ ├── Landing.vue │ │ ├── MarketView │ │ │ ├── BookPane │ │ │ │ ├── BookPane.vue │ │ │ │ ├── LiveTrades │ │ │ │ │ ├── LiveTrades.vue │ │ │ │ │ ├── style.scss │ │ │ │ │ └── template.html │ │ │ │ ├── OrderBook │ │ │ │ │ ├── OrderBook.vue │ │ │ │ │ ├── style.scss │ │ │ │ │ └── template.html │ │ │ │ ├── style.scss │ │ │ │ └── template.html │ │ │ ├── MarketView.vue │ │ │ ├── PricePane │ │ │ │ ├── PriceAnalysis │ │ │ │ │ ├── PriceAnalysis.vue │ │ │ │ │ ├── RowComponent │ │ │ │ │ │ ├── RowComponent.vue │ │ │ │ │ │ ├── style.scss │ │ │ │ │ │ └── template.html │ │ │ │ │ ├── style.scss │ │ │ │ │ └── template.html │ │ │ │ ├── PricePane.vue │ │ │ │ ├── Ticker │ │ │ │ │ ├── Ticker.vue │ │ │ │ │ ├── style.scss │ │ │ │ │ └── template.html │ │ │ │ ├── TradingView │ │ │ │ │ ├── TradingView.vue │ │ │ │ │ ├── style.scss │ │ │ │ │ └── template.html │ │ │ │ ├── style.scss │ │ │ │ └── template.html │ │ │ ├── TradePane │ │ │ │ ├── Balance │ │ │ │ │ ├── Balance.vue │ │ │ │ │ ├── style.scss │ │ │ │ │ └── template.html │ │ │ │ ├── News │ │ │ │ │ ├── News.vue │ │ │ │ │ ├── style.scss │ │ │ │ │ └── template.html │ │ │ │ ├── Ticker │ │ │ │ │ ├── RowComponent │ │ │ │ │ │ ├── RowComponent.vue │ │ │ │ │ │ ├── style.scss │ │ │ │ │ │ └── template.html │ │ │ │ │ ├── Ticker.vue │ │ │ │ │ ├── style.scss │ │ │ │ │ └── template.html │ │ │ │ ├── TradePane.vue │ │ │ │ ├── TradeTab │ │ │ │ │ ├── LimitOrder │ │ │ │ │ │ ├── LimitOrder.vue │ │ │ │ │ │ ├── style.scss │ │ │ │ │ │ ├── template.html │ │ │ │ │ │ └── template.orig │ │ │ │ │ ├── MarketOrder │ │ │ │ │ │ ├── MarketOrder.vue │ │ │ │ │ │ ├── style.scss │ │ │ │ │ │ └── template.html │ │ │ │ │ ├── StopLimitOrder │ │ │ │ │ │ ├── StopLimitOrder.vue │ │ │ │ │ │ ├── style.scss │ │ │ │ │ │ ├── template.html │ │ │ │ │ │ └── template.orig │ │ │ │ │ ├── StopMarketOrder │ │ │ │ │ │ ├── StopMarketOrder.vue │ │ │ │ │ │ ├── style.scss │ │ │ │ │ │ └── template.html │ │ │ │ │ ├── TradeTab.vue │ │ │ │ │ ├── style.scss │ │ │ │ │ └── template.html │ │ │ │ ├── style.scss │ │ │ │ └── template.html │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── TradeView │ │ │ ├── ActiveTrades │ │ │ │ ├── ActiveTrades.vue │ │ │ │ ├── style.scss │ │ │ │ └── template.html │ │ │ ├── RecentTrades │ │ │ │ ├── RecentTrades.vue │ │ │ │ ├── style.scss │ │ │ │ └── template.html │ │ │ ├── TradeView.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ └── template.html │ ├── ModalBox │ │ ├── ModalBox.vue │ │ └── template.html │ ├── Settings │ │ ├── Settings.vue │ │ ├── Trezor │ │ │ ├── AccountInfo │ │ │ │ ├── AccountInfo.vue │ │ │ │ ├── style.scss │ │ │ │ └── template.html │ │ │ ├── ReceivingAddress │ │ │ │ ├── ReceivingAddress.vue │ │ │ │ ├── style.scss │ │ │ │ └── template.html │ │ │ ├── SendMoney │ │ │ │ ├── SendMoney.vue │ │ │ │ ├── style.scss │ │ │ │ └── template.html │ │ │ ├── Trezor.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── style.scss │ │ └── template.html │ ├── SideMenu │ │ ├── SideMenu.vue │ │ ├── style.scss │ │ └── template.html │ ├── Spinner │ │ ├── Spinner.vue │ │ ├── style.scss │ │ └── template.html │ ├── TabBar │ │ ├── TabBar.vue │ │ ├── style.scss │ │ └── template.html │ ├── TickerPage │ │ ├── MarginMarkets │ │ │ ├── MarginMarkets.vue │ │ │ ├── style.scss │ │ │ └── template.html │ │ ├── TickerPage.vue │ │ ├── style.scss │ │ └── template.html │ ├── TradeModal │ │ ├── TradeModal.vue │ │ ├── style.scss │ │ └── template.html │ ├── TradeModalMobile │ │ ├── TradeModalMobile.vue │ │ ├── style.scss │ │ └── template.html │ └── Withdrawl │ │ ├── CashWithdrawls │ │ ├── CashWithdrawls.vue │ │ └── template.html │ │ ├── CryptoWithdrawls │ │ ├── CryptoWithdrawls.vue │ │ └── template.html │ │ ├── Withdrawl.vue │ │ └── template.html ├── eventBuses │ ├── default.js │ ├── exchangeData.js │ └── loader.js ├── main.js ├── plugins │ └── notifications.js ├── router.js ├── services │ ├── ApiCurryBase.js │ ├── CryptoNewsService.js │ ├── DepositService.js │ ├── HistoryService.js │ ├── TradeService.js │ ├── TrezorService.js │ ├── WalletService.js │ ├── WithdrawlService.js │ ├── binanceService.js │ ├── currencyLabelMap.json │ └── exchangeSockets │ │ ├── bitmex.js │ │ ├── hitbtc.js │ │ ├── newApiEngine.js │ │ ├── new_binance.js │ │ └── new_bitfinex.js ├── store.js ├── utils │ ├── MockApiFailure.js │ ├── localStorage.js │ ├── sessionStorage.js │ ├── utility.js │ └── validator.js └── views │ └── home │ ├── Home.vue │ └── template.html └── tests ├── e2e ├── .eslintrc ├── plugins │ └── index.js ├── specs │ └── test.js └── support │ ├── commands.js │ └── index.js └── unit ├── .eslintrc └── HelloWorld.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/.babelrc -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/.env.production -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/.env.test -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /src/assets/js/amcharts -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/.postcssrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/cypress.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/package.json -------------------------------------------------------------------------------- /public/bitmexWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/bitmexWorker.js -------------------------------------------------------------------------------- /public/css/customTv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/css/customTv.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /public/img/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /public/img/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /public/img/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /public/img/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /public/img/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/img/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/apple-icon.png -------------------------------------------------------------------------------- /public/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/browserconfig.xml -------------------------------------------------------------------------------- /public/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/img/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/favicon.ico -------------------------------------------------------------------------------- /public/img/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/manifest.json -------------------------------------------------------------------------------- /public/img/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/img/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/img/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/img/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/App/App.vue -------------------------------------------------------------------------------- /src/App/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/App/style.scss -------------------------------------------------------------------------------- /src/assets/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/css/colors.css -------------------------------------------------------------------------------- /src/assets/css/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/css/core.css -------------------------------------------------------------------------------- /src/assets/css/simplebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/css/simplebar.css -------------------------------------------------------------------------------- /src/assets/icon8/Curry-Coin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/icon8/Curry-Coin.eot -------------------------------------------------------------------------------- /src/assets/icon8/Curry-Coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/icon8/Curry-Coin.svg -------------------------------------------------------------------------------- /src/assets/icon8/Curry-Coin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/icon8/Curry-Coin.ttf -------------------------------------------------------------------------------- /src/assets/icon8/Curry-Coin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/icon8/Curry-Coin.woff -------------------------------------------------------------------------------- /src/assets/icon8/Curry-Coin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/icon8/Curry-Coin.woff2 -------------------------------------------------------------------------------- /src/assets/iconfinder-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/iconfinder-icon.svg -------------------------------------------------------------------------------- /src/assets/json/keyMaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/json/keyMaps.js -------------------------------------------------------------------------------- /src/assets/json/pairs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/json/pairs.js -------------------------------------------------------------------------------- /src/assets/json/precisionMaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/json/precisionMaps.js -------------------------------------------------------------------------------- /src/assets/json/reverseKeyMaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/json/reverseKeyMaps.js -------------------------------------------------------------------------------- /src/assets/logo.orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/logo.orig.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/miner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/miner.png -------------------------------------------------------------------------------- /src/assets/miner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/miner1.png -------------------------------------------------------------------------------- /src/assets/scss/base/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/buttons.scss -------------------------------------------------------------------------------- /src/assets/scss/base/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/checkbox.scss -------------------------------------------------------------------------------- /src/assets/scss/base/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/colors.scss -------------------------------------------------------------------------------- /src/assets/scss/base/containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/containers.scss -------------------------------------------------------------------------------- /src/assets/scss/base/core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/core.scss -------------------------------------------------------------------------------- /src/assets/scss/base/form-field.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/form-field.scss -------------------------------------------------------------------------------- /src/assets/scss/base/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/icons.scss -------------------------------------------------------------------------------- /src/assets/scss/base/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/mixins.scss -------------------------------------------------------------------------------- /src/assets/scss/base/panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/panel.scss -------------------------------------------------------------------------------- /src/assets/scss/base/scrollbar.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/scss/base/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/tables.scss -------------------------------------------------------------------------------- /src/assets/scss/base/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/base/typography.scss -------------------------------------------------------------------------------- /src/assets/scss/uk-overrides/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/uk-overrides/button.scss -------------------------------------------------------------------------------- /src/assets/scss/uk-overrides/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/uk-overrides/modal.scss -------------------------------------------------------------------------------- /src/assets/scss/uk-overrides/subnav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/uk-overrides/subnav.scss -------------------------------------------------------------------------------- /src/assets/scss/uk-overrides/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/scss/uk-overrides/tabs.scss -------------------------------------------------------------------------------- /src/assets/social-1_logo-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/social-1_logo-facebook.svg -------------------------------------------------------------------------------- /src/assets/social-1_logo-google-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/social-1_logo-google-plus.svg -------------------------------------------------------------------------------- /src/assets/social-1_logo-reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/social-1_logo-reddit.svg -------------------------------------------------------------------------------- /src/assets/social-1_logo-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/social-1_logo-twitter.svg -------------------------------------------------------------------------------- /src/assets/sort-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/sort-icon.svg -------------------------------------------------------------------------------- /src/assets/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/sort.svg -------------------------------------------------------------------------------- /src/assets/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/status.png -------------------------------------------------------------------------------- /src/assets/status_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/status_check.png -------------------------------------------------------------------------------- /src/assets/transferIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/transferIcon.svg -------------------------------------------------------------------------------- /src/assets/whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/whatsapp.svg -------------------------------------------------------------------------------- /src/assets/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/assets/wrench.png -------------------------------------------------------------------------------- /src/components/ActiveTrades/ActiveTrades.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/ActiveTrades/ActiveTrades.vue -------------------------------------------------------------------------------- /src/components/ActiveTrades/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/ActiveTrades/style.scss -------------------------------------------------------------------------------- /src/components/ActiveTrades/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/ActiveTrades/template.html -------------------------------------------------------------------------------- /src/components/ActiveTradesMobile/ActiveTradesMobile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/ActiveTradesMobile/ActiveTradesMobile.vue -------------------------------------------------------------------------------- /src/components/ActiveTradesMobile/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/ActiveTradesMobile/style.scss -------------------------------------------------------------------------------- /src/components/ActiveTradesMobile/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/ActiveTradesMobile/template.html -------------------------------------------------------------------------------- /src/components/BalanceTransfer/BalanceTransfer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/BalanceTransfer.vue -------------------------------------------------------------------------------- /src/components/BalanceTransfer/BitmexWalletDetails/BitmexWalletDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/BitmexWalletDetails/BitmexWalletDetails.vue -------------------------------------------------------------------------------- /src/components/BalanceTransfer/BitmexWalletDetails/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/BitmexWalletDetails/style.scss -------------------------------------------------------------------------------- /src/components/BalanceTransfer/BitmexWalletDetails/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/BitmexWalletDetails/template.html -------------------------------------------------------------------------------- /src/components/BalanceTransfer/BitmexWalletSummary/BitmexWalletSummary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/BitmexWalletSummary/BitmexWalletSummary.vue -------------------------------------------------------------------------------- /src/components/BalanceTransfer/BitmexWalletSummary/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/BitmexWalletSummary/style.scss -------------------------------------------------------------------------------- /src/components/BalanceTransfer/BitmexWalletSummary/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/BitmexWalletSummary/template.html -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBequant/SummaryBequant.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBequant/SummaryBequant.vue -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBequant/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBequant/style.scss -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBequant/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBequant/template.html -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBinance/SummaryBinance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBinance/SummaryBinance.vue -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBinance/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBinance/style.scss -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBinance/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBinance/template.html -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBitfinex/SummaryBitfinex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBitfinex/SummaryBitfinex.vue -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBitfinex/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBitfinex/style.scss -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBitfinex/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBitfinex/template.html -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBitmex/SummaryBitmex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBitmex/SummaryBitmex.vue -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBitmex/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBitmex/style.scss -------------------------------------------------------------------------------- /src/components/BalanceTransfer/SummaryBitmex/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/SummaryBitmex/template.html -------------------------------------------------------------------------------- /src/components/BalanceTransfer/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/style.scss -------------------------------------------------------------------------------- /src/components/BalanceTransfer/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/BalanceTransfer/template.html -------------------------------------------------------------------------------- /src/components/Deposit/BequantDepositAddress/BequantDepositAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BequantDepositAddress/BequantDepositAddress.vue -------------------------------------------------------------------------------- /src/components/Deposit/BequantDepositAddress/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BequantDepositAddress/style.scss -------------------------------------------------------------------------------- /src/components/Deposit/BequantDepositAddress/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BequantDepositAddress/template.html -------------------------------------------------------------------------------- /src/components/Deposit/BinanceDepositAddress/BinanceDepositAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BinanceDepositAddress/BinanceDepositAddress.vue -------------------------------------------------------------------------------- /src/components/Deposit/BinanceDepositAddress/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BinanceDepositAddress/style.scss -------------------------------------------------------------------------------- /src/components/Deposit/BinanceDepositAddress/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BinanceDepositAddress/template.html -------------------------------------------------------------------------------- /src/components/Deposit/BitfinexDepositAddress/BitfinexDepositAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BitfinexDepositAddress/BitfinexDepositAddress.vue -------------------------------------------------------------------------------- /src/components/Deposit/BitfinexDepositAddress/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BitfinexDepositAddress/style.scss -------------------------------------------------------------------------------- /src/components/Deposit/BitfinexDepositAddress/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BitfinexDepositAddress/template.html -------------------------------------------------------------------------------- /src/components/Deposit/BitmexDepositAddress/BitmexDepositAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BitmexDepositAddress/BitmexDepositAddress.vue -------------------------------------------------------------------------------- /src/components/Deposit/BitmexDepositAddress/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BitmexDepositAddress/style.scss -------------------------------------------------------------------------------- /src/components/Deposit/BitmexDepositAddress/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/BitmexDepositAddress/template.html -------------------------------------------------------------------------------- /src/components/Deposit/Deposit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/Deposit.vue -------------------------------------------------------------------------------- /src/components/Deposit/style.scss: -------------------------------------------------------------------------------- 1 | #mobileDropdown { 2 | margin-top: 10px; 3 | } -------------------------------------------------------------------------------- /src/components/Deposit/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Deposit/template.html -------------------------------------------------------------------------------- /src/components/HeaderSection/HeaderSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/HeaderSection/HeaderSection.vue -------------------------------------------------------------------------------- /src/components/HeaderSection/TotalPortfolio/TotalPortfolio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/HeaderSection/TotalPortfolio/TotalPortfolio.vue -------------------------------------------------------------------------------- /src/components/HeaderSection/TotalPortfolio/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/HeaderSection/TotalPortfolio/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/HeaderSection/TotalPortfolio/template.html -------------------------------------------------------------------------------- /src/components/HeaderSection/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/HeaderSection/style.scss -------------------------------------------------------------------------------- /src/components/HeaderSection/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/HeaderSection/template.html -------------------------------------------------------------------------------- /src/components/History/BequantCompletedWithdrawalHistory/BequantCompletedWithdrawalHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantCompletedWithdrawalHistory/BequantCompletedWithdrawalHistory.vue -------------------------------------------------------------------------------- /src/components/History/BequantCompletedWithdrawalHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantCompletedWithdrawalHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BequantCompletedWithdrawalHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantCompletedWithdrawalHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BequantDepositHistory/BequantDepositHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantDepositHistory/BequantDepositHistory.vue -------------------------------------------------------------------------------- /src/components/History/BequantDepositHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantDepositHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BequantDepositHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantDepositHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BequantOrdersHistory/BequantOrdersHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantOrdersHistory/BequantOrdersHistory.vue -------------------------------------------------------------------------------- /src/components/History/BequantOrdersHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantOrdersHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BequantOrdersHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantOrdersHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BequantPendingWithdrawalHistory/BequantPendingWithdrawalHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantPendingWithdrawalHistory/BequantPendingWithdrawalHistory.vue -------------------------------------------------------------------------------- /src/components/History/BequantPendingWithdrawalHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantPendingWithdrawalHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BequantPendingWithdrawalHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantPendingWithdrawalHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BequantTradingHistory/BequantTradingHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantTradingHistory/BequantTradingHistory.vue -------------------------------------------------------------------------------- /src/components/History/BequantTradingHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantTradingHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BequantTradingHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BequantTradingHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BinanceCompletedWithdrawalHistory/BinanceCompletedWithdrawalHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceCompletedWithdrawalHistory/BinanceCompletedWithdrawalHistory.vue -------------------------------------------------------------------------------- /src/components/History/BinanceCompletedWithdrawalHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceCompletedWithdrawalHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BinanceCompletedWithdrawalHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceCompletedWithdrawalHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BinanceDepositHistory/BinanceDepositHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceDepositHistory/BinanceDepositHistory.vue -------------------------------------------------------------------------------- /src/components/History/BinanceDepositHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceDepositHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BinanceDepositHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceDepositHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BinanceOrdersHistory/BinanceOrdersHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceOrdersHistory/BinanceOrdersHistory.vue -------------------------------------------------------------------------------- /src/components/History/BinanceOrdersHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceOrdersHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BinanceOrdersHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceOrdersHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BinancePendingWithdrawalHistory/BinancePendingWithdrawalHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinancePendingWithdrawalHistory/BinancePendingWithdrawalHistory.vue -------------------------------------------------------------------------------- /src/components/History/BinancePendingWithdrawalHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinancePendingWithdrawalHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BinancePendingWithdrawalHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinancePendingWithdrawalHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BinanceTradingHistory/BinanceTradingHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceTradingHistory/BinanceTradingHistory.vue -------------------------------------------------------------------------------- /src/components/History/BinanceTradingHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceTradingHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BinanceTradingHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BinanceTradingHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitfinexCompletedWithdrawalHistory/BitfinexCompletedWithdrawalHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexCompletedWithdrawalHistory/BitfinexCompletedWithdrawalHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitfinexCompletedWithdrawalHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexCompletedWithdrawalHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitfinexCompletedWithdrawalHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexCompletedWithdrawalHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitfinexDepositHistory/BitfinexDepositHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexDepositHistory/BitfinexDepositHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitfinexDepositHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexDepositHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitfinexDepositHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexDepositHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitfinexOrdersHistory/BitfinexOrdersHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexOrdersHistory/BitfinexOrdersHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitfinexOrdersHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexOrdersHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitfinexOrdersHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexOrdersHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitfinexPendingWithdrawalHistory/BitfinexPendingWithdrawalHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexPendingWithdrawalHistory/BitfinexPendingWithdrawalHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitfinexPendingWithdrawalHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexPendingWithdrawalHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitfinexPendingWithdrawalHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexPendingWithdrawalHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitfinexPositionsHistory/BitfinexPositionsHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexPositionsHistory/BitfinexPositionsHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitfinexPositionsHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexPositionsHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitfinexPositionsHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexPositionsHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitfinexTradingHistory/BitfinexTradingHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexTradingHistory/BitfinexTradingHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitfinexTradingHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexTradingHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitfinexTradingHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitfinexTradingHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitmexLiquidationOrderHistory/BitmexLiquidationOrderHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexLiquidationOrderHistory/BitmexLiquidationOrderHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitmexLiquidationOrderHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexLiquidationOrderHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitmexLiquidationOrderHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexLiquidationOrderHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitmexOrderHistory/BitmexOrderHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexOrderHistory/BitmexOrderHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitmexOrderHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexOrderHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitmexOrderHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexOrderHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitmexPositionsHistory/BitfinexPositionsHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexPositionsHistory/BitfinexPositionsHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitmexPositionsHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexPositionsHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitmexPositionsHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexPositionsHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitmexSwapFundingHistory/BitmexSwapFundingHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexSwapFundingHistory/BitmexSwapFundingHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitmexSwapFundingHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexSwapFundingHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitmexSwapFundingHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexSwapFundingHistory/template.html -------------------------------------------------------------------------------- /src/components/History/BitmexTradingHistory/BitmexTradingHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexTradingHistory/BitmexTradingHistory.vue -------------------------------------------------------------------------------- /src/components/History/BitmexTradingHistory/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexTradingHistory/style.scss -------------------------------------------------------------------------------- /src/components/History/BitmexTradingHistory/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/BitmexTradingHistory/template.html -------------------------------------------------------------------------------- /src/components/History/History.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/History.vue -------------------------------------------------------------------------------- /src/components/History/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/style.scss -------------------------------------------------------------------------------- /src/components/History/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/History/template.html -------------------------------------------------------------------------------- /src/components/Landing/Landing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/Landing.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/BookPane/BookPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/BookPane/BookPane.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/BookPane/LiveTrades/LiveTrades.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/BookPane/LiveTrades/LiveTrades.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/BookPane/LiveTrades/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/BookPane/LiveTrades/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/BookPane/LiveTrades/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/BookPane/LiveTrades/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/BookPane/OrderBook/OrderBook.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/BookPane/OrderBook/OrderBook.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/BookPane/OrderBook/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/BookPane/OrderBook/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/BookPane/OrderBook/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/BookPane/OrderBook/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/BookPane/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/BookPane/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/BookPane/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/BookPane/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/MarketView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/MarketView.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/PriceAnalysis/PriceAnalysis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/PriceAnalysis/PriceAnalysis.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/PriceAnalysis/RowComponent/RowComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/PriceAnalysis/RowComponent/RowComponent.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/PriceAnalysis/RowComponent/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/PriceAnalysis/RowComponent/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/PriceAnalysis/RowComponent/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/PriceAnalysis/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/PriceAnalysis/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/PriceAnalysis/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/PriceAnalysis/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/PricePane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/PricePane.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/Ticker/Ticker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/Ticker/Ticker.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/Ticker/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/Ticker/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/Ticker/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/Ticker/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/TradingView/TradingView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/TradingView/TradingView.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/TradingView/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/TradingView/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/TradingView/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/TradingView/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/PricePane/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/PricePane/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/Balance/Balance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/Balance/Balance.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/Balance/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/Balance/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/Balance/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/Balance/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/News/News.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/News/News.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/News/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/News/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/News/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/News/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/Ticker/RowComponent/RowComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/Ticker/RowComponent/RowComponent.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/Ticker/RowComponent/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/Ticker/RowComponent/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/Ticker/RowComponent/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/Ticker/Ticker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/Ticker/Ticker.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/Ticker/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/Ticker/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/Ticker/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/Ticker/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradePane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradePane.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/LimitOrder/LimitOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/LimitOrder/LimitOrder.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/LimitOrder/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/LimitOrder/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/LimitOrder/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/LimitOrder/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/LimitOrder/template.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/LimitOrder/template.orig -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/MarketOrder/MarketOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/MarketOrder/MarketOrder.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/MarketOrder/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/MarketOrder/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/MarketOrder/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/MarketOrder/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/StopLimitOrder/StopLimitOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/StopLimitOrder/StopLimitOrder.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/StopLimitOrder/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/StopLimitOrder/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/StopLimitOrder/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/StopLimitOrder/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/StopLimitOrder/template.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/StopLimitOrder/template.orig -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/StopMarketOrder/StopMarketOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/StopMarketOrder/StopMarketOrder.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/StopMarketOrder/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/StopMarketOrder/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/StopMarketOrder/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/StopMarketOrder/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/TradeTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/TradeTab.vue -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/TradeTab/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/TradeTab/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/TradePane/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/TradePane/template.html -------------------------------------------------------------------------------- /src/components/Landing/MarketView/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/style.scss -------------------------------------------------------------------------------- /src/components/Landing/MarketView/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/MarketView/template.html -------------------------------------------------------------------------------- /src/components/Landing/TradeView/ActiveTrades/ActiveTrades.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/TradeView/ActiveTrades/ActiveTrades.vue -------------------------------------------------------------------------------- /src/components/Landing/TradeView/ActiveTrades/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/TradeView/ActiveTrades/style.scss -------------------------------------------------------------------------------- /src/components/Landing/TradeView/ActiveTrades/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/TradeView/ActiveTrades/template.html -------------------------------------------------------------------------------- /src/components/Landing/TradeView/RecentTrades/RecentTrades.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/TradeView/RecentTrades/RecentTrades.vue -------------------------------------------------------------------------------- /src/components/Landing/TradeView/RecentTrades/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/TradeView/RecentTrades/style.scss -------------------------------------------------------------------------------- /src/components/Landing/TradeView/RecentTrades/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/TradeView/RecentTrades/template.html -------------------------------------------------------------------------------- /src/components/Landing/TradeView/TradeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/TradeView/TradeView.vue -------------------------------------------------------------------------------- /src/components/Landing/TradeView/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/TradeView/style.scss -------------------------------------------------------------------------------- /src/components/Landing/TradeView/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/TradeView/template.html -------------------------------------------------------------------------------- /src/components/Landing/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Landing/template.html -------------------------------------------------------------------------------- /src/components/ModalBox/ModalBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/ModalBox/ModalBox.vue -------------------------------------------------------------------------------- /src/components/ModalBox/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/ModalBox/template.html -------------------------------------------------------------------------------- /src/components/Settings/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Settings.vue -------------------------------------------------------------------------------- /src/components/Settings/Trezor/AccountInfo/AccountInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/AccountInfo/AccountInfo.vue -------------------------------------------------------------------------------- /src/components/Settings/Trezor/AccountInfo/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/AccountInfo/style.scss -------------------------------------------------------------------------------- /src/components/Settings/Trezor/AccountInfo/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/AccountInfo/template.html -------------------------------------------------------------------------------- /src/components/Settings/Trezor/ReceivingAddress/ReceivingAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/ReceivingAddress/ReceivingAddress.vue -------------------------------------------------------------------------------- /src/components/Settings/Trezor/ReceivingAddress/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/ReceivingAddress/style.scss -------------------------------------------------------------------------------- /src/components/Settings/Trezor/ReceivingAddress/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/ReceivingAddress/template.html -------------------------------------------------------------------------------- /src/components/Settings/Trezor/SendMoney/SendMoney.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/SendMoney/SendMoney.vue -------------------------------------------------------------------------------- /src/components/Settings/Trezor/SendMoney/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/SendMoney/style.scss -------------------------------------------------------------------------------- /src/components/Settings/Trezor/SendMoney/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/SendMoney/template.html -------------------------------------------------------------------------------- /src/components/Settings/Trezor/Trezor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/Trezor.vue -------------------------------------------------------------------------------- /src/components/Settings/Trezor/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/style.scss -------------------------------------------------------------------------------- /src/components/Settings/Trezor/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/Trezor/template.html -------------------------------------------------------------------------------- /src/components/Settings/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/style.scss -------------------------------------------------------------------------------- /src/components/Settings/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Settings/template.html -------------------------------------------------------------------------------- /src/components/SideMenu/SideMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/SideMenu/SideMenu.vue -------------------------------------------------------------------------------- /src/components/SideMenu/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/SideMenu/style.scss -------------------------------------------------------------------------------- /src/components/SideMenu/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/SideMenu/template.html -------------------------------------------------------------------------------- /src/components/Spinner/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Spinner/Spinner.vue -------------------------------------------------------------------------------- /src/components/Spinner/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Spinner/style.scss -------------------------------------------------------------------------------- /src/components/Spinner/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Spinner/template.html -------------------------------------------------------------------------------- /src/components/TabBar/TabBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TabBar/TabBar.vue -------------------------------------------------------------------------------- /src/components/TabBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TabBar/style.scss -------------------------------------------------------------------------------- /src/components/TabBar/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TabBar/template.html -------------------------------------------------------------------------------- /src/components/TickerPage/MarginMarkets/MarginMarkets.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TickerPage/MarginMarkets/MarginMarkets.vue -------------------------------------------------------------------------------- /src/components/TickerPage/MarginMarkets/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TickerPage/MarginMarkets/style.scss -------------------------------------------------------------------------------- /src/components/TickerPage/MarginMarkets/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TickerPage/MarginMarkets/template.html -------------------------------------------------------------------------------- /src/components/TickerPage/TickerPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TickerPage/TickerPage.vue -------------------------------------------------------------------------------- /src/components/TickerPage/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TickerPage/style.scss -------------------------------------------------------------------------------- /src/components/TickerPage/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TickerPage/template.html -------------------------------------------------------------------------------- /src/components/TradeModal/TradeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TradeModal/TradeModal.vue -------------------------------------------------------------------------------- /src/components/TradeModal/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TradeModal/style.scss -------------------------------------------------------------------------------- /src/components/TradeModal/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TradeModal/template.html -------------------------------------------------------------------------------- /src/components/TradeModalMobile/TradeModalMobile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TradeModalMobile/TradeModalMobile.vue -------------------------------------------------------------------------------- /src/components/TradeModalMobile/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TradeModalMobile/style.scss -------------------------------------------------------------------------------- /src/components/TradeModalMobile/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/TradeModalMobile/template.html -------------------------------------------------------------------------------- /src/components/Withdrawl/CashWithdrawls/CashWithdrawls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Withdrawl/CashWithdrawls/CashWithdrawls.vue -------------------------------------------------------------------------------- /src/components/Withdrawl/CashWithdrawls/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Withdrawl/CashWithdrawls/template.html -------------------------------------------------------------------------------- /src/components/Withdrawl/CryptoWithdrawls/CryptoWithdrawls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Withdrawl/CryptoWithdrawls/CryptoWithdrawls.vue -------------------------------------------------------------------------------- /src/components/Withdrawl/CryptoWithdrawls/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Withdrawl/CryptoWithdrawls/template.html -------------------------------------------------------------------------------- /src/components/Withdrawl/Withdrawl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Withdrawl/Withdrawl.vue -------------------------------------------------------------------------------- /src/components/Withdrawl/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/components/Withdrawl/template.html -------------------------------------------------------------------------------- /src/eventBuses/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/eventBuses/default.js -------------------------------------------------------------------------------- /src/eventBuses/exchangeData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/eventBuses/exchangeData.js -------------------------------------------------------------------------------- /src/eventBuses/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/eventBuses/loader.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/main.js -------------------------------------------------------------------------------- /src/plugins/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/plugins/notifications.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/router.js -------------------------------------------------------------------------------- /src/services/ApiCurryBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/ApiCurryBase.js -------------------------------------------------------------------------------- /src/services/CryptoNewsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/CryptoNewsService.js -------------------------------------------------------------------------------- /src/services/DepositService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/DepositService.js -------------------------------------------------------------------------------- /src/services/HistoryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/HistoryService.js -------------------------------------------------------------------------------- /src/services/TradeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/TradeService.js -------------------------------------------------------------------------------- /src/services/TrezorService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/TrezorService.js -------------------------------------------------------------------------------- /src/services/WalletService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/WalletService.js -------------------------------------------------------------------------------- /src/services/WithdrawlService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/WithdrawlService.js -------------------------------------------------------------------------------- /src/services/binanceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/binanceService.js -------------------------------------------------------------------------------- /src/services/currencyLabelMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/currencyLabelMap.json -------------------------------------------------------------------------------- /src/services/exchangeSockets/bitmex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/exchangeSockets/bitmex.js -------------------------------------------------------------------------------- /src/services/exchangeSockets/hitbtc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/exchangeSockets/hitbtc.js -------------------------------------------------------------------------------- /src/services/exchangeSockets/newApiEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/exchangeSockets/newApiEngine.js -------------------------------------------------------------------------------- /src/services/exchangeSockets/new_binance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/exchangeSockets/new_binance.js -------------------------------------------------------------------------------- /src/services/exchangeSockets/new_bitfinex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/services/exchangeSockets/new_bitfinex.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/store.js -------------------------------------------------------------------------------- /src/utils/MockApiFailure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/utils/MockApiFailure.js -------------------------------------------------------------------------------- /src/utils/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/utils/localStorage.js -------------------------------------------------------------------------------- /src/utils/sessionStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/utils/sessionStorage.js -------------------------------------------------------------------------------- /src/utils/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/utils/utility.js -------------------------------------------------------------------------------- /src/utils/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/utils/validator.js -------------------------------------------------------------------------------- /src/views/home/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/views/home/Home.vue -------------------------------------------------------------------------------- /src/views/home/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/src/views/home/template.html -------------------------------------------------------------------------------- /tests/e2e/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/tests/e2e/.eslintrc -------------------------------------------------------------------------------- /tests/e2e/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/tests/e2e/plugins/index.js -------------------------------------------------------------------------------- /tests/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/tests/e2e/specs/test.js -------------------------------------------------------------------------------- /tests/e2e/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/tests/e2e/support/commands.js -------------------------------------------------------------------------------- /tests/e2e/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/tests/e2e/support/index.js -------------------------------------------------------------------------------- /tests/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/tests/unit/.eslintrc -------------------------------------------------------------------------------- /tests/unit/HelloWorld.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocknomic-technologies/open-trading-platform-UI/HEAD/tests/unit/HelloWorld.spec.js --------------------------------------------------------------------------------