├── .babelrc ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md └── pull_request_template.md ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.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 │ ├── GatewayActions.js │ ├── HtlcActions.js │ ├── IntlActions.js │ ├── LogsActions.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 │ │ ├── btc.png │ │ ├── cny.png │ │ ├── dexbot.png │ │ ├── donate.png │ │ ├── eur.png │ │ ├── gold.png │ │ ├── gph.png │ │ ├── landlord.png │ │ ├── rub.png │ │ ├── rudex.bnb.png │ │ ├── rudex.btc.png │ │ ├── rudex.btcb.png │ │ ├── rudex.bts.png │ │ ├── rudex.busd.png │ │ ├── rudex.dec.png │ │ ├── rudex.eos.png │ │ ├── rudex.eth.png │ │ ├── rudex.golos.png │ │ ├── rudex.ltc.png │ │ ├── rudex.nbs.png │ │ ├── rudex.ppy.png │ │ ├── rudex.pzm.png │ │ ├── rudex.smoke.png │ │ ├── rudex.sps.png │ │ ├── rudex.steem.png │ │ ├── rudex.trx.png │ │ ├── rudex.usdt.png │ │ ├── rudex.wls.png │ │ ├── rudex.xmr.png │ │ ├── silver.png │ │ ├── symbols.js │ │ ├── unknown.png │ │ └── usd.png │ ├── bin-file │ │ ├── default.svg │ │ ├── downloaded.svg │ │ ├── error.svg │ │ ├── hover.svg │ │ └── rounded-arrow.svg │ ├── coins-logo │ │ ├── NoLogo.png │ │ ├── adm.png │ │ ├── ark.png │ │ ├── bam.png │ │ ├── bat.png │ │ ├── bccx.png │ │ ├── bip.png │ │ ├── camino.png │ │ ├── coins.js │ │ ├── cri.png │ │ ├── ctw.png │ │ ├── dash.png │ │ ├── dc.png │ │ ├── doge.png │ │ ├── donr.png │ │ ├── gwn.png │ │ ├── hive.png │ │ ├── idna.png │ │ ├── ltc.png │ │ ├── neo.png │ │ ├── ojx.png │ │ ├── pzm.png │ │ ├── rat.png │ │ ├── rev.png │ │ ├── tlos.png │ │ ├── ton.png │ │ ├── trx.png │ │ ├── ttt.png │ │ ├── waves.png │ │ ├── wca.png │ │ ├── xmr.png │ │ └── zec.png │ ├── colors.js │ ├── create-notification-string.js │ ├── favicon.ico │ ├── fresh-bolt2.png │ ├── icons │ │ ├── adjust.svg │ │ ├── alarm.svg │ │ ├── assets.svg │ │ ├── attention.svg │ │ ├── autolock.svg │ │ ├── barter.svg │ │ ├── borrow.svg │ │ ├── checkmark-circle.svg │ │ ├── checkmark.svg │ │ ├── chevron-down.svg │ │ ├── clippy.svg │ │ ├── clock.svg │ │ ├── cog.svg │ │ ├── cogs.svg │ │ ├── coming_soon.svg │ │ ├── connect.svg │ │ ├── connected.svg │ │ ├── create_account.svg │ │ ├── cross-circle.svg │ │ ├── dashboard.svg │ │ ├── deposit-withdraw.svg │ │ ├── deposit.svg │ │ ├── direct_debit.svg │ │ ├── disconnected.svg │ │ ├── dollar-green.svg │ │ ├── dollar.svg │ │ ├── donate.svg │ │ ├── download.svg │ │ ├── excel.svg │ │ ├── eye-striked.svg │ │ ├── eye.svg │ │ ├── fi-star.svg │ │ ├── filter.svg │ │ ├── fire.svg │ │ ├── folder.svg │ │ ├── grouping.svg │ │ ├── hamburger-x.svg │ │ ├── hamburger.svg │ │ ├── hourglass.svg │ │ ├── htlc.svg │ │ ├── icons-loader.js │ │ ├── info-circle-o.svg │ │ ├── insight.svg │ │ ├── instant-trade.svg │ │ ├── key.svg │ │ ├── list.svg │ │ ├── locked.svg │ │ ├── menu-assets.svg │ │ ├── menu-cogs.svg │ │ ├── menu-create_account.svg │ │ ├── menu-dashboard.svg │ │ ├── menu-deposit-withdraw.svg │ │ ├── menu-folder.svg │ │ ├── menu-hourglass.svg │ │ ├── menu-insight.svg │ │ ├── menu-list.svg │ │ ├── menu-listing.svg │ │ ├── menu-news.svg │ │ ├── menu-power.svg │ │ ├── menu-question-circle.svg │ │ ├── menu-robot.svg │ │ ├── menu-server.svg │ │ ├── menu-showcases.svg │ │ ├── menu-text-sign.svg │ │ ├── menu-text.svg │ │ ├── menu-thumbs-up.svg │ │ ├── menu-trade.svg │ │ ├── menu-transfer.svg │ │ ├── menu-user.svg │ │ ├── menu-volume_ranking.svg │ │ ├── menu-warning.svg │ │ ├── merchant.svg │ │ ├── minus-circle.svg │ │ ├── news.svg │ │ ├── paper-wallet-header.png │ │ ├── paperclip.svg │ │ ├── people.svg │ │ ├── photo-camera.svg │ │ ├── plus-circle.svg │ │ ├── power.svg │ │ ├── prediction-large.svg │ │ ├── prediction.svg │ │ ├── qr-scan.svg │ │ ├── question-circle.svg │ │ ├── question-in-circle.svg │ │ ├── robot.svg │ │ ├── server.svg │ │ ├── settle.svg │ │ ├── share.svg │ │ ├── showcases.svg │ │ ├── shuffle.svg │ │ ├── swap.svg │ │ ├── text.svg │ │ ├── thumb-tack.svg │ │ ├── thumb-untack.svg │ │ ├── thumbs-up.svg │ │ ├── times.svg │ │ ├── trade.svg │ │ ├── transfer.svg │ │ ├── unlocked.svg │ │ ├── user.svg │ │ ├── voting.svg │ │ ├── wallet.svg │ │ ├── warning.svg │ │ ├── withdraw.svg │ │ └── zoom.svg │ ├── images-loader.js │ ├── images │ │ ├── android.png │ │ ├── coin.png │ │ ├── coinmarketcap.png │ │ ├── coinpaprika.png │ │ ├── coinranking.png │ │ ├── dexbotfund.png │ │ ├── google-play.png │ │ ├── images.js │ │ ├── raido-payment-carde.png │ │ ├── raido-payment-cardu.png │ │ └── raido-payment-wiree.png │ ├── 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-remove-english-duplicates.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-ico-blue.png │ ├── model-type-images │ │ ├── account-active.svg │ │ ├── account-inactive.svg │ │ ├── account.svg │ │ ├── flesh-active.svg │ │ ├── flesh-drive.svg │ │ └── flesh-inactive.svg │ ├── outdated_browser.css │ ├── qr.png │ ├── stylesheets │ │ ├── _shame.scss │ │ ├── app.scss │ │ ├── base │ │ │ ├── _all.scss │ │ │ ├── _colors.scss │ │ │ └── _fonts.scss │ │ ├── components │ │ │ ├── _account-create.scss │ │ │ ├── _account.scss │ │ │ ├── _all.scss │ │ │ ├── _asset.scss │ │ │ ├── _barter.scss │ │ │ ├── _bitkapital.scss │ │ │ ├── _blocktrades.scss │ │ │ ├── _cards.scss │ │ │ ├── _collapsible_table.scss │ │ │ ├── _console.scss │ │ │ ├── _dashboard.scss │ │ │ ├── _direct-debit.scss │ │ │ ├── _exchange.scss │ │ │ ├── _existing_accounts.scss │ │ │ ├── _footer.scss │ │ │ ├── _forms.scss │ │ │ ├── _header.scss │ │ │ ├── _help.scss │ │ │ ├── _htlc.scss │ │ │ ├── _incognito.scss │ │ │ ├── _invoice.scss │ │ │ ├── _loading-indicator.scss │ │ │ ├── _merchant.scss │ │ │ ├── _modal.scss │ │ │ ├── _node-selector.scss │ │ │ ├── _page404.scss │ │ │ ├── _pagination.scss │ │ │ ├── _quick_trade.scss │ │ │ ├── _rudex.scss │ │ │ ├── _settings.scss │ │ │ ├── _tables.scss │ │ │ ├── _tabs.scss │ │ │ ├── _typeahead.scss │ │ │ ├── _voting.scss │ │ │ ├── _wallet.scss │ │ │ ├── login │ │ │ │ └── _login.scss │ │ │ └── registration │ │ │ │ ├── _account-registration.scss │ │ │ │ └── _registration-selector.scss │ │ ├── layout │ │ │ ├── _all.scss │ │ │ ├── _antd.scss │ │ │ ├── _page_layout.scss │ │ │ └── _registration_layout.scss │ │ ├── style-guide-fixes.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 │ │ │ ├── foundation │ │ │ ├── _all.scss │ │ │ ├── _global.scss │ │ │ ├── _settings.scss │ │ │ ├── components │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _block-list.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _iconic.scss │ │ │ │ ├── _label.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _menu-bar.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _motion.scss │ │ │ │ ├── _notification.scss │ │ │ │ ├── _off-canvas.scss │ │ │ │ ├── _panel.scss │ │ │ │ ├── _popup.scss │ │ │ │ ├── _switch.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _title-bar.scss │ │ │ │ ├── _typography.scss │ │ │ │ └── _utilities.scss │ │ │ ├── helpers │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _images.scss │ │ │ │ └── _mixins.scss │ │ │ └── vendor │ │ │ │ └── _normalize.scss │ │ │ ├── introjs-dark-theme.scss │ │ │ ├── introjs-light-theme.scss │ │ │ └── introjs-midnight-theme.scss │ ├── ul-arrow-black.png │ └── ul-arrow.png ├── branding.js ├── components │ ├── Account │ │ ├── AccountAssetCreate.jsx │ │ ├── AccountAssetUpdate.jsx │ │ ├── AccountAssets.jsx │ │ ├── AccountBalance.jsx │ │ ├── AccountBrowsingMode.jsx │ │ ├── AccountDepositWithdraw.jsx │ │ ├── AccountImage.jsx │ │ ├── AccountInfo.jsx │ │ ├── AccountInputStyleGuide.jsx │ │ ├── AccountMembership.jsx │ │ ├── AccountOrderRowDescription.jsx │ │ ├── AccountOrders.jsx │ │ ├── AccountOverview.jsx │ │ ├── AccountPage.jsx │ │ ├── AccountPermissions.jsx │ │ ├── AccountPermissionsList.jsx │ │ ├── AccountPermissionsMigrate.jsx │ │ ├── AccountPortfolioList.jsx │ │ ├── AccountReferralsTable.jsx │ │ ├── AccountSelector.jsx │ │ ├── AccountSelectorAnt.jsx │ │ ├── AccountSignedMessages.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 │ │ ├── FeePoolOperation.jsx │ │ ├── Identicon.jsx │ │ ├── MarginPosition.jsx │ │ ├── MarginPositionsTable.jsx │ │ ├── NestedApprovalState.jsx │ │ ├── NestedApprovalStateLib.jsx │ │ ├── Proposals.jsx │ │ ├── RecentTransactions.jsx │ │ ├── SignedMessage.jsx │ │ ├── Statistics.jsx │ │ ├── Voting │ │ │ ├── Committee.jsx │ │ │ ├── Witnesses.jsx │ │ │ └── Workers.jsx │ │ ├── VotingAccountsList.jsx │ │ └── WorkersList.jsx │ ├── Blockchain │ │ ├── Asset.jsx │ │ ├── AssetOwnerUpdate.jsx │ │ ├── AssetPublishFeed.jsx │ │ ├── AssetResolvePrediction.jsx │ │ ├── BidCollateralOperation.jsx │ │ ├── Block.jsx │ │ ├── BlockContainer.jsx │ │ ├── BlockTime.jsx │ │ ├── Fees.jsx │ │ ├── FeesContainer.jsx │ │ ├── MemoText.jsx │ │ ├── Operation.jsx │ │ ├── OperationAnt.js │ │ ├── ProposedOperation.jsx │ │ ├── Transaction.jsx │ │ ├── TransactionConfirm.jsx │ │ ├── json-inspector.scss │ │ ├── operations.scss │ │ └── operations │ │ │ ├── AccountCreate.jsx │ │ │ ├── AccountTransfer.jsx │ │ │ ├── AccountUpdate.jsx │ │ │ ├── AccountUpgrade.jsx │ │ │ ├── AccountWhitelist.jsx │ │ │ ├── AssetClaimFees.jsx │ │ │ ├── AssetClaimPool.jsx │ │ │ ├── AssetCreate.jsx │ │ │ ├── AssetFundFeePool.jsx │ │ │ ├── AssetGlobalSettle.jsx │ │ │ ├── AssetIssue.jsx │ │ │ ├── AssetPublishFeed.jsx │ │ │ ├── AssetReserve.jsx │ │ │ ├── AssetSettle.jsx │ │ │ ├── AssetSettleCancel.jsx │ │ │ ├── AssetUpdate.jsx │ │ │ ├── AssetUpdateFeedProducers.jsx │ │ │ ├── AssetUpdateIssuer.jsx │ │ │ ├── BalanceClaim.jsx │ │ │ ├── BidCollateral.jsx │ │ │ ├── BondAcceptOffer.jsx │ │ │ ├── BondCancelOffer.jsx │ │ │ ├── BondClaimCollaterial.jsx │ │ │ ├── BondCreateOffer.jsx │ │ │ ├── CallOrderUpdate.jsx │ │ │ ├── CommitteeMemberUpdateGlobalParams.jsx │ │ │ ├── CommittyMemberCreate.jsx │ │ │ ├── Custom.jsx │ │ │ ├── DefaultOperation.jsx │ │ │ ├── FileWrite.jsx │ │ │ ├── FillOrder.jsx │ │ │ ├── GlobalParametersUpdate.jsx │ │ │ ├── HtlcCreate.jsx │ │ │ ├── HtlcExtend.jsx │ │ │ ├── HtlcRedeem.jsx │ │ │ ├── HtlcRedeemed.jsx │ │ │ ├── HtlcRefund.jsx │ │ │ ├── KeyCreate.jsx │ │ │ ├── LimitOrderCancel.jsx │ │ │ ├── LimitOrderCreate.jsx │ │ │ ├── OverrideTransfer.jsx │ │ │ ├── ProposalCreate.jsx │ │ │ ├── ProposalDelete.jsx │ │ │ ├── ProposalUpdate.jsx │ │ │ ├── ShortOrderCancel.jsx │ │ │ ├── Transfer.jsx │ │ │ ├── TransferFromBlind.jsx │ │ │ ├── TransferToBlind.jsx │ │ │ ├── VestingBalanceCreate.jsx │ │ │ ├── VestingBalanceWithdraw.jsx │ │ │ ├── WithdrawPermissionClaim.jsx │ │ │ ├── WithdrawPermissionCreate.jsx │ │ │ ├── WithdrawPermissionDelete.jsx │ │ │ ├── WithdrawPermissionUpdate.jsx │ │ │ ├── WitnessCreate.jsx │ │ │ ├── WitnessUpdate.jsx │ │ │ ├── WitnessWithdrawPay.jsx │ │ │ ├── WorkerCreate.jsx │ │ │ └── index.js │ ├── Bots │ │ ├── Bots.jsx │ │ ├── PercentUp │ │ │ ├── Create.jsx │ │ │ └── State.jsx │ │ ├── RelativeOrders │ │ │ ├── Create.jsx │ │ │ └── State.jsx │ │ ├── SpreadTrade │ │ │ ├── Create.jsx │ │ │ └── State.jsx │ │ ├── TrailingStop │ │ │ ├── Create.jsx │ │ │ └── State.jsx │ │ └── libs │ │ │ ├── AssetSelector.jsx │ │ │ ├── AssetWrapper.jsx │ │ │ └── Input.jsx │ ├── BrowserNotifications │ │ ├── BrowserNotifications.jsx │ │ └── BrowserNotificationsContainer.jsx │ ├── Chat │ │ └── ChatBro.js │ ├── Console │ │ └── Console.jsx │ ├── Dashboard │ │ ├── AccountCard.jsx │ │ ├── DashboardAccountsOnly.jsx │ │ ├── DashboardList.jsx │ │ ├── DashboardPage.jsx │ │ ├── Markets.jsx │ │ ├── MarketsTable.jsx │ │ └── SimpleDepositWithdraw.jsx │ ├── DashboardRuDEX │ │ ├── Dashboard.jsx │ │ ├── DashboardRuDEX.css │ │ └── MarketCard.jsx │ ├── DepositWithdraw │ │ ├── DepositWithdrawAssetSelector.js │ │ ├── DisableCopyText.js │ │ ├── WithdrawModal.jsx │ │ └── rudex │ │ │ ├── RuDexGateway.jsx │ │ │ ├── RuDexGatewayDepositRequest.jsx │ │ │ ├── RuDexWithdrawModal.jsx │ │ │ └── raido │ │ │ ├── Raido.css │ │ │ ├── RaidoDepositRequest.jsx │ │ │ ├── RaidoFinance.jsx │ │ │ └── RaidoPaymentMethod.jsx │ ├── Exchange │ │ ├── BuySell.jsx │ │ ├── ConfirmOrderModal.jsx │ │ ├── DepthHighChart.jsx │ │ ├── Exchange.jsx │ │ ├── ExchangeContainer.jsx │ │ ├── ExchangeHeader.jsx │ │ ├── ExchangeHeaderCollateral.jsx │ │ ├── ExchangeInput.jsx │ │ ├── MarketHistory.jsx │ │ ├── MarketPicker.jsx │ │ ├── MarketPickerHelpers.js │ │ ├── MarketRow.jsx │ │ ├── Markets.jsx │ │ ├── MarketsContainer.jsx │ │ ├── MyMarkets.jsx │ │ ├── MyOpenOrders.jsx │ │ ├── OpenSettleOrders.jsx │ │ ├── OrderBook.jsx │ │ ├── Personalize.jsx │ │ ├── PriceAlert.jsx │ │ ├── PriceStat.jsx │ │ ├── PriceStatWithLabel.jsx │ │ ├── QuoteSelectionModal.jsx │ │ ├── ScaledOrder.jsx │ │ ├── ScaledOrderTab.jsx │ │ ├── TradingViewPriceChart.jsx │ │ ├── View │ │ │ ├── MarketHistoryView.jsx │ │ │ └── MarketOrdersView.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 │ │ ├── AccountNameInputStyleGuide.jsx │ │ ├── AccountSelect.jsx │ │ ├── MyAccounts.jsx │ │ ├── PasswordInput.jsx │ │ ├── PasswordInputStyleGuide.jsx │ │ ├── PubKeyInput.jsx │ │ └── RefcodeInput.jsx │ ├── Gateways │ │ ├── GatewaySelectorModal.jsx │ │ └── ServiceProviderExplanation.jsx │ ├── Help.jsx │ ├── Icon │ │ ├── Icon.jsx │ │ ├── PulseIcon.js │ │ └── icon.scss │ ├── InitError.jsx │ ├── Layout │ │ ├── DividerMenuItem.jsx │ │ ├── DropdownMenuItem.jsx │ │ ├── Footer.jsx │ │ ├── Header.jsx │ │ ├── HeaderDropdown.jsx │ │ ├── HeaderMenuItem.jsx │ │ ├── Incognito.jsx │ │ ├── LanguageDropdown.jsx │ │ ├── MenuDataStructure.js │ │ ├── MenuItemType.js │ │ ├── NewsHeadline.jsx │ │ └── SubmenuItem.jsx │ ├── Listing │ │ ├── AccountSelectorListing.jsx │ │ ├── CoinCardListing.jsx │ │ ├── DonateSendModal.jsx │ │ ├── DonutChart.css │ │ ├── DonutChart.jsx │ │ ├── ListingPage.css │ │ ├── ListingPage.jsx │ │ └── config-listing-example.json │ ├── LoadingIndicator.jsx │ ├── Login │ │ ├── AccountLogin.jsx │ │ ├── DecryptBackup.jsx │ │ ├── Login.jsx │ │ └── WalletLogin.jsx │ ├── LoginSelector.jsx │ ├── Modal │ │ ├── BaseModal.jsx │ │ ├── BorrowModal.jsx │ │ ├── BrowserSupportModal.jsx │ │ ├── ChoiceModal.js │ │ ├── DepositModal.jsx │ │ ├── DirectDebitClaimModal.jsx │ │ ├── DirectDebitModal.jsx │ │ ├── HtlcModal.jsx │ │ ├── IssueModal.jsx │ │ ├── JSONModal.jsx │ │ ├── JoinCommitteeModal.jsx │ │ ├── JoinWitnessesModal.jsx │ │ ├── ProposalModal.jsx │ │ ├── QrcodeModal.jsx │ │ ├── ReportModal.jsx │ │ ├── ReserveAssetModal.jsx │ │ ├── SendModal.jsx │ │ ├── SetDefaultFeeAssetModal.jsx │ │ ├── SettleModal.jsx │ │ ├── View │ │ │ └── BorrowModalView.jsx │ │ └── WithdrawModalNew.jsx │ ├── News.jsx │ ├── Notifier │ │ ├── Notifier.jsx │ │ └── NotifierContainer.jsx │ ├── Page404 │ │ └── Page404.jsx │ ├── PredictionMarkets │ │ ├── AddOpinionModal.jsx │ │ ├── CreateMarketModal.jsx │ │ ├── PMAssetsContainer.jsx │ │ ├── PredictionMarketDetailsTable.jsx │ │ ├── PredictionMarkets.jsx │ │ ├── PredictionMarketsOverviewTable.jsx │ │ ├── ResolveModal.jsx │ │ └── prediction.scss │ ├── PriceAlertNotifications.jsx │ ├── PrivateKeyView.jsx │ ├── QRAddressScanner.jsx │ ├── QuickTrade │ │ ├── QuickTrade.jsx │ │ ├── QuickTradeHelper.js │ │ ├── QuickTradeRouter.jsx │ │ └── SellReceive.jsx │ ├── Registration │ │ ├── AccountBlockSelection.jsx │ │ ├── AccountHeaderSelection.jsx │ │ ├── AccountRegistration.jsx │ │ ├── AccountRegistrationConfirm.jsx │ │ ├── AccountRegistrationForm.jsx │ │ ├── RegistrationSelector.jsx │ │ ├── WalletBlockSelection.jsx │ │ ├── WalletHeaderSelection.jsx │ │ ├── WalletRegistration.jsx │ │ ├── WalletRegistrationConfirm.jsx │ │ └── WalletRegistrationForm.jsx │ ├── Settings │ │ ├── AccessSettings.jsx │ │ ├── AccountsSettings.jsx │ │ ├── BackupFavorites.jsx │ │ ├── BackupSettings.jsx │ │ ├── FeeAssetSettings.jsx │ │ ├── PasswordSettings.jsx │ │ ├── ResetSettings.jsx │ │ ├── RestoreFavorites.jsx │ │ ├── RestoreSettings.jsx │ │ ├── Settings.jsx │ │ ├── SettingsContainer.jsx │ │ ├── SettingsEntry.jsx │ │ ├── WalletSettings.jsx │ │ └── WebsocketAddModal.jsx │ ├── Showcases │ │ ├── Barter.jsx │ │ ├── Borrow.jsx │ │ ├── DirectDebit.jsx │ │ ├── Htlc.jsx │ │ ├── Showcase.jsx │ │ └── ShowcaseGrid.jsx │ ├── SyncError.jsx │ ├── Transfer │ │ ├── Invoice.jsx │ │ ├── InvoicePay.jsx │ │ ├── InvoiceRequest.jsx │ │ ├── PrintReceiptButton.jsx │ │ └── ScanOrEnterText.jsx │ ├── Utility │ │ ├── AccountName.jsx │ │ ├── AmountSelector.jsx │ │ ├── AmountSelector2.jsx │ │ ├── AmountSelector3.jsx │ │ ├── AmountSelectorStyleGuide.jsx │ │ ├── AssetImage.jsx │ │ ├── AssetInput.jsx │ │ ├── AssetName.jsx │ │ ├── AssetSelect.jsx │ │ ├── AssetSelector.jsx │ │ ├── AssetWrapper.jsx │ │ ├── BalanceComponent.jsx │ │ ├── BindToChainState.jsx │ │ ├── BindToCurrentAccount.jsx │ │ ├── BlockDate.jsx │ │ ├── ChainResolveComponents.jsx │ │ ├── ChainSelect.jsx │ │ ├── ChainTypes.js │ │ ├── CollapsibleTable.jsx │ │ ├── CopyButton.jsx │ │ ├── CryptoLinkFormatter.jsx │ │ ├── CustomTable.jsx │ │ ├── DecimalChecker.jsx │ │ ├── EquivalentPrice.jsx │ │ ├── EquivalentValueComponent.jsx │ │ ├── FeeAssetSelector.jsx │ │ ├── FloatingDropdown.jsx │ │ ├── FormattedAsset.jsx │ │ ├── FormattedFee.jsx │ │ ├── FormattedPrice.jsx │ │ ├── FormattedTime.jsx │ │ ├── HelpContent.jsx │ │ ├── LimitToWithdraw.jsx │ │ ├── LinkToAccountById.jsx │ │ ├── LinkToAssetById.jsx │ │ ├── LinkToWitnessById.jsx │ │ ├── LoadingButton.jsx │ │ ├── MarketChangeComponent.jsx │ │ ├── MarketLink.jsx │ │ ├── MarketPrice.jsx │ │ ├── MarketStatsCheck.jsx │ │ ├── NodeSelector.jsx │ │ ├── PaginatedList.jsx │ │ ├── PendingBlock.jsx │ │ ├── PeriodSelector.jsx │ │ ├── PriceInput.jsx │ │ ├── PriceText.jsx │ │ ├── Prototypes.js │ │ ├── Pulsate.jsx │ │ ├── SearchInput.jsx │ │ ├── Tabs.jsx │ │ ├── TimeAgo.jsx │ │ ├── TotalBalanceValue.jsx │ │ ├── TransitionWrapper.jsx │ │ ├── TranslateWithLinks.jsx │ │ ├── TypeAhead.js │ │ ├── VestingBalance.jsx │ │ ├── intlData.js │ │ ├── paginated-list.scss │ │ └── withWorthLessSettlementFlag.jsx │ └── Wallet │ │ ├── Backup.jsx │ │ ├── BackupBrainkey.jsx │ │ ├── BalanceClaimActive.jsx │ │ ├── BalanceClaimAssetTotal.jsx │ │ ├── BalanceClaimByAsset.jsx │ │ ├── BalanceClaimSelector.jsx │ │ ├── Brainkey.jsx │ │ ├── BrainkeyInput.jsx │ │ ├── BrainkeyInputStyleGuide.jsx │ │ ├── ExistingAccount.jsx │ │ ├── ImportKeys.jsx │ │ ├── ImportKeys.scss │ │ ├── LoginTypeSelector.jsx │ │ ├── PasswordConfirm.jsx │ │ ├── PasswordConfirmStyleGuide.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 │ │ ├── bots │ │ │ ├── introduction.md │ │ │ ├── percent-up.md │ │ │ ├── spread.md │ │ │ └── trailing.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 │ │ │ └── PredictionMarkets.md │ │ ├── dex │ │ │ ├── introduction.md │ │ │ ├── shorting.md │ │ │ └── trading.md │ │ ├── gateways │ │ │ ├── introduction.md │ │ │ └── rudex.md │ │ ├── glossary.md │ │ ├── index.md │ │ ├── introduction │ │ │ ├── backups.md │ │ │ ├── blockchain.md │ │ │ ├── bridges_gateways.md │ │ │ ├── graphene.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 │ │ │ └── proposed.md │ │ ├── assets │ │ │ ├── Asset.md │ │ │ ├── EUR.md │ │ │ ├── USD.md │ │ │ ├── mpa.md │ │ │ ├── privbitassets.md │ │ │ └── uia.md │ │ ├── bots │ │ │ ├── introduction.md │ │ │ ├── percent-up.md │ │ │ ├── spread.md │ │ │ └── trailing.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 │ │ │ └── PredictionMarkets.md │ │ ├── dex │ │ │ ├── introduction.md │ │ │ ├── shorting.md │ │ │ └── trading.md │ │ ├── gateways │ │ │ ├── introduction.md │ │ │ └── rudex.md │ │ ├── glossary.md │ │ ├── index.md │ │ ├── introduction │ │ │ ├── backups.md │ │ │ ├── blockchain.md │ │ │ ├── bridges_gateways.md │ │ │ ├── committee.md │ │ │ ├── graphene.md │ │ │ ├── wallets.md │ │ │ ├── witness.md │ │ │ └── workers.md │ │ ├── toc.md │ │ └── voting.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 │ │ │ ├── blockchain.md │ │ │ ├── committee.md │ │ │ ├── graphene.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 │ │ └── PredictionMarkets.md │ │ ├── dex │ │ ├── introduction.md │ │ ├── shorting.md │ │ └── trading.md │ │ ├── glossary.md │ │ ├── index.md │ │ ├── introduction │ │ ├── backups.md │ │ ├── blockchain.md │ │ ├── bridges_gateways.md │ │ ├── committee.md │ │ ├── graphene.md │ │ ├── wallets.md │ │ ├── witness.md │ │ └── workers.md │ │ └── toc.md ├── idb-helper.js ├── idb-instance.js ├── idb-root.js ├── index.js ├── lib │ ├── bots │ │ ├── BotFather.js │ │ ├── PercentUp │ │ │ └── index.js │ │ ├── RelativeOrders │ │ │ └── index.js │ │ ├── SpreadTrade │ │ │ └── index.js │ │ ├── TrailingStop │ │ │ └── index.js │ │ ├── account.js │ │ ├── apis.js │ │ ├── assets.js │ │ └── index.js │ ├── chain │ │ ├── account_constants.js │ │ ├── asset_constants.js │ │ ├── chainIds.js │ │ ├── onChainConfig.js │ │ └── serializer_config.coffee │ ├── common │ │ ├── Counterpart.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 │ │ ├── hideProposals.js │ │ ├── localStorage.js │ │ ├── localStorageImpl.js │ │ ├── market_utils.js │ │ ├── paperWallet.js │ │ ├── permission_utils.js │ │ ├── qr-image.coffee │ │ ├── reactUtils.js │ │ ├── scamAccounts.js │ │ ├── secureRandom.coffee │ │ ├── titleUtils.js │ │ ├── trxHelper.js │ │ └── utils.js │ ├── feature_detect │ │ ├── browser.js │ │ ├── incognito.js │ │ └── index.js │ └── workers │ │ ├── AddressIndexWorker.js │ │ └── AesWorker.js ├── routerTransition.js ├── services │ ├── AccountHistoryExporter.js │ ├── Exchange.js │ ├── Math.js │ ├── Notification.jsx │ ├── README.md │ └── Validation │ │ ├── README.md │ │ ├── Validation.js │ │ └── types.js ├── stores │ ├── AccountRefsStore.js │ ├── AccountStore.js │ ├── AddressIndex.js │ ├── AssetStore.js │ ├── BackupStore.js │ ├── BalanceClaimActiveStore.js │ ├── BaseStore.js │ ├── BlockchainStore.js │ ├── BotsStorage.js │ ├── BrainkeyStore.js │ ├── CachedPropertyStore.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 │ ├── usdMarginCalls.json │ └── wallet_action_test.js ├── appveyor.yml ├── bower.json ├── build.sh ├── charting_library ├── charting_library.17.025.02b61a1c.zip.md5 ├── install-charting-library.cjs ├── package-charting-library.js └── scss │ ├── base.scss │ ├── darkTheme.scss │ ├── lightTheme.scss │ └── midnightTheme.scss ├── 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 ├── news.json ├── nginx.local.conf ├── 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 ├── 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 ├── scamParser.js ├── set_snap_token.sh.enc ├── ssl ├── server.crt └── server.key ├── translate-howto.md ├── webpack.config.js ├── write_digest.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["@babel/preset-env", { "modules": false,"targets": { "node": "current"} }], 4 | ["@babel/preset-react",{ "targets": { "node": "current"}}] 5 | ], 6 | "plugins": [ 7 | "react-hot-loader/babel", 8 | "lodash" 9 | ], 10 | "env": { 11 | "test": { 12 | "presets": ["@babel/preset-env","@babel/preset-react"], 13 | "plugins": [ 14 | [ "babel-plugin-webpack-alias", { "config": "./conf/webpack.config.js" } ] 15 | ] 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/.eslintignore -------------------------------------------------------------------------------- /.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 | 23 | charting_library/* 24 | !charting_library/scss 25 | !charting_library/charting_library.17.025.02b61a1c.zip.md5 26 | !charting_library/package-charting-library.js 27 | !charting_library/install-charting-library.cjs -------------------------------------------------------------------------------- /.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/actions/LogsActions.js: -------------------------------------------------------------------------------- 1 | import alt from "alt-instance"; 2 | import ls from "common/localStorage"; 3 | 4 | const STORAGE_KEY = "__graphene__"; 5 | let ss = ls(STORAGE_KEY); 6 | 7 | class LogsActions { 8 | async setLog(log) { 9 | return await ss.set("logs", JSON.stringify(log)); 10 | } 11 | getLogs() { 12 | return new Promise(resolve => { 13 | try { 14 | resolve(JSON.parse(ss.get("logs", []))); 15 | } catch (err) { 16 | resolve(["Error loading logs from localStorage"]); 17 | } 18 | }); 19 | } 20 | } 21 | 22 | export default alt.createActions(LogsActions); 23 | -------------------------------------------------------------------------------- /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 | // For debugging alt stores https://github.com/goatslacker/alt-devtool 8 | //Alt.debug("alt", alt); 9 | 10 | export default alt; 11 | -------------------------------------------------------------------------------- /app/api/accountApi.js: -------------------------------------------------------------------------------- 1 | import {Apis} from "bitsharesjs-ws"; 2 | 3 | class Api { 4 | lookupAccounts(startChar, limit) { 5 | // direct query, circumventing subscription system of ChainStore 6 | return Apis.instance() 7 | .db_api() 8 | .exec("lookup_accounts", [startChar, limit], false); 9 | } 10 | lookupAccountByPublicKey(pubKey) { 11 | // direct query, circumventing subscription system of ChainStore 12 | return Apis.instance() 13 | .db_api() 14 | .exec("get_key_references", [[pubKey]]); 15 | } 16 | } 17 | 18 | export default new Api(); 19 | -------------------------------------------------------------------------------- /app/assets/asset-symbols/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/btc.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/cny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/cny.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/dexbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/dexbot.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/donate.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/eur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/eur.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/gold.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/gph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/gph.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/landlord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/landlord.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rub.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.bnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.bnb.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.btc.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.btcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.btcb.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.bts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.bts.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.busd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.busd.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.dec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.dec.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.eos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.eos.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.eth.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.golos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.golos.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.ltc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.ltc.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.nbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.nbs.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.ppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.ppy.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.pzm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.pzm.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.smoke.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.sps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.sps.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.steem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.steem.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.trx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.trx.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.usdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.usdt.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.wls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.wls.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/rudex.xmr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/rudex.xmr.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/silver.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/unknown.png -------------------------------------------------------------------------------- /app/assets/asset-symbols/usd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/asset-symbols/usd.png -------------------------------------------------------------------------------- /app/assets/bin-file/rounded-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/coins-logo/NoLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/NoLogo.png -------------------------------------------------------------------------------- /app/assets/coins-logo/adm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/adm.png -------------------------------------------------------------------------------- /app/assets/coins-logo/ark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/ark.png -------------------------------------------------------------------------------- /app/assets/coins-logo/bam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/bam.png -------------------------------------------------------------------------------- /app/assets/coins-logo/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/bat.png -------------------------------------------------------------------------------- /app/assets/coins-logo/bccx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/bccx.png -------------------------------------------------------------------------------- /app/assets/coins-logo/bip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/bip.png -------------------------------------------------------------------------------- /app/assets/coins-logo/camino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/camino.png -------------------------------------------------------------------------------- /app/assets/coins-logo/cri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/cri.png -------------------------------------------------------------------------------- /app/assets/coins-logo/ctw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/ctw.png -------------------------------------------------------------------------------- /app/assets/coins-logo/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/dash.png -------------------------------------------------------------------------------- /app/assets/coins-logo/dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/dc.png -------------------------------------------------------------------------------- /app/assets/coins-logo/doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/doge.png -------------------------------------------------------------------------------- /app/assets/coins-logo/donr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/donr.png -------------------------------------------------------------------------------- /app/assets/coins-logo/gwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/gwn.png -------------------------------------------------------------------------------- /app/assets/coins-logo/hive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/hive.png -------------------------------------------------------------------------------- /app/assets/coins-logo/idna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/idna.png -------------------------------------------------------------------------------- /app/assets/coins-logo/ltc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/ltc.png -------------------------------------------------------------------------------- /app/assets/coins-logo/neo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/neo.png -------------------------------------------------------------------------------- /app/assets/coins-logo/ojx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/ojx.png -------------------------------------------------------------------------------- /app/assets/coins-logo/pzm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/pzm.png -------------------------------------------------------------------------------- /app/assets/coins-logo/rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/rat.png -------------------------------------------------------------------------------- /app/assets/coins-logo/rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/rev.png -------------------------------------------------------------------------------- /app/assets/coins-logo/tlos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/tlos.png -------------------------------------------------------------------------------- /app/assets/coins-logo/ton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/ton.png -------------------------------------------------------------------------------- /app/assets/coins-logo/trx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/trx.png -------------------------------------------------------------------------------- /app/assets/coins-logo/ttt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/ttt.png -------------------------------------------------------------------------------- /app/assets/coins-logo/waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/waves.png -------------------------------------------------------------------------------- /app/assets/coins-logo/wca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/wca.png -------------------------------------------------------------------------------- /app/assets/coins-logo/xmr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/xmr.png -------------------------------------------------------------------------------- /app/assets/coins-logo/zec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/coins-logo/zec.png -------------------------------------------------------------------------------- /app/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/favicon.ico -------------------------------------------------------------------------------- /app/assets/fresh-bolt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/fresh-bolt2.png -------------------------------------------------------------------------------- /app/assets/icons/adjust.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/assets/icons/attention.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/assets/icons/checkmark-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/clippy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/assets/icons/clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/assets/icons/cross-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/assets/icons/dollar-green.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/assets/icons/dollar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/assets/icons/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/icons/fire.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/hamburger-x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/assets/icons/hamburger.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/assets/icons/info-circle-o.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/icons/menu-folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/assets/icons/minus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/news.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/paper-wallet-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/icons/paper-wallet-header.png -------------------------------------------------------------------------------- /app/assets/icons/plus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/power.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/settle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/assets/icons/share.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/shuffle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/assets/icons/swap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/assets/icons/trade.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/assets/icons/zoom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/assets/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/images/android.png -------------------------------------------------------------------------------- /app/assets/images/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/images/coin.png -------------------------------------------------------------------------------- /app/assets/images/coinmarketcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/images/coinmarketcap.png -------------------------------------------------------------------------------- /app/assets/images/coinpaprika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/images/coinpaprika.png -------------------------------------------------------------------------------- /app/assets/images/coinranking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/images/coinranking.png -------------------------------------------------------------------------------- /app/assets/images/dexbotfund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/images/dexbotfund.png -------------------------------------------------------------------------------- /app/assets/images/google-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/images/google-play.png -------------------------------------------------------------------------------- /app/assets/images/images.js: -------------------------------------------------------------------------------- 1 | require("file-loader?name=images/[name].png!./android.png"); 2 | require("file-loader?name=images/[name].png!./dexbotfund.png"); 3 | require("file-loader?name=images/[name].png!./coinmarketcap.png"); 4 | require("file-loader?name=images/[name].png!./coinpaprika.png"); 5 | require("file-loader?name=images/[name].png!./coinranking.png"); 6 | require("file-loader?name=images/[name].png!./coin.png"); 7 | require("file-loader?name=images/[name].png!./raido-payment-cardu.png"); 8 | require("file-loader?name=images/[name].png!./raido-payment-carde.png"); 9 | require("file-loader?name=images/[name].png!./raido-payment-wiree.png"); 10 | -------------------------------------------------------------------------------- /app/assets/images/raido-payment-carde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/images/raido-payment-carde.png -------------------------------------------------------------------------------- /app/assets/images/raido-payment-cardu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/images/raido-payment-cardu.png -------------------------------------------------------------------------------- /app/assets/images/raido-payment-wiree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/images/raido-payment-wiree.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/FR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/US.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AQ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AX.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/AZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/AZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BB.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BJ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/BZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/BZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CV.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CX.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/CZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/DE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/DJ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/DK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/DM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/DO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/DZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/DZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/EC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/EE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/EE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/EG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/EG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/EH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/EH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/ER.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/ES.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/ET.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/EU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/EU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/FI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/FJ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/FK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/FM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/FO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/FR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GB.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GQ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/GY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/GY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/HK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/HK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/HN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/HN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/HR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/HT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/HU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/IC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/ID.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/IE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/IL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/IM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/IN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/IQ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/IR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/IS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/IT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/JA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/JA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/JE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/JE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/JM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/JM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/JO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/JO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KP.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/KZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/KZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LB.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LV.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/LY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/LY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/ME.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/ML.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MP.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MQ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MV.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MX.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/MZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/MZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NP.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/NZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/OM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/PY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/QA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/RO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/RS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/RS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/RU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/RW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/RW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SB.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/ST.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SV.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/SZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/SZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TD.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TJ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TK.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TL.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TO.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TR.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TV.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TW.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/TZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/TZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/UA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/UG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/US.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/UY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/UY.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/UZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/UZ.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/VA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/VC.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/VE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/VG.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/VI.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/VN.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/VU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/VU.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/WF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/WF.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/WS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/WS.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/YE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/YE.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/YT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/YT.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/ZA.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ZH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/ZH.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ZM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/language-dropdown/img/ZM.png -------------------------------------------------------------------------------- /app/assets/language-dropdown/img/ZW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/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("./images-loader.js"); 8 | require("./language-dropdown/flags.js"); 9 | require("./coins-logo/coins.js"); 10 | require("./images/images.js"); 11 | -------------------------------------------------------------------------------- /app/assets/locales.js: -------------------------------------------------------------------------------- 1 | const locales = ["de", "es", "fr", "ko", "it", "tr", "ru", "zh", "ja"]; 2 | 3 | module.exports = locales; 4 | -------------------------------------------------------------------------------- /app/assets/logo-404-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/logo-404-dark.png -------------------------------------------------------------------------------- /app/assets/logo-404-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/logo-404-light.png -------------------------------------------------------------------------------- /app/assets/logo-404-midnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/logo-404-midnight.png -------------------------------------------------------------------------------- /app/assets/logo-ico-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/logo-ico-blue.png -------------------------------------------------------------------------------- /app/assets/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/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/components/_barter.scss: -------------------------------------------------------------------------------- 1 | .barter-footer { 2 | display: flex; 3 | align-items: center; 4 | } 5 | 6 | .barter-balance-warning { 7 | margin-left: 30px; 8 | color: #ff8d36; 9 | } 10 | 11 | @media (max-width: 600px) { 12 | .barter-footer { 13 | display: block; 14 | align-items: center; 15 | } 16 | 17 | .barter-balance-warning { 18 | margin-left: 0; 19 | margin-top: 30px; 20 | } 21 | } 22 | .barter-fee-selector { 23 | .amount-selector-field--label { 24 | text-align: left !important; 25 | } 26 | :after { 27 | content: none !important; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /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/_direct-debit.scss: -------------------------------------------------------------------------------- 1 | .direct-debit-table { 2 | overflow-x: auto; 3 | table { 4 | min-width: 1100px; 5 | } 6 | .ant-table-placeholder { 7 | min-height: 140px; 8 | } 9 | } 10 | 11 | @media (max-width: 750px) { 12 | .direct-debit-view { 13 | .direct-debit-table-card { 14 | .ant-card-body { 15 | padding: 24px 0; 16 | } 17 | } 18 | } 19 | } 20 | 21 | @media (max-width: 550px) { 22 | .direct-debit-view { 23 | .direct-debit-table__filter-input { 24 | margin-bottom: 15px; 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /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/_htlc.scss: -------------------------------------------------------------------------------- 1 | .period-row { 2 | margin-left: 10px; 3 | } 4 | 5 | .period-row:hover { 6 | cursor: pointer; 7 | } 8 | 9 | .period-row.is-active { 10 | text-decoration: underline; 11 | text-underline-position: under; 12 | cursor: pointer; 13 | } 14 | 15 | .preimage-row { 16 | margin-top: 10px !important; 17 | .button { 18 | height: 32px; 19 | } 20 | .icon { 21 | top: -5px; 22 | } 23 | } 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/_invoice.scss: -------------------------------------------------------------------------------- 1 | .invoice-request-input { 2 | .ant-col.ant-form-item-label { 3 | text-align: left !important; 4 | } 5 | :after { 6 | content: none !important; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_merchant.scss: -------------------------------------------------------------------------------- 1 | .merchant-protocol { 2 | padding: 10px; 3 | max-width: 60rem; 4 | min-width: 40rem; 5 | margin: 0 auto; 6 | 7 | div.merchant-protocol--request { 8 | max-width: 40rem; 9 | 10 | .ant-form-item { 11 | padding-bottom: 0px; 12 | margin-bottom: 0px; 13 | } 14 | } 15 | 16 | div.merchant-protocol--pay { 17 | .ant-form-item { 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_node-selector.scss: -------------------------------------------------------------------------------- 1 | .node-selector--drop-down { 2 | position: relative; 3 | 4 | #rc-tree-select-list_1 { 5 | // ant hack 6 | height: 300px; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /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/_quick_trade.scss: -------------------------------------------------------------------------------- 1 | .quick-trade .ant-input { 2 | margin-right: 0px !important; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/layout/_all.scss: -------------------------------------------------------------------------------- 1 | @import "page_layout"; 2 | @import "antd"; 3 | @import "registration_layout"; 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/style-guide-fixes.scss: -------------------------------------------------------------------------------- 1 | $ant-fix: ':not([class*="ant-"])'; 2 | 3 | .ant-form-item { 4 | .ant-form-item-label { 5 | label { 6 | text-transform: none; 7 | font-family: Roboto, sans-serif; 8 | font-weight: 400; 9 | display: inline; 10 | } 11 | } 12 | } 13 | 14 | .ant-select-dropdown-menu { 15 | margin-left: 0; 16 | font-size: 14px; 17 | } 18 | -------------------------------------------------------------------------------- /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/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/stylesheets/vendors/Roboto-Light.woff -------------------------------------------------------------------------------- /app/assets/stylesheets/vendors/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/stylesheets/vendors/Roboto-Medium.woff -------------------------------------------------------------------------------- /app/assets/stylesheets/vendors/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/stylesheets/vendors/Roboto-Regular.woff -------------------------------------------------------------------------------- /app/assets/stylesheets/vendors/RobotoCondensed-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/stylesheets/vendors/RobotoCondensed-Regular.woff -------------------------------------------------------------------------------- /app/assets/stylesheets/vendors/_all.scss: -------------------------------------------------------------------------------- 1 | @import "foundation_settings"; 2 | @import "./foundation/_all.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 "~bitshares-ui-style-guide/dist/styles/style.css"; 9 | -------------------------------------------------------------------------------- /app/assets/stylesheets/vendors/foundation/components/_list.scss: -------------------------------------------------------------------------------- 1 | @mixin inline-list($alignment) { 2 | list-style-type: none; 3 | text-align: $alignment; 4 | li, 5 | dt, 6 | dd { 7 | display: inline-block; 8 | margin-left: -2px; 9 | margin-right: -2px; 10 | } 11 | } 12 | 13 | @include exports(list) { 14 | .inline-list { 15 | @include inline-list(left); 16 | li { 17 | margin-right: 1rem; 18 | margin-left: 0; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/assets/ul-arrow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/app/assets/ul-arrow-black.png -------------------------------------------------------------------------------- /app/assets/ul-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/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 | 11 | .proposal-update { 12 | padding-top: 5px; 13 | li { 14 | font-size: 0.9rem; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/components/Blockchain/operations/AssetSettleCancel.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import TranslateWithLinks from "../../Utility/TranslateWithLinks"; 3 | 4 | export const AssetSettleCancel = ({op}) => { 5 | return ( 6 | 17 | ); 18 | }; 19 | -------------------------------------------------------------------------------- /app/components/Blockchain/operations/BondCancelOffer.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Translate from "react-translate-component"; 3 | 4 | export const BondCancelOffer = ({op}) => { 5 | return ( 6 | 7 | 8 |   9 | {op[1].offer_id} 10 | 11 | ); 12 | }; 13 | -------------------------------------------------------------------------------- /app/components/Blockchain/operations/BondCreateOffer.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Translate from "react-translate-component"; 3 | import FormattedAsset from "../../Utility/FormattedAsset"; 4 | 5 | export const BondCreateOffer = ({op}) => { 6 | return ( 7 | 8 | 9 |   10 | 15 | 16 | ); 17 | }; 18 | -------------------------------------------------------------------------------- /app/components/Blockchain/operations/Custom.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Translate from "react-translate-component"; 3 | 4 | export const Custom = ({fromComponent}) => { 5 | return ( 6 | 7 | 15 | 16 | ); 17 | }; 18 | -------------------------------------------------------------------------------- /app/components/Blockchain/operations/DefaultOperation.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import {Link} from "react-router-dom"; 3 | 4 | export const DefaultOperation = ({op, block}) => { 5 | console.log("unimplemented op:", op); 6 | return ( 7 | 8 | #{block} 9 | 10 | ); 11 | }; 12 | -------------------------------------------------------------------------------- /app/components/Blockchain/operations/FileWrite.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Translate from "react-translate-component"; 3 | 4 | export const FileWrite = () => { 5 | return ( 6 | 7 | 8 | 9 | ); 10 | }; 11 | -------------------------------------------------------------------------------- /app/components/Blockchain/operations/GlobalParametersUpdate.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Translate from "react-translate-component"; 3 | 4 | export const GlobalParametersUpdate = ({fromComponent}) => { 5 | return ( 6 | 7 | 15 | 16 | ); 17 | }; 18 | -------------------------------------------------------------------------------- /app/components/Blockchain/operations/KeyCreate.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Translate from "react-translate-component"; 3 | 4 | export const KeyCreate = () => { 5 | return ( 6 | 7 | 8 | 9 | ); 10 | }; 11 | -------------------------------------------------------------------------------- /app/components/Blockchain/operations/ShortOrderCancel.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Translate from "react-translate-component"; 3 | 4 | export const ShortOrderCancel = ({op, changeColor}) => { 5 | changeColor("cancel"); 6 | 7 | return ( 8 | 9 | 10 |   11 | {op[1].order} 12 | 13 | ); 14 | }; 15 | -------------------------------------------------------------------------------- /app/components/Bots/RelativeOrders/Create.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | class Create extends React.Component { 4 | render() { 5 | return

Hello Create RelativeOrders

; 6 | } 7 | } 8 | 9 | export default Create; 10 | -------------------------------------------------------------------------------- /app/components/Bots/RelativeOrders/State.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | class State extends React.Component { 4 | render() { 5 | return

Hello State RelativeOrders

; 6 | } 7 | } 8 | 9 | export default State; 10 | -------------------------------------------------------------------------------- /app/components/Explorer/witnesses.scss: -------------------------------------------------------------------------------- 1 | tr.active-witness { 2 | background-color: rgba(80, 210, 194, 0.4) !important; 3 | transition: background-color 0.6s ease; 4 | } 5 | 6 | .clickable { 7 | cursor: pointer; 8 | user-select: none; 9 | } 10 | 11 | .view-switcher { 12 | padding-top: 1rem; 13 | text-align: right; 14 | } 15 | 16 | .explore-witness--info { 17 | margin-top: 0px; 18 | margin-bottom: 18px; 19 | } 20 | -------------------------------------------------------------------------------- /app/components/Layout/DividerMenuItem.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import cnames from "classnames"; 3 | 4 | class DividerMenuItem extends React.Component { 5 | render() { 6 | const {additionalClassName, hidden} = this.props; 7 | 8 | return hidden ? null : ( 9 |
  • 10 | ); 11 | } 12 | } 13 | 14 | export default DividerMenuItem; 15 | -------------------------------------------------------------------------------- /app/components/Layout/MenuItemType.js: -------------------------------------------------------------------------------- 1 | const MenuItemType = Object.freeze({ 2 | Never: Symbol("Never"), 3 | Always: Symbol("Always"), 4 | WhenUnlocked: Symbol("WhenUnlocked"), 5 | WhenAccount: Symbol("WhenAccount"), 6 | WhenNotMyAccount: Symbol("WhenNotMyAccount"), 7 | WhenNotInHeader: Symbol("WhenNotInHeader"), 8 | WhenMainnet: Symbol("WhenMainnet"), 9 | Dynamic: Symbol("Dynamic"), 10 | Divider: Symbol("Divider") 11 | }); 12 | 13 | export default MenuItemType; 14 | -------------------------------------------------------------------------------- /app/components/Layout/SubmenuItem.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Translate from "react-translate-component"; 3 | 4 | class SubmenuItem extends React.Component { 5 | render() { 6 | const {target, text, hidden, icon} = this.props; 7 | 8 | return hidden ? null : ( 9 |
  • 10 | 15 |
  • 16 | ); 17 | } 18 | } 19 | 20 | export default SubmenuItem; 21 | -------------------------------------------------------------------------------- /app/components/Listing/DonutChart.css: -------------------------------------------------------------------------------- 1 | .root { 2 | position: relative; 3 | width: 40px; 4 | height: 40px; 5 | margin: 0 auto; 6 | } 7 | 8 | .chart { 9 | width: 100%; 10 | height: 100%; 11 | transform: rotate(-90deg); 12 | border-radius: 50%; 13 | } 14 | 15 | .inside { 16 | position: absolute; 17 | top: calc(calc(100% - 30px) / 2); 18 | left: calc(calc(100% - 30px) / 2); 19 | width: 30px; 20 | height: 30px; 21 | border-radius: 50%; 22 | display: flex; 23 | justify-content: center; 24 | align-items: center; 25 | } 26 | 27 | .percent { 28 | font-size: 12px; 29 | } 30 | -------------------------------------------------------------------------------- /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/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/Utility/paginated-list.scss: -------------------------------------------------------------------------------- 1 | .paginated-list { 2 | .ant-table-body { 3 | overflow: auto; 4 | width: 100%; 5 | height: 100%; 6 | } 7 | .ant-table td { 8 | white-space: nowrap; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /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 | } 8 | 9 | .importError { 10 | margin-bottom: 16px; 11 | } 12 | -------------------------------------------------------------------------------- /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/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 gpAssets 2 | ==================== 3 | 4 | Privatized gpAssets 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* gpasset, 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/bots/introduction.md: -------------------------------------------------------------------------------- 1 | # Bots 2 | 3 | We sincerely believe that public bots are crucial for the development of DEX and increased liquidity. 4 | on the platform due to the automation of routine actions, which is why we decided to arm you with similar tools. 5 | If you also do not mind that all the work is done for you by robots, then read the ones presented in the corresponding sections (on the left of the menu) 6 | instructions or watch a video tutorial on how to use them for your own benefit. -------------------------------------------------------------------------------- /app/help/en/bots/percent-up.md: -------------------------------------------------------------------------------- 1 | # Bots 2 | 3 | ## Bot PercentUP 4 | 5 | You can find the video tutorial at the link below: 6 | 7 | https://steemit.com/blockchain/@blockchained/announcement-of-a-new-public-trading-bot-from-rudex-percentup -------------------------------------------------------------------------------- /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 Graphene 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 Graphene network on your behalf. You may find people proposing to act as proxies in the Graphene forum at [Graphenetalk](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 Graphene. 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: [Graphenetalk - 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 Graphene. 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}. 4 | 5 | [Read more.](dex/shorting) & [checkout the Explanation Wizard](/borrow) 6 | -------------------------------------------------------------------------------- /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 GPH 3 | In order to receive GPH 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/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}を超えている限り、担保および賃借のレベルは任意に調整できます。[もっと知る](/borrow) 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/accounts/proposed.md: -------------------------------------------------------------------------------- 1 | # Предложенные транзакции 2 | 3 | Это продвинутая функция Graphene, доступная из функционала отправки. Она позволяет использовать так называемую мультиподпись. Представьте, что у вас есть всего один аккаунт, но для авторизации транзакции требуется более одного человека. Эта возможность встроена в Graphene изначально, однако требует наличия определенных знаний и проведения процесса настройки. Если ранее вы не настраивали мультиподпись для своего аккаунта, то вероятнее всего, она вам не нужна. -------------------------------------------------------------------------------- /app/help/ru/assets/EUR.md: -------------------------------------------------------------------------------- 1 | [# summary] 2 | 3 | ### Актив {symbol} 4 | 5 | {description} 6 | 7 | Выпущен: {issuer} 8 | 9 | Евро (знак: €; символ: EUR) является официальной валютой стран-участниц Еврозоны. -------------------------------------------------------------------------------- /app/help/ru/assets/USD.md: -------------------------------------------------------------------------------- 1 | [# summary] 2 | 3 | ### Актив {symbol} 4 | 5 | {description} 6 | 7 | Выпущен: {issuer} 8 | 9 | Доллар США (знак: $; символ: USD) является официальной валютой Соединенных Штатов Америки. -------------------------------------------------------------------------------- /app/help/ru/assets/privbitassets.md: -------------------------------------------------------------------------------- 1 | # Приватизированные gpAssets 2 | 3 | Приватизированные gpAssets обслуживают тех клиентов, которые хотели бы выпустить актив с привязкой к рынку, но не хотели бы, чтобы заверители публиковали его цены. Вместо этого, когда клиент создает *приватизированный* gpAsset, он может определять набор авторитетов, которые смогут публиковать цену для этого конкретного актива. Эмитент также может определить все виды комиссий, связанных с этим активом, и получать прибыль. 4 | 5 | Эта функция представляет особый интерес для бирж и институтов, которые имеют доступ к ценам в режиме реального времени и хотели бы увеличить видимость и объем. -------------------------------------------------------------------------------- /app/help/ru/bots/introduction.md: -------------------------------------------------------------------------------- 1 | # Боты 2 | 3 | Мы искренне полагаем, что публичные боты критически важны для развития DEX и увеличения ликвидности 4 | на платформе за счет автоматизации рутинных действий, именно поэтому мы решили вооружить вас подобными инструментами. 5 | Если вы также не против, чтобы всю работу за вас выполняли роботы, то прочитайте представленные в соответствующих разделах (слева в меню) 6 | инструкции или посмотрите видео-туториал о том, как использовать их себе во благо. -------------------------------------------------------------------------------- /app/help/ru/bots/percent-up.md: -------------------------------------------------------------------------------- 1 | # Боты 2 | 3 | ## Бот PercentUP 4 | 5 | Описание и видео вы можете посмотреть по ссылке ниже: 6 | 7 | https://golos.id/ru--blokcheijn/@blockchained/anons-novogo-publichnogo-bota-ot-rudex-percentup -------------------------------------------------------------------------------- /app/help/ru/components/AccountAssetCreate.md: -------------------------------------------------------------------------------- 1 | [# permissions] Разрешения определяют доступные для актива функции. Однако, даже если функция разрешена, она по-прежнему должна быть активирована с помощью соответствующего маркера, чтобы она исполнялась блокчейном. 2 | 3 | После создания Вы можете только удалить данное разрешение, Вы не можете включить разрешение, которое было отключено при создании. 4 | 5 | [# flags] Маркеры определяют, какие функции актива активны, а какие – нет. Они могут быть включены или выключены владельцем актива в любое время. -------------------------------------------------------------------------------- /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) могут предлагать изменения динамических параметров блокчейна, таких как комиссия, время блока и многое другое. Эта позиция несет в себе большую ответственность, которая требует четкого понимания механизма работы Graphene. -------------------------------------------------------------------------------- /app/help/ru/components/AccountVotingProxy.md: -------------------------------------------------------------------------------- 1 | Если Вы не понимаете ролей Заверителей, Членов Комитета и Работников в полной мере, Вы можете выбрать вариант использования Прокси. Прокси – это аккаунт, которому Вы доверяете принятие решений о сети Graphene от Вашего имени. Вы можете найти людей, предлагающих свои услуги в качестве Прокси, на форуме Graphene на [Graphenetalk](https://bitsharestalk.org/index.php/board,75.0.html). Кроме того, Вы можете выбрать прокси из списка ниже или ввести имя выбранного Вами аккаунта вручную. 2 | 3 | **Обязательно выберите вышеуказанный пункт "Опубликовать изменения", как только Вы сделали свой выбор**. -------------------------------------------------------------------------------- /app/help/ru/components/AccountVotingWitnesses.md: -------------------------------------------------------------------------------- 1 | [Заверители](introduction/witness) – это производители блоков Graphene. Они подтверждают транзакции и обеспечивают безопасность сети. Вы можете проголосовать за стольких делегатов, за скольких пожелаете, и все они получат одинаковое количество голосов. Предлагаемые кандидатуры делегатов можно найти здесь: [Graphenetalk – Stakeholder Proposals Board](https://bitsharestalk.org/index.php/board,75.0.html). -------------------------------------------------------------------------------- /app/help/ru/components/AccountVotingWorkers.md: -------------------------------------------------------------------------------- 1 | [Работники](introduction/workers) – это уникальный концепт, придуманный Graphene. Они состоят из предложений по предоставлению услуг в обмен на зарплату от самого блокчейна. Предложение должно включать в себя ссылку на веб-сайт или ветку форума, которая объясняет назначение предложения. Коллекцию предложений можно найти здесь: [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) [Узнать больше.](dex/shorting) -------------------------------------------------------------------------------- /app/help/ru/components/BorrowModalPrediction.md: -------------------------------------------------------------------------------- 1 | Это рынок бинарных прогнозов. 2 | 3 | Соотношение залогового обеспечения для этого рынка составляет 1:1. -------------------------------------------------------------------------------- /app/help/ru/components/DepositWithdraw.md: -------------------------------------------------------------------------------- 1 | [# receive] 2 | 3 | ### Получение GPH 4 | 5 | Для того, чтобы получить GPH от другого лица или биржи, просто сообщите им имя Вашего аккаунта: **{account}** 6 | 7 | [# deposit-short] 8 | 9 | ### Внесение депозита или снятие монет 10 | 11 | Если Вы хотите внести депозит или снять средства, в фиате или из других блокчейнов, Вы можете воспользоваться для этого сервисами [моста](introduction/bridges_gateways) или [шлюза](introduction/bridges_gateways). -------------------------------------------------------------------------------- /app/help/ru/components/Fees.md: -------------------------------------------------------------------------------- 1 | # Комиссии 2 | 3 | В экосистеме Graphene каждой операции присваивается *индивидуальная* комиссия. Эти комиссии могут меняться. Тем не менее, они определяются только одобрением держателей долей, поэтому каждый держатель основного актива Graphene (GPH) имеет право влиять на то, какими эти комиссии должны быть. Если держатели согласятся снизить некую комиссию и консенсус будет достигнут, комиссия будет автоматически снижена блокчейном. Изменения параметров блокчейна предлагаются членами комитета. Этих члены избираются держателями долей и улучшают показатели гибкости и реакции. 4 | 5 | \*: Для этих операций требуется Пожизненное Членство! -------------------------------------------------------------------------------- /app/help/ru/components/InitError.md: -------------------------------------------------------------------------------- 1 | [# connection-error] Мы не смогли установить соединение WebSocket с полной нодой. 2 | 3 | Возможные причины: TODO 4 | 5 | - причина #1 6 | - причина #2 -------------------------------------------------------------------------------- /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 gpAssets) 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 | Graphene'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. Graphene'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. Graphene 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) Graphene'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) Graphene'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. 7 | 8 | [Devamını oku & Açıklama Sihirbazı'nı kontrol et](/borrow) -------------------------------------------------------------------------------- /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 GPH gönderimi için, göndericiye kullanıcı adınızı vermeniz yeterlidir. GPH'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/accounts/membership.md: -------------------------------------------------------------------------------- 1 | # 会员级别 2 | 3 | Graphene 系统中,用户账户分为3个种类。我们运行用户升级账户到类似VIP的会员级别,享受费率折扣以及其他专属特性。 4 | 5 | ## 非会员(普通账户) 6 | 7 | 一个*非会员账户*,也就是一个*普通账户* 8 | 9 | ## 终身会员 10 | 11 | 终身会员账户可以从自己支付的各种手续费中获得一定比例的返现奖励,并有资格加入引荐计划,通过引荐或注册用户获得引荐奖励。升级到终身会员要求支付一笔一次性的升级费用,具体金额由理事会成员通过投票设定和调整。 12 | 13 | ### 手续费分配 14 | 15 | 每次你推荐的用户支付手续费时,该手续费将分配给多个不同账户。网络、推荐人都将获得一部分分成。 16 | 17 | 注册人是账户注册时代其支付注册费的账户。注册人账户可自行决定剩余的手续费如何在它自己及它的市场合作方之间分配。 18 | 19 | #### 待结费用 20 | 手续费每个维护周期在网络、推荐人和注册人之间结算一次。尚未结算的手续费称为*待结费用*。 21 | 22 | #### 待解冻金额 23 | 24 | 大部分获取手续费的利益账户可立即使用资金,但金额超过一定数量的费用(比如支付升级终身会员的手续费、注册高级账户名的手续费等)则需要暂时冻结,并在一段时间内线性解冻释放。 25 | 26 | -------------------------------------------------------------------------------- /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 | 一种加密数字货币,拥有类似比特币的属性和优点,同时能保持价格与对应的全球接受的货币同步(比如美元)。具有很强的便利性和实用性,对管制免疫。Graphene的市场锚定资产(MPA)可以实现这样的目的。市场锚定资产是一种新型的可自由交易的数字资产,通过差价合约(CFD)机制,它的价值能够追踪传统的对应资产的价值。 4 | 5 | *SmartCoin* (市场锚定资产的另一种叫法)是一种数字货币,它的价值*总是*有100%或更多价值的比特股核心货币(GPH)来支撑。这些GPH在差价合约(CFD)中,作为抵押物存在,并在任何时间可被赎回。 6 | 7 | 市场锚定资产与众不同的一个特点在于,尽管它使用了有抵押的价差合约,它却能免于对手盘风险。这是由网络本身(软件协议)通过确保抵押充足,并在特定情况下进行强制清算的机制来实现的。 8 | 9 | 以下是部分已经可用的市场锚定资产 10 | * gpUSD (比特美元) 11 | * gpCNY (比特人民币) 12 | * gpEUR (比特欧元) 13 | * gpGOLD (比特黄金) 14 | * ... 15 | -------------------------------------------------------------------------------- /app/help/zh/assets/privbitassets.md: -------------------------------------------------------------------------------- 1 | 私有比特资产 2 | ==================== 3 | 4 | 通过私有比特资产,某些用户可以发行市场锚地资产,然后并不依赖见证人发布的喂价信息。相反的,在创建*私有比特资产*时,发行人设定一组授权账号来发布喂价信息。发行人可以设置与该资产相关的各种费率参数。 5 | 6 | 这个特性主要适用于一些中心化交易所和机构,它们往往能够获得实时的价格信息,并以此来增加交易量。 -------------------------------------------------------------------------------- /app/help/zh/assets/uia.md: -------------------------------------------------------------------------------- 1 | # 用户发行的资产 2 | 3 | 除了之前提到的 *市场锚定资产* 外,Graphene允许个人或公司用户创建和发行各种自定义资产凭证(UIA)。相关的应用场景数不胜数。比如,UIA可被用来代替简单的活动门票,存入合格用户的手机钱包中,在进入活动现场时进行实时验证。同样,UIA可被用来进行众筹、所有权追踪,甚至是代表公司的股权。 4 | 5 | 显然,适用于不同凭证使用场景的法律法规可能天差地别,尤其是在不同国家时。所以,Graphene提供了一组工具来帮助发行人来合规发行和管理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) 。 4 | -------------------------------------------------------------------------------- /app/help/zh/components/AccountPermMemo.md: -------------------------------------------------------------------------------- 1 | 交易附带的备注信息是使用备注公钥加密后传输的。为了解密备注信息,需要拥有备注公钥对应的私钥。 2 | 3 | 备注信息由单独<公/私钥对>进行管理,如果账户资金权限与备注权限不一致或者此账户不拥有资金权限,你才可以安全的将此账户备注信息的只读权限交由第三方,这样才不会导致资金控制权外泄。 4 | 5 | 警告:一般情况下,账户的资金权限与备注权限的<公/私钥对>相同,请不要轻易泄露备注权限的私钥,如需更改为不一致,请参考(账号登录模式)处说明。 6 | -------------------------------------------------------------------------------- /app/help/zh/components/AccountPermOwner.md: -------------------------------------------------------------------------------- 1 | 账户权限设定谁可以控制本账户。控制人(账户名或公钥)可修改账户相关的各种设置,包括权限设置。 2 | 3 | 参见 [权限](accounts/permissions) 了解更多信息。 -------------------------------------------------------------------------------- /app/help/zh/components/AccountVoting.md: -------------------------------------------------------------------------------- 1 | ### 投票 2 | 3 | 在Graphene系统中,投票是非常重要的一项特性,不仅事关网络安全,同时也能影响系统的后续开发方向。如果你愿意的话,你可以将你的投票权交由代理投票账户执行。如果你设定了代理投票账户,则手动投票将相应关闭。 -------------------------------------------------------------------------------- /app/help/zh/components/AccountVotingCommittee.md: -------------------------------------------------------------------------------- 1 | [理事会成员](introduction/committee) 可以提议修改区块链的动态参数,比如手续费,区块间隔时间以及其他很多参数。这是一个需要对Graphene系统如何运作有很深理解,需要有很强责任感的职位。 -------------------------------------------------------------------------------- /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) 是Graphene系统中区块的生产者。他们验证交易数据并维护网络安全。你可以投票选举你信任的人成为见证人。投票时,你选择的候选人将获得你投出的相同票数。见证人的竞选帖可在这里找到[BitSharestalk - Stakeholder Proposals Board](https://bitsharestalk.org/index.php/board,75.0.html)。 2 | -------------------------------------------------------------------------------- /app/help/zh/components/AccountVotingWorkers.md: -------------------------------------------------------------------------------- 1 | [预算项目](introduction/workers) 是Graphene系统中独有的概念。他们是一些期望通过提供服务来从区块链获得奖金的工作项目提案。一项提案包含一个指向网站或论坛帖子的链接,在其中详细解释了工作项目的介绍。在这里[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 | 保证金可以增加或减少,只要抵押率超过维持保证金率。[更多信息](/borrow) 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 | 在Graphene系统中,每一种操作都将花费*相应*手续费。手续费率可能发生变化。然而,手续费的调整需要获得股东的授权。所以每一位持有Graphene核心资产(GPH)的股东对费率的构成都有话语权。如果股东确信某种手续费的降低将带来好处,并且达成共识,那么该种手续费则由区块链自动进行调低。区块链参数的改变由理事会成员提出动议。这些成员由全体股东投票选举产生,以提高系统灵活性和响应率。 -------------------------------------------------------------------------------- /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/components/PredictionMarkets.md: -------------------------------------------------------------------------------- 1 | # 预测市场资产 2 | 3 | 预测市场资产允许你赞同或者不赞同预测(条件)资产,并可以在你的意见上使用抵押物。
    4 | 预测市场由发行者在判定日期到期后根据真实世界的结果进行判定并反馈到链上。 5 | 6 | 预测市场资产在区块链上是一种特殊种类的借贷资产,债务与抵押物总是相等数量(借贷 1:1),强平或者强清无效。
    7 | 预测市场资产有其及抵押物的活跃市场。
    8 | 赞同预测意味着你将要买入预测市场资产,不赞同预测意味着你将要借入预测市场资产并将其出售。
    9 | 市场预测资产的判定结束由强制全局清算完成,全局清算的价格由发行人给出。
    10 | 在判定结束(全局清算)后,如果预测被证明为真(全局清算价格是 1),预测市场资产持有者会快速的将其强清并得到同等数量的基础抵押物。
    11 | 在判定结束(全局清算)后,如果预测被确认为错(全局清算价格是 0),债仓所有者将自动获得在头寸中被锁定的全部抵押物。
    12 | -------------------------------------------------------------------------------- /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)*的共识算法决定的。算法的本质是 Graphene 的股东(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 | RUDEX.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)*的共识算法决定的。算法的本质是 Graphene 的股东(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.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import AppInit from "./AppInit"; 4 | if (__PERFORMANCE_DEVTOOL__) { 5 | const {registerObserver} = require("react-perf-devtool"); 6 | registerObserver(); 7 | } 8 | 9 | const rootEl = document.getElementById("content"); 10 | const render = () => { 11 | ReactDOM.render(, rootEl); 12 | }; 13 | render(); 14 | -------------------------------------------------------------------------------- /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 | export default { 2 | MAIN_NET: 3 | "7fcf452d6bb058949cdc875b13c8908c8f54b0f264c39faf8152b682af0740ee", 4 | TEST_NET: "39f5e2ede1f8bc1a3a54a7914414e3779e33193f1f5693510e73cb7a87617447" 5 | }; 6 | -------------------------------------------------------------------------------- /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/hideProposals.js: -------------------------------------------------------------------------------- 1 | export const hiddenProposals = [ 2 | "1.14.114", // 201808_Rossul&GrapheneLab_New_UIUX, now under BBF with new name 3 | "1.14.107" // Reinvention of Bitshares look and feel, abandoned from creator 4 | ]; 5 | -------------------------------------------------------------------------------- /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"; 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/services/Exchange.js: -------------------------------------------------------------------------------- 1 | export const PRICE_ALERT_TYPES = { 2 | HIGHER_THAN: "1", 3 | LOWER_THAN: "2" 4 | }; 5 | 6 | export const SCALED_ORDER_DISTRIBUTION_TYPES = { 7 | FLAT: "flat" 8 | }; 9 | 10 | export const SCALED_ORDER_ACTION_TYPES = { 11 | BUY: "buy", 12 | SELL: "sell" 13 | }; 14 | -------------------------------------------------------------------------------- /app/services/Notification.jsx: -------------------------------------------------------------------------------- 1 | export const DEFAULT_NOTIFICATION_DURATION = 4.5; 2 | -------------------------------------------------------------------------------- /app/services/README.md: -------------------------------------------------------------------------------- 1 | ### Services 2 | 3 | Please use services folder to store reusable across app functions, 4 | constants etc. -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | cd $TRAVIS_BUILD_DIR 2 | unamestr=`uname` 3 | echo TRAVIS_BRANCH=$TRAVIS_BRANCH 4 | 5 | ## Build the hash wallet if wer're on Linux 6 | if [ "$unamestr" == 'Linux' ] 7 | then 8 | npm run build-hash 9 | fi 10 | ## Build the binaries if this is a release tag 11 | if [ $TRAVIS_TAG ] 12 | then 13 | npm run-script package 14 | fi 15 | -------------------------------------------------------------------------------- /charting_library/charting_library.17.025.02b61a1c.zip.md5: -------------------------------------------------------------------------------- 1 | 7C1A43A054922FBAFBB49B40CC115B25 2 | -------------------------------------------------------------------------------- /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:/rudex-ui/build/dist 12 | - .:/rudex-ui 13 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/README.md -------------------------------------------------------------------------------- /docs/_build/doctrees/components.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/doctrees/components.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/contributing.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/doctrees/contributing.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/data_layer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/doctrees/data_layer.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/getting_started.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/doctrees/getting_started.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/help.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/doctrees/help.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/license.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/doctrees/license.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/structure.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/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/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_build/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/comment.png -------------------------------------------------------------------------------- /docs/_build/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/down.png -------------------------------------------------------------------------------- /docs/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_build/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/docs/_build/html/_static/up.png -------------------------------------------------------------------------------- /docs/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/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 | ================ -------------------------------------------------------------------------------- /news.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "type": "warning", 4 | "begin_date": "26.04.2019", 5 | "end_date": "26.05.2019", 6 | "content": "Warning!" 7 | }, 8 | "1": { 9 | "type": "info", 10 | "begin_date": "26.04.2019", 11 | "end_date": "26.05.2019", 12 | "content": "INFO!" 13 | }, 14 | "3": { 15 | "type": "critical", 16 | "begin_date": "25.04.2019", 17 | "end_date": "26.05.2019", 18 | "content": "CRITICAL! 25-26" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | autoprefixer: {} 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/resources/background.png -------------------------------------------------------------------------------- /resources/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/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/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/resources/icon.ico -------------------------------------------------------------------------------- /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/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/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/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/resources/setup-icon.ico -------------------------------------------------------------------------------- /resources/windows/setup-banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/resources/windows/setup-banner.bmp -------------------------------------------------------------------------------- /set_snap_token.sh.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blckchnd/rudex-ui/8b5666ae0e610df7355872af100c0ae0b30eb391/set_snap_token.sh.enc --------------------------------------------------------------------------------