├── .babelrc ├── .eslintignore ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── README_zh.md ├── app ├── .htaccess.example ├── App.jsx ├── AppInit.jsx ├── Deprecate.jsx ├── Main.js ├── __tests__ │ ├── components │ │ ├── Account │ │ │ └── Identicon-test.jsx │ │ └── Utility │ │ │ └── FormattedAsset-test.jsx │ ├── jest-preprocessor.js │ ├── utils │ │ └── stub_router_context.js │ └── wallets │ │ ├── bts0-9_key-export-fjfjfjfj1.json │ │ ├── test-wif-import.txt │ │ ├── testnet-shared-private-keys-export.json │ │ └── wallet_bts0-9_password.json ├── actions │ ├── AccountActions.js │ ├── AssetActions.js │ ├── BackupActions.js │ ├── BalanceClaimActiveActions.js │ ├── BlockchainActions.js │ ├── BrainkeyActions.js │ ├── CachedPropertyActions.js │ ├── CryptoBridgeActions.js │ ├── GatewayActions.js │ ├── IntlActions.js │ ├── MarketsActions.js │ ├── NotificationActions.js │ ├── PrivateKeyActions.js │ ├── SettingsActions.js │ ├── SignedMessageAction.js │ ├── TransactionConfirmActions.js │ ├── WalletActions.js │ └── WalletUnlockActions.js ├── alt-instance.js ├── api │ ├── ApplicationApi.js │ ├── DebugApi.js │ ├── WalletApi.js │ ├── accountApi.js │ └── apiConfig.js ├── assets │ ├── asset-symbols │ │ ├── atn.png │ │ ├── bkbt.png │ │ ├── bkt.png │ │ ├── blockpay.png │ │ ├── btc.png │ │ ├── btm.png │ │ ├── bto.png │ │ ├── bts.png │ │ ├── btsr.png │ │ ├── btwty.png │ │ ├── cny.png │ │ ├── dao.png │ │ ├── dash.png │ │ ├── dct.png │ │ ├── default@x2.png │ │ ├── dgb.png │ │ ├── dgd.png │ │ ├── dht.png │ │ ├── doge.png │ │ ├── egem.png │ │ ├── eos.png │ │ ├── eth.png │ │ ├── eur.png │ │ ├── eurt.png │ │ ├── game.png │ │ ├── gas.png │ │ ├── gbg.png │ │ ├── gdex.btc.png │ │ ├── gold.png │ │ ├── golos.png │ │ ├── grc.png │ │ ├── gxs.png │ │ ├── hempsweet.png │ │ ├── hero.png │ │ ├── hertz.png │ │ ├── icoo.png │ │ ├── incnt.png │ │ ├── kexcoin.png │ │ ├── krm.png │ │ ├── lisk.png │ │ ├── mkr.png │ │ ├── muse.png │ │ ├── neo.png │ │ ├── nxc.png │ │ ├── obits.png │ │ ├── oct.png │ │ ├── open.btc.png │ │ ├── peerplays.png │ │ ├── ppy.png │ │ ├── qtum.png │ │ ├── ruble.png │ │ ├── rudex.btc.png │ │ ├── sbd.png │ │ ├── scr.png │ │ ├── silver.png │ │ ├── smoke.png │ │ ├── stealth.png │ │ ├── steem.png │ │ ├── symbols.js │ │ ├── tt.png │ │ ├── tusd.png │ │ ├── usd.png │ │ ├── usdt.png │ │ ├── waves.png │ │ ├── xmr.png │ │ ├── xrp.png │ │ ├── yoyow.png │ │ ├── zec.png │ │ ├── zeph.png │ │ └── zrx.png │ ├── bts_genesiskeys_bloom.dat │ ├── colors.js │ ├── favicon.ico │ ├── fresh-bolt2.png │ ├── index-dev.html │ ├── index-electron.html │ ├── index.hbs │ ├── intl-data │ │ └── en.json │ ├── language-dropdown │ │ ├── FR.png │ │ ├── US.png │ │ ├── flagConstants.js │ │ ├── flags.js │ │ └── img │ │ │ ├── AD.png │ │ │ ├── AE.png │ │ │ ├── AF.png │ │ │ ├── AG.png │ │ │ ├── AI.png │ │ │ ├── AL.png │ │ │ ├── AM.png │ │ │ ├── AN.png │ │ │ ├── AO.png │ │ │ ├── AQ.png │ │ │ ├── AR.png │ │ │ ├── AS.png │ │ │ ├── AT.png │ │ │ ├── AU.png │ │ │ ├── AW.png │ │ │ ├── AX.png │ │ │ ├── AZ.png │ │ │ ├── BA.png │ │ │ ├── BB.png │ │ │ ├── BD.png │ │ │ ├── BE.png │ │ │ ├── BF.png │ │ │ ├── BG.png │ │ │ ├── BH.png │ │ │ ├── BI.png │ │ │ ├── BJ.png │ │ │ ├── BL.png │ │ │ ├── BM.png │ │ │ ├── BN.png │ │ │ ├── BO.png │ │ │ ├── BR.png │ │ │ ├── BS.png │ │ │ ├── BT.png │ │ │ ├── BW.png │ │ │ ├── BY.png │ │ │ ├── BZ.png │ │ │ ├── CA.png │ │ │ ├── CC.png │ │ │ ├── CD.png │ │ │ ├── CF.png │ │ │ ├── CG.png │ │ │ ├── CH.png │ │ │ ├── CI.png │ │ │ ├── CK.png │ │ │ ├── CL.png │ │ │ ├── CM.png │ │ │ ├── CO.png │ │ │ ├── CR.png │ │ │ ├── CU.png │ │ │ ├── CV.png │ │ │ ├── CW.png │ │ │ ├── CX.png │ │ │ ├── CY.png │ │ │ ├── CZ.png │ │ │ ├── DE.png │ │ │ ├── DJ.png │ │ │ ├── DK.png │ │ │ ├── DM.png │ │ │ ├── DO.png │ │ │ ├── DZ.png │ │ │ ├── EC.png │ │ │ ├── EE.png │ │ │ ├── EG.png │ │ │ ├── EH.png │ │ │ ├── ER.png │ │ │ ├── ES.png │ │ │ ├── ET.png │ │ │ ├── EU.png │ │ │ ├── FI.png │ │ │ ├── FJ.png │ │ │ ├── FK.png │ │ │ ├── FM.png │ │ │ ├── FO.png │ │ │ ├── FR.png │ │ │ ├── GA.png │ │ │ ├── GB.png │ │ │ ├── GD.png │ │ │ ├── GE.png │ │ │ ├── GG.png │ │ │ ├── GH.png │ │ │ ├── GI.png │ │ │ ├── GL.png │ │ │ ├── GM.png │ │ │ ├── GN.png │ │ │ ├── GQ.png │ │ │ ├── GR.png │ │ │ ├── GS.png │ │ │ ├── GT.png │ │ │ ├── GU.png │ │ │ ├── GW.png │ │ │ ├── GY.png │ │ │ ├── HK.png │ │ │ ├── HN.png │ │ │ ├── HR.png │ │ │ ├── HT.png │ │ │ ├── HU.png │ │ │ ├── IC.png │ │ │ ├── ID.png │ │ │ ├── IE.png │ │ │ ├── IL.png │ │ │ ├── IM.png │ │ │ ├── IN.png │ │ │ ├── IQ.png │ │ │ ├── IR.png │ │ │ ├── IS.png │ │ │ ├── IT.png │ │ │ ├── JA.png │ │ │ ├── JE.png │ │ │ ├── JM.png │ │ │ ├── JO.png │ │ │ ├── KE.png │ │ │ ├── KG.png │ │ │ ├── KH.png │ │ │ ├── KI.png │ │ │ ├── KM.png │ │ │ ├── KN.png │ │ │ ├── KP.png │ │ │ ├── KR.png │ │ │ ├── KW.png │ │ │ ├── KY.png │ │ │ ├── KZ.png │ │ │ ├── LA.png │ │ │ ├── LB.png │ │ │ ├── LC.png │ │ │ ├── LI.png │ │ │ ├── LK.png │ │ │ ├── LR.png │ │ │ ├── LS.png │ │ │ ├── LT.png │ │ │ ├── LU.png │ │ │ ├── LV.png │ │ │ ├── LY.png │ │ │ ├── MA.png │ │ │ ├── MC.png │ │ │ ├── MD.png │ │ │ ├── ME.png │ │ │ ├── MF.png │ │ │ ├── MG.png │ │ │ ├── MH.png │ │ │ ├── MK.png │ │ │ ├── ML.png │ │ │ ├── MM.png │ │ │ ├── MN.png │ │ │ ├── MO.png │ │ │ ├── MP.png │ │ │ ├── MQ.png │ │ │ ├── MR.png │ │ │ ├── MS.png │ │ │ ├── MT.png │ │ │ ├── MU.png │ │ │ ├── MV.png │ │ │ ├── MW.png │ │ │ ├── MX.png │ │ │ ├── MY.png │ │ │ ├── MZ.png │ │ │ ├── NA.png │ │ │ ├── NC.png │ │ │ ├── NE.png │ │ │ ├── NF.png │ │ │ ├── NG.png │ │ │ ├── NI.png │ │ │ ├── NL.png │ │ │ ├── NO.png │ │ │ ├── NP.png │ │ │ ├── NR.png │ │ │ ├── NU.png │ │ │ ├── NZ.png │ │ │ ├── OM.png │ │ │ ├── PA.png │ │ │ ├── PE.png │ │ │ ├── PF.png │ │ │ ├── PG.png │ │ │ ├── PH.png │ │ │ ├── PK.png │ │ │ ├── PL.png │ │ │ ├── PN.png │ │ │ ├── PR.png │ │ │ ├── PS.png │ │ │ ├── PT.png │ │ │ ├── PW.png │ │ │ ├── PY.png │ │ │ ├── QA.png │ │ │ ├── RO.png │ │ │ ├── RS.png │ │ │ ├── RU.png │ │ │ ├── RW.png │ │ │ ├── SA.png │ │ │ ├── SB.png │ │ │ ├── SC.png │ │ │ ├── SD.png │ │ │ ├── SE.png │ │ │ ├── SG.png │ │ │ ├── SH.png │ │ │ ├── SI.png │ │ │ ├── SK.png │ │ │ ├── SL.png │ │ │ ├── SM.png │ │ │ ├── SN.png │ │ │ ├── SO.png │ │ │ ├── SR.png │ │ │ ├── SS.png │ │ │ ├── ST.png │ │ │ ├── SV.png │ │ │ ├── SY.png │ │ │ ├── SZ.png │ │ │ ├── TC.png │ │ │ ├── TD.png │ │ │ ├── TF.png │ │ │ ├── TG.png │ │ │ ├── TH.png │ │ │ ├── TJ.png │ │ │ ├── TK.png │ │ │ ├── TL.png │ │ │ ├── TM.png │ │ │ ├── TN.png │ │ │ ├── TO.png │ │ │ ├── TR.png │ │ │ ├── TT.png │ │ │ ├── TV.png │ │ │ ├── TW.png │ │ │ ├── TZ.png │ │ │ ├── UA.png │ │ │ ├── UG.png │ │ │ ├── US.png │ │ │ ├── UY.png │ │ │ ├── UZ.png │ │ │ ├── VA.png │ │ │ ├── VC.png │ │ │ ├── VE.png │ │ │ ├── VG.png │ │ │ ├── VI.png │ │ │ ├── VN.png │ │ │ ├── VU.png │ │ │ ├── WF.png │ │ │ ├── WS.png │ │ │ ├── YE.png │ │ │ ├── YT.png │ │ │ ├── ZA.png │ │ │ ├── ZH.png │ │ │ ├── ZM.png │ │ │ └── ZW.png │ ├── loader.js │ ├── locales-fixup.js │ ├── locales.js │ ├── locales │ │ ├── locale-de.json │ │ ├── locale-en.json │ │ ├── locale-es.json │ │ ├── locale-fr.json │ │ ├── locale-it.json │ │ ├── locale-ja.json │ │ ├── locale-ko.json │ │ ├── locale-ru.json │ │ ├── locale-tr.json │ │ └── locale-zh.json │ ├── logo-404-dark.png │ ├── logo-404-light.png │ ├── logo-404-midnight.png │ ├── logo-cryptobridge.png │ ├── other │ │ ├── benchmark.png │ │ ├── other.js │ │ └── secure-login-address.png │ ├── qr.png │ ├── stylesheets │ │ ├── _shame.scss │ │ ├── app.scss │ │ ├── base │ │ │ ├── _all.scss │ │ │ ├── _colors.scss │ │ │ └── _fonts.scss │ │ ├── components │ │ │ ├── _account-create.scss │ │ │ ├── _account.scss │ │ │ ├── _all.scss │ │ │ ├── _bitkapital.scss │ │ │ ├── _blocktrades.scss │ │ │ ├── _cards.scss │ │ │ ├── _console.scss │ │ │ ├── _dashboard.scss │ │ │ ├── _exchange.scss │ │ │ ├── _existing_accounts.scss │ │ │ ├── _footer.scss │ │ │ ├── _forms.scss │ │ │ ├── _header.scss │ │ │ ├── _help.scss │ │ │ ├── _incognito.scss │ │ │ ├── _loading-indicator.scss │ │ │ ├── _messages.scss │ │ │ ├── _modal.scss │ │ │ ├── _page404.scss │ │ │ ├── _pagination.scss │ │ │ ├── _rudex.scss │ │ │ ├── _settings.scss │ │ │ ├── _tables.scss │ │ │ ├── _tabs.scss │ │ │ ├── _typeahead.scss │ │ │ ├── _wallet.scss │ │ │ └── cb │ │ │ │ ├── _competition.scss │ │ │ │ └── _support.scss │ │ ├── layout │ │ │ ├── _all.scss │ │ │ └── _page_layout.scss │ │ ├── themes │ │ │ ├── _all.scss │ │ │ ├── _dark-theme.scss │ │ │ ├── _light-theme.scss │ │ │ ├── _midnight-theme.scss │ │ │ └── _theme-template.scss │ │ ├── utils │ │ │ ├── _all.scss │ │ │ └── _utils.scss │ │ └── vendors │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Regular.woff │ │ │ ├── RobotoCondensed-Regular.woff │ │ │ ├── _all.scss │ │ │ ├── _foundation_overrides.scss │ │ │ ├── _foundation_settings.scss │ │ │ ├── _perfect-scrollbar.scss │ │ │ ├── introjs-dark-theme.scss │ │ │ ├── introjs-light-theme.scss │ │ │ └── introjs-midnight-theme.scss │ ├── ul-arrow-black.png │ └── ul-arrow.png ├── components │ ├── Account │ │ ├── AccountAssetCreate.jsx │ │ ├── AccountAssetUpdate.jsx │ │ ├── AccountAssets.jsx │ │ ├── AccountBalance.jsx │ │ ├── AccountDepositWithdraw.jsx │ │ ├── AccountImage.jsx │ │ ├── AccountInfo.jsx │ │ ├── AccountLeftPanel.jsx │ │ ├── AccountMembership.jsx │ │ ├── AccountOrders.jsx │ │ ├── AccountOverview.jsx │ │ ├── AccountPage.jsx │ │ ├── AccountPermissions.jsx │ │ ├── AccountPermissionsList.jsx │ │ ├── AccountPermissionsMigrate.jsx │ │ ├── AccountRewards.jsx │ │ ├── AccountSelector.jsx │ │ ├── AccountSignedMessages.jsx │ │ ├── AccountStakeCreateNew.jsx │ │ ├── AccountStaking.jsx │ │ ├── AccountTreemap.jsx │ │ ├── AccountVesting.jsx │ │ ├── AccountVoting.jsx │ │ ├── AccountVotingProxy.jsx │ │ ├── AccountWhitelist.jsx │ │ ├── AssetFeedProducers.jsx │ │ ├── AssetWhitelist.jsx │ │ ├── BalanceWrapper.jsx │ │ ├── Connections.jsx │ │ ├── CreateAccount.jsx │ │ ├── CreateAccountPassword.jsx │ │ ├── CreateWorker.jsx │ │ ├── FundFeePool.jsx │ │ ├── Identicon.jsx │ │ ├── MarginPositions.jsx │ │ ├── NestedApprovalState.jsx │ │ ├── NestedApprovalStateLib.jsx │ │ ├── Proposals.jsx │ │ ├── RecentTransactions.jsx │ │ ├── SignedMessage.jsx │ │ ├── Statistics.jsx │ │ ├── VotingAccountsList.jsx │ │ └── WorkerApproval.jsx │ ├── Blockchain │ │ ├── Asset.jsx │ │ ├── Block.jsx │ │ ├── BlockContainer.jsx │ │ ├── BlockTime.jsx │ │ ├── Fees.jsx │ │ ├── FeesContainer.jsx │ │ ├── MemoText.jsx │ │ ├── Operation.jsx │ │ ├── ProposedOperation.jsx │ │ ├── Transaction.jsx │ │ ├── TransactionConfirm.jsx │ │ ├── json-inspector.scss │ │ └── operations.scss │ ├── BrowserNotifications │ │ ├── BrowserNotifications.jsx │ │ └── BrowserNotificationsContainer.jsx │ ├── Console │ │ └── Console.jsx │ ├── CryptoBridge │ │ ├── Benchmark.jsx │ │ └── TradingCompetitionPage.jsx │ ├── Dashboard │ │ ├── AccountCard.jsx │ │ ├── CryptoBridgeNews.jsx │ │ ├── Dashboard.jsx │ │ ├── DashboardAccountsOnly.jsx │ │ ├── DashboardList.jsx │ │ ├── DashboardPage.jsx │ │ ├── Markets.jsx │ │ ├── MarketsTable.jsx │ │ ├── SimpleDepositBlocktradesBridge.jsx │ │ └── SimpleDepositWithdraw.jsx │ ├── DepositWithdraw │ │ ├── BitKapital.jsx │ │ ├── BlockTradesGateway.jsx │ │ ├── DepositWithdrawAssetSelector.js │ │ ├── WithdrawModal.jsx │ │ ├── blocktrades │ │ │ ├── BlockTradesBridgeDepositRequest.jsx │ │ │ ├── BlockTradesGatewayDepositRequest.jsx │ │ │ └── WithdrawModalBlocktrades.jsx │ │ ├── cryptobridge │ │ │ ├── CryptoBridgeDepositAccept.jsx │ │ │ ├── CryptoBridgeGateway.jsx │ │ │ ├── CryptoBridgeGatewayDepositRequest.jsx │ │ │ └── CryptoBridgeWithdrawModal.jsx │ │ ├── gdex │ │ │ ├── GdexAgreementModal.jsx │ │ │ ├── GdexGateway.jsx │ │ │ ├── GdexGatewayInfo.jsx │ │ │ ├── GdexHistory.jsx │ │ │ └── GdexWithdrawModal.jsx │ │ ├── openledger │ │ │ ├── DepositFiatOpenLedger.jsx │ │ │ ├── OpenLedgerFiatDepositWithdrawal.jsx │ │ │ ├── OpenLedgerFiatTransactionHistory.jsx │ │ │ ├── WithdrawFiatOpenLedger.jsx │ │ │ └── gatewayCoins.json │ │ ├── rudex │ │ │ ├── RuDexGateway.jsx │ │ │ ├── RuDexGatewayDepositRequest.jsx │ │ │ └── RuDexWithdrawModal.jsx │ │ └── winex │ │ │ ├── WinexGateway.jsx │ │ │ ├── WinexGatewayRequest.jsx │ │ │ ├── WinexRecentTransactions.jsx │ │ │ └── WinexWithdrawModal.jsx │ ├── Exchange │ │ ├── BuySell.jsx │ │ ├── ConfirmOrderModal.jsx │ │ ├── DepthHighChart.jsx │ │ ├── Exchange.jsx │ │ ├── ExchangeContainer.jsx │ │ ├── ExchangeHeader.jsx │ │ ├── ExchangeHeaderCollateral.jsx │ │ ├── ExchangeInput.jsx │ │ ├── MarketHistory.jsx │ │ ├── MarketPicker.jsx │ │ ├── MarketRow.jsx │ │ ├── Markets.jsx │ │ ├── MarketsContainer.jsx │ │ ├── MyMarkets.jsx │ │ ├── MyOpenOrders.jsx │ │ ├── OpenSettleOrders.jsx │ │ ├── OrderBook.jsx │ │ ├── PriceChartD3.jsx │ │ ├── PriceStat.jsx │ │ ├── PriceStatWithLabel.jsx │ │ ├── TradingViewPriceChart.jsx │ │ └── tradingViewClasses.js │ ├── Explorer │ │ ├── Accounts.jsx │ │ ├── AccountsContainer.jsx │ │ ├── Assets.jsx │ │ ├── AssetsContainer.jsx │ │ ├── Blocks.jsx │ │ ├── BlocksContainer.jsx │ │ ├── BlocktimeChart.jsx │ │ ├── CommitteeMembers.jsx │ │ ├── Explorer.jsx │ │ ├── TransactionChart.jsx │ │ ├── Witnesses.jsx │ │ └── witnesses.scss │ ├── Forms │ │ ├── AccountNameInput.jsx │ │ ├── AccountSelect.jsx │ │ ├── AutocompleteInput.jsx │ │ ├── MyAccounts.jsx │ │ ├── PasswordInput.jsx │ │ ├── PubKeyInput.jsx │ │ └── RefcodeInput.jsx │ ├── Help.jsx │ ├── Icon │ │ ├── Icon.jsx │ │ ├── PulseIcon.js │ │ ├── adjust.svg │ │ ├── assets.svg │ │ ├── benchmark.svg │ │ ├── checkmark-circle.svg │ │ ├── chevron-down.svg │ │ ├── clippy.svg │ │ ├── clock.svg │ │ ├── cog.svg │ │ ├── cogs.svg │ │ ├── connect.svg │ │ ├── connected.svg │ │ ├── cross-circle.svg │ │ ├── dashboard.svg │ │ ├── deposit.svg │ │ ├── disconnected.svg │ │ ├── dollar-green.svg │ │ ├── dollar.svg │ │ ├── download.svg │ │ ├── excel.svg │ │ ├── eye-striked.svg │ │ ├── eye.svg │ │ ├── fi-star.svg │ │ ├── filter.svg │ │ ├── folder.svg │ │ ├── globe.svg │ │ ├── hamburger-x.svg │ │ ├── hamburger.svg │ │ ├── hourglass.svg │ │ ├── icon.scss │ │ ├── info-circle-o.svg │ │ ├── key.svg │ │ ├── list.svg │ │ ├── locked.svg │ │ ├── minus-circle.svg │ │ ├── moon.svg │ │ ├── news.svg │ │ ├── photo-camera.svg │ │ ├── plus-circle.svg │ │ ├── power.svg │ │ ├── question-circle.svg │ │ ├── server.svg │ │ ├── settle.svg │ │ ├── share.svg │ │ ├── shuffle.svg │ │ ├── sun.svg │ │ ├── support.svg │ │ ├── text.svg │ │ ├── thumb-tack.svg │ │ ├── thumb-untack.svg │ │ ├── thumbs-up.svg │ │ ├── times.svg │ │ ├── trade.svg │ │ ├── transfer.svg │ │ ├── unlocked.svg │ │ ├── user.svg │ │ ├── warning.svg │ │ ├── withdraw.svg │ │ └── zoom.svg │ ├── InitError.jsx │ ├── Layout │ │ ├── Footer.jsx │ │ ├── Header.jsx │ │ ├── Incognito.jsx │ │ └── Messages.jsx │ ├── LoadingIndicator.jsx │ ├── LoginSelector.jsx │ ├── Modal │ │ ├── BaseModal.jsx │ │ ├── BorrowModal.jsx │ │ ├── BrowserSupportModal.jsx │ │ ├── ConfirmModal.jsx │ │ ├── DepositModal.jsx │ │ ├── IssueModal.jsx │ │ ├── ProposalApproveModal.jsx │ │ ├── QrcodeModal.jsx │ │ ├── ReserveAssetModal.jsx │ │ ├── SendModal.jsx │ │ ├── SettleModal.jsx │ │ ├── TosModal.jsx │ │ └── WithdrawModalNew.jsx │ ├── News.jsx │ ├── Notifier │ │ ├── Notifier.jsx │ │ └── NotifierContainer.jsx │ ├── Page404 │ │ └── Page404.jsx │ ├── PrivateKeyView.jsx │ ├── QRAddressScanner.jsx │ ├── QRScanner.jsx │ ├── Settings │ │ ├── AccessSettings.jsx │ │ ├── AccountsSettings.jsx │ │ ├── BackupFavorites.jsx │ │ ├── BackupSettings.jsx │ │ ├── PasswordSettings.jsx │ │ ├── ResetSettings.jsx │ │ ├── RestoreFavorites.jsx │ │ ├── RestoreSettings.jsx │ │ ├── Settings.jsx │ │ ├── SettingsContainer.jsx │ │ ├── SettingsEntry.jsx │ │ ├── WalletSettings.jsx │ │ └── WebsocketAddModal.jsx │ ├── Support │ │ ├── CBModal.jsx │ │ ├── CoinsDropdown.jsx │ │ ├── Constants.js │ │ ├── ExplorerCheck.jsx │ │ ├── FaqSearch.jsx │ │ ├── MessageComposer.jsx │ │ ├── NewTicketModal.jsx │ │ ├── NewTicketModal │ │ │ └── DepositWithdrawForm.jsx │ │ ├── Notification.jsx │ │ ├── Support.jsx │ │ ├── SupportPage.jsx │ │ ├── SupportUtils.js │ │ ├── Ticket.jsx │ │ ├── TicketsMenu.jsx │ │ ├── actions │ │ │ └── SupportActions.js │ │ └── stores │ │ │ └── SupportStore.js │ ├── SyncError.jsx │ ├── Transfer │ │ ├── Invoice.jsx │ │ ├── Transfer.jsx │ │ └── transfer.scss │ ├── Utility │ │ ├── AccountName.jsx │ │ ├── AmountSelector.jsx │ │ ├── AssetDepositFeeWarning.jsx │ │ ├── AssetImage.jsx │ │ ├── AssetInfo.jsx │ │ ├── AssetName.jsx │ │ ├── AssetSelector.jsx │ │ ├── AssetTraidingPairInfo.jsx │ │ ├── AssetWrapper.jsx │ │ ├── BalanceComponent.jsx │ │ ├── BindToChainState.jsx │ │ ├── BlockDate.jsx │ │ ├── ChainResolveComponents.jsx │ │ ├── ChainTypes.js │ │ ├── CheckUrlWarning.jsx │ │ ├── CopyButton.jsx │ │ ├── EquivalentPrice.jsx │ │ ├── EquivalentValueComponent.jsx │ │ ├── FloatingDropdown.jsx │ │ ├── FormattedAsset.jsx │ │ ├── FormattedFee.jsx │ │ ├── FormattedPrice.jsx │ │ ├── FormattedTime.jsx │ │ ├── HelpContent.jsx │ │ ├── LazyImage.js │ │ ├── LinkToAccountById.jsx │ │ ├── LinkToAssetById.jsx │ │ ├── LinkToWitnessById.jsx │ │ ├── LoadingButton.jsx │ │ ├── MarketChangeComponent.jsx │ │ ├── MarketLink.jsx │ │ ├── MarketPrice.jsx │ │ ├── MarketStatsCheck.jsx │ │ ├── PriceText.jsx │ │ ├── Prototypes.js │ │ ├── Pulsate.jsx │ │ ├── ReCAPTCHA.jsx │ │ ├── Tabs.jsx │ │ ├── TimeAgo.jsx │ │ ├── TotalBalanceValue.jsx │ │ ├── TransitionWrapper.jsx │ │ ├── TranslateWithLinks.jsx │ │ ├── TypeAhead.js │ │ ├── VestingBalance.jsx │ │ └── intlData.js │ └── Wallet │ │ ├── Backup.jsx │ │ ├── BackupBrainkey.jsx │ │ ├── BalanceClaimActive.jsx │ │ ├── BalanceClaimAssetTotal.jsx │ │ ├── BalanceClaimByAsset.jsx │ │ ├── BalanceClaimSelector.jsx │ │ ├── Brainkey.jsx │ │ ├── BrainkeyInput.jsx │ │ ├── ExistingAccount.jsx │ │ ├── ImportKeys.jsx │ │ ├── ImportKeys.scss │ │ ├── LoginTypeSelector.jsx │ │ ├── PasswordConfirm.jsx │ │ ├── WalletChangePassword.jsx │ │ ├── WalletCreate.jsx │ │ ├── WalletManager.jsx │ │ ├── WalletUnlockModal.jsx │ │ └── WalletUnlockModalLib.jsx ├── counterpart-instance.js ├── dl_cli_index.js ├── help │ ├── en │ │ ├── accounts │ │ │ ├── general.md │ │ │ ├── membership.md │ │ │ ├── permissions.md │ │ │ └── proposed.md │ │ ├── assets │ │ │ ├── Asset.md │ │ │ ├── EUR.md │ │ │ ├── USD.md │ │ │ ├── mpa.md │ │ │ ├── privbitassets.md │ │ │ └── uia.md │ │ ├── components │ │ │ ├── AccountAssetCreate.md │ │ │ ├── AccountMembership.md │ │ │ ├── AccountPermActive.md │ │ │ ├── AccountPermMemo.md │ │ │ ├── AccountPermOwner.md │ │ │ ├── AccountVoting.md │ │ │ ├── AccountVotingCommittee.md │ │ │ ├── AccountVotingProxy.md │ │ │ ├── AccountVotingWitnesses.md │ │ │ ├── AccountVotingWorkers.md │ │ │ ├── BorrowModal.md │ │ │ ├── BorrowModalPrediction.md │ │ │ ├── DepositWithdraw.md │ │ │ ├── Fees.md │ │ │ └── InitError.md │ │ ├── dex │ │ │ ├── introduction.md │ │ │ ├── shorting.md │ │ │ └── trading.md │ │ ├── gateways │ │ │ ├── cryptobridge.md │ │ │ ├── openledger.md │ │ │ ├── rudex.md │ │ │ └── winex.md │ │ ├── glossary.md │ │ ├── index.md │ │ ├── introduction │ │ │ ├── backups.md │ │ │ ├── bitshares.md │ │ │ ├── blockchain.md │ │ │ ├── bridges_gateways.md │ │ │ ├── cryptobridge.md │ │ │ └── wallets.md │ │ ├── toc.md │ │ └── voting.md │ ├── es │ │ ├── accounts │ │ │ └── general.md │ │ └── toc.md │ ├── ja │ │ └── components │ │ │ ├── AccountMembership.md │ │ │ ├── BorrowModal.md │ │ │ └── DepositWithdraw.md │ ├── ru │ │ ├── accounts │ │ │ ├── general.md │ │ │ ├── membership.md │ │ │ └── permissions.md │ │ ├── assets │ │ │ ├── Asset.md │ │ │ ├── EUR.md │ │ │ ├── USD.md │ │ │ ├── mpa.md │ │ │ ├── privbitassets.md │ │ │ └── uia.md │ │ ├── components │ │ │ ├── AccountAssetCreate.md │ │ │ ├── AccountMembership.md │ │ │ ├── AccountPermActive.md │ │ │ ├── AccountPermMemo.md │ │ │ ├── AccountPermOwner.md │ │ │ ├── AccountVoting.md │ │ │ ├── AccountVotingCommittee.md │ │ │ ├── AccountVotingProxy.md │ │ │ ├── AccountVotingWitnesses.md │ │ │ ├── AccountVotingWorkers.md │ │ │ ├── BorrowModal.md │ │ │ ├── BorrowModalPrediction.md │ │ │ ├── DepositWithdraw.md │ │ │ ├── Fees.md │ │ │ └── InitError.md │ │ ├── dex │ │ │ ├── introduction.md │ │ │ ├── shorting.md │ │ │ └── trading.md │ │ ├── gateways │ │ │ ├── cryptobridge.md │ │ │ ├── openledger.md │ │ │ └── rudex.md │ │ ├── glossary.md │ │ ├── index.md │ │ ├── introduction │ │ │ ├── backups.md │ │ │ ├── bitshares.md │ │ │ ├── blockchain.md │ │ │ ├── bridges_gateways.md │ │ │ ├── committee.md │ │ │ ├── wallets.md │ │ │ ├── witness.md │ │ │ └── workers.md │ │ └── toc.md │ ├── tr │ │ ├── accounts │ │ │ ├── general.md │ │ │ ├── membership.md │ │ │ └── permissions.md │ │ ├── assets │ │ │ ├── Asset.md │ │ │ ├── EUR.md │ │ │ ├── USD.md │ │ │ ├── mpa.md │ │ │ ├── privbitassets.md │ │ │ └── uia.md │ │ ├── components │ │ │ ├── AccountAssetCreate.md │ │ │ ├── AccountMembership.md │ │ │ ├── AccountPermActive.md │ │ │ ├── AccountPermMemo.md │ │ │ ├── AccountPermOwner.md │ │ │ ├── AccountVoting.md │ │ │ ├── AccountVotingCommittee.md │ │ │ ├── AccountVotingProxy.md │ │ │ ├── AccountVotingWitnesses.md │ │ │ ├── AccountVotingWorkers.md │ │ │ ├── BorrowModal.md │ │ │ ├── DepositWithdraw.md │ │ │ ├── Fees.md │ │ │ └── InitError.md │ │ ├── dex │ │ │ ├── introduction.md │ │ │ ├── shorting.md │ │ │ └── trading.md │ │ ├── glossary.md │ │ ├── index.md │ │ ├── introduction │ │ │ ├── backups.md │ │ │ ├── bitshares.md │ │ │ ├── blockchain.md │ │ │ ├── committee.md │ │ │ ├── wallets.md │ │ │ ├── witness.md │ │ │ └── workers.md │ │ └── toc.md │ └── zh │ │ ├── accounts │ │ ├── general.md │ │ ├── membership.md │ │ └── permissions.md │ │ ├── assets │ │ ├── EUR.md │ │ ├── USD.md │ │ ├── mpa.md │ │ ├── privbitassets.md │ │ └── uia.md │ │ ├── components │ │ ├── AccountAssetCreate.md │ │ ├── AccountMembership.md │ │ ├── AccountPermActive.md │ │ ├── AccountPermMemo.md │ │ ├── AccountPermOwner.md │ │ ├── AccountVoting.md │ │ ├── AccountVotingCommittee.md │ │ ├── AccountVotingProxy.md │ │ ├── AccountVotingWitnesses.md │ │ ├── AccountVotingWorkers.md │ │ ├── BorrowModal.md │ │ ├── DepositWithdraw.md │ │ ├── Fees.md │ │ └── InitError.md │ │ ├── dex │ │ ├── introduction.md │ │ ├── shorting.md │ │ └── trading.md │ │ ├── glossary.md │ │ ├── index.md │ │ ├── introduction │ │ ├── backups.md │ │ ├── bitshares.md │ │ ├── blockchain.md │ │ ├── bridges_gateways.md │ │ ├── committee.md │ │ ├── wallets.md │ │ ├── witness.md │ │ └── workers.md │ │ └── toc.md ├── idb-helper.js ├── idb-instance.js ├── idb-root.js ├── index-dev.js ├── index.js ├── lib │ ├── chain │ │ ├── GenesisFilter.js │ │ ├── account_constants.js │ │ ├── asset_constants.js │ │ ├── chainIds.js │ │ └── serializer_config.coffee │ ├── common │ │ ├── AccountUtils.js │ │ ├── BlockTradesDepositAddressCache.js │ │ ├── Counterpart.js │ │ ├── GdexCache.js │ │ ├── MarketClasses.js │ │ ├── RuDexDepositAddressCache.js │ │ ├── RuDexMethods.js │ │ ├── accountHelper.js │ │ ├── account_utils.js │ │ ├── assetGatewayMixin.js │ │ ├── asset_utils.js │ │ ├── backupUtils.js │ │ ├── base58.coffee │ │ ├── dictionary_en.json │ │ ├── formPost.js │ │ ├── gatewayMethods.js │ │ ├── gatewayUtils.js │ │ ├── gateways.js │ │ ├── gdexMethods.js │ │ ├── localStorage.js │ │ ├── localStorageImpl.js │ │ ├── market_utils.js │ │ ├── permission_utils.js │ │ ├── qr-image.coffee │ │ ├── reactUtils.js │ │ ├── secureRandom.coffee │ │ ├── titleUtils.js │ │ ├── trxHelper.js │ │ └── utils.js │ ├── feature_detect │ │ ├── browser.js │ │ ├── incognito.js │ │ └── index.js │ └── workers │ │ ├── AddressIndexWorker.js │ │ ├── AesWorker.js │ │ └── GenesisFilterWorker.js ├── routerTransition.js ├── stores │ ├── AccountRefsStore.js │ ├── AccountStore.js │ ├── AddressIndex.js │ ├── AssetStore.js │ ├── BackupStore.js │ ├── BalanceClaimActiveStore.js │ ├── BaseStore.js │ ├── BlockchainStore.js │ ├── BrainkeyStore.js │ ├── CachedPropertyStore.js │ ├── CryptoBridgeStore.js │ ├── GatewayStore.js │ ├── ImportKeysStore.js │ ├── IntlStore.js │ ├── MarketsStore.js │ ├── NotificationStore.js │ ├── PrivateKeyStore.js │ ├── SettingsStore.js │ ├── TransactionConfirmStore.js │ ├── WalletDb.js │ ├── WalletManagerStore.js │ ├── WalletUnlockStore.js │ └── tcomb_structs.js └── test │ ├── README.txt │ ├── marketBenchmark.js │ ├── marketTests.js │ ├── test_helper.coffee │ └── wallet_action_test.js ├── appveyor.yml ├── bloom_filter ├── bloom.py ├── bloom_bitshares.dat ├── bloom_filter_wallet.js └── package.json ├── bower.json ├── build.sh ├── charting_library ├── charting_library.min.js └── static │ ├── base.scss │ ├── bundles │ ├── 13.280894673316ad6ac6f2.js │ ├── crosshair.6c091f7d5427d0c5e6d9dc3a90eb2b20.cur │ ├── dot.ed68e83c16f77203e73dbc4c3a7c7fa1.cur │ ├── ds-property-pages.1a3d233b8aa4552a7048.js │ ├── editobjectdialog.25fa62e6b4f8125e697e.js │ ├── eraser.0579d40b812fa2c3ffe72e5803a6e14c.cur │ ├── go-to-date-dialog-impl.5faeb6b7a961fd527d9b.js │ ├── grab.bc156522a6b55a60be9fae15c14b66c5.cur │ ├── grabbing.1c0862a8a8c0fb02885557bc97fdafe7.cur │ ├── ie-fallback-logos.b27f679ee44b7d0992e1.js │ ├── lazy-jquery-ui.1803178846ddad426aeb.js │ ├── lazy-velocity.97588d47c84409f2bc4b.js │ ├── library.19c99ed5d0307c67f071.js │ ├── library.a8de6f8cf4dda6895071c6ec45f900d9.css │ ├── lt-pane-views.96fd54d9b7bad567d490.js │ ├── objecttreedialog.3f22589e98a1cedf9028.js │ ├── propertypagesfactory.54b21a18753b2d8c83c2.js │ ├── symbol-info-dialog-impl.f6bc55c14cd39967110a.js │ ├── take-chart-image-dialog-impl.5ae42a6bc17c617b055f.js │ ├── vendors.a94ef44ed5c201cefcf6ad7460788c1a.css │ ├── vendors.fd8604c09abed9f6643a.js │ └── zoom.e21f24dd632c7069139bc47ae89c54b5.cur │ ├── darkTheme.css │ ├── darkTheme.scss │ ├── fonts │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── images │ ├── balloon.png │ ├── bar-loader.gif │ ├── button-bg.png │ ├── charting_library │ │ ├── logo-widget-copyright-faded.png │ │ └── logo-widget-copyright.png │ ├── controlll.png │ ├── delayed.png │ ├── dialogs │ │ ├── checkbox.png │ │ ├── close-flat.png │ │ ├── large-slider-handle.png │ │ ├── linewidth-slider.png │ │ └── opacity-slider.png │ ├── icons.png │ ├── prediction-clock-black.png │ ├── prediction-clock-white.png │ ├── prediction-failure-white.png │ ├── prediction-success-white.png │ ├── select-bg.png │ ├── sidetoolbar │ │ ├── instruments.png │ │ └── toolgroup.png │ ├── svg │ │ ├── chart │ │ │ ├── bucket2.svg │ │ │ ├── font.svg │ │ │ ├── large-slider-handle.svg │ │ │ └── pencil2.svg │ │ └── question-mark-rounded.svg │ ├── tvcolorpicker-bg-gradient.png │ ├── tvcolorpicker-bg.png │ ├── tvcolorpicker-check.png │ ├── tvcolorpicker-sprite.png │ └── warning-icon.png │ ├── js │ └── external │ │ └── spin.min.js │ ├── lightTheme.css │ ├── lightTheme.scss │ ├── localization │ └── translations │ │ ├── ar.json │ │ ├── cs.json │ │ ├── da_DK.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en.json │ │ ├── es.json │ │ ├── et_EE.json │ │ ├── fa.json │ │ ├── fr.json │ │ ├── he_IL.json │ │ ├── hu_HU.json │ │ ├── id_ID.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── ms_MY.json │ │ ├── nl_NL.json │ │ ├── no.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sk_SK.json │ │ ├── sv.json │ │ ├── th.json │ │ ├── tr.json │ │ ├── vi.json │ │ ├── widgets-copyrights.json │ │ ├── widgets-copyrights.json.example │ │ ├── zh.json │ │ └── zh_TW.json │ ├── midnightTheme.css │ ├── midnightTheme.scss │ └── tv-chart.630b704a2b9d0eaf1593.html ├── conf ├── nginx.conf └── start.sh ├── crowdin.yml ├── deploy.sh ├── docker-compose.yml ├── docs ├── Makefile ├── README.md ├── _build │ ├── doctrees │ │ ├── components.doctree │ │ ├── contributing.doctree │ │ ├── data_layer.doctree │ │ ├── environment.pickle │ │ ├── getting_started.doctree │ │ ├── help.doctree │ │ ├── index.doctree │ │ ├── license.doctree │ │ └── structure.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _sources │ │ ├── components.txt │ │ ├── contributing.txt │ │ ├── data_layer.txt │ │ ├── getting_started.txt │ │ ├── help.txt │ │ ├── index.txt │ │ ├── license.txt │ │ └── structure.txt │ │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── css │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── fonts │ │ │ ├── Inconsolata-Bold.ttf │ │ │ ├── Inconsolata-Regular.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── jquery-1.11.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ │ ├── components.html │ │ ├── contributing.html │ │ ├── data_layer.html │ │ ├── genindex.html │ │ ├── getting_started.html │ │ ├── help.html │ │ ├── index.html │ │ ├── license.html │ │ ├── objects.inv │ │ ├── search.html │ │ ├── searchindex.js │ │ └── structure.html ├── components.rst ├── conf.py ├── contributing.rst ├── data_layer.rst ├── getting_started.rst ├── help.rst ├── index.rst ├── license.rst ├── make.bat └── structure.rst ├── nginx.local.conf ├── package-lock.json ├── package.json ├── postcss.config.js ├── release-notes.txt ├── resources ├── background.png ├── background@2x.png ├── context_menu.js ├── dev_helper.js ├── electron_context_menu.js ├── env_config.js ├── external_links.js ├── icon.icns ├── icon.ico ├── icon.png ├── index.js ├── linux │ ├── DEBIAN │ │ └── control │ └── app.desktop ├── osx │ ├── Info.plist │ ├── appdmg.json │ ├── dmg-icon.icns │ └── helper_apps │ │ ├── Info EH.plist │ │ ├── Info NP.plist │ │ └── Info.plist ├── setup-icon.ico ├── window_state.js └── windows │ ├── installer.nsi │ └── setup-banner.bmp ├── server.js ├── ssl ├── server.crt └── server.key ├── translate-howto.md ├── webpack.config.js └── write_digest.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { "modules": false }], 4 | "react", 5 | "stage-0" 6 | ], 7 | "plugins": [ 8 | "react-hot-loader/babel", 9 | "lodash" 10 | ], 11 | "env": { 12 | "test": { 13 | "presets": ["env","react", "stage-0"], 14 | "plugins": [ 15 | [ "babel-plugin-webpack-alias", { "config": "./conf/webpack.config.js" } ] 16 | ] 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | bloom_filter 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | **Is your feature request related to a problem? Please describe.** 8 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen. 12 | 13 | **Describe alternatives you've considered** 14 | A clear and concise description of any alternative solutions or features you've considered. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | */node_modules 4 | */npm-debug.log 5 | *.map 6 | *.log 7 | build 8 | app/electron 9 | app/components/Exchange/exchange.css 10 | stats* 11 | hash-history 12 | docs/_build/ 13 | *.swp 14 | *.python-version 15 | app/.sass-cache 16 | node_modules 17 | app/bower_components 18 | app/bundle 19 | app/stats-dev.json 20 | app/stats-prod.json 21 | app/test/MarketClasses.js 22 | yarn.lock 23 | .env 24 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.md 2 | package.json 3 | package-lock.json 4 | charting_library 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4, 3 | "bracketSpacing": false 4 | } 5 | -------------------------------------------------------------------------------- /app/.htaccess.example: -------------------------------------------------------------------------------- 1 | RewriteBase / 2 | RewriteRule ^index\.html$ - [L] 3 | RewriteCond %{REQUEST_FILENAME} !-f 4 | RewriteCond %{REQUEST_FILENAME} !-d 5 | RewriteRule . /index.html [L] 6 | -------------------------------------------------------------------------------- /app/Main.js: -------------------------------------------------------------------------------- 1 | require("./assets/loader"); 2 | if (!window.Intl) { 3 | // Safari polyfill 4 | require.ensure(["intl"], require => { 5 | window.Intl = require("intl"); 6 | Intl.__addLocaleData(require("./assets/intl-data/en.json")); 7 | require("index.js"); 8 | }); 9 | } else { 10 | require("index.js"); 11 | } 12 | -------------------------------------------------------------------------------- /app/__tests__/components/Utility/FormattedAsset-test.jsx: -------------------------------------------------------------------------------- 1 | import React from "react/addons"; 2 | var TestUtils = React.addons.TestUtils; 3 | jest.dontMock("../../../app/components/Utility/FormattedAsset.jsx"); 4 | 5 | describe("", function() { 6 | var FormattedAsset = require("../../../app/components/Utility/FormattedAsset.jsx"); 7 | 8 | }); 9 | 10 | -------------------------------------------------------------------------------- /app/__tests__/jest-preprocessor.js: -------------------------------------------------------------------------------- 1 | var coffee = require('coffee-script'); 2 | var babel_jest = require('babel-jest'); 3 | 4 | module.exports = { 5 | process: function(src, path) { 6 | src = babel_jest.process(src, path) 7 | // CoffeeScript files can be .coffee, .litcoffee, or .coffee.md 8 | if (coffee.helpers.isCoffee(path)) { 9 | return coffee.compile(src, {'bare': true}); 10 | } 11 | return src; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/__tests__/wallets/test-wif-import.txt: -------------------------------------------------------------------------------- 1 | "genesis"+"nathan"=abcd5K9KhCCAgNSAJdaoYkZQp8DJaQYjauHUhUB37bbiDi9qMQE3uSY5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3zyxw 2 | "1"=AbcdefG5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnswZyxW 3 | invalid 5JDec9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsW 4 | -------------------------------------------------------------------------------- /app/actions/BalanceClaimActiveActions.js: -------------------------------------------------------------------------------- 1 | import alt from "alt-instance"; 2 | 3 | class BalanceClaimActiveActions { 4 | setPubkeys(pubkeys) { 5 | return pubkeys; 6 | } 7 | 8 | setSelectedBalanceClaims(selected_balances) { 9 | return selected_balances; 10 | } 11 | 12 | claimAccountChange(claim_account_name) { 13 | return claim_account_name; 14 | } 15 | } 16 | 17 | const BalanceClaimActiveActionsWrapped = alt.createActions( 18 | BalanceClaimActiveActions 19 | ); 20 | export default BalanceClaimActiveActionsWrapped; 21 | -------------------------------------------------------------------------------- /app/actions/BrainkeyActions.js: -------------------------------------------------------------------------------- 1 | import alt from "alt-instance"; 2 | 3 | class BrainkeyActions { 4 | setBrainkey(brnkey) { 5 | return brnkey; 6 | } 7 | } 8 | 9 | var BrainkeyActionsWrapped = alt.createActions(BrainkeyActions); 10 | export default BrainkeyActionsWrapped; 11 | -------------------------------------------------------------------------------- /app/actions/CachedPropertyActions.js: -------------------------------------------------------------------------------- 1 | import alt from "alt-instance"; 2 | 3 | class CachedPropertyActions { 4 | set(name, value) { 5 | return {name, value}; 6 | } 7 | 8 | get(name) { 9 | return {name}; 10 | } 11 | 12 | reset() { 13 | return true; 14 | } 15 | } 16 | 17 | var CachedPropertyActionsWrapped = alt.createActions(CachedPropertyActions); 18 | export default CachedPropertyActionsWrapped; 19 | -------------------------------------------------------------------------------- /app/alt-instance.js: -------------------------------------------------------------------------------- 1 | import Alt from "alt"; 2 | var alt = new Alt(); 3 | 4 | // DEBUG log all action events 5 | // alt.dispatcher.register(console.log.bind(console, 'alt.dispatcher')) 6 | 7 | export default alt; 8 | -------------------------------------------------------------------------------- /app/api/accountApi.js: -------------------------------------------------------------------------------- 1 | import {Apis} from "bitsharesjs-ws"; 2 | 3 | class Api { 4 | lookupAccounts(startChar, limit) { 5 | return Apis.instance() 6 | .db_api() 7 | .exec("lookup_accounts", [startChar, limit]); 8 | } 9 | } 10 | 11 | export default new Api(); 12 | -------------------------------------------------------------------------------- /app/assets/asset-symbols/atn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/atn.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/bkbt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/bkbt.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/bkt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/bkt.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/blockpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/blockpay.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/btc.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/btm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/btm.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/bto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/bto.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/bts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/bts.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/btsr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/btsr.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/btwty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/btwty.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/cny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/cny.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/dao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/dao.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/dash.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/dct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/dct.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/default@x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/default@x2.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/dgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/dgb.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/dgd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/dgd.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/dht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/dht.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/doge.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/egem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/egem.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/eos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/eos.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/eth.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/eur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/eur.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/eurt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/eurt.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/game.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/gas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/gas.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/gbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/gbg.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/gdex.btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/gdex.btc.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/gold.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/golos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/golos.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/grc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/grc.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/gxs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/gxs.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/hempsweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/hempsweet.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/hero.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/hertz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/hertz.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/icoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/icoo.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/incnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/incnt.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/kexcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/kexcoin.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/krm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/krm.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/lisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/lisk.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/mkr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/mkr.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/muse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/muse.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/neo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/neo.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/nxc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/nxc.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/obits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/obits.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/oct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/oct.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/open.btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/open.btc.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/peerplays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/peerplays.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/ppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/ppy.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/qtum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/qtum.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/ruble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/ruble.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/rudex.btc.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/sbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/sbd.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/scr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/scr.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/silver.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/smoke.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/stealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/stealth.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/steem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/steem.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/tt.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/tusd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/tusd.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/usd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/usd.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/usdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/usdt.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/waves.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/xmr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/xmr.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/xrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/xrp.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/yoyow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/yoyow.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/zec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/zec.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/zeph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/zeph.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/zrx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/asset-symbols/zrx.png -------------------------------------------------------------------------------- /app/assets/bts_genesiskeys_bloom.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/bts_genesiskeys_bloom.dat -------------------------------------------------------------------------------- /app/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/favicon.ico -------------------------------------------------------------------------------- /app/assets/fresh-bolt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/fresh-bolt2.png -------------------------------------------------------------------------------- /app/assets/index-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/index-dev.html -------------------------------------------------------------------------------- /app/assets/index-electron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/index-electron.html -------------------------------------------------------------------------------- /app/assets/language-dropdown/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/FR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/US.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/flags.js: -------------------------------------------------------------------------------- 1 | // Core asset 2 | require("file-loader?name=language-dropdown/US.[ext]!./img/US.png"); 3 | -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AQ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AX.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/AZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BB.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BJ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/BZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CV.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CX.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/CZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/DE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/DJ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/DK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/DM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/DO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/DZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/EC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/EE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/EE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/EG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/EG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/EH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/EH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ER.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ES.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ET.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/EU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/EU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/FI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/FJ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/FK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/FM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/FO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/FR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GB.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GQ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/GY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/HK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/HK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/HN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/HN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/HR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/HT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/HU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/IC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ID.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/IE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/IL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/IM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/IN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/IQ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/IR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/IS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/IT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/JA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/JA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/JE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/JE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/JM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/JM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/JO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/JO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KP.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/KZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LB.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LV.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/LY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ME.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ML.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MP.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MQ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MV.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MX.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/MZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NP.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/NZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/OM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/PY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/QA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/RO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/RS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/RS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/RU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/RW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/RW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SB.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ST.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SV.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/SZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TJ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TV.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/TZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/UA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/UG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/US.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/UY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/UY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/UZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/UZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/VA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/VC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/VE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/VG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/VI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/VN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/VU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/WF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/WF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/WS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/WS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/YE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/YE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/YT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/YT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ZA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ZH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ZH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ZM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ZM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ZW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/language-dropdown/img/ZW.png -------------------------------------------------------------------------------- /app/assets/loader.js: -------------------------------------------------------------------------------- 1 | require("./stylesheets/app.scss"); 2 | require("file-loader?name=favicon.ico!./favicon.ico"); 3 | require("babel-polyfill"); 4 | require("whatwg-fetch"); 5 | require("indexeddbshim"); 6 | require("./asset-symbols/symbols.js"); 7 | require("./other/other.js"); 8 | require("./language-dropdown/flags.js"); 9 | -------------------------------------------------------------------------------- /app/assets/locales.js: -------------------------------------------------------------------------------- 1 | const locales = ["zh", "fr", "ko", "de", "es", "it", "tr", "ru", "ja"]; 2 | 3 | module.exports = locales; 4 | -------------------------------------------------------------------------------- /app/assets/logo-404-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/logo-404-dark.png -------------------------------------------------------------------------------- /app/assets/logo-404-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/logo-404-light.png -------------------------------------------------------------------------------- /app/assets/logo-404-midnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/logo-404-midnight.png -------------------------------------------------------------------------------- /app/assets/logo-cryptobridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/logo-cryptobridge.png -------------------------------------------------------------------------------- /app/assets/other/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/other/benchmark.png -------------------------------------------------------------------------------- /app/assets/other/other.js: -------------------------------------------------------------------------------- 1 | require("file-loader?name=img/benchmark.[ext]!./benchmark.png"); 2 | require("file-loader?name=img/secure-login-address.[ext]!./secure-login-address.png"); 3 | -------------------------------------------------------------------------------- /app/assets/other/secure-login-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/other/secure-login-address.png -------------------------------------------------------------------------------- /app/assets/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/qr.png -------------------------------------------------------------------------------- /app/assets/stylesheets/app.scss: -------------------------------------------------------------------------------- 1 | // http://sass-guidelin.es/#the-7-1-pattern 2 | 3 | @import "vendors/all"; 4 | 5 | @import "base/all"; 6 | 7 | @import "components/all"; 8 | 9 | @import "layout/all"; 10 | 11 | @import "themes/all"; 12 | 13 | @import "shame"; 14 | -------------------------------------------------------------------------------- /app/assets/stylesheets/base/_all.scss: -------------------------------------------------------------------------------- 1 | @import "fonts"; 2 | @import "colors"; 3 | -------------------------------------------------------------------------------- /app/assets/stylesheets/base/_colors.scss: -------------------------------------------------------------------------------- 1 | $border-color: rgba(128, 128, 128, 0.45); 2 | 3 | .green { 4 | color: #7bd500 !important; 5 | 6 | .icon { 7 | > svg { 8 | > path { 9 | fill: #7bd500 !important; 10 | } 11 | } 12 | } 13 | } 14 | 15 | $bs-blue: #0f88c2; 16 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_bitkapital.scss: -------------------------------------------------------------------------------- 1 | .BitKapital { 2 | input { 3 | max-width: 30rem; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_console.scss: -------------------------------------------------------------------------------- 1 | textarea#console_input { 2 | width: 100%; 3 | color: white; 4 | background-color: black; 5 | border-color: black; 6 | min-height: 35px; 7 | height: 35px 8 | } 9 | 10 | .console_div, code { 11 | margin-right: 10px; 12 | } 13 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_existing_accounts.scss: -------------------------------------------------------------------------------- 1 | .existing-accounts-select { 2 | height: 150px; 3 | } 4 | 5 | #unclaimed_balance_rows { 6 | max-height: 400px; 7 | overflow-y: auto; 8 | } -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_help.scss: -------------------------------------------------------------------------------- 1 | .help-content { 2 | padding: 0!important; 3 | } 4 | 5 | .help-content > table { 6 | width: 100%; 7 | border-collapse: collapse; 8 | margin-bottom: 20px; 9 | } 10 | 11 | .help-content > table td, .help-content > table th { 12 | border: 1px solid; 13 | padding: 5px; 14 | } 15 | 16 | .help-content > table > thead th { 17 | text-align: left; 18 | padding: 5px; 19 | border: 1px solid; 20 | } 21 | 22 | .help-content p:last-of-type { 23 | margin-bottom: 0; 24 | } -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_incognito.scss: -------------------------------------------------------------------------------- 1 | #incognito { 2 | width: 100%; 3 | height: 100%; 4 | text-align: center; 5 | color: #fff; 6 | height: 34px; 7 | line-height: 34px; 8 | font-size: 0.875rem; 9 | 10 | .dismiss { 11 | position: absolute; 12 | right: 1em; 13 | top: 0; 14 | cursor: pointer; 15 | font-size: 1.5em; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_page404.scss: -------------------------------------------------------------------------------- 1 | .page-404 { 2 | height: 100%; 3 | display: flex; 4 | align-items: center; 5 | justify-content: center; 6 | text-align: center; 7 | } 8 | /* 9 | Dark = #3f3f3f 10 | Light = #cccccc 11 | Midnight = #23313d 12 | */ 13 | 14 | .page-404-logo { 15 | } 16 | .page-404-title { 17 | font-size: 28px; 18 | margin: 18px 0; 19 | } 20 | .page-404-subtitle { 21 | font-size: 16px; 22 | margin: 18px 0; 23 | } 24 | .page-404-button-back { 25 | } 26 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/cb/_competition.scss: -------------------------------------------------------------------------------- 1 | .trading-competition { 2 | > ul { 3 | list-style: none; 4 | margin: 0; 5 | 6 | > li { 7 | border: 1px solid #979797; 8 | padding: 1rem; 9 | 10 | + li { 11 | margin-top: 1rem; 12 | } 13 | } 14 | } 15 | 16 | table { 17 | margin-top: 1rem; 18 | 19 | > tbody { 20 | > tr { 21 | > th { 22 | padding-right: 1rem; 23 | } 24 | } 25 | } 26 | } 27 | 28 | .reward-buttons { 29 | float: right; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/assets/stylesheets/layout/_all.scss: -------------------------------------------------------------------------------- 1 | @import "page_layout"; -------------------------------------------------------------------------------- /app/assets/stylesheets/themes/_all.scss: -------------------------------------------------------------------------------- 1 | @import "dark-theme"; 2 | @import "light-theme"; 3 | @import "midnight-theme"; -------------------------------------------------------------------------------- /app/assets/stylesheets/utils/_all.scss: -------------------------------------------------------------------------------- 1 | @import "utils"; -------------------------------------------------------------------------------- /app/assets/stylesheets/vendors/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/stylesheets/vendors/Roboto-Light.woff -------------------------------------------------------------------------------- /app/assets/stylesheets/vendors/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/stylesheets/vendors/Roboto-Medium.woff -------------------------------------------------------------------------------- /app/assets/stylesheets/vendors/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/stylesheets/vendors/Roboto-Regular.woff -------------------------------------------------------------------------------- /app/assets/stylesheets/vendors/RobotoCondensed-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/stylesheets/vendors/RobotoCondensed-Regular.woff -------------------------------------------------------------------------------- /app/assets/stylesheets/vendors/_all.scss: -------------------------------------------------------------------------------- 1 | @import "foundation_settings"; 2 | @import "~foundation-apps/scss/foundation.scss"; 3 | @import "foundation_overrides"; 4 | @import "perfect-scrollbar"; 5 | @import "introjs-dark-theme"; 6 | @import "introjs-light-theme"; 7 | @import "introjs-midnight-theme"; 8 | @import "~react-datepicker2/dist/react-datepicker2.css"; 9 | @import "~react-sticky-table/dist/react-sticky-table.css"; 10 | @import "~bitshares-ui-style-guide/dist/styles/style.css"; 11 | -------------------------------------------------------------------------------- /app/assets/ul-arrow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/ul-arrow-black.png -------------------------------------------------------------------------------- /app/assets/ul-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/assets/ul-arrow.png -------------------------------------------------------------------------------- /app/components/Blockchain/FeesContainer.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import SettingsStore from "stores/SettingsStore"; 3 | import AltContainer from "alt-container"; 4 | import Fees from "./Fees"; 5 | 6 | class FeesContainer extends React.Component { 7 | render() { 8 | return ( 9 | 15 | 16 | 17 | ); 18 | } 19 | } 20 | 21 | export default FeesContainer; 22 | -------------------------------------------------------------------------------- /app/components/Blockchain/operations.scss: -------------------------------------------------------------------------------- 1 | .left-td { 2 | min-width: 7em; 3 | padding-right: 1em; 4 | text-align: left; 5 | } 6 | 7 | .right-td { 8 | text-align: left; 9 | } 10 | -------------------------------------------------------------------------------- /app/components/Dashboard/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/components/Dashboard/Dashboard.jsx -------------------------------------------------------------------------------- /app/components/Exchange/PriceChartD3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/components/Exchange/PriceChartD3.jsx -------------------------------------------------------------------------------- /app/components/Explorer/witnesses.scss: -------------------------------------------------------------------------------- 1 | .active-witness { 2 | > td { 3 | background-color: rgba(80, 210, 194, 0.4); 4 | transition: background-color 0.6s ease; 5 | } 6 | } 7 | 8 | .clickable { 9 | cursor: pointer; 10 | user-select: none; 11 | } 12 | 13 | .view-switcher { 14 | padding-top: 1rem; 15 | text-align: right; 16 | } 17 | -------------------------------------------------------------------------------- /app/components/Icon/adjust.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/components/Icon/checkmark-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/components/Icon/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/components/Icon/clippy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/components/Icon/clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/components/Icon/cross-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/components/Icon/dollar-green.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/components/Icon/dollar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/components/Icon/download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/components/Icon/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/Icon/folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/components/Icon/hamburger-x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/components/Icon/hamburger.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/components/Icon/info-circle-o.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/Icon/minus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/components/Icon/news.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/components/Icon/plus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/components/Icon/power.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/components/Icon/settle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/components/Icon/share.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/components/Icon/shuffle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/components/Icon/trade.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/components/Settings/PasswordSettings.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import WalletChangePassword from "../Wallet/WalletChangePassword"; 3 | 4 | export default class PasswordSettings extends React.Component { 5 | render() { 6 | return ; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /app/components/Support/Constants.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Support Constants 3 | */ 4 | export const ISSUES = { 5 | DEPOSIT: "DEPOSIT", 6 | WITHDRAWAL: "WITHDRAWAL", 7 | OTHER: "OTHER" 8 | }; 9 | 10 | export const STATUSES = { 11 | OPEN: 1, 12 | IN_PROGRESS: 2, 13 | WAITING_FOR_CUSTOMER: 3, 14 | WAITING_FOR_SUPPORT: 4, 15 | BLOCKED: 5, 16 | CLOSED: 6 17 | }; 18 | 19 | export const STATUSKEYS = { 20 | 1: "open", 21 | 2: "in_progress", 22 | 3: "waiting_for_customer", 23 | 4: "waiting_for_support", 24 | 5: "blocked", 25 | 6: "closed" 26 | }; 27 | -------------------------------------------------------------------------------- /app/components/Support/Notification.jsx: -------------------------------------------------------------------------------- 1 | /** 2 | * The Notification component 3 | * 4 | * Renders a Notification for error messages, information, etc. 5 | */ 6 | import React from "react"; 7 | 8 | class Notification extends React.Component { 9 | state = {}; 10 | 11 | render() { 12 | const classes = `notification-box ${this.props.className}`; 13 | 14 | return this.props.message ? ( 15 |
{this.props.message}
16 | ) : null; 17 | } 18 | } 19 | 20 | export default Notification; 21 | -------------------------------------------------------------------------------- /app/components/Transfer/transfer.scss: -------------------------------------------------------------------------------- 1 | ol.prog-tracker { 2 | margin: 0; 3 | padding: 0; 4 | li { 5 | display: inline-block; 6 | text-align: center; 7 | line-height: 2rem; 8 | padding-left: 0.75rem; 9 | padding-right: 0.75rem; 10 | } 11 | } 12 | 13 | ol.prog-tracker li.prog-tracker-done, ol.prog-tracker li.prog-tracker-current { 14 | color: black; 15 | border-bottom: 4px solid yellowgreen; 16 | } 17 | ol.prog-tracker li.prog-tracker-todo { 18 | color: silver; 19 | border-bottom: 4px solid silver; 20 | } 21 | 22 | .prog-tracker-current { 23 | font-weight: bold; 24 | } 25 | 26 | .prog-tracker-todo { 27 | color: #8B8B8B; 28 | } 29 | 30 | -------------------------------------------------------------------------------- /app/components/Utility/LinkToAssetById.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import {Link} from "react-router-dom"; 3 | import AssetWrapper from "./AssetWrapper"; 4 | import AssetName from "./AssetName"; 5 | 6 | class LinkToAssetById extends React.Component { 7 | render() { 8 | const symbol = this.props.asset.get("symbol"); 9 | const assetName = ; 10 | return this.props.noLink ? ( 11 | assetName 12 | ) : ( 13 | {assetName} 14 | ); 15 | } 16 | } 17 | 18 | export default AssetWrapper(LinkToAssetById); 19 | -------------------------------------------------------------------------------- /app/components/Utility/LinkToWitnessById.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ChainTypes from "../Utility/ChainTypes"; 3 | import BindToChainState from "../Utility/BindToChainState"; 4 | import LinkToAccountById from "./LinkToAccountById"; 5 | 6 | class LinkToWitnessById extends React.Component { 7 | static propTypes = { 8 | witness: ChainTypes.ChainObject.isRequired 9 | }; 10 | 11 | render() { 12 | let witness_account = this.props.witness.get("witness_account"); 13 | return ; 14 | } 15 | } 16 | LinkToWitnessById = BindToChainState(LinkToWitnessById); 17 | 18 | export default LinkToWitnessById; 19 | -------------------------------------------------------------------------------- /app/components/Wallet/ImportKeys.scss: -------------------------------------------------------------------------------- 1 | div > div.asset-list:first-child { 2 | padding-top: 0.25rem; 3 | } 4 | 5 | div > div.asset-list { 6 | padding-bottom: 0.25rem; 7 | } -------------------------------------------------------------------------------- /app/counterpart-instance.js: -------------------------------------------------------------------------------- 1 | import counterpart from "counterpart"; 2 | export default counterpart; 3 | -------------------------------------------------------------------------------- /app/help/en/accounts/general.md: -------------------------------------------------------------------------------- 1 | # Accounts 2 | 3 | As you may have already noticed by now, this blockchain technology requires you 4 | to register an account name. This comes with many advantages: Besides improved 5 | scalability, we have separated the identity from the transaction authorizing 6 | signature. In practice, *owning an account name* is independent from being able 7 | to *spend its funds*. Furthermore, both rights (we call them *permissions*) can 8 | split among an arbitrary complex relation of people (we call them *authorities*) 9 | using *weights* and a required *thresholds*. 10 | -------------------------------------------------------------------------------- /app/help/en/accounts/proposed.md: -------------------------------------------------------------------------------- 1 | # Proposed Transactions 2 | 3 | This is an advanced feature of Bitshares accessible from the send feature. It allows for something known a multisig. Imagine you have a single account but require more than one person to authorize a transaction. This capability is built into bitshares, but requires advanced knowledge and there is a setup process. If you haven't previously setup multisig for your account, it's safe to say you do not need it. 4 | -------------------------------------------------------------------------------- /app/help/en/assets/EUR.md: -------------------------------------------------------------------------------- 1 | [# summary] 2 | ### Asset {symbol} 3 | 4 | {description} 5 | 6 | Issued by: {issuer} 7 | 8 | The Euro (sign: €; symbol: EUR) is the official currency of participating countries in the Europ zone. 9 | -------------------------------------------------------------------------------- /app/help/en/assets/USD.md: -------------------------------------------------------------------------------- 1 | [# summary] 2 | ### Asset {symbol} 3 | 4 | {description} 5 | 6 | Issued by: {issuer} 7 | 8 | The United States dollar (sign: $; symbol: USD) is the official currency of the United States of America. 9 | -------------------------------------------------------------------------------- /app/help/en/assets/privbitassets.md: -------------------------------------------------------------------------------- 1 | Privatized BitAssets 2 | ==================== 3 | 4 | Privatized BitAssets serve those customers that would like to issue a market 5 | pegged asset but do not want the witnesses to publish the prices. Instead, when 6 | creating a *privatized* bitasset, the issuer can define a set of authorities that 7 | are allowed to publish the price for that particular asset. The issuer can 8 | further define all kinds of fees involving this asset and make a profit. 9 | 10 | This feature is of particular interest for exchanges and institutes that have 11 | access to real-time prices and would like to increase exposure and volume. 12 | -------------------------------------------------------------------------------- /app/help/en/components/AccountAssetCreate.md: -------------------------------------------------------------------------------- 1 | [# permissions] 2 | Permissions define the available features for an asset. However, even if a feature is permitted, it must still be activated using the corresponding flag in order to be enforced by the blockchain. 3 | 4 | After creation, you may only remove a given permission, you cannot enable a permission that was disabled on creation. 5 | 6 | [# flags] 7 | Flags define which asset features are active or inactive. They can be switched on and off by the asset owner at any time. -------------------------------------------------------------------------------- /app/help/en/components/AccountPermActive.md: -------------------------------------------------------------------------------- 1 | Active permissions define the accounts that have permission to spend funds for this account. 2 | 3 | They can be used to easily setup a multi-signature scheme, see [permissions](accounts/permissions) for more details. -------------------------------------------------------------------------------- /app/help/en/components/AccountPermMemo.md: -------------------------------------------------------------------------------- 1 | The memo key is where you receive memos, in order to decode the memos you need to control the private key for the public key. 2 | 3 | By using a public/private key pair without spending authority, you may give read-only access to your memos to third parties. 4 | -------------------------------------------------------------------------------- /app/help/en/components/AccountPermOwner.md: -------------------------------------------------------------------------------- 1 | Owner permissions define who has control over the account. Owners may overwrite all keys and change any account settings. 2 | 3 | See [permissions](accounts/permissions) for more details. -------------------------------------------------------------------------------- /app/help/en/components/AccountVotingCommittee.md: -------------------------------------------------------------------------------- 1 | [Committee members](introduction/committee) may propose changes to the dynamic parameters of the blockchain, such as fees, block time and many other things. It is a position of great responsibility that requires a good understanding of how BitShares works. -------------------------------------------------------------------------------- /app/help/en/components/AccountVotingProxy.md: -------------------------------------------------------------------------------- 1 | If you don't fully understand the roles of Witnesses, Committee Members and Workers, you may elect to choose a Proxy. A proxy is an account that you trust to make decisions about the Bitshares network on your behalf. You may find people proposing to act as proxies in the BitShares forum at [BitSharestalk](https://bitsharestalk.org/index.php/board,75.0.html). Additionally, you may choose from the list below, or you can manually enter any account you choose. 2 | 3 | **Be sure to select publish changes above once you've made your selection**. 4 | -------------------------------------------------------------------------------- /app/help/en/components/AccountVotingWitnesses.md: -------------------------------------------------------------------------------- 1 | [Witnesses](introduction/witness) are the block producers of BitShares. They validate transactions and ensure the safety of the network. You may vote for as many witnesses as you'd like, and they will all receive the same amount of votes. Witness proposals can be found here: [BitSharestalk - Stakeholder Proposals Board](https://bitsharestalk.org/index.php/board,75.0.html). 2 | -------------------------------------------------------------------------------- /app/help/en/components/AccountVotingWorkers.md: -------------------------------------------------------------------------------- 1 | [Workers](introduction/workers) are a unique concept to BitShares. They are proposals to provide services in return for a salary from the blockchain itself. A proposal should include a link to a website or forum thread that explains the purpose of the proposal, a collection of proposals can be found here: [BitSharestalk - Stakeholder Proposals Board](https://bitsharestalk.org/index.php/board,75.0.html). 2 | -------------------------------------------------------------------------------- /app/help/en/components/BorrowModal.md: -------------------------------------------------------------------------------- 1 | Update your {debt} margin position by adjusting the debt and collateral levels. 2 | 3 | Collateral and debt levels can be adjusted in any way you desire, as long as your collateral ratio stays above the maintenance collateral ratio of {mr}. [Read more.](dex/shorting) 4 | -------------------------------------------------------------------------------- /app/help/en/components/BorrowModalPrediction.md: -------------------------------------------------------------------------------- 1 | This is a binary prediction market. 2 | 3 | The collateral ratio of this market is 1:1. 4 | -------------------------------------------------------------------------------- /app/help/en/components/DepositWithdraw.md: -------------------------------------------------------------------------------- 1 | [# receive] 2 | ### Receiving BTS 3 | In order to receive BTS from another person or from an exchange, simply give them your account name: **{account}** 4 | 5 | [# deposit-short] 6 | ### Depositing or withdrawing coins 7 | If you want to deposit or withdraw funds, either in fiat or from other blockchains, you may use a [bridge](introduction/bridges_gateways) or [gateway](introduction/bridges_gateways) service to do so. 8 | -------------------------------------------------------------------------------- /app/help/en/components/InitError.md: -------------------------------------------------------------------------------- 1 | [# connection-error] 2 | We couldn't establish websocket connection to a full node. 3 | 4 | Possible reasons: TODO 5 | - reason #1 6 | - reason #2 7 | -------------------------------------------------------------------------------- /app/help/en/gateways/cryptobridge.md: -------------------------------------------------------------------------------- 1 | # CryptoBridge Gateway Service 2 | 3 | CryptoBridge is a gateway service built on the Bitshares Exchange. A gateway service is responsible for moving cryptocurrencies to and from the Bitshares Exchange. They support a wide range of popular assets. You can easily identify those supported by CryptoBridge because they are prefixed with the word BRIDGE.*. For example BRIDGE.BTC, BRIDGE.LTC etc. 4 | 5 | ## Website 6 | [https://crypto-bridge.org](https://crypto-bridge.org) 7 | 8 | ## Support 9 | For support, please contact Crypto Bridge support at [https://wallet.crypto-bridge.org/support](https://wallet.crypto-bridge.org/support) 10 | -------------------------------------------------------------------------------- /app/help/en/gateways/rudex.md: -------------------------------------------------------------------------------- 1 | # Rudex Gateway Service 2 | 3 | Rudex is a gateway service built on the Bitshares Exchange. A gateway service is responsible for moving cryptocurrencies to and from the Bitshares Exchange. They support a wide range of popular assets. You can easily identify those supported by RuDEX because they are prefixed with the word RUDEX.*. For example RUDEX.STEEM, RUDEX.GOLOS etc. 4 | 5 | ## Website 6 | [https://rudex.org](https://rudex.org) 7 | 8 | ## Support 9 | - [Open a Ticket](https://rudex.freshdesk.com) 10 | - [Telegram Chat](https://t.me/BitSharesDEX_RU) 11 | -------------------------------------------------------------------------------- /app/help/en/gateways/winex.md: -------------------------------------------------------------------------------- 1 | # Winex Gateway Service 2 | 3 | Winex is a gateway service built on the Bitshares Exchange. A gateway service is responsible for moving cryptocurrencies to and from the Bitshares Exchange. They support a wide range of popular assets. You can easily identify those supported by Winex because they are prefixed with the word WIN.*. For example WIN.EOS etc. 4 | 5 | ## Website 6 | [https://exchange.winex.pro/](https://exchange.winex.pro/) 7 | 8 | ## Support 9 | - Ask For Help:support@winex.pro 10 | -------------------------------------------------------------------------------- /app/help/en/glossary.md: -------------------------------------------------------------------------------- 1 | ### Glossary 2 | 3 | [Back to index](index.md) 4 | -------------------------------------------------------------------------------- /app/help/es/accounts/general.md: -------------------------------------------------------------------------------- 1 | # Cuentas 2 | 3 | Como ya se habrá notado, esta tecnología blockchain requiere que usted 4 | registre un nombre de cuenta. Esto trae numerosas ventajas. Además de incrementar 5 | la escalabilidad, hemos separado la identidad de la firma autorizante 6 | de las transacciones. En la práctica, *ser propietario de una cuenta* es independiente de poder 7 | *utilizar sus fondos". Adicionalmente, ambos derechos (que llamamos "permisos") pueden 8 | combinarse en una compleja relación arbitraria entre personas (que llamamos "autoridades") 9 | usando los parámetros *peso* y *humbral*. -------------------------------------------------------------------------------- /app/help/ja/components/BorrowModal.md: -------------------------------------------------------------------------------- 1 | 賃借および担保のレベルを調整すれば{debt}のマージンポジションを更新できます。 2 | 3 | 担保比率がメンテナンス担保比率である{mr}を超えている限り、担保および賃借のレベルは任意に調整できます。[もっと知る](dex/shorting) 4 | -------------------------------------------------------------------------------- /app/help/ja/components/DepositWithdraw.md: -------------------------------------------------------------------------------- 1 | [# receive] 2 | ### BTSの受け取り 3 | 他の人や取引所からBTSを受け取るには、次のアカウント名を入力するだけです: **{account}** 4 | 5 | [# deposit-short] 6 | ### コインの入出金 7 | フィアットや他のブロックチェーンから資金を預け入れる、または引き出す場合は、[ブリッジ](introduction/bridges_gateways)または[ゲートウェイ](introduction/bridges_gateways)サービスを利用することができます。 8 | -------------------------------------------------------------------------------- /app/help/ru/accounts/general.md: -------------------------------------------------------------------------------- 1 | # Аккаунты 2 | 3 | Как Вы могли заметить, эта блокчейн технология требует регистрации имени аккаунта. Это дает множество преимуществ: помимо улучшенной масштабируемости теперь личность и подпись, авторизующая транзакцию, существуют отдельно. На практике это значит, что *владение именем аккаунта* полностью независимо от возможности *распоряжаться его средствами*. Более того, оба права (мы называем их *разрешениями*) можно разделить между произвольным сложным отношением людей (мы называем их *полномочиями*) с использованием *весов* и требуемых *порогов*. -------------------------------------------------------------------------------- /app/help/ru/assets/EUR.md: -------------------------------------------------------------------------------- 1 | [# резюме] 2 | 3 | ### Актив {symbol} 4 | 5 | {description} 6 | 7 | Выпущен: {issuer} 8 | 9 | Евро (знак: €; символ: EUR) является официальной валютой стран-участниц Еврозоны. -------------------------------------------------------------------------------- /app/help/ru/assets/USD.md: -------------------------------------------------------------------------------- 1 | [# резюме] 2 | 3 | ### Актив {symbol} 4 | 5 | {description} 6 | 7 | Выпущен: {issuer} 8 | 9 | Доллар США (знак: $; символ: USD) является официальной валютой Соединенных Штатов Америки. -------------------------------------------------------------------------------- /app/help/ru/assets/privbitassets.md: -------------------------------------------------------------------------------- 1 | # Приватизированные BitAssets 2 | 3 | Приватизированные BitAssets обслуживают тех клиентов, которые хотели бы выпустить актив с привязкой к рынку, но не хотели бы, чтобы делегаты публиковали его цены. Вместо этого, когда клиент создает *приватизированный* bitasset, он может определять набор авторитетов, которые смогут публиковать цену для этого конкретного актива. Эмитент также может определить все виды комиссий, связанных с этим активом, и получать прибыль. 4 | 5 | Эта функция представляет особый интерес для бирж и институтов, которые имеют доступ к ценам в режиме реального времени и хотели бы увеличить видимость и объем. -------------------------------------------------------------------------------- /app/help/ru/components/AccountAssetCreate.md: -------------------------------------------------------------------------------- 1 | [# разрешения] Разрешения определяют доступные для актива функции. Однако, даже если функция разрешена, она по-прежнему должна быть активирована с помощью соответствующего маркера, чтобы она исполнялась блокчейном. 2 | 3 | После создания Вы можете только удалить данное разрешение, Вы не можете включить разрешение, которое было отключено при создании. 4 | 5 | [# маркеры] Маркеры определяют, какие функции активов являются активными или неактивными. Они могут быть включены и отключены владельцем актива в любое время. -------------------------------------------------------------------------------- /app/help/ru/components/AccountPermActive.md: -------------------------------------------------------------------------------- 1 | Активные разрешения определяют аккаунты, которые имеют разрешение тратить средства этого аккаунта. 2 | 3 | Они могут быть использованы для упрощенной настройки схемы с мульти-подписью, смотрите раздел [разрешения](accounts/permissions) чтобы узнать подробности. -------------------------------------------------------------------------------- /app/help/ru/components/AccountPermMemo.md: -------------------------------------------------------------------------------- 1 | Мемо ключ - это место, где Вы получаете мемо. Чтобы расшифровать мемо, Вы должны контролировать приватный ключ для публичного ключа. 2 | 3 | Используя пару из публичного/приватного ключей без разрешения на трату средств, Вы можете дать доступ к Вашим мемо в режиме "только чтение" третьим сторонам. -------------------------------------------------------------------------------- /app/help/ru/components/AccountPermOwner.md: -------------------------------------------------------------------------------- 1 | Разрешения владельца определяют кто распоряжается аккаунтом. Владельцы могут переписывать все ключи и менять любые настройки аккаунта. 2 | 3 | Для получения подробной информации смотрите раздел [разрешения](accounts/permissions). -------------------------------------------------------------------------------- /app/help/ru/components/AccountVotingCommittee.md: -------------------------------------------------------------------------------- 1 | [Члены Комитета](introduction/committee) могут предлагать изменения динамических параметров блокчейна, таких как комиссия, время блока и многое другое. Эта позиция несет в себе большую ответственность, которая требует четкого понимания механизма работы BitShares. -------------------------------------------------------------------------------- /app/help/ru/components/AccountVotingProxy.md: -------------------------------------------------------------------------------- 1 | Если Вы не понимаете ролей Заверителей, Членов Комитета и Работников в полной мере, Вы можете выбрать вариант использования Прокси. Прокси - это аккаунт, которому Вы доверяете принятие решений о сети Bitshares от Вашего имени. Вы можете найти людей, предлагающих свои услуги в качестве Прокси, на форуме BitShares на [BitSharestalk](https://bitsharestalk.org/index.php/board,75.0.html). Кроме того, Вы можете выбрать прокси из списка ниже или ввести имя выбранного Вами аккаунта вручную. 2 | 3 | **Обязательно выберите вышеуказанный пункт "Опубликовать изменения", как только Вы сделали свой выбор**. -------------------------------------------------------------------------------- /app/help/ru/components/AccountVotingWitnesses.md: -------------------------------------------------------------------------------- 1 | [Делегаты](introduction/witness) - это производители блоков BitShares. Они подтверждают транзакции и обеспечивают безопасность сети. Вы можете проголосовать за стольких делегатов, за скольких пожелаете, и все они получат одинаковое количество голосов. Предлагаемые кандидатуры делегатов можно найти здесь: [BitSharestalk - Stakeholder Proposals Board](https://bitsharestalk.org/index.php/board,75.0.html). -------------------------------------------------------------------------------- /app/help/ru/components/AccountVotingWorkers.md: -------------------------------------------------------------------------------- 1 | [Работники](introduction/workers) - это уникальный концепт, придуманный BitShares. Они состоят из предложений по предоставлению услуг в обмен на зарплату от самого блокчейна. Предложение должно включать в себя ссылку на веб-сайт или ветку форума, которая объясняет назначение предложения. Коллекцию предложений можно найти здесь: [BitSharestalk - Stakeholder Proposals Board](https://bitsharestalk.org/index.php/board,75.0.html). -------------------------------------------------------------------------------- /app/help/ru/components/BorrowModal.md: -------------------------------------------------------------------------------- 1 | Обновите Вашу позицию маржи {debt}, отрегулировав уровни задолженности и залогового обеспечения. 2 | 3 | Вы можете настраивать уровни залогового обеспечения и задолженности как Вам угодно до тех пор, пока размер Вашего залогового обеспечения остается больше размера обслуживания обеспечения {mr}. [Узнать подробности.](dex/shorting) -------------------------------------------------------------------------------- /app/help/ru/components/BorrowModalPrediction.md: -------------------------------------------------------------------------------- 1 | Это рынок бинарных прогнозов. 2 | 3 | Соотношение обеспечения для этого рынка составляет 1:1. -------------------------------------------------------------------------------- /app/help/ru/components/DepositWithdraw.md: -------------------------------------------------------------------------------- 1 | [# receive] 2 | 3 | ### Получение BTS 4 | 5 | Для того, чтобы получить BTS от другого лица или биржи, просто сообщите им имя Вашего аккаунта: **{account}** 6 | 7 | [# deposit-short] 8 | 9 | ### Внесение депозита или снятие койнов 10 | 11 | Если Вы хотите внести депозит или снять средства, в фиате или из других блокчейнов, Вы можете воспользоваться для этого сервисами [моста](introduction/bridges_gateways) или [шлюза](introduction/bridges_gateways). -------------------------------------------------------------------------------- /app/help/ru/components/Fees.md: -------------------------------------------------------------------------------- 1 | # Комиссии 2 | 3 | В экосистеме BitShares каждой операции присваивается *индивидуальная* комиссия. Эти комиссии могут меняться. Тем не менее, они определяются только одобрением держателей долей, поэтому каждый держатель основного актива BitShares (BTS) имеет право влиять на то, какими эти комиссии должны быть. Если держатели согласятся снизить некую комиссию и консенсус будет достигнут, комиссия будет автоматически снижена блокчейном. Изменения параметров блокчейна предлагаются членами комитета. Этих члены избираются держателями долей и улучшают показатели гибкости и реакции. 4 | 5 | \*: Для этих операций требуется Пожизненное Членство! -------------------------------------------------------------------------------- /app/help/ru/components/InitError.md: -------------------------------------------------------------------------------- 1 | [# connection-error] Мы не смогли установить соединение WebSocket с полной нодой. 2 | 3 | Возможные причины: TODO 4 | 5 | - причина #1 6 | - причина #2 -------------------------------------------------------------------------------- /app/help/ru/gateways/cryptobridge.md: -------------------------------------------------------------------------------- 1 | # Шлюз от CryptoBridge 2 | 3 | CryptoBridge – сервис шлюза, построенный на бирже Bitshares. Сервис шлюза ответственнен за ввод и вывод криптовалют с биржи Bitshares. Он поддерживает обширный список популярных активов. Вы легко можете определить, какие из них поддерживает CryptoBridge, так как они обладают префиксом вида BRIDGE.*. Например, BRIDGE.BTC, BRIDGE.LTC и т.п. 4 | 5 | ## Веб-сайт 6 | 7 | 8 | 9 | ## Поддержка 10 | 11 | CryptoBridge всё ещё ведет завершающие работы над своим шлюзом, поэтому не весь его функционал доступен для широкой публики. -------------------------------------------------------------------------------- /app/help/ru/gateways/rudex.md: -------------------------------------------------------------------------------- 1 | # Шлюз от RuDEX 2 | 3 | RuDEX предоставляет сервис шлюза, построенный на бирже BitShares. Сервис шлюза отвечает за ввод и вывод криптовалют с биржи BitShares. Он поддерживает обширный список популярных активов. Вы легко можете определить, какие из них поддерживает RuDEX, так как они обладают префиксом вида RUDEX.*. Например, RUDEX.STEEM, RUDEX.GOLOS и т.п. 4 | 5 | ## Веб-сайт 6 | 7 | [RuDEX.org](https://rudex.org) 8 | 9 | ## Поддержка 10 | 11 | - [Открыть тикет](https://rudex.freshdesk.com) 12 | - [Telegram Чат](https://t.me/BitSharesDEX_RU) 13 | -------------------------------------------------------------------------------- /app/help/ru/glossary.md: -------------------------------------------------------------------------------- 1 | ### Глоссарий 2 | 3 | [Вернуться к содержанию](index.md) -------------------------------------------------------------------------------- /app/help/ru/introduction/committee.md: -------------------------------------------------------------------------------- 1 | # Комитет 2 | 3 | Комитет представляет собой утвержденный держателями долей набор единиц, который определяет некоторые параметры ведения дел. Среди этих параметров 4 | 5 | * комиссии за транзакции и торговлю 6 | * параметры блокчейна, такие как размер блока, интервал блока и т.п. 7 | * реферальные и вестинговые параметры, такие как процент кэшбэка и вестинговые периоды. -------------------------------------------------------------------------------- /app/help/tr/accounts/general.md: -------------------------------------------------------------------------------- 1 | # Hesaplar 2 | 3 | Şu ana kadar farkkettiğiniz gibi, bu blokzinciri teknolojisi bir hesap adı kaydetmenizi 4 | mecbur kılar. Bunun bir çok avantajı vardır : Gelişmiş ölçeklenebilirlik bir yana, 5 | biz bu şekilde , kimlik bilgilerini , işlemleri yetkilendiren imzalardan ayırmış oluyoruz. 6 | Uygulamada , *bir hesap adına sahip olmak* *o hesaba ait fonları* harcayabilmekten 7 | bağımsızdır. Dahası her iki hak da (biz bunlara *izinler* diyoruz) *ağırlıklar* ve 8 | *eşikler* kullanılarak gelişigüzel karmaşık insan ilişkileri (biz bunlara "yetkiler" 9 | diyoruz) arasında paylaştırılabilirler. -------------------------------------------------------------------------------- /app/help/tr/assets/EUR.md: -------------------------------------------------------------------------------- 1 | [# summary] 2 | ### Aktif {symbol} 3 | 4 | {description} 5 | Piyasaya süren {issuer} 6 | 7 | Euro (işaret: €; sembol: EUR) Avrupa bölgesindeki katılımcı ülkelerin resmi para birimidir. 8 | -------------------------------------------------------------------------------- /app/help/tr/assets/USD.md: -------------------------------------------------------------------------------- 1 | [# summary] 2 | ### Aktif {symbol} 3 | 4 | {description} 5 | Piyasaya süren {issuer} 6 | 7 | Amerikan Doları (işeret: $; sembol: USD $) ABD'nin resmi para birimidir. -------------------------------------------------------------------------------- /app/help/tr/assets/privbitassets.md: -------------------------------------------------------------------------------- 1 | Özelleştirilmiş BitAktifler (Privatized BitAssets) 2 | ==================== 3 | 4 | Özelleştirilmiş BitAktifler piyasa-sabitli-aktif çıkarmak isteyen fakat 5 | fiyatların tanıklar tarafından duyurulmasını istemeyen müşterilere hitab eder. Onun 6 | yerine, süren kimse *özelleştirilmiş* bitaktif yaratırken o aktif için özel olarak 7 | fiyatlarını duyurmaya müsadesi olan bir takım yetkililer belirleyebilir. Süren kimse 8 | aktifle ilgili başka her türlü ücreti belirleyebilir ve kar elde edebilir. 9 | 10 | Bu özellik gerçek-zamanlı fiyatlara erişimi olan ve teşhir ve hacim arttırmak isteyen 11 | borsalar ve kuruluşlar için ayrıca ilgi çekicidir. -------------------------------------------------------------------------------- /app/help/tr/components/AccountAssetCreate.md: -------------------------------------------------------------------------------- 1 | Bir aktif yaratmak için şunlar gerekli : 2 | * Geçerli bir varlık sembolü 3 | * 0 (sıfır)dan büyük maksimum arz 4 | 5 | Hassasiyet , varlığın destekleyeceği ondalık hane sayısını belirler. 6 | 7 | Varlık yaratmanın masraf ücreti öncelikle varlığa ait sembolün uzunluğuna bağlıdır. 8 | 9 | Ücretlerin nekadarını tutacağınızı da piyasa ücreti ile yüzde olarak belirtebilirsiniz. -------------------------------------------------------------------------------- /app/help/tr/components/AccountPermActive.md: -------------------------------------------------------------------------------- 1 | Etkin izinler, bu hesaptaki fonları harcamaya izni olan hesapları belirler. 2 | 3 | Etkin izinler kolay bir şekilde çok-imzalı bir düzen kurmak için kullanılabilirler, daha fazla bilgi için [izinler](accounts/permissions) bölümüne bakabilirsiniz. -------------------------------------------------------------------------------- /app/help/tr/components/AccountPermMemo.md: -------------------------------------------------------------------------------- 1 | Memo anahtarı, memoların size ulaştığı yerdir, memoları deşifre edebilmeniz için açık anahtara ait özel anahtarın yönetimine sahip olmanız gerekir. 2 | 3 | Bir açık/özel anahtar çifti kullanarak harcama yetkisi olmadan üçüncü şahıslara memolarınıza salt-okuma erişimi sağlayabilirsiniz. -------------------------------------------------------------------------------- /app/help/tr/components/AccountPermOwner.md: -------------------------------------------------------------------------------- 1 | Sahip izinleri hesap üzerinde kimin kontrolü olduğunu belirler. Sahipler tüm anahtarların yenilerini belirleyebilir ve herhangi hesap ayarını değiştirebilir. 2 | 3 | Daha fazla bilgi için [izinler](accounts/permissions) . -------------------------------------------------------------------------------- /app/help/tr/components/AccountVoting.md: -------------------------------------------------------------------------------- 1 | ### Oy Kullanma 2 | 3 | BitShares'de oy kullanmak ağın hem gelişmesi hem de güvenliği için önemlidir. Eğer dilerseniz oy kullanma hakkınızı sizin için oy kullanabilecek bir vekile devredebilirsiniz. Eğer vekil tayin ederseniz, manuel oylama etkisiz hale getirilecektir. -------------------------------------------------------------------------------- /app/help/tr/components/AccountVotingCommittee.md: -------------------------------------------------------------------------------- 1 | [Kurul üyeleri](introduction/committee) blok zincirine ait ücretler, blok süreleri ve diğer bir çok şey gibi dinamik parametrelerin değiştirilmesini teklif edebilirler. BitShares'in nasıl işlediğine dair derin bilgi gerektiren büyük bir sorumluluk pozisyonudur. -------------------------------------------------------------------------------- /app/help/tr/components/AccountVotingProxy.md: -------------------------------------------------------------------------------- 1 | Bir vekil adınıza oy kullanımını yönetir. BitShares forumunda vekil olarak görev almaya gnüllü kişileri bulabilirsiniz [BitSharestalk](https://bitsharestalk.org/index.php/board,75.0.html). -------------------------------------------------------------------------------- /app/help/tr/components/AccountVotingWitnesses.md: -------------------------------------------------------------------------------- 1 | [Taniklar](introduction/witness) BitShares'in blok üreticileridirler. İşlemlerin geçerliliklerini teyit eder ve ağın güvenliğini sağlarlar. Dilediğiniz kadar tanığa oy verebilirsiniz, hepsi aynı miktarda alır. Tanık tekliflerini buradan takip edebilirsiniz: [BitSharestalk - Stakeholder Proposals Board](https://bitsharestalk.org/index.php/board,75.0.html). 2 | -------------------------------------------------------------------------------- /app/help/tr/components/AccountVotingWorkers.md: -------------------------------------------------------------------------------- 1 | [İşçiler](introduction/workers) BitShares'e özgü bir kavramdır. İşçiler, blok zincirinin kendisinden aldıkları maaş karşılığında hizmet sağlayan tekliflerdir. Teklifin amacını açıklayan bir web veya forum bağlantısı teklifin içine dahil edilmelidir, teklifleri burada görebilirsiniz : [BitSharestalk - Stakeholder Proposals Board](https://bitsharestalk.org/index.php/board,75.0.html). 2 | -------------------------------------------------------------------------------- /app/help/tr/components/BorrowModal.md: -------------------------------------------------------------------------------- 1 | Bu ileti arzu ettiğiniz borç ve teminatı belirlemenizi sağlar. 2 | 3 | Eğer {debt} borç azaltılırsa {borrower} hesabından düşürülecektir. 4 | Eğer {debt} borç artarsa yeterli {collateral} teminat bulunması kaydıyla {borrower} hesabına yatırılacaktır. 5 | 6 | Asgari idame teminatı muhafaza edildiği sürece teminat eklenebilir yada eksiltilebilir. -------------------------------------------------------------------------------- /app/help/tr/components/DepositWithdraw.md: -------------------------------------------------------------------------------- 1 | [# receive] 2 | ### Kullanıcı adınız 3 | Bitshares hesabınıza bir başkasından ya da bir borsadan BTS gönderimi için, göndericiye kullanıcı adınızı vermeniz yeterlidir. BTS'ler doğrudan kullanıcı adı belirtilerek gönderilir: 4 | 5 | [# deposit-short] 6 | ### Kripto para yatır/çek 7 | Başka blokzincirlerinden Bitshares hesabınıza (ör. BTC gibi) "coin" aktarmak için ya da TL, dolar gibi fiat para birimleriyle Bitshares'de işlem yapabilmek için lütfen aşağıdan bir transfer hizmet sağlayıcısı seçin. 8 | -------------------------------------------------------------------------------- /app/help/tr/components/InitError.md: -------------------------------------------------------------------------------- 1 | [# connection-error] 2 | Ful noda websocket bağlantısı kuramadık. 3 | 4 | Olası sebepler: TODO 5 | - sebep #1 6 | - sebep #2 7 | -------------------------------------------------------------------------------- /app/help/tr/glossary.md: -------------------------------------------------------------------------------- 1 | ### Terimler 2 | 3 | [İndexe Geri Git](index.md) -------------------------------------------------------------------------------- /app/help/tr/introduction/committee.md: -------------------------------------------------------------------------------- 1 | #Kurul 2 | 3 | Kurul, hissedarlar tarafından onaylanan kişilerden oluşan ve bazı ticari 4 | parametreleri belirleyen bir gruptur. Bu parametrelerden bazıları şunlardır : 5 | 6 | * işlem ve alım-satım ücretleri 7 | * blok büyüklüğü ve blok aralıkları gibi blokzinciri parametreleri 8 | * nakit iade oranları ve vesting periodları gibi parametreleri 9 | gibi. -------------------------------------------------------------------------------- /app/help/zh/accounts/general.md: -------------------------------------------------------------------------------- 1 | # 账户 2 | 3 | 或许你已经注意到,本区块链技术要求你注册一个账户名。这带来很多好处:这不仅增强了系统的可扩展性,同时我们可以将身份标示与交易授权签名分开。事实上,*拥有一个账户名*和能够*花费它的资金*是相互独立的。而且,这两种权利 (我们称之为*权限*)能够分散赋予任意复杂的人群关系中。我们称之为*职权实体*你可通过分配*权重*和设定 *门槛阀值*来实现。 4 | -------------------------------------------------------------------------------- /app/help/zh/assets/EUR.md: -------------------------------------------------------------------------------- 1 | [# summary] 2 | ### 资产 {symbol} 3 | 4 | {description} 5 | 发行人 {issuer} 6 | 7 | 欧元 (标识: €; 符号: EUR) 是欧元区参与国的官方货币。 8 | -------------------------------------------------------------------------------- /app/help/zh/assets/USD.md: -------------------------------------------------------------------------------- 1 | [# summary] 2 | ### 资产 {symbol} 3 | 4 | {description} 5 | 发行人 {issuer} 6 | 7 | 美元 (标识: $; 符号: USD) 是美利坚合众国的官方货币。 8 | -------------------------------------------------------------------------------- /app/help/zh/assets/mpa.md: -------------------------------------------------------------------------------- 1 | # 市场锚定资产 2 | 3 | 一种加密数字货币,拥有类似比特币的属性和优点,同时能保持价格与对应的全球接受的货币同步(比如美元)。具有很强的便利性和实用性,对管制免疫。BitShares的市场锚定资产(MPA)可以实现这样的目的。市场锚定资产是一种新型的可自由交易的数字资产,通过差价合约(CFD)机制,它的价值能够追踪传统的对应资产的价值。 4 | 5 | *SmartCoin* (市场锚定资产的另一种叫法)是一种数字货币,它的价值*总是*有100%或更多价值的比特股核心货币(BTS)来支撑。这些BTS在差价合约(CFD)中,作为抵押物存在,并在任何时间可被赎回。 6 | 7 | 市场锚定资产与众不同的一个特点在于,尽管它使用了有抵押的价差合约,它却能免于对手盘风险。这是由网络本身(软件协议)通过确保抵押充足,并在特定情况下进行强制清算的机制来实现的。 8 | 9 | 以下是部分已经可用的市场锚定资产 10 | * BitUSD (比特美元) 11 | * BitCNY (比特人民币) 12 | * BitEUR (比特欧元) 13 | * BitGOLD (比特黄金) 14 | * ... 15 | -------------------------------------------------------------------------------- /app/help/zh/assets/privbitassets.md: -------------------------------------------------------------------------------- 1 | 私有比特资产 2 | ==================== 3 | 4 | 通过私有比特资产,某些用户可以发行市场锚地资产,然后并不依赖见证人发布的喂价信息。相反的,在创建*私有比特资产*时,发行人设定一组授权账号来发布喂价信息。发行人可以设置与该资产相关的各种费率参数。 5 | 6 | 这个特性主要适用于一些中心化交易所和机构,它们往往能够获得实时的价格信息,并以此来增加交易量。 -------------------------------------------------------------------------------- /app/help/zh/assets/uia.md: -------------------------------------------------------------------------------- 1 | # 用户发行的资产 2 | 3 | 除了之前提到的 *市场锚定资产* 外,BitShares允许个人或公司用户创建和发行各种自定义资产凭证(UIA)。相关的应用场景数不胜数。比如,UIA可被用来代替简单的活动门票,存入合格用户的手机钱包中,在进入活动现场时进行实时验证。同样,UIA可被用来进行众筹、所有权追踪,甚至是代表公司的股权。 4 | 5 | 显然,适用于不同凭证使用场景的法律法规可能天差地别,尤其是在不同国家时。所以,BitShares提供了一组工具来帮助发行人来合规发行和管理UIA。 -------------------------------------------------------------------------------- /app/help/zh/components/AccountAssetCreate.md: -------------------------------------------------------------------------------- 1 | 创建自定义资产需要以下信息: 2 | 3 | * 资产符号 4 | * 最大供给量 5 | 6 | 精度决定了资产支持的小数点后的位数。 7 | 8 | 资产创建需要支付的费用取决于资产符号的字符长度。 9 | 10 | 你可以设定交易手续费率来决定用户交易时需要向你支付多少比例的费用。 -------------------------------------------------------------------------------- /app/help/zh/components/AccountPermActive.md: -------------------------------------------------------------------------------- 1 | 活跃权限用来设定拥有花费本账户资金权限的账户名或公钥。 2 | 3 | 可方便的架设多重签名机制,参见 [权限](accounts/permissions) 了解更新信息。 -------------------------------------------------------------------------------- /app/help/zh/components/AccountPermMemo.md: -------------------------------------------------------------------------------- 1 | 交易附带的备注信息是使用备注公钥加密后传输的。为了解密备注信息,需要拥有备注公钥对应的私钥。 2 | 3 | 备注信息由单独公/私钥对进行管理,而非兼用活跃权限职权实体可让你安全的将备注信息的只读权限交由第三方,而无需暴露在资金控制权外泄的风险下。 -------------------------------------------------------------------------------- /app/help/zh/components/AccountPermOwner.md: -------------------------------------------------------------------------------- 1 | 账户权限设定谁可以控制本账户。控制人(账户名或公钥)可修改账户相关的各种设置,包括权限设置。 2 | 3 | 参见 [权限](accounts/permissions) 了解更多信息。 -------------------------------------------------------------------------------- /app/help/zh/components/AccountVoting.md: -------------------------------------------------------------------------------- 1 | ### 投票 2 | 3 | 在BitShares系统中,投票是非常重要的一项特性,不仅事关网络安全,同时也能影响系统的后续开发方向。如果你愿意的话,你可以将你的投票权交由代理投票账户执行。如果你设定了代理投票账户,则手动投票将相应关闭。 -------------------------------------------------------------------------------- /app/help/zh/components/AccountVotingCommittee.md: -------------------------------------------------------------------------------- 1 | [理事会成员](introduction/committee) 可以提议修改区块链的动态参数,比如手续费,区块间隔时间以及其他很多参数。这是一个需要对BitShares系统如何运作有很深理解,需要有很强责任感的职位。 -------------------------------------------------------------------------------- /app/help/zh/components/AccountVotingProxy.md: -------------------------------------------------------------------------------- 1 | 代理投票账户代表你行使投票权力。你可以在[BitSharestalk](https://bitsharestalk.org/index.php/board,75.0.html)论坛上找到一些申请成为投票代理人的提案。 -------------------------------------------------------------------------------- /app/help/zh/components/AccountVotingWitnesses.md: -------------------------------------------------------------------------------- 1 | [见证人](introduction/witness) 是BitShares系统中区块的生产者。他们验证交易数据并维护网络安全。你可以投票选举你信任的人成为见证人。投票时,你选择的候选人将获得你投出的相同票数。见证人的竞选帖可在这里找到[BitSharestalk - Stakeholder Proposals Board](https://bitsharestalk.org/index.php/board,75.0.html)。 2 | -------------------------------------------------------------------------------- /app/help/zh/components/AccountVotingWorkers.md: -------------------------------------------------------------------------------- 1 | [预算项目](introduction/workers) 是BitShares系统中独有的概念。他们是一些期望通过提供服务来从区块链获得奖金的工作项目提案。一项提案包含一个指向网站或论坛帖子的链接,在其中详细解释了工作项目的介绍。在这里[BitSharestalk - Stakeholder Proposals Board](https://bitsharestalk.org/index.php/board,75.0.html)可以看到一些提案。 2 | -------------------------------------------------------------------------------- /app/help/zh/components/BorrowModal.md: -------------------------------------------------------------------------------- 1 | 调整和设置你的债务及抵押物(保证金). 2 | 3 | 如果调低 {debt} 债务水平,将从 {borrower} 账户中扣除相应 {debt} 归还。 4 | 如果调高 {debt} 债务水平,只要 {borrower} 账户持有足够的 {collateral} 可供抵押冻结,新借入的 {debt} 将存入 {borrower} 账户中。 5 | 6 | 保证金可以增加或减少,只要抵押率超过维持保证金率。[更多信息](dex/shorting) 7 | -------------------------------------------------------------------------------- /app/help/zh/components/DepositWithdraw.md: -------------------------------------------------------------------------------- 1 | [# receive] 2 | ### 获取 BTS 3 | 为了从其他人或者交易所获得BTS,你只需要提供你的账户名: **{account}** 4 | 5 | [# deposit-short] 6 | ### 充值/提现 数字资产 7 | 如果你要充值或提现资产,无论是法币或是来自其他区块链,你需要使用[桥接](introduction/bridges_gateways) 或 [网关](introduction/bridges_gateways) 服务来实现。你可以从下面找到一系列提供服务的服务商: -------------------------------------------------------------------------------- /app/help/zh/components/Fees.md: -------------------------------------------------------------------------------- 1 | # 手续费率 2 | 3 | 在BitShares系统中,每一种操作都将花费*相应*手续费。手续费率可能发生变化。然而,手续费的调整需要获得股东的授权。所以每一位持有BitShares核心资产(BTS)的股东对费率的构成都有话语权。如果股东确信某种手续费的降低将带来好处,并且达成共识,那么该种手续费则由区块链自动进行调低。区块链参数的改变由理事会成员提出动议。这些成员由全体股东投票选举产生,以提高系统灵活性和响应率。 -------------------------------------------------------------------------------- /app/help/zh/components/InitError.md: -------------------------------------------------------------------------------- 1 | [# connection-error] 2 | 无法获取到全节点的 websocket 连接 3 | 4 | Possible reasons: TODO 5 | - reason #1 6 | - reason #2 7 | -------------------------------------------------------------------------------- /app/help/zh/glossary.md: -------------------------------------------------------------------------------- 1 | ### 词汇表 2 | 3 | [返回索引页](index.md) 4 | -------------------------------------------------------------------------------- /app/help/zh/introduction/backups.md: -------------------------------------------------------------------------------- 1 | # 备份 2 | 3 | 我们建议你经常备份你的钱包,尽管在绝大多数情况下备份一次已经足够。需要注意的是,从备份中恢复钱包数据时,由于*备份是加密保存*的,你需要提供创建钱包时使用的密码进行解密才能恢复。所以,如果你丢失了钱包文件或者忘记了你的密码,你将无法访问钱包中的资金! 4 | 5 | 备份功能可以通过钱包管理界面进行操作(`设置->钱包`)。 6 | 7 | ## 钱包导出 8 | 9 | 最便捷的备份方式是通过钱包管理界面提供的操作按钮进行钱包导出。请妥善保存你的备份文件,防止遗失、被盗或自然灾害。 10 | 11 | ## 脑钱包密钥 (仅高级用户适用) 12 | 13 | 如果你从未手动导入过账户私钥进入过你的钱包,那么你还可以选择通过导出*脑钱包密钥*进行备份。脑钱包密钥是一长串由单词组成的字符串,通过它钱包软件可进行确定性重算恢复你的账户私钥。 14 | 15 | ## 多层级职权实体 (仅高级用户适用) 16 | 17 | 如果你使用了多层级职权实体功能(设置了账户权限/活跃权限),那么只是备份你自己的钱包是不够的。还需要相关的被授权的职权实体的密钥也被安全备份。请阅读关于多层级职权实体的更多内容。 18 | -------------------------------------------------------------------------------- /app/help/zh/introduction/blockchain.md: -------------------------------------------------------------------------------- 1 | # 区块链 2 | 3 | 与大多数数字货币类似,Graphene (石墨烯) 使用区块链来记录参与者的转账信息及市场行为。由于每个区块总是指向前一个区块,我们获得一个区块链条包含了所有在网络上发生的交易信息。区块链是一个公开的,可审计的账簿,每个人都能够查看详细数据,并验证交易、市场订单和买卖盘数据。 4 | 5 | 当然,本钱包软件内置了一个区块链浏览工具,帮助你进行数据查看和审验。 6 | 7 | ## 共识机制 8 | 9 | 由谁在什么时间来*打包生成*区块是由被称为*Delegated Proof of Stak (DPOS)*的共识算法决定的。算法的本质是 BitShares 的股东(BTS的持有者)能通过投票来决定他们期望的块打包者。由获得最多票数的所谓"见证人"来打包生成区块。 10 | 11 | ## 交易 12 | 13 | Graphene (石墨烯) 区块链技术提供了多种交易类型。用户不仅可以相互进行简单的资产转账,还能与去中心化交易所进行交互。大多数交易类型可通过字面意思理解,其他的则要求对系统的内部运作机制有较深的理解。 -------------------------------------------------------------------------------- /app/help/zh/introduction/bridges_gateways.md: -------------------------------------------------------------------------------- 1 | ## 桥接及网关服务 2 | 3 | 桥接和网关服务帮助用户进行数字资产的充值和提现活动。但这两种服务模式有些不同。 4 | 5 | ### 桥接: 无需信任的模式 6 | 桥接服务运行用户存入一定数量的BTS以外的数字货币(资产),并获得相应的智能锚定货币(SmartCoin)。锚定货币没有对手方风险。所以这种模式下,用户面对的风险仅在于充值期间一小段时间的风险。这相对于比中心化的交易所的充值方式安全得多,因为中心化交易所总是面临各种黑客攻击或者其他管理漏洞而导致丢币的风险。 7 | 8 | ### 网关: 需要信任的模式 9 | 网关模式下基本上就和传统的交易所运作模式相似,依赖于交易所的偿付能力。网关发行资产,一般以网关品牌作为前缀,比如OPEN,TRADE或是META。这些资产由用户存入网关的对真实应资产背书,比如BTC,ETH等。 10 | 11 | OPEN.BTC理论上和你充值到一般中心化交易所,比如Poloniex的BTC一样,可以记作POLO.BTC。你都将依赖网关对你的数字资产进行兑付。 -------------------------------------------------------------------------------- /app/help/zh/introduction/committee.md: -------------------------------------------------------------------------------- 1 | # 理事会 2 | 3 | 理事会由一组股东投票通过的理事会成员组成,理事会成员的职责在于设定系统运行参数。其中包括: 4 | 5 | * 转账及交易手续费 6 | * 区块链参数,比如区块大小,区块生成时间间隔,等等 7 | * 推荐及冻结/解冻参数,比如奖励返现比例和冻结时间等 8 | -------------------------------------------------------------------------------- /app/help/zh/introduction/wallets.md: -------------------------------------------------------------------------------- 1 | # 钱包软件 2 | 3 | 你或许已经注意到,本应用是一个基于web的应用软件,在浏览器中运行。通过与一个受信任的节点连接来获得整个生态系统的接入。 4 | 5 | ## 钱包安全性 6 | 7 | 你可以确信的是我们的服务器永远不会也不能访问你的资产。你的私钥不会离开你的本地浏览器。它们使用你的密码进行加密后保存在本地浏览器的数据库中。因此,你只需要确保你已经[备份](../introduction/backups.md)了钱包,就不用担心由于计算机失灵或者浏览器奔溃导致钱包数据丢失。 8 | 9 | ## 钱包管理 10 | 11 | 钱包系统的用户界面允许你使用多个独立的钱包,每个钱包可能包含相互独立的账户和资金。你可以通过`设置->钱包`菜单进行创建、备份和切换钱包的操作。 -------------------------------------------------------------------------------- /app/help/zh/introduction/witness.md: -------------------------------------------------------------------------------- 1 | # 见证人 2 | 3 | 见证人是为区块链打包生成新的区块的实体。每一个见证人由股东批准,打包经验证的交易,生成并签署区块。每一条进入网络的交易最终将被所有见证人验证。 4 | 5 | ## 共识机制 6 | 7 | 由谁在什么时间来*打包生成*区块是由被称为*Delegated Proof of Stak (DPOS)*的共识算法决定的。算法的本质是 BitShares 的股东(BTS的持有者)能通过投票来决定他们期望的块打包者。由获得最多票数的所谓"见证人"来打包生成区块。 -------------------------------------------------------------------------------- /app/help/zh/introduction/workers.md: -------------------------------------------------------------------------------- 1 | # 预算项目 2 | 3 | 预算项目期望通过提供服务来从区块链获得奖金的工作项目提案。一项提案包含至少以下信息: 4 | 5 | * 开始和结束时间 6 | * 每日支付预算 7 | * 预算上限 8 | 9 | 它还应该包含一个指向网页或论坛帖子的链接,以详细介绍工作项目内容。 10 | 11 | 针对预算项目,投票人可以选择支持或者反对。 12 | 13 | ## 预算项目支付机制 14 | 15 | 预算项目每天收到的金额来自一个金额固定的每日预算池,根据票数多寡排序进行分配,知道每日预算池中资金耗尽。举一个例子: 16 | 17 | * 每日预算池总额为400K BTS 18 | * 有5个预算项目符合条件(支持票多余反对票),他们都要求每天获得100K BTS的预算支持。 19 | 20 | 那么得票较多的4个项目将每天获得100K BTS的支付,但是由于付完这4各项目,每日预算池中已无资金剩余,那么第五个项目受付金额则为0。 21 | -------------------------------------------------------------------------------- /app/index-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/app/index-dev.js -------------------------------------------------------------------------------- /app/lib/chain/account_constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | account_listing: { 3 | no_listing: 0x0, ///< No opinion is specified about this account 4 | white_listed: 0x1, ///< This account is whitelisted, but not blacklisted 5 | black_listed: 0x2, ///< This account is blacklisted, but not whitelisted 6 | white_and_black_listed: 0x1 | 0x2 ///< This account is both whitelisted and blacklisted 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /app/lib/chain/chainIds.js: -------------------------------------------------------------------------------- 1 | const chainIds = { 2 | MAIN_NET: 3 | "4018d7844c78f6a6c41c6a552b898022310fc5dec06da467ee7905a8dad512c8", 4 | TEST_NET: 5 | "2821abbb9923c830cf8300136c431674756270d9019f56c00e80b296e3afc079", 6 | DEV_NET: "92e31f3a1e262c773eb2d3d7741b0d7a75ff91ded998759fb1611014d9310378" 7 | }; 8 | 9 | export class ChainUtilities { 10 | static isValidChainId(chainId) { 11 | return ( 12 | Object.keys(chainIds).find(key => { 13 | return chainIds[key] === chainId; 14 | }) !== null 15 | ); 16 | } 17 | } 18 | 19 | export default chainIds; 20 | -------------------------------------------------------------------------------- /app/lib/chain/serializer_config.coffee: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = 4 | hex_dump: no 5 | -------------------------------------------------------------------------------- /app/lib/common/Counterpart.js: -------------------------------------------------------------------------------- 1 | var counterpart = require("counterpart"); 2 | 3 | module.exports = counterpart; 4 | -------------------------------------------------------------------------------- /app/lib/common/backupUtils.js: -------------------------------------------------------------------------------- 1 | import {ChainConfig} from "bitsharesjs-ws"; 2 | 3 | export function backupName(walletName, date = new Date()) { 4 | let name = walletName; 5 | let address_prefix = ChainConfig.address_prefix.toLowerCase(); 6 | if (name.indexOf(address_prefix) !== 0) name = address_prefix + "_" + name; 7 | 8 | let month = date.getMonth() + 1; 9 | let day = date.getDate(); 10 | let stampedName = `${name}_${date.getFullYear()}${ 11 | month >= 10 ? month : "0" + month 12 | }${day >= 10 ? day : "0" + day}`; 13 | 14 | name = stampedName + ".bin"; 15 | return name; 16 | } 17 | -------------------------------------------------------------------------------- /app/lib/common/base58.coffee: -------------------------------------------------------------------------------- 1 | module.exports = require 'bs58' 2 | -------------------------------------------------------------------------------- /app/lib/common/localStorageImpl.js: -------------------------------------------------------------------------------- 1 | var ls_key_exists = function _ls_key_exists(key, ls) { 2 | return key in ls; 3 | }; 4 | export {ls_key_exists}; 5 | export default (typeof localStorage === "undefined" ? null : localStorage); 6 | -------------------------------------------------------------------------------- /app/lib/common/qr-image.coffee: -------------------------------------------------------------------------------- 1 | module.exports = require 'qr-image' 2 | -------------------------------------------------------------------------------- /app/lib/common/reactUtils.js: -------------------------------------------------------------------------------- 1 | export function getDisplayName(WrappedComponent) { 2 | return WrappedComponent.displayName || WrappedComponent.name || "Component"; 3 | } 4 | -------------------------------------------------------------------------------- /app/lib/common/secureRandom.coffee: -------------------------------------------------------------------------------- 1 | module.exports = require 'secure-random' 2 | -------------------------------------------------------------------------------- /app/lib/feature_detect/browser.js: -------------------------------------------------------------------------------- 1 | export default function(){ 2 | let ua = navigator.userAgent.toLowerCase(); 3 | 4 | if(ua.indexOf("firefox") > -1){ //is firefox 5 | return "firefox"; 6 | } else if(ua.search("safari") >= 0 && ua.search("chrome") < 0){ //is safari 7 | return "safari"; 8 | } else if(window.chrome){ //is chrome 9 | return "chrome"; 10 | } else if(ua.indexOf("msie") > -1 || ua.match(/trident.*rv\:11\./)){ //is IE 11 | return "ie"; 12 | } else if(ua.indexOf("opera") > -1){ 13 | return "opera"; 14 | } else { 15 | return ua; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/lib/feature_detect/index.js: -------------------------------------------------------------------------------- 1 | import isIncognito from "./incognito"; 2 | import browser from "./browser"; 3 | 4 | export { isIncognito, browser } 5 | -------------------------------------------------------------------------------- /app/lib/workers/AddressIndexWorker.js: -------------------------------------------------------------------------------- 1 | import {key} from "bitsharesjs/es"; 2 | 3 | onmessage = function(event) { 4 | try { 5 | console.log("AddressIndexWorker start"); 6 | let {pubkeys, address_prefix} = event.data; 7 | let results = []; 8 | for (let pubkey of pubkeys) { 9 | results.push(key.addresses(pubkey, address_prefix)); 10 | } 11 | postMessage(results); 12 | console.log("AddressIndexWorker done"); 13 | } catch (e) { 14 | console.error("AddressIndexWorker", e); 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /app/stores/BaseStore.js: -------------------------------------------------------------------------------- 1 | class BaseStore { 2 | constructor() {} 3 | 4 | _export(...methods) { 5 | let publicMethods = {}; 6 | methods.forEach(method => { 7 | if (!this[method]) 8 | throw new Error( 9 | `BaseStore._export: method '${method}' not found in ${ 10 | this.__proto__._storeName 11 | }` 12 | ); 13 | this[method] = this[method].bind(this); 14 | publicMethods[method] = this[method]; 15 | }); 16 | this.exportPublicMethods(publicMethods); 17 | } 18 | } 19 | 20 | export default BaseStore; 21 | -------------------------------------------------------------------------------- /app/stores/ImportKeysStore.js: -------------------------------------------------------------------------------- 1 | import alt from "alt-instance"; 2 | import BaseStore from "stores/BaseStore"; 3 | 4 | class ImportKeysStore extends BaseStore { 5 | constructor() { 6 | super(); 7 | this.state = this._getInitialState(); 8 | this._export("importing"); 9 | } 10 | 11 | _getInitialState() { 12 | return {importing: false}; 13 | } 14 | 15 | importing(importing) { 16 | this.setState({importing}); 17 | } 18 | } 19 | 20 | export var ImportKeysStoreWrapped = alt.createStore( 21 | ImportKeysStore, 22 | "ImportKeysStore" 23 | ); 24 | export default ImportKeysStoreWrapped; 25 | -------------------------------------------------------------------------------- /bloom_filter/bloom_bitshares.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/bloom_filter/bloom_bitshares.dat -------------------------------------------------------------------------------- /bloom_filter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bitshares-keys-bloom-filter", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "bloom_filter_wallet.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": "cat wallet.json | node bloom_filter_wallet.js > filtered_wallet.json", 9 | "start-windows": "type wallet.json | node bloom_filter_wallet.js > filtered_wallet.json" 10 | }, 11 | "author": "", 12 | "license": "ISC", 13 | "devDependencies": { 14 | "coffee-script": "^1.12.2", 15 | "bitsharesjs": "^0.4.10" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webgui", 3 | "version": "0.0.1", 4 | "homepage": "https://github.com/cryptonomex/graphene_ui", 5 | "authors": [ 6 | "Cryptonomex, Inc." 7 | ], 8 | "description": "gui powered by react and graphene", 9 | "ignore": [ 10 | "**/.*", 11 | "node_modules", 12 | "bower_components" 13 | ], 14 | "dependencies": { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /charting_library/static/bundles/crosshair.6c091f7d5427d0c5e6d9dc3a90eb2b20.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/bundles/crosshair.6c091f7d5427d0c5e6d9dc3a90eb2b20.cur -------------------------------------------------------------------------------- /charting_library/static/bundles/dot.ed68e83c16f77203e73dbc4c3a7c7fa1.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/bundles/dot.ed68e83c16f77203e73dbc4c3a7c7fa1.cur -------------------------------------------------------------------------------- /charting_library/static/bundles/eraser.0579d40b812fa2c3ffe72e5803a6e14c.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/bundles/eraser.0579d40b812fa2c3ffe72e5803a6e14c.cur -------------------------------------------------------------------------------- /charting_library/static/bundles/grab.bc156522a6b55a60be9fae15c14b66c5.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/bundles/grab.bc156522a6b55a60be9fae15c14b66c5.cur -------------------------------------------------------------------------------- /charting_library/static/bundles/grabbing.1c0862a8a8c0fb02885557bc97fdafe7.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/bundles/grabbing.1c0862a8a8c0fb02885557bc97fdafe7.cur -------------------------------------------------------------------------------- /charting_library/static/bundles/vendors.a94ef44ed5c201cefcf6ad7460788c1a.css: -------------------------------------------------------------------------------- 1 | @keyframes highlight-animation{0%{background:transparent}to{background:#fff2cf}}@keyframes highlight-animation-theme-dark{0%{background:transparent}to{background:#194453}} -------------------------------------------------------------------------------- /charting_library/static/bundles/zoom.e21f24dd632c7069139bc47ae89c54b5.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/bundles/zoom.e21f24dd632c7069139bc47ae89c54b5.cur -------------------------------------------------------------------------------- /charting_library/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /charting_library/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /charting_library/static/images/balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/balloon.png -------------------------------------------------------------------------------- /charting_library/static/images/bar-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/bar-loader.gif -------------------------------------------------------------------------------- /charting_library/static/images/button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/button-bg.png -------------------------------------------------------------------------------- /charting_library/static/images/charting_library/logo-widget-copyright-faded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/charting_library/logo-widget-copyright-faded.png -------------------------------------------------------------------------------- /charting_library/static/images/charting_library/logo-widget-copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/charting_library/logo-widget-copyright.png -------------------------------------------------------------------------------- /charting_library/static/images/controlll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/controlll.png -------------------------------------------------------------------------------- /charting_library/static/images/delayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/delayed.png -------------------------------------------------------------------------------- /charting_library/static/images/dialogs/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/dialogs/checkbox.png -------------------------------------------------------------------------------- /charting_library/static/images/dialogs/close-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/dialogs/close-flat.png -------------------------------------------------------------------------------- /charting_library/static/images/dialogs/large-slider-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/dialogs/large-slider-handle.png -------------------------------------------------------------------------------- /charting_library/static/images/dialogs/linewidth-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/dialogs/linewidth-slider.png -------------------------------------------------------------------------------- /charting_library/static/images/dialogs/opacity-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/dialogs/opacity-slider.png -------------------------------------------------------------------------------- /charting_library/static/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/icons.png -------------------------------------------------------------------------------- /charting_library/static/images/prediction-clock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/prediction-clock-black.png -------------------------------------------------------------------------------- /charting_library/static/images/prediction-clock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/prediction-clock-white.png -------------------------------------------------------------------------------- /charting_library/static/images/prediction-failure-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/prediction-failure-white.png -------------------------------------------------------------------------------- /charting_library/static/images/prediction-success-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/prediction-success-white.png -------------------------------------------------------------------------------- /charting_library/static/images/select-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/select-bg.png -------------------------------------------------------------------------------- /charting_library/static/images/sidetoolbar/instruments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/sidetoolbar/instruments.png -------------------------------------------------------------------------------- /charting_library/static/images/sidetoolbar/toolgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/sidetoolbar/toolgroup.png -------------------------------------------------------------------------------- /charting_library/static/images/svg/chart/bucket2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charting_library/static/images/svg/chart/font.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charting_library/static/images/svg/chart/large-slider-handle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charting_library/static/images/svg/chart/pencil2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charting_library/static/images/tvcolorpicker-bg-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/tvcolorpicker-bg-gradient.png -------------------------------------------------------------------------------- /charting_library/static/images/tvcolorpicker-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/tvcolorpicker-bg.png -------------------------------------------------------------------------------- /charting_library/static/images/tvcolorpicker-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/tvcolorpicker-check.png -------------------------------------------------------------------------------- /charting_library/static/images/tvcolorpicker-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/tvcolorpicker-sprite.png -------------------------------------------------------------------------------- /charting_library/static/images/warning-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/charting_library/static/images/warning-icon.png -------------------------------------------------------------------------------- /charting_library/static/localization/translations/widgets-copyrights.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /charting_library/static/localization/translations/widgets-copyrights.json.example: -------------------------------------------------------------------------------- 1 | { 2 | "default": "by {0}" 3 | } 4 | -------------------------------------------------------------------------------- /conf/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # We build the wallet each time we run the docker and it takes a couple of minutes 4 | npm run build 5 | 6 | cp -r /bitshares-ui/build/dist/* /var/www/ 7 | 8 | nginx -g "daemon off;" 9 | -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /app/assets/locales/locale-en.json 3 | translation: /app/assets/locales/locale-%two_letters_code%.json 4 | - source: /app/help/en/**/ 5 | translation: /app/help/%two_letters_code%/**/%original_file_name% 6 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "2" 2 | volumes: 3 | wallet_build: {} 4 | 5 | services: 6 | web-wallet: 7 | build: . 8 | ports: 9 | - "8080:80" 10 | volumes: 11 | - wallet_build:/bitshares-ui/build/dist 12 | - .:/bitshares-ui 13 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/README.md -------------------------------------------------------------------------------- /docs/_build/doctrees/components.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/doctrees/components.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/contributing.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/doctrees/contributing.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/data_layer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/doctrees/data_layer.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/getting_started.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/doctrees/getting_started.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/help.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/doctrees/help.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/license.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/doctrees/license.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/structure.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/doctrees/structure.doctree -------------------------------------------------------------------------------- /docs/_build/html/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 1da5a1a5435027eeeab3977e6dd08f82 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /docs/_build/html/_sources/components.txt: -------------------------------------------------------------------------------- 1 | Components 2 | ========== -------------------------------------------------------------------------------- /docs/_build/html/_sources/data_layer.txt: -------------------------------------------------------------------------------- 1 | Data layer 2 | ========== -------------------------------------------------------------------------------- /docs/_build/html/_sources/getting_started.txt: -------------------------------------------------------------------------------- 1 | Getting Started 2 | =============== 3 | 4 | Getting started with Graphene UI is very simple, and here you will find out how. First of all, you will need to clone the github repository to your local computer. This is accomplished by opening a terminal and entering:: 5 | 6 | git clone https://github.com/cryptonomex/graphene-ui.git 7 | 8 | This will clone the repo into a folder ``./graphene-ui`` on your computer. If you plan on contributing code, you should fork the repo on github and clone your own fork instead. More 9 | 10 | -------------------------------------------------------------------------------- /docs/_build/html/_sources/help.txt: -------------------------------------------------------------------------------- 1 | Help 2 | ==== 3 | 4 | If you have any questions, please contact one of the following people: 5 | 6 | - fabian@bitshares.org 7 | - cass@bitshares.org 8 | - bitsharesblocks@gmail.com 9 | - valentine@cryptonomex.com 10 | 11 | There's also a very active `Telegram chatroom `_ -------------------------------------------------------------------------------- /docs/_build/html/_sources/structure.txt: -------------------------------------------------------------------------------- 1 | General overview 2 | ================ -------------------------------------------------------------------------------- /docs/_build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/comment.png -------------------------------------------------------------------------------- /docs/_build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/down.png -------------------------------------------------------------------------------- /docs/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/_static/up.png -------------------------------------------------------------------------------- /docs/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/docs/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/components.rst: -------------------------------------------------------------------------------- 1 | Components 2 | ========== -------------------------------------------------------------------------------- /docs/data_layer.rst: -------------------------------------------------------------------------------- 1 | Data layer 2 | ========== -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- 1 | Getting Started 2 | =============== 3 | 4 | Getting started with Graphene UI is easy, and these docs will tell you how. First of all, you will need to clone the github repository to your local computer. This is accomplished by opening a terminal and entering:: 5 | 6 | git clone https://github.com/cryptonomex/graphene-ui.git 7 | 8 | This will clone the repo into a folder ``./graphene-ui`` on your computer. If you plan on contributing code, you should fork the repo on github and clone your own fork instead. More 9 | 10 | -------------------------------------------------------------------------------- /docs/help.rst: -------------------------------------------------------------------------------- 1 | Help 2 | ==== 3 | 4 | If you have any questions, please contact one of the following people: 5 | 6 | - fabian@bitshares.org 7 | - cass@bitshares.org 8 | - bitsharesblocks@gmail.com 9 | - valentine@cryptonomex.com 10 | 11 | There's also a very active `Telegram chatroom `_ -------------------------------------------------------------------------------- /docs/structure.rst: -------------------------------------------------------------------------------- 1 | General overview 2 | ================ -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | autoprefixer: {} 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/resources/background.png -------------------------------------------------------------------------------- /resources/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/resources/background@2x.png -------------------------------------------------------------------------------- /resources/env_config.js: -------------------------------------------------------------------------------- 1 | // Loads config/env_XXX.json file and puts it 2 | // in proper place for given Electron context. 3 | 4 | 'use strict'; 5 | 6 | (function () { 7 | var fs = require('fs'); 8 | if (typeof window === 'object') { 9 | // Web browser context, __dirname points to folder where app.html file is. 10 | window.env = JSON.parse(fs.readFileSync(__dirname + '/env_config.json')); 11 | } else { 12 | // Node context 13 | module.exports = {} //fs.readFileSync(__dirname + '/../../env_config.json'); 14 | } 15 | }()); 16 | -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/resources/icon.png -------------------------------------------------------------------------------- /resources/linux/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Package: {{name}} 2 | Version: {{version}} 3 | Maintainer: {{author}} 4 | Priority: optional 5 | Architecture: amd64 6 | Installed-Size: {{size}} 7 | Description: {{description}} 8 | -------------------------------------------------------------------------------- /resources/linux/app.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Type=Application 4 | Encoding=UTF-8 5 | Name={{productName}} 6 | Comment={{description}} 7 | Exec=/opt/{{name}}/{{name}} 8 | Icon=/opt/{{name}}/icon.png 9 | Terminal=false 10 | Categories=Application; 11 | -------------------------------------------------------------------------------- /resources/osx/appdmg.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{productName}}", 3 | "icon": "{{dmgIcon}}", 4 | "background": "{{dmgBackground}}", 5 | "icon-size": 128, 6 | "contents": [ 7 | { "x": 410, "y": 220, "type": "link", "path": "/Applications" }, 8 | { "x": 130, "y": 220, "type": "file", "path": "{{appPath}}" } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /resources/osx/dmg-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/resources/osx/dmg-icon.icns -------------------------------------------------------------------------------- /resources/osx/helper_apps/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleIdentifier 6 | {{identifier}}.helper 7 | CFBundleName 8 | {{productName}} Helper 9 | CFBundlePackageType 10 | APPL 11 | DTSDKName 12 | macosx 13 | LSUIElement 14 | 15 | NSSupportsAutomaticGraphicsSwitching 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /resources/setup-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/resources/setup-icon.ico -------------------------------------------------------------------------------- /resources/windows/setup-banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoBridge/cryptobridge-ui/f1c74d2e6ef646eb1aee3a169d2b1d887aca9d33/resources/windows/setup-banner.bmp --------------------------------------------------------------------------------