├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── README_IMG_01.png ├── amplitude.js ├── chooseBuild.hbs ├── configs ├── mainnet.json ├── stagenet.json └── testnet.json ├── data-service ├── api │ ├── API.ts │ ├── address │ │ └── index.ts │ ├── aliases │ │ └── aliases.ts │ ├── assets │ │ ├── assets.ts │ │ └── interface.d.ts │ ├── data │ │ └── index.ts │ ├── matcher │ │ ├── getLastPrice.ts │ │ ├── getOrders.ts │ │ ├── getSettings.ts │ │ ├── interface.d.ts │ │ └── orderBook.ts │ ├── matchers │ │ └── matchers.ts │ ├── node │ │ └── node.ts │ ├── pairs │ │ └── pairs.ts │ ├── rating │ │ └── rating.ts │ └── transactions │ │ ├── interface.d.ts │ │ ├── parse.ts │ │ └── transactions.ts ├── broadcast │ ├── broadcast.ts │ └── interface.d.ts ├── classes │ ├── DataManager.ts │ ├── PollControl.ts │ ├── Seed.ts │ └── UTXManager.ts ├── config.ts ├── connect │ ├── ConnectProvider.ts │ ├── HttpConnectProvider.ts │ └── PostMessageConnectProvider.ts ├── index.ts ├── interface.d.ts ├── sign.ts ├── store.ts ├── tsconfig.json └── utils │ ├── AssetStorage.ts │ ├── ConfigService.ts │ ├── DownloadFile.ts │ ├── MoneyHash.ts │ ├── Poll.ts │ ├── request.ts │ ├── seedDictionary.ts │ └── utils.ts ├── electron-builder.yml ├── electron ├── Bridge.ts ├── Resources.pri ├── SimpleConnect.ts ├── Storage.ts ├── Waves Client.visualelementsmanifest.xml ├── constansts.ts ├── decorators │ └── loggable.ts ├── dex.wavesplatform.client.entitlements.plist ├── icons │ ├── 128.png │ ├── 256.png │ ├── 32.png │ ├── 64.png │ ├── icon.icns │ ├── icon.ico │ ├── macos-installer-bg.tiff │ ├── tile150x150.scale-100.png │ ├── tile150x150.scale-125.png │ ├── tile150x150.scale-150.png │ ├── tile150x150.scale-200.png │ ├── tile70x70.scale-100.png │ ├── tile70x70.scale-125.png │ ├── tile70x70.scale-150.png │ └── tile70x70.scale-200.png ├── installer.nsh ├── interface.d.ts ├── main.ts ├── node-global-extends.d.ts ├── notarize.ts ├── package.d.ts ├── preload.ts ├── transfer.ts ├── utils.ts └── waves.desktop ├── googleAnalytics.js ├── gulpfile.ts ├── helpers ├── loginDaemon.js └── mobileConsole.js ├── locale ├── de │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── en │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.migration.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── es │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── et_EE │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── fr │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── hi_IN │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── id │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── it │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── ja │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── ko │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── nl_NL │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── pl │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── pt_BR │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── pt_PT │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── ru │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.migration.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── tr │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json └── zh_CN │ ├── app.create.json │ ├── app.desktop.json │ ├── app.dex.json │ ├── app.fag.json │ ├── app.import.json │ ├── app.json │ ├── app.ledger.json │ ├── app.migrate.json │ ├── app.restore.json │ ├── app.saveSeed.json │ ├── app.sessions.json │ ├── app.signIn.json │ ├── app.signUp.json │ ├── app.tokens.json │ ├── app.ui.json │ ├── app.unavailable.json │ ├── app.utils.json │ ├── app.wallet.assets.json │ ├── app.wallet.leasing.json │ ├── app.wallet.portfolio.json │ ├── app.wallet.transactions.json │ ├── app.welcome.json │ └── electron.json ├── localhost.crt ├── localhost.key ├── mocks ├── coinomat │ ├── create_tunnel.php.json │ ├── get_confirmation.php.json │ ├── get_ts.php.json │ ├── get_tunnel.php.json │ ├── get_verification_status.php.json │ ├── get_xrate.php.json │ ├── limits.php.json │ └── rate.php.json └── waves-client-config │ └── master │ ├── config.json │ └── testnet.config.json ├── package.json ├── scripts ├── babelTask.ts ├── cleanTask.ts ├── concatTask.ts ├── copyTask.ts ├── dataServicesTask.ts ├── electronDebugTask.ts ├── electronPackageTask.ts ├── eslintTask.ts ├── htmlTask.ts ├── imageListTask.ts ├── lessTask.ts ├── localesTask.ts ├── postinstall.sh ├── postversion.sh ├── preinstall.sh ├── preversion.sh ├── release.sh ├── templatesTask.ts └── utils.ts ├── server.ts ├── src ├── export.hbs ├── fonts │ ├── roboto-light.woff2 │ ├── roboto-light2.woff2 │ ├── roboto-light3.woff2 │ ├── roboto-light4.woff2 │ ├── roboto-light5.woff2 │ ├── roboto-light6.woff2 │ ├── roboto-light7.woff2 │ ├── roboto-medium.woff2 │ ├── roboto-medium2.woff2 │ ├── roboto-medium3.woff2 │ ├── roboto-medium4.woff2 │ ├── roboto-medium5.woff2 │ ├── roboto-medium6.woff2 │ ├── roboto-medium7.woff2 │ ├── roboto.woff2 │ ├── roboto2.woff2 │ ├── roboto3.woff2 │ ├── roboto4.woff2 │ ├── roboto5.woff2 │ ├── roboto6.woff2 │ └── roboto7.woff2 ├── img │ ├── assets │ │ ├── bitcoin-cash-sv.svg │ │ ├── bitcoin-cash.svg │ │ ├── bitcoin.svg │ │ ├── bnt.svg │ │ ├── dash.svg │ │ ├── efyt.svg │ │ ├── ergo.svg │ │ ├── ethereum.svg │ │ ├── euro.svg │ │ ├── ltc.svg │ │ ├── try.svg │ │ ├── usd.svg │ │ ├── waves.svg │ │ ├── west.svg │ │ ├── wnet.svg │ │ ├── xmr.svg │ │ └── zec.svg │ ├── favicon.ico │ ├── icons │ │ ├── Closed-Dark.svg │ │ ├── actions-blue-active.svg │ │ ├── actions-blue.svg │ │ ├── active-order-arrow-ask.svg │ │ ├── active-order-arrow-bid.svg │ │ ├── add-asset.svg │ │ ├── amount-modal-icon.svg │ │ ├── apple-store-icon.svg │ │ ├── arrow-disabled-down-little.svg │ │ ├── arrow-down-dark.svg │ │ ├── arrow-down.svg │ │ ├── arrow-dropdown.svg │ │ ├── arrow-expand.svg │ │ ├── arrow-left-blue.svg │ │ ├── arrow-orderbook-down.svg │ │ ├── arrow-orderbook-top.svg │ │ ├── arrow-right-hover.svg │ │ ├── arrow-right-white.svg │ │ ├── arrow-select-expanded.svg │ │ ├── arrow-select.svg │ │ ├── arrow_down.svg │ │ ├── arrowleft-18-basic-500.svg │ │ ├── arrowright-18-basic-500.svg │ │ ├── attention-icon-orange.svg │ │ ├── attention-icon-red.svg │ │ ├── backup-password.svg │ │ ├── backup.svg │ │ ├── bank-building-success.svg │ │ ├── bank-success.svg │ │ ├── burn.svg │ │ ├── canceled_leasing.svg │ │ ├── cancelorder-80-error-500.svg │ │ ├── card-success.svg │ │ ├── check-arrow.svg │ │ ├── check-user-account.svg │ │ ├── check.svg │ │ ├── checkbox-icon.svg │ │ ├── close-24-basic500.svg │ │ ├── close-tokenomica.svg │ │ ├── close-white.svg │ │ ├── close.svg │ │ ├── close_arrow.svg │ │ ├── contest-basic-700.svg │ │ ├── copy-icon.svg │ │ ├── copy.svg │ │ ├── dark-add-user.svg │ │ ├── dark │ │ │ ├── Contest-White.svg │ │ │ ├── Step1.svg │ │ │ ├── add-asset.svg │ │ │ ├── arrow-down-avatar.svg │ │ │ ├── arrow-dropdown.svg │ │ │ ├── arrow-expand.svg │ │ │ ├── arrow-left-10-disabled-600.svg │ │ │ ├── arrow-orderbook-down.svg │ │ │ ├── arrow-orderbook-top.svg │ │ │ ├── arrow-right-10-disabled-600.svg │ │ │ ├── arrow-select-expanded.svg │ │ │ ├── arrow-select.svg │ │ │ ├── cancel-10-disabled-600.svg │ │ │ ├── card-success.svg │ │ │ ├── close-24-disabled600.svg │ │ │ ├── close.svg │ │ │ ├── close_arrow.svg │ │ │ ├── collapse-centr-24-disabled-800.svg │ │ │ ├── collapse-up-24-disabled-800.svg │ │ │ ├── copy.svg │ │ │ ├── deposit-hover.svg │ │ │ ├── deposit.svg │ │ │ ├── dex-copy-icon.svg │ │ │ ├── dex-icon-mini.svg │ │ │ ├── dex-star-active.svg │ │ │ ├── dex-star.svg │ │ │ ├── dex-toggle.svg │ │ │ ├── double-arrow.svg │ │ │ ├── download.svg │ │ │ ├── fullscreen.svg │ │ │ ├── fullscreenclose.svg │ │ │ ├── hide-icon.svg │ │ │ ├── icon-empty.svg │ │ │ ├── icon-error.svg │ │ │ ├── icon-filter.svg │ │ │ ├── icon-info.svg │ │ │ ├── icon-sorting-active.svg │ │ │ ├── icon-sorting.svg │ │ │ ├── import-keystore-file-dark.svg │ │ │ ├── info-icon.svg │ │ │ ├── input-search-icon.svg │ │ │ ├── keeper-mini-icon.svg │ │ │ ├── leasing_note.svg │ │ │ ├── ledger-mini-icon.svg │ │ │ ├── menu │ │ │ │ ├── accounts.svg │ │ │ │ ├── alias.svg │ │ │ │ ├── android-disabled-600.svg │ │ │ │ ├── apple-disabled-600.svg │ │ │ │ ├── arrow-down-12.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── dashboard.svg │ │ │ │ ├── edit-disabled-600.svg │ │ │ │ ├── leasing.svg │ │ │ │ ├── logout.svg │ │ │ │ ├── portfolio.svg │ │ │ │ ├── power-disabled-600.svg │ │ │ │ ├── qr-disabled-600.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── switch-arrow-back.svg │ │ │ │ ├── switch-arrow-right.svg │ │ │ │ └── transactions.svg │ │ │ ├── orderbook-to-spread.svg │ │ │ ├── qr-code-big.svg │ │ │ ├── scripted-mini-icon.svg │ │ │ ├── seed.svg │ │ │ ├── send-hover.svg │ │ │ ├── send.svg │ │ │ ├── setting-26-white.svg │ │ │ ├── settings-menu-icons.svg │ │ │ ├── show-icon.svg │ │ │ ├── token-linear-26-basic-700.svg │ │ │ ├── tutorial-modals │ │ │ │ ├── anonym.svg │ │ │ │ ├── backup.svg │ │ │ │ ├── mail.svg │ │ │ │ ├── os.svg │ │ │ │ ├── paper.svg │ │ │ │ ├── password.svg │ │ │ │ ├── plugin.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── tutorial-computer.svg │ │ │ │ ├── url.svg │ │ │ │ └── wifi.svg │ │ │ ├── unpin-asset.svg │ │ │ ├── wallet-linear-26-white.svg │ │ │ └── waves_logo.svg │ │ ├── deposit-hover.svg │ │ ├── deposit.svg │ │ ├── dex-copy-icon.svg │ │ ├── dex-demo-account.svg │ │ ├── dex-demo-avatar.svg │ │ ├── dex-demo-dex.svg │ │ ├── dex-demo-settings.svg │ │ ├── dex-demo-tokens.svg │ │ ├── dex-demo-wallet.svg │ │ ├── dex-icon-mini.svg │ │ ├── dex-mobile-column-toggler.svg │ │ ├── dex-star-active.svg │ │ ├── dex-star.svg │ │ ├── dex-toggle-active.svg │ │ ├── dex-toggle.svg │ │ ├── directed-icon-dark.svg │ │ ├── directed-icon.svg │ │ ├── double-arrow.svg │ │ ├── download.svg │ │ ├── downloaded.svg │ │ ├── drag.svg │ │ ├── edit.svg │ │ ├── error-80-ordercancel.svg │ │ ├── error-notification-icon.svg │ │ ├── error-tooltip-close.svg │ │ ├── eye-basic-200.svg │ │ ├── eye-basic-600.svg │ │ ├── eye-basic-900.svg │ │ ├── flags │ │ │ ├── br.svg │ │ │ ├── de.svg │ │ │ ├── en.svg │ │ │ ├── es.svg │ │ │ ├── est.svg │ │ │ ├── fr.svg │ │ │ ├── hi.svg │ │ │ ├── id.svg │ │ │ ├── it.svg │ │ │ ├── jp.svg │ │ │ ├── ko.svg │ │ │ ├── nl.svg │ │ │ ├── pl.svg │ │ │ ├── ru.svg │ │ │ ├── tr.svg │ │ │ └── zh-Hans-CN.svg │ │ ├── fullscreen.svg │ │ ├── fullscreenclose.svg │ │ ├── google-play-icon.svg │ │ ├── help.svg │ │ ├── hide-icon.svg │ │ ├── icon-connected.svg │ │ ├── icon-document.svg │ │ ├── icon-empty.svg │ │ ├── icon-error-import.svg │ │ ├── icon-error.svg │ │ ├── icon-filter.svg │ │ ├── icon-info.svg │ │ ├── icon-installed-el.svg │ │ ├── icon-lock.svg │ │ ├── icon-orange-alert.svg │ │ ├── icon-removeacc.svg │ │ ├── icon-search-dex.svg │ │ ├── icon-sorting-active.svg │ │ ├── icon-sorting.svg │ │ ├── import-keystore-file.svg │ │ ├── info-14-basic-700.svg │ │ ├── info-basic-300.svg │ │ ├── info-icon.svg │ │ ├── info-notification-icon.svg │ │ ├── info.svg │ │ ├── input-invalid-icon.svg │ │ ├── input-password-icon.svg │ │ ├── input-search-icon.svg │ │ ├── input-valid-icon.svg │ │ ├── keeper-icon.svg │ │ ├── keeper-mini-icon.svg │ │ ├── keystore-file.svg │ │ ├── komp.svg │ │ ├── leasing_note.svg │ │ ├── ledger-cancel.svg │ │ ├── ledger-ok.svg │ │ ├── ledger │ │ │ ├── Request.svg │ │ │ ├── Step1.svg │ │ │ ├── ledger-apps.svg │ │ │ ├── ledger-mini-icon.svg │ │ │ └── ledger-pin.svg │ │ ├── left.svg │ │ ├── lock-40-basic-200.svg │ │ ├── lock-40-disabled-700.svg │ │ ├── lock-basic-200.svg │ │ ├── lock.svg │ │ ├── logo-alfa.svg │ │ ├── logo-beta.svg │ │ ├── logo-ledger-white.svg │ │ ├── logo-ledger.svg │ │ ├── logotype.svg │ │ ├── maintenance.svg │ │ ├── mastercard-icon.svg │ │ ├── menu │ │ │ ├── accounts.svg │ │ │ ├── alias-submit-300.svg │ │ │ ├── alias.svg │ │ │ ├── android-basic-600.svg │ │ │ ├── apple-basic-600.svg │ │ │ ├── apple.svg │ │ │ ├── arrow-down-12.svg │ │ │ ├── arrow-down-blue.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-white-left.svg │ │ │ ├── arrow-white-right.svg │ │ │ ├── dashboard-submit-300.svg │ │ │ ├── dashboard.svg │ │ │ ├── edit-basic-600.svg │ │ │ ├── leasing-submit-300.svg │ │ │ ├── leasing.svg │ │ │ ├── linux.svg │ │ │ ├── logout-submit-300.svg │ │ │ ├── logout.svg │ │ │ ├── plus-account.svg │ │ │ ├── portfolio-submit-300.svg │ │ │ ├── portfolio.svg │ │ │ ├── power-basic-600.svg │ │ │ ├── power-submit-300.svg │ │ │ ├── qr-basic-600.svg │ │ │ ├── settings-submit-300.svg │ │ │ ├── settings.svg │ │ │ ├── switch-arrow-back.svg │ │ │ ├── switch-arrow-right.svg │ │ │ ├── transactions-submit-300.svg │ │ │ ├── transactions.svg │ │ │ ├── user-plus.svg │ │ │ └── windows.svg │ │ ├── migrate-success.svg │ │ ├── mode-toggler-auto.svg │ │ ├── moving-dark.svg │ │ ├── moving.svg │ │ ├── order_cancel.svg │ │ ├── orderbook-to-spread-active.svg │ │ ├── orderbook-to-spread.svg │ │ ├── pairing-unavailable-80-error-500.svg │ │ ├── paper-dark.svg │ │ ├── paper.svg │ │ ├── pin.svg │ │ ├── pinned.svg │ │ ├── qr-code-big.svg │ │ ├── qr-code-small.svg │ │ ├── rating-basic-200.svg │ │ ├── rating-submit-300.svg │ │ ├── screenshots.svg │ │ ├── script-update-80-submit-300.svg │ │ ├── script-warning-icon.svg │ │ ├── scripted-mini-icon.svg │ │ ├── search-basic-500.svg │ │ ├── searching.svg │ │ ├── seed.svg │ │ ├── select-arrow-active.svg │ │ ├── select-arrow-black.svg │ │ ├── select-arrow.svg │ │ ├── settings-menu-icons.svg │ │ ├── show-icon.svg │ │ ├── sign-up-black.svg │ │ ├── sign-up.svg │ │ ├── slider-blockchain-260.svg │ │ ├── slider-dex-260.svg │ │ ├── slider-token-260.png │ │ ├── slider-wallet-260.svg │ │ ├── smart-asset-marker.svg │ │ ├── sorting-arrow.svg │ │ ├── sponosred-asset-marker.svg │ │ ├── started-token-launcher-black.svg │ │ ├── started-token-launcher.svg │ │ ├── started-with-blockchain.svg │ │ ├── success-notification-icon.svg │ │ ├── switcher-icon.svg │ │ ├── time-filled.svg │ │ ├── transaction-icons-30.svg │ │ ├── transaction-warning.svg │ │ ├── tutorial-modals │ │ │ ├── anonym.svg │ │ │ ├── backup.svg │ │ │ ├── mail.svg │ │ │ ├── os.svg │ │ │ ├── paper.svg │ │ │ ├── password.svg │ │ │ ├── plugin.svg │ │ │ ├── refresh.svg │ │ │ ├── tutorial-computer.svg │ │ │ ├── url.svg │ │ │ └── wifi.svg │ │ ├── unpin-asset.svg │ │ ├── user.svg │ │ ├── userimg-browesrbad-80-error-500.svg │ │ ├── userimg-browsershare-80-submit-300.svg │ │ ├── userimg-empty-box-150.svg │ │ ├── userimg-laptop-80-submit-300.svg │ │ ├── visa-icon.svg │ │ ├── wallet-black-icon.svg │ │ ├── wallet-icon.svg │ │ ├── warning-basic-700.svg │ │ ├── warning-notification-icon.svg │ │ ├── waves-30.svg │ │ ├── waves_logo.svg │ │ ├── wavesdex-black-32.svg │ │ ├── wavesdex-invert-32.svg │ │ ├── webcamerror.svg │ │ ├── white-cancel-icon.svg │ │ ├── white_cancel.svg │ │ ├── winner.svg │ │ └── wsoc-notification.svg │ ├── landing │ │ ├── api.svg │ │ ├── apple.svg │ │ ├── check-linear.svg │ │ ├── check.svg │ │ ├── contest-bg.svg │ │ ├── create-token.svg │ │ ├── decentralized.svg │ │ ├── dex-screenshot.png │ │ ├── fees.svg │ │ ├── flags │ │ │ └── flag-18-britain.svg │ │ ├── gateways.svg │ │ ├── ledger.svg │ │ ├── linux.svg │ │ ├── mantle-linear.svg │ │ ├── schield.svg │ │ ├── wallet.svg │ │ ├── wavesdex-black-32.svg │ │ ├── wavesdex-invert-32.svg │ │ └── windows.svg │ ├── logo-ledger.svg │ └── no-preload │ │ ├── chrome-icon.svg │ │ ├── connection-error.svg │ │ ├── firefox-icon.svg │ │ ├── not-supported-browser.svg │ │ ├── opera-icon.svg │ │ ├── safari-icon.svg │ │ └── userimg-browserwarning-80-mix-sunset.svg ├── index.hbs ├── modules │ ├── app │ │ ├── app.js │ │ ├── directives │ │ │ ├── componentError │ │ │ │ ├── ComponentError.js │ │ │ │ └── componentError.html │ │ │ ├── componentWarningPlate │ │ │ │ ├── ComponentWarningPlate.js │ │ │ │ ├── componentWarningPlate.html │ │ │ │ └── componentWarningPlate.less │ │ │ ├── containerAlertNotification │ │ │ │ ├── ContainerAlertNotification.js │ │ │ │ └── containerAlertNotification.less │ │ │ └── i18n │ │ │ │ ├── i18n.js │ │ │ │ └── i18nAttr.js │ │ ├── initialize │ │ │ ├── AppConfig.js │ │ │ └── AppRun.js │ │ ├── less │ │ │ ├── app-icons.less │ │ │ ├── app.less │ │ │ ├── classes.less │ │ │ ├── font.less │ │ │ ├── not-supported-browser.less │ │ │ └── typography.less │ │ ├── services │ │ │ ├── BalanceWatcher.js │ │ │ ├── ConfigService.js │ │ │ ├── DefaultSettings.js │ │ │ ├── EventManager.js │ │ │ ├── LocaleParser.js │ │ │ ├── MultiAccount.js │ │ │ ├── Queue.js │ │ │ ├── SessionBridge.js │ │ │ ├── State.js │ │ │ ├── StateManager.js │ │ │ ├── StorageExporter.js │ │ │ ├── Themes.js │ │ │ ├── User.js │ │ │ ├── events │ │ │ │ └── TxEvent.js │ │ │ ├── i18n.js │ │ │ ├── notification │ │ │ │ ├── BaseNotificationManager.js │ │ │ │ ├── Notification.js │ │ │ │ ├── UserNotification.js │ │ │ │ ├── interface.d.ts │ │ │ │ └── templates │ │ │ │ │ ├── notification.html │ │ │ │ │ └── user-notification.html │ │ │ ├── state │ │ │ │ └── state.less │ │ │ └── waves │ │ │ │ ├── Waves.js │ │ │ │ ├── WavesUtils.js │ │ │ │ ├── matcher │ │ │ │ └── Matcher.js │ │ │ │ └── node │ │ │ │ ├── Node.js │ │ │ │ └── content │ │ │ │ ├── Aliases.js │ │ │ │ ├── Assets.js │ │ │ │ ├── BaseNodeComponent.js │ │ │ │ └── Transactions.js │ │ └── templates │ │ │ └── main.html │ ├── config-classes.less │ ├── create │ │ ├── controllers │ │ │ └── CreateCtrl.js │ │ ├── create.js │ │ ├── directives │ │ │ └── seed │ │ │ │ ├── SeedBase.js │ │ │ │ ├── SeedRead.js │ │ │ │ ├── SeedService.js │ │ │ │ ├── SeedWrite.js │ │ │ │ ├── seed.html │ │ │ │ └── seed.less │ │ ├── less │ │ │ ├── backup-seed.less │ │ │ ├── confirm-backup.less │ │ │ ├── create-account.less │ │ │ ├── create.less │ │ │ └── no-backup-no-money.less │ │ └── templates │ │ │ ├── backupSeed.html │ │ │ ├── confirmBackup.html │ │ │ ├── create.html │ │ │ ├── createAccount.html │ │ │ ├── createAccountData.html │ │ │ ├── noBackupNoMoney.html │ │ │ └── noBackupNoMoney.modal.html │ ├── desktop │ │ ├── controllers │ │ │ └── DesktopCtrl.js │ │ ├── desktop.js │ │ ├── less │ │ │ ├── desktop.less │ │ │ └── electron.less │ │ └── templates │ │ │ └── desktop.html │ ├── desktopUpdate │ │ ├── controllers │ │ │ └── DesktopUpdateCtrl.js │ │ ├── desktopUpdate.js │ │ ├── less │ │ │ └── desktopUpdate.less │ │ └── templates │ │ │ └── desktopUpdate.html │ ├── dex │ │ ├── controllers │ │ │ └── DexCtrl.js │ │ ├── dex.js │ │ ├── directives │ │ │ ├── createOrder │ │ │ │ ├── CreateOrder.js │ │ │ │ ├── createOrder.html │ │ │ │ ├── createOrder.less │ │ │ │ └── expiration.less │ │ │ ├── dexBlock │ │ │ │ ├── DexBlock.js │ │ │ │ ├── dexBlock.html │ │ │ │ └── dexBlock.less │ │ │ ├── dexCandleChart │ │ │ │ ├── DexCandleChart.js │ │ │ │ ├── dex-candle-chart.html │ │ │ │ └── dexCandleChart.less │ │ │ ├── dexMyOrders │ │ │ │ ├── DexMyOrders.js │ │ │ │ ├── header-control-cell.html │ │ │ │ ├── myOrders.html │ │ │ │ ├── myOrders.less │ │ │ │ └── order-status-bar.less │ │ │ ├── dexWatchlist │ │ │ │ ├── DexWatchlist.html │ │ │ │ ├── DexWatchlist.less │ │ │ │ ├── FavouritesColumnHeader.html │ │ │ │ └── WatchList.js │ │ │ ├── layout │ │ │ │ ├── DexLayoutSideBarToggle.html │ │ │ │ ├── DexLayoutSideBarToggle.js │ │ │ │ ├── layout.html │ │ │ │ ├── layout.js │ │ │ │ └── less │ │ │ │ │ ├── dex-layout.less │ │ │ │ │ ├── dex-layout__column_candlechart.less │ │ │ │ │ ├── dex-layout__column_createorder.less │ │ │ │ │ ├── dex-layout__column_orderbook.less │ │ │ │ │ ├── dex-layout__column_tradehistory.less │ │ │ │ │ ├── dex-layout__column_watchlist.less │ │ │ │ │ └── tradehistory-fullscreen.less │ │ │ ├── myBalance │ │ │ │ ├── MyBalance.js │ │ │ │ ├── header-control-cell.html │ │ │ │ ├── myBalance.html │ │ │ │ └── myBalance.less │ │ │ ├── orderBook │ │ │ │ ├── OrderBook.js │ │ │ │ ├── OrderList.js │ │ │ │ ├── OrderListItem.js │ │ │ │ ├── orderBook.html │ │ │ │ └── orderBook.less │ │ │ ├── tradeGraph │ │ │ │ ├── TradeGraph.js │ │ │ │ ├── tradeGraph.html │ │ │ │ └── tradeGraph.less │ │ │ └── tradeHistory │ │ │ │ ├── TradeHistory.js │ │ │ │ ├── tradeHistory.html │ │ │ │ └── tradeHistory.less │ │ ├── less │ │ │ └── dex.less │ │ ├── services │ │ │ ├── CandlesService.js │ │ │ ├── DexDataService.js │ │ │ └── SymbolInfoService.js │ │ └── templates │ │ │ └── dex.html │ ├── fromBackup │ │ ├── controllers │ │ │ └── FromBackupCtrl.js │ │ ├── fromBackup.js │ │ ├── less │ │ │ └── fromBackup.less │ │ └── templates │ │ │ └── fromBackup.html │ ├── import │ │ ├── controllers │ │ │ └── ImportCtrl.js │ │ ├── import.js │ │ ├── less │ │ │ └── import-page.less │ │ └── templates │ │ │ └── import.html │ ├── keeper │ │ ├── controllers │ │ │ └── KeeperCtrl.js │ │ ├── keeper.js │ │ ├── less │ │ │ └── keeper.less │ │ └── templates │ │ │ └── keeper.html │ ├── ledger │ │ ├── controllers │ │ │ └── LedgerCtrl.js │ │ ├── ledger.js │ │ ├── less │ │ │ └── ledger.less │ │ └── templates │ │ │ └── ledger.html │ ├── migrate │ │ ├── controllers │ │ │ └── MigrateCtrl.js │ │ ├── migrate.js │ │ ├── migrate.less │ │ └── templates │ │ │ └── migrate.html │ ├── migration │ │ ├── controllers │ │ │ └── MigrationCtrl.js │ │ ├── migration.js │ │ └── templates │ │ │ ├── dexMoving.html │ │ │ ├── migrate.html │ │ │ └── migration.html │ ├── restore │ │ ├── controllers │ │ │ └── RestoreCtrl.js │ │ ├── less │ │ │ └── restore.less │ │ ├── restore.js │ │ └── templates │ │ │ └── restore.html │ ├── saveSeed │ │ ├── controllers │ │ │ └── SaveSeedCtrl.js │ │ ├── less │ │ │ └── saveSeed.less │ │ ├── saveSeed.js │ │ └── templates │ │ │ ├── saveSeed.html │ │ │ ├── saveSeedHasUsers.html │ │ │ └── saveSeedNoUsers.html │ ├── sessions │ │ ├── controller │ │ │ └── SessionsCtrl.js │ │ ├── less │ │ │ └── sessions.less │ │ ├── sessions.js │ │ └── templates │ │ │ └── sessions.html │ ├── signIn │ │ ├── components │ │ │ └── signInForm │ │ │ │ ├── signInForm.html │ │ │ │ └── signInForm.js │ │ ├── controllers │ │ │ └── SignInCtrl.js │ │ ├── less │ │ │ └── signIn.less │ │ ├── signIn.js │ │ └── templates │ │ │ └── signIn.html │ ├── signUp │ │ ├── controllers │ │ │ └── SignUpCtrl.js │ │ ├── signUp.js │ │ └── templates │ │ │ └── signUp.html │ ├── stand │ │ ├── controller │ │ │ └── StandCtrl.js │ │ ├── less │ │ │ └── stand.less │ │ ├── stand.js │ │ └── templates │ │ │ └── stand.html │ ├── switch │ │ ├── controllers │ │ │ └── SwitchCtrl.js │ │ ├── switch.js │ │ └── templates │ │ │ └── switch.html │ ├── tokens │ │ ├── controllers │ │ │ └── TokensCtrl.js │ │ ├── less │ │ │ ├── generate-form.less │ │ │ ├── preview-token.less │ │ │ ├── token-info.less │ │ │ ├── tokens.less │ │ │ └── tokens.modal.less │ │ ├── templates │ │ │ └── tokens.html │ │ └── tokens.js │ ├── ui │ │ ├── directives │ │ │ ├── accordion │ │ │ │ ├── Accordion.js │ │ │ │ ├── accordion.html │ │ │ │ └── accordion.less │ │ │ ├── account-name │ │ │ │ ├── AccountName.js │ │ │ │ ├── account-name.html │ │ │ │ └── account-name.less │ │ │ ├── actions │ │ │ │ ├── Action.js │ │ │ │ ├── Actions.js │ │ │ │ ├── action-item.html │ │ │ │ ├── action-item.less │ │ │ │ ├── actions.html │ │ │ │ └── actions.less │ │ │ ├── anyTransactionForm │ │ │ │ ├── AnyTransactionForm.js │ │ │ │ ├── any-tx-form.html │ │ │ │ └── any-tx-form.less │ │ │ ├── assetInfoHead │ │ │ │ ├── AssetInfoHead.js │ │ │ │ ├── asset-info-head.html │ │ │ │ └── asset-info-head.less │ │ │ ├── assetLogo │ │ │ │ ├── AssetLogo.js │ │ │ │ ├── NewAssetLogo.js │ │ │ │ ├── asset-logo.html │ │ │ │ └── assetLogo.less │ │ │ ├── assetRateChart │ │ │ │ ├── AssetRateChart.js │ │ │ │ └── assetRateChart.less │ │ │ ├── assetStatus │ │ │ │ ├── AssetStatus.js │ │ │ │ ├── asset-status.html │ │ │ │ └── assetStatus.less │ │ │ ├── autofocus │ │ │ │ └── autofocus.js │ │ │ ├── avatar │ │ │ │ ├── Avatar.js │ │ │ │ ├── avatar.html │ │ │ │ └── less │ │ │ │ │ ├── avatar-active.less │ │ │ │ │ ├── avatar.less │ │ │ │ │ ├── avatar_create.less │ │ │ │ │ ├── avatar_disabled.less │ │ │ │ │ └── avatars-list.less │ │ │ ├── balance │ │ │ │ └── Balance.js │ │ │ ├── balanceInput │ │ │ │ ├── BalanceInput.js │ │ │ │ ├── balanceInput.html │ │ │ │ └── balanceInput.less │ │ │ ├── button │ │ │ │ ├── Button.js │ │ │ │ ├── button.html │ │ │ │ └── button.less │ │ │ ├── carousel │ │ │ │ ├── Carousel.js │ │ │ │ ├── carousel.html │ │ │ │ └── carousel.less │ │ │ ├── carouselDots │ │ │ │ ├── CarouselDots.js │ │ │ │ ├── dots.html │ │ │ │ └── dots.less │ │ │ ├── change24 │ │ │ │ └── Change24.js │ │ │ ├── changeLanguage │ │ │ │ ├── ChangeLanguage.js │ │ │ │ ├── changeLanguage.html │ │ │ │ └── changeLanguage.less │ │ │ ├── changeRate │ │ │ │ └── ChangeRate.js │ │ │ ├── chart │ │ │ │ ├── Chart.js │ │ │ │ ├── ChartFactory.js │ │ │ │ └── chart.less │ │ │ ├── chartPlate │ │ │ │ ├── ChartPlate.js │ │ │ │ ├── chartPlate.html │ │ │ │ └── chartPlate.less │ │ │ ├── checkbox │ │ │ │ ├── Checkbox.js │ │ │ │ ├── checkbox-input.less │ │ │ │ ├── checkbox-submit.less │ │ │ │ └── checkbox-switcher.less │ │ │ ├── circleChart │ │ │ │ ├── CircleChart.js │ │ │ │ └── circleChart.less │ │ │ ├── clickOutSide │ │ │ │ └── ClickOutSide.js │ │ │ ├── coinomatTerms │ │ │ │ ├── CoinomatTerms.js │ │ │ │ └── coinomat-terms.html │ │ │ ├── complexityMeter │ │ │ │ ├── ComplexityMessage.js │ │ │ │ ├── ComplexityMeter.js │ │ │ │ ├── complexityMeter.html │ │ │ │ └── complexityMeter.less │ │ │ ├── confirmAction │ │ │ │ ├── ConfirmAction.js │ │ │ │ └── confirmAction.html │ │ │ ├── confirmGatewayTransaction │ │ │ │ ├── ConfirmGatewayTransaction.js │ │ │ │ ├── confirmGatewayTransaction.html │ │ │ │ └── confirmGatewayTransaction.less │ │ │ ├── confirmTransaction │ │ │ │ ├── ConfirmTransaction.js │ │ │ │ ├── confirmTransaction.html │ │ │ │ └── confirmTransaction.less │ │ │ ├── copy │ │ │ │ └── Copy.js │ │ │ ├── copyWrap │ │ │ │ ├── CopyWrap.js │ │ │ │ └── less │ │ │ │ │ ├── copyWrap.less │ │ │ │ │ ├── copyWrap_balance.less │ │ │ │ │ ├── copyWrap_infoModal.less │ │ │ │ │ └── copyWrap_receive.less │ │ │ ├── copyWrapDefault │ │ │ │ ├── CopyWrapDefault.js │ │ │ │ └── copyWrapDefault.less │ │ │ ├── date │ │ │ │ └── Date.js │ │ │ ├── desktopOnly │ │ │ │ └── DesktopOnly.js │ │ │ ├── dots │ │ │ │ ├── Dots.js │ │ │ │ ├── dots.html │ │ │ │ └── dots.less │ │ │ ├── draggable │ │ │ │ ├── Draggable.js │ │ │ │ └── draggable.less │ │ │ ├── emptyBlock │ │ │ │ ├── emptyBlock.html │ │ │ │ ├── emptyBlock.js │ │ │ │ └── emptyBlock.less │ │ │ ├── errorBlock │ │ │ │ ├── errorBlock.html │ │ │ │ ├── errorBlock.js │ │ │ │ └── errorBlock.less │ │ │ ├── exchange │ │ │ │ └── Exchange.js │ │ │ ├── expandBtn │ │ │ │ ├── ExpandBtn.js │ │ │ │ ├── expandBtn.html │ │ │ │ └── expandBtn.less │ │ │ ├── expandableBlock │ │ │ │ ├── ExpandableBlock.js │ │ │ │ ├── expandableBlock.html │ │ │ │ └── expandableBlock.less │ │ │ ├── feeList │ │ │ │ ├── FeeList.js │ │ │ │ ├── fee-list.less │ │ │ │ └── feeList.html │ │ │ ├── footer │ │ │ │ ├── Footer.js │ │ │ │ ├── footer.html │ │ │ │ ├── footer.less │ │ │ │ └── toaster-mobiles.less │ │ │ ├── getStartedLink │ │ │ │ ├── GetStartedLink.js │ │ │ │ ├── getStartedLink.html │ │ │ │ └── getStartedLink.less │ │ │ ├── helpIcon │ │ │ │ ├── HelpIcon.js │ │ │ │ ├── helpIcon.html │ │ │ │ └── helpIcon.less │ │ │ ├── importFile │ │ │ │ └── ImportFile.js │ │ │ ├── infoTooltip │ │ │ │ ├── InfoTooltip.js │ │ │ │ ├── infoTooltip.html │ │ │ │ └── infoTooltip.less │ │ │ ├── input │ │ │ │ ├── Input.js │ │ │ │ └── input.less │ │ │ ├── inputContainer │ │ │ │ ├── InputContainer.js │ │ │ │ ├── InputError.js │ │ │ │ └── inputContainer.less │ │ │ ├── inputHelper │ │ │ │ ├── InputHelperCtrl.js │ │ │ │ ├── inputHelper.html │ │ │ │ └── inputHelper.less │ │ │ ├── loader │ │ │ │ ├── Loader.js │ │ │ │ ├── loader.html │ │ │ │ └── loader.less │ │ │ ├── mainHeader │ │ │ │ ├── MainHeader.js │ │ │ │ ├── less │ │ │ │ │ ├── largeHeader │ │ │ │ │ │ ├── dropdown-toggler.less │ │ │ │ │ │ ├── dropdown.less │ │ │ │ │ │ ├── largeHeader.less │ │ │ │ │ │ ├── switch-account.less │ │ │ │ │ │ ├── top-menu.less │ │ │ │ │ │ └── user-account.less │ │ │ │ │ └── mobileHeader │ │ │ │ │ │ ├── mobile-menu.less │ │ │ │ │ │ └── mobileHeader.less │ │ │ │ └── templates │ │ │ │ │ ├── largeHeader.html │ │ │ │ │ ├── mainHeader.html │ │ │ │ │ └── mobileHeader.html │ │ │ ├── navigation │ │ │ │ ├── Navigation.js │ │ │ │ └── navigation.less │ │ │ ├── niceNumber │ │ │ │ └── NiceNumber.js │ │ │ ├── permit-message │ │ │ │ └── PermitMessage.js │ │ │ ├── permit │ │ │ │ ├── Permit.js │ │ │ │ └── permit.less │ │ │ ├── qrCode │ │ │ │ ├── QrCode.js │ │ │ │ └── qrCode.less │ │ │ ├── qrCodeRead │ │ │ │ ├── QrCodeRead.js │ │ │ │ ├── QrCodeReadService.js │ │ │ │ ├── cameraPopup.html │ │ │ │ ├── qrCodeRead.html │ │ │ │ └── qrCodeReader.less │ │ │ ├── radio │ │ │ │ ├── Radio.js │ │ │ │ ├── RadioWrap.js │ │ │ │ ├── less │ │ │ │ │ ├── radio.less │ │ │ │ │ ├── radio_base.less │ │ │ │ │ ├── radio_time.less │ │ │ │ │ └── radio_toolbar.less │ │ │ │ └── radio.html │ │ │ ├── rangeSlider │ │ │ │ ├── RangeSlider.js │ │ │ │ ├── rangeSlider.html │ │ │ │ └── rangeSlider.less │ │ │ ├── ratingStars │ │ │ │ ├── ratingStars.html │ │ │ │ ├── ratingStars.js │ │ │ │ ├── ratingStars.less │ │ │ │ ├── ratingStarsFactory.js │ │ │ │ └── tooltip.less │ │ │ ├── responsiveMenu │ │ │ │ ├── ResponsiveMenu.js │ │ │ │ ├── ResponsiveMenuItem.js │ │ │ │ ├── responsiveMenu.html │ │ │ │ └── responsiveMenu.less │ │ │ ├── roadMap │ │ │ │ ├── RoadMap.js │ │ │ │ ├── roadMap.html │ │ │ │ └── roadMap.less │ │ │ ├── scriptTxForm │ │ │ │ ├── ScriptTxForm.js │ │ │ │ └── script-form.html │ │ │ ├── select │ │ │ │ ├── Option.js │ │ │ │ ├── Select.js │ │ │ │ ├── less │ │ │ │ │ ├── select-change-lang.less │ │ │ │ │ ├── select-create-order.less │ │ │ │ │ ├── select-portfolio.less │ │ │ │ │ ├── select-receive.less │ │ │ │ │ ├── select-sendModal&fee.less │ │ │ │ │ ├── select-setting.less │ │ │ │ │ ├── select-token.less │ │ │ │ │ ├── select-transaction.less │ │ │ │ │ ├── select-watch-list.less │ │ │ │ │ └── select_main.less │ │ │ │ └── select.html │ │ │ ├── selectFilter │ │ │ │ ├── SelectFilter.js │ │ │ │ ├── selectFilter.html │ │ │ │ └── selectFilter.less │ │ │ ├── setAssetScriptForm │ │ │ │ ├── SetAssetScriptFrom.js │ │ │ │ └── setAssetScriptFrom.html │ │ │ ├── showHidePassword │ │ │ │ ├── showHidePassword.html │ │ │ │ ├── showHidePassword.js │ │ │ │ └── showHidePassword.less │ │ │ ├── sign │ │ │ │ ├── Sign.js │ │ │ │ ├── sign.html │ │ │ │ └── sign.less │ │ │ ├── signButton │ │ │ │ ├── SignButton.js │ │ │ │ ├── sign-button.html │ │ │ │ └── sign-button.less │ │ │ ├── slider │ │ │ │ ├── slider.html │ │ │ │ ├── slider.js │ │ │ │ └── slider.less │ │ │ ├── smartTable │ │ │ │ ├── SmartTable.js │ │ │ │ ├── TableCell.js │ │ │ │ ├── TableRow.js │ │ │ │ ├── less │ │ │ │ │ ├── smart-table.less │ │ │ │ │ ├── smart-table_dex-my-balance.less │ │ │ │ │ ├── smart-table_dex-my-orders.less │ │ │ │ │ ├── smart-table_dex-trade-history.less │ │ │ │ │ ├── smart-table_mode-large.less │ │ │ │ │ └── smart-table_watchlist.less │ │ │ │ ├── services │ │ │ │ │ └── STService.js │ │ │ │ └── templates │ │ │ │ │ ├── headerCell.html │ │ │ │ │ └── table.html │ │ │ ├── stepByStep │ │ │ │ ├── Step.js │ │ │ │ └── StepByStep.js │ │ │ ├── table │ │ │ │ ├── Cell.js │ │ │ │ ├── Row.js │ │ │ │ ├── THead.js │ │ │ │ ├── Table.js │ │ │ │ └── table.less │ │ │ ├── tabs │ │ │ │ ├── Tab.js │ │ │ │ ├── Tabs.js │ │ │ │ ├── less │ │ │ │ │ ├── tabs-active.less │ │ │ │ │ ├── tabs_default.less │ │ │ │ │ └── tabs_inner.less │ │ │ │ └── tabs.html │ │ │ ├── toggleClass │ │ │ │ ├── AddClass.js │ │ │ │ ├── ToggleClass.js │ │ │ │ └── ToggleClassContainer.js │ │ │ ├── tooltip │ │ │ │ ├── tooltip.html │ │ │ │ ├── tooltip.js │ │ │ │ └── tooltip.less │ │ │ ├── transaction │ │ │ │ ├── Transaction.js │ │ │ │ ├── TransactionIcon.js │ │ │ │ ├── TransactionInfoRow.js │ │ │ │ ├── transaction-icon.html │ │ │ │ ├── transaction-info-row.html │ │ │ │ ├── transaction.html │ │ │ │ ├── transactions.less │ │ │ │ └── types │ │ │ │ │ ├── burn │ │ │ │ │ ├── Burn.js │ │ │ │ │ └── burn.html │ │ │ │ │ ├── cancel-leasing │ │ │ │ │ ├── CancelLeasing.js │ │ │ │ │ └── cancel-leasing.html │ │ │ │ │ ├── create-alias │ │ │ │ │ ├── CreateAlias.js │ │ │ │ │ └── create-alias.html │ │ │ │ │ ├── data │ │ │ │ │ ├── Data.js │ │ │ │ │ └── data.html │ │ │ │ │ ├── exchange │ │ │ │ │ ├── Exchange.js │ │ │ │ │ └── exchange.html │ │ │ │ │ ├── issue │ │ │ │ │ ├── Issue.js │ │ │ │ │ └── issue.html │ │ │ │ │ ├── lease │ │ │ │ │ ├── Lease.js │ │ │ │ │ └── lease.html │ │ │ │ │ ├── mass-transfer │ │ │ │ │ ├── MassTransfer.js │ │ │ │ │ └── mass-transfer.html │ │ │ │ │ ├── reissue │ │ │ │ │ ├── Reissue.js │ │ │ │ │ └── reissue.html │ │ │ │ │ ├── script-invocation │ │ │ │ │ ├── script-invocation.html │ │ │ │ │ └── script-invocation.js │ │ │ │ │ ├── set-asset-script │ │ │ │ │ ├── SetAssetScript.js │ │ │ │ │ └── set-asset-script.html │ │ │ │ │ ├── set-script │ │ │ │ │ ├── SetScript.js │ │ │ │ │ └── set-script.html │ │ │ │ │ ├── sponsorship │ │ │ │ │ ├── Sponsorship.js │ │ │ │ │ └── sponsorship.html │ │ │ │ │ ├── transfer.html │ │ │ │ │ ├── transfer │ │ │ │ │ ├── Transfer.js │ │ │ │ │ └── transfer.html │ │ │ │ │ └── unknown │ │ │ │ │ ├── Unknown.js │ │ │ │ │ └── unknown.html │ │ │ ├── transactionExport │ │ │ │ ├── TransactionExport.js │ │ │ │ ├── transaction-export.html │ │ │ │ └── transactionExport.less │ │ │ ├── transactionInfo │ │ │ │ ├── TransactionInfo.js │ │ │ │ ├── TransactionInfoContent.js │ │ │ │ ├── TransactionInfoGeneral.js │ │ │ │ ├── TransactionInfoHeader.js │ │ │ │ ├── TransactionInfoJson.js │ │ │ │ ├── transaction-info-content.html │ │ │ │ ├── transaction-info-general.html │ │ │ │ ├── transaction-info-header.html │ │ │ │ ├── transaction-info-json.html │ │ │ │ ├── transaction-info.html │ │ │ │ ├── transactionInfo.less │ │ │ │ └── types │ │ │ │ │ ├── burn │ │ │ │ │ ├── BurnHeader.js │ │ │ │ │ ├── BurnInfo.js │ │ │ │ │ ├── burn-header.html │ │ │ │ │ └── burn-info.html │ │ │ │ │ ├── cancel-lease │ │ │ │ │ ├── CancelLeaseHeader.js │ │ │ │ │ ├── CancelLeaseInfo.js │ │ │ │ │ ├── header.html │ │ │ │ │ └── info.html │ │ │ │ │ ├── create-alias │ │ │ │ │ ├── CreateAliasInfo.js │ │ │ │ │ └── create-alias-info.html │ │ │ │ │ ├── create-order │ │ │ │ │ ├── CreateOrderHeader.js │ │ │ │ │ ├── CreateOrderInfo.js │ │ │ │ │ ├── createOrder.html │ │ │ │ │ └── createOrderHeader.html │ │ │ │ │ ├── data │ │ │ │ │ ├── DataHeader.js │ │ │ │ │ ├── DataInfo.js │ │ │ │ │ ├── data-header.html │ │ │ │ │ └── data-info.html │ │ │ │ │ ├── exchange │ │ │ │ │ ├── ExchangeHeader.js │ │ │ │ │ ├── ExchangeInfo.js │ │ │ │ │ ├── header.html │ │ │ │ │ └── info.html │ │ │ │ │ ├── issue │ │ │ │ │ ├── IssueHeader.js │ │ │ │ │ ├── IssueInfo.js │ │ │ │ │ ├── issue-header.html │ │ │ │ │ └── issue-info.html │ │ │ │ │ ├── lease │ │ │ │ │ ├── LeaseHeader.js │ │ │ │ │ ├── LeaseInfo.js │ │ │ │ │ ├── lease-header.html │ │ │ │ │ └── lease-info.html │ │ │ │ │ ├── mass-transfer │ │ │ │ │ ├── MassTransferHeader.js │ │ │ │ │ ├── MassTransferInfo.js │ │ │ │ │ ├── header.html │ │ │ │ │ ├── info.html │ │ │ │ │ └── massTransferInfo.less │ │ │ │ │ ├── reissue │ │ │ │ │ ├── ReissueHeader.js │ │ │ │ │ ├── ReissueInfo.js │ │ │ │ │ ├── reissue-header.html │ │ │ │ │ └── reissue-info.html │ │ │ │ │ ├── script-invocation │ │ │ │ │ ├── ScriptInvocation.js │ │ │ │ │ ├── ScriptInvocationHeader.js │ │ │ │ │ ├── script-invocation-header.html │ │ │ │ │ └── script-invocation-info.html │ │ │ │ │ ├── set-asset-script │ │ │ │ │ ├── SetAssetScriptInfo.js │ │ │ │ │ ├── SetScriptAssetHeader.js │ │ │ │ │ ├── header.html │ │ │ │ │ └── info.html │ │ │ │ │ ├── set-script │ │ │ │ │ ├── SetScriptHeader.js │ │ │ │ │ ├── SetScriptInfo.js │ │ │ │ │ ├── header.html │ │ │ │ │ └── info.html │ │ │ │ │ ├── sponsorship │ │ │ │ │ ├── SponsorshipHeader.js │ │ │ │ │ ├── SponsorshipInfo.js │ │ │ │ │ ├── header.html │ │ │ │ │ └── info.html │ │ │ │ │ └── transfer │ │ │ │ │ ├── TransferHeader.js │ │ │ │ │ ├── TransferInfo.js │ │ │ │ │ ├── transfer-header.html │ │ │ │ │ └── transfer-info.html │ │ │ ├── transactionList │ │ │ │ ├── TransactionList.js │ │ │ │ ├── transactionList.html │ │ │ │ └── transactionList.less │ │ │ ├── visible │ │ │ │ ├── Visible.js │ │ │ │ ├── VisibleService.js │ │ │ │ └── visible.less │ │ │ └── webOnly │ │ │ │ ├── WebOnly.js │ │ │ │ └── WebOnlyClass.js │ │ ├── services │ │ │ ├── CarouselManager.js │ │ │ ├── ConfirmTxService.js │ │ │ ├── PermissionManager.js │ │ │ └── UserNameService.js │ │ └── ui.js │ ├── unavailable │ │ ├── controller │ │ │ └── UnavailableCtrl.js │ │ ├── less │ │ │ └── unavailable.less │ │ ├── templates │ │ │ └── unavailable.html │ │ └── unavailable.js │ ├── utils │ │ ├── directives │ │ │ ├── analytics │ │ │ │ └── Analytics.js │ │ │ ├── delegate │ │ │ │ └── Delegate.js │ │ │ └── validators │ │ │ │ ├── Validate.js │ │ │ │ └── ValidateService.js │ │ ├── modals │ │ │ ├── ModalManager.js │ │ │ ├── ModalRouter.js │ │ │ ├── acceptNewTerms │ │ │ │ ├── AcceptNewTermsCtrl.js │ │ │ │ └── accept-new-terms.html │ │ │ ├── accountInfo │ │ │ │ ├── AccountInfoCtrl.js │ │ │ │ ├── account-info.less │ │ │ │ └── account-info.modal.html │ │ │ ├── addressInfo │ │ │ │ ├── addressInfo.html │ │ │ │ ├── addressInfo.js │ │ │ │ └── addressInfo.less │ │ │ ├── anyTxModal │ │ │ │ ├── AnyTxModalCtrl.js │ │ │ │ └── any-tx-modal.html │ │ │ ├── assetInfo │ │ │ │ ├── AssetInfoCtrl.js │ │ │ │ ├── assetInfo.html │ │ │ │ └── assetInfo.less │ │ │ ├── changeName │ │ │ │ ├── ChangeNameCtrl.js │ │ │ │ ├── changeName.html │ │ │ │ └── changeName.less │ │ │ ├── changeToken │ │ │ │ ├── TokenChangeModalCtrl.js │ │ │ │ ├── change-token-modal.html │ │ │ │ └── change-token-modal.less │ │ │ ├── confirmDeleteUser │ │ │ │ ├── confirmDeleteUser.modal.html │ │ │ │ ├── confirmDeleteUser.modal.less │ │ │ │ └── confirmDeleteUserCtrl.js │ │ │ ├── confirmLogout │ │ │ │ ├── confirmLogout.modal.html │ │ │ │ └── confirmLogout.modal.less │ │ │ ├── confirmOrder │ │ │ │ ├── ConfirmOrderCtrl.js │ │ │ │ ├── confirmOrder.html │ │ │ │ └── confirmOrder.less │ │ │ ├── confirmTx │ │ │ │ ├── ConfirmTxCtrl.js │ │ │ │ └── confirmTx.modal.html │ │ │ ├── delete-account │ │ │ │ ├── DeleteAccountModalCtrl.js │ │ │ │ └── delete-account.html │ │ │ ├── dexScriptedPair │ │ │ │ ├── DexScriptedPairCtrl.js │ │ │ │ ├── dexScriptedPair.html │ │ │ │ └── dexScriptedPair.less │ │ │ ├── exportAccounts │ │ │ │ ├── ExportAccounts.js │ │ │ │ ├── exportAccounts.html │ │ │ │ └── exportAccounts.less │ │ │ ├── forgot-password │ │ │ │ ├── ForgotPasswordModalCtrl.js │ │ │ │ └── forgot-password.html │ │ │ ├── gateway │ │ │ │ ├── GatewaySignCtrl.js │ │ │ │ ├── gatewaySign.html │ │ │ │ └── gatewaySign.less │ │ │ ├── importAccounts │ │ │ │ ├── ImportAccountsCtrl.js │ │ │ │ ├── importAccounts.html │ │ │ │ └── importAccounts.less │ │ │ ├── lockPairWarning │ │ │ │ ├── LockPairWarningCtrl.js │ │ │ │ ├── lockPairWarning.modal.html │ │ │ │ └── lockPairWarning.modal.less │ │ │ ├── loginByDevice │ │ │ │ ├── LoginByDeviceCtrl.js │ │ │ │ ├── loginByDevice.html │ │ │ │ └── loginByDevice.less │ │ │ ├── migrateFaq │ │ │ │ ├── MigrateFaqCtrl.js │ │ │ │ ├── migrateFaq.html │ │ │ │ └── migrateFaq.less │ │ │ ├── migrateModal │ │ │ │ ├── migrateModal.html │ │ │ │ ├── migrateModal.js │ │ │ │ └── migrateModal.less │ │ │ ├── modal.less │ │ │ ├── pairingWithMobile │ │ │ │ ├── PairingWithMobileCtrl.js │ │ │ │ ├── pairingWithMobile.html │ │ │ │ └── pairingWithMobile.less │ │ │ ├── password │ │ │ │ ├── PasswordModalCtrl.js │ │ │ │ └── password.html │ │ │ ├── pinAsset │ │ │ │ ├── PinAssetCtrl.js │ │ │ │ ├── pinAsset.html │ │ │ │ └── pinAsset.less │ │ │ ├── receive │ │ │ │ ├── Receive.html │ │ │ │ ├── Receive.js │ │ │ │ ├── Receive.less │ │ │ │ ├── receiveBank │ │ │ │ │ ├── ReceiveBank.js │ │ │ │ │ └── receive-bank.html │ │ │ │ ├── receiveCard │ │ │ │ │ ├── ReceiveCard.js │ │ │ │ │ └── receive-card.html │ │ │ │ ├── receiveCryptocurrency │ │ │ │ │ ├── ReceiveCryptocurrency.js │ │ │ │ │ └── receive-cryptocurrency.html │ │ │ │ └── receiveInvoice │ │ │ │ │ ├── ReceiveInvoice.js │ │ │ │ │ └── receive-invoice.html │ │ │ ├── script │ │ │ │ ├── ScriptModalCtrl.js │ │ │ │ ├── script.html │ │ │ │ └── script.less │ │ │ ├── seedBackup │ │ │ │ ├── SeedBackupModalsCtrl.js │ │ │ │ ├── seedBackupModals.html │ │ │ │ └── seedBackupModals.less │ │ │ ├── sendAsset │ │ │ │ ├── AssetSendCtrl.js │ │ │ │ ├── components │ │ │ │ │ ├── massSend │ │ │ │ │ │ ├── MassSend.js │ │ │ │ │ │ └── mass-send.html │ │ │ │ │ └── singleSend │ │ │ │ │ │ ├── SingleSend.js │ │ │ │ │ │ ├── bankSend │ │ │ │ │ │ ├── BankSend.js │ │ │ │ │ │ └── bank-send.html │ │ │ │ │ │ ├── gatewaySend │ │ │ │ │ │ ├── GatewaySend.js │ │ │ │ │ │ └── gateway-send.html │ │ │ │ │ │ └── wavesSend │ │ │ │ │ │ ├── WavesSend.js │ │ │ │ │ │ └── waves-send.html │ │ │ │ ├── send-header.html │ │ │ │ ├── send.modal.html │ │ │ │ └── send.modal.less │ │ │ ├── setAssetScript │ │ │ │ ├── SetAssetScriptModalCtrl.js │ │ │ │ ├── setAssetScript.html │ │ │ │ └── setAssetScript.less │ │ │ ├── settings │ │ │ │ ├── SettingsCtrl.js │ │ │ │ ├── loader.html │ │ │ │ ├── settings.html │ │ │ │ └── settings.less │ │ │ ├── signByDevice │ │ │ │ ├── SignByDeviceCtrl.js │ │ │ │ ├── signByDevice.html │ │ │ │ └── signByDevice.less │ │ │ ├── signDeviceError │ │ │ │ ├── SignDeviceError.js │ │ │ │ ├── signDeviceError.html │ │ │ │ └── signDeviceError.less │ │ │ ├── sponsored │ │ │ │ ├── SponsoredModalCtrl.js │ │ │ │ ├── sponsored.html │ │ │ │ └── sponsored.less │ │ │ ├── startLeasing │ │ │ │ ├── StartLeasingCtrl.js │ │ │ │ ├── startLeasing.html │ │ │ │ └── startLeasing.less │ │ │ ├── templates │ │ │ │ ├── dialog-content.html │ │ │ │ ├── dialog-content.less │ │ │ │ ├── header.modal.html │ │ │ │ └── modal.wrapper.html │ │ │ ├── transactionInfo │ │ │ │ ├── TransactionInfoCtrl.js │ │ │ │ └── transaction-info.modal.html │ │ │ ├── tryDesktop │ │ │ │ ├── TryDesktopCtrl.js │ │ │ │ ├── tryDesktop.html │ │ │ │ └── tryDesktopModal.less │ │ │ └── tutorialModals │ │ │ │ ├── TutorialModalsCtrl.js │ │ │ │ ├── tutorialModals.html │ │ │ │ └── tutorialModals.less │ │ ├── services │ │ │ ├── BaseAssetService.js │ │ │ ├── ComponentList.js │ │ │ ├── DevDecorator.js │ │ │ ├── Ease.js │ │ │ ├── ExplorerLinks.js │ │ │ ├── ExportStorageService.js │ │ │ ├── MediaStream.js │ │ │ ├── Migration.js │ │ │ ├── Moment.js │ │ │ ├── Poll.js │ │ │ ├── PollCache.js │ │ │ ├── PromiseControl.js │ │ │ ├── ReadFile.js │ │ │ ├── Router.js │ │ │ ├── Storage.js │ │ │ ├── StyleManager.js │ │ │ ├── TimeLine.js │ │ │ ├── UserRouteState.js │ │ │ ├── base │ │ │ │ ├── Base.js │ │ │ │ ├── BaseClassComponent.js │ │ │ │ ├── createPoll.js │ │ │ │ └── createPromise.js │ │ │ ├── decorators.js │ │ │ ├── gateways │ │ │ │ ├── CoinomatCardService.js │ │ │ │ ├── CoinomatSepaService.js │ │ │ │ ├── CoinomatService.js │ │ │ │ ├── GatewayService.js │ │ │ │ └── WavesGatewayService.js │ │ │ ├── outerBlockchains.js │ │ │ ├── storage │ │ │ │ ├── LocalStorage.js │ │ │ │ ├── ObjectStorage.js │ │ │ │ ├── PostMessageStorage.js │ │ │ │ ├── WebStorage.js │ │ │ │ ├── storageDataConverter.js │ │ │ │ └── storageSelect.js │ │ │ ├── utils.js │ │ │ └── whatsNew.js │ │ └── utils.js │ ├── wallet │ │ ├── controllers │ │ │ └── WalletHeaderCtrl.js │ │ ├── modules │ │ │ ├── assets │ │ │ │ ├── assets.js │ │ │ │ ├── controllers │ │ │ │ │ └── AssetsCtrl.js │ │ │ │ ├── directives │ │ │ │ │ └── asset │ │ │ │ │ │ ├── Asset.js │ │ │ │ │ │ ├── asset.html │ │ │ │ │ │ └── asset.less │ │ │ │ ├── less │ │ │ │ │ ├── assets.less │ │ │ │ │ └── toaster-tokenomica.less │ │ │ │ ├── services │ │ │ │ │ └── AssetsData.js │ │ │ │ └── templates │ │ │ │ │ └── assets.html │ │ │ ├── leasing │ │ │ │ ├── controllers │ │ │ │ │ └── LeasingCtrl.js │ │ │ │ ├── directives │ │ │ │ │ └── leasingBlock │ │ │ │ │ │ ├── LeasingBlock.js │ │ │ │ │ │ ├── leasingBlock.html │ │ │ │ │ │ └── leasingBlock.less │ │ │ │ ├── leasing.js │ │ │ │ ├── less │ │ │ │ │ └── leasing.less │ │ │ │ └── templates │ │ │ │ │ └── leasing.html │ │ │ ├── portfolio │ │ │ │ ├── controllers │ │ │ │ │ └── PortfolioCtrl.js │ │ │ │ ├── directives │ │ │ │ │ └── portfolioRow │ │ │ │ │ │ ├── PortfolioRow.js │ │ │ │ │ │ ├── portfolio-row.less │ │ │ │ │ │ └── row.hbs │ │ │ │ ├── less │ │ │ │ │ └── portfolio.less │ │ │ │ ├── portfolio.js │ │ │ │ └── templates │ │ │ │ │ └── portfolio.html │ │ │ └── transactions │ │ │ │ ├── controllers │ │ │ │ └── TransactionsCtrl.js │ │ │ │ ├── less │ │ │ │ └── transactions.less │ │ │ │ ├── services │ │ │ │ └── TransactionsCsvGen.js │ │ │ │ ├── templates │ │ │ │ └── transactions.html │ │ │ │ └── transactions.js │ │ └── wallet.js │ └── welcome │ │ ├── controllers │ │ └── WelcomeCtrl.js │ │ ├── less │ │ ├── classes-welcome.less │ │ ├── page-welcome.less │ │ ├── section-markets.less │ │ ├── section-promo.less │ │ ├── section-roadmap.less │ │ ├── section-slider.less │ │ └── section-welcome.less │ │ ├── templates │ │ └── welcome.html │ │ └── welcome.js └── themeConfig │ ├── black │ ├── config.less │ └── icons.less │ ├── candle-style.hbs │ ├── default │ ├── config.less │ └── icons.less │ └── theme.json ├── tradingview-style ├── dark-style.css └── style.css ├── ts-scripts ├── commit-msg.ts ├── commit.ts ├── interface.d.ts ├── meta.json ├── pull.ts └── utils.ts ├── tsconfig.json └── vendors └── require-modules.js /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | vendors/ 3 | node_modules/ 4 | karma.conf.js 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/README.md -------------------------------------------------------------------------------- /README_IMG_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/README_IMG_01.png -------------------------------------------------------------------------------- /amplitude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/amplitude.js -------------------------------------------------------------------------------- /chooseBuild.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/chooseBuild.hbs -------------------------------------------------------------------------------- /configs/mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/configs/mainnet.json -------------------------------------------------------------------------------- /configs/stagenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/configs/stagenet.json -------------------------------------------------------------------------------- /configs/testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/configs/testnet.json -------------------------------------------------------------------------------- /data-service/api/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/API.ts -------------------------------------------------------------------------------- /data-service/api/address/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/address/index.ts -------------------------------------------------------------------------------- /data-service/api/aliases/aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/aliases/aliases.ts -------------------------------------------------------------------------------- /data-service/api/assets/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/assets/assets.ts -------------------------------------------------------------------------------- /data-service/api/assets/interface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/assets/interface.d.ts -------------------------------------------------------------------------------- /data-service/api/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/data/index.ts -------------------------------------------------------------------------------- /data-service/api/matcher/getLastPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/matcher/getLastPrice.ts -------------------------------------------------------------------------------- /data-service/api/matcher/getOrders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/matcher/getOrders.ts -------------------------------------------------------------------------------- /data-service/api/matcher/getSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/matcher/getSettings.ts -------------------------------------------------------------------------------- /data-service/api/matcher/interface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/matcher/interface.d.ts -------------------------------------------------------------------------------- /data-service/api/matcher/orderBook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/matcher/orderBook.ts -------------------------------------------------------------------------------- /data-service/api/matchers/matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/matchers/matchers.ts -------------------------------------------------------------------------------- /data-service/api/node/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/node/node.ts -------------------------------------------------------------------------------- /data-service/api/pairs/pairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/pairs/pairs.ts -------------------------------------------------------------------------------- /data-service/api/rating/rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/rating/rating.ts -------------------------------------------------------------------------------- /data-service/api/transactions/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/api/transactions/parse.ts -------------------------------------------------------------------------------- /data-service/broadcast/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/broadcast/broadcast.ts -------------------------------------------------------------------------------- /data-service/broadcast/interface.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-service/classes/DataManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/classes/DataManager.ts -------------------------------------------------------------------------------- /data-service/classes/PollControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/classes/PollControl.ts -------------------------------------------------------------------------------- /data-service/classes/Seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/classes/Seed.ts -------------------------------------------------------------------------------- /data-service/classes/UTXManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/classes/UTXManager.ts -------------------------------------------------------------------------------- /data-service/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/config.ts -------------------------------------------------------------------------------- /data-service/connect/ConnectProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/connect/ConnectProvider.ts -------------------------------------------------------------------------------- /data-service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/index.ts -------------------------------------------------------------------------------- /data-service/interface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/interface.d.ts -------------------------------------------------------------------------------- /data-service/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/sign.ts -------------------------------------------------------------------------------- /data-service/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/store.ts -------------------------------------------------------------------------------- /data-service/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/tsconfig.json -------------------------------------------------------------------------------- /data-service/utils/AssetStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/utils/AssetStorage.ts -------------------------------------------------------------------------------- /data-service/utils/ConfigService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/utils/ConfigService.ts -------------------------------------------------------------------------------- /data-service/utils/DownloadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/utils/DownloadFile.ts -------------------------------------------------------------------------------- /data-service/utils/MoneyHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/utils/MoneyHash.ts -------------------------------------------------------------------------------- /data-service/utils/Poll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/utils/Poll.ts -------------------------------------------------------------------------------- /data-service/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/utils/request.ts -------------------------------------------------------------------------------- /data-service/utils/seedDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/utils/seedDictionary.ts -------------------------------------------------------------------------------- /data-service/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/data-service/utils/utils.ts -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /electron/Bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/Bridge.ts -------------------------------------------------------------------------------- /electron/Resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/Resources.pri -------------------------------------------------------------------------------- /electron/SimpleConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/SimpleConnect.ts -------------------------------------------------------------------------------- /electron/Storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/Storage.ts -------------------------------------------------------------------------------- /electron/constansts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/constansts.ts -------------------------------------------------------------------------------- /electron/decorators/loggable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/decorators/loggable.ts -------------------------------------------------------------------------------- /electron/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/128.png -------------------------------------------------------------------------------- /electron/icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/256.png -------------------------------------------------------------------------------- /electron/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/32.png -------------------------------------------------------------------------------- /electron/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/64.png -------------------------------------------------------------------------------- /electron/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/icon.icns -------------------------------------------------------------------------------- /electron/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/icon.ico -------------------------------------------------------------------------------- /electron/icons/macos-installer-bg.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/macos-installer-bg.tiff -------------------------------------------------------------------------------- /electron/icons/tile150x150.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/tile150x150.scale-100.png -------------------------------------------------------------------------------- /electron/icons/tile150x150.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/tile150x150.scale-125.png -------------------------------------------------------------------------------- /electron/icons/tile150x150.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/tile150x150.scale-150.png -------------------------------------------------------------------------------- /electron/icons/tile150x150.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/tile150x150.scale-200.png -------------------------------------------------------------------------------- /electron/icons/tile70x70.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/tile70x70.scale-100.png -------------------------------------------------------------------------------- /electron/icons/tile70x70.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/tile70x70.scale-125.png -------------------------------------------------------------------------------- /electron/icons/tile70x70.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/tile70x70.scale-150.png -------------------------------------------------------------------------------- /electron/icons/tile70x70.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/icons/tile70x70.scale-200.png -------------------------------------------------------------------------------- /electron/installer.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/installer.nsh -------------------------------------------------------------------------------- /electron/interface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/interface.d.ts -------------------------------------------------------------------------------- /electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/main.ts -------------------------------------------------------------------------------- /electron/node-global-extends.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/node-global-extends.d.ts -------------------------------------------------------------------------------- /electron/notarize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/notarize.ts -------------------------------------------------------------------------------- /electron/package.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/package.d.ts -------------------------------------------------------------------------------- /electron/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/preload.ts -------------------------------------------------------------------------------- /electron/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/transfer.ts -------------------------------------------------------------------------------- /electron/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/utils.ts -------------------------------------------------------------------------------- /electron/waves.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/electron/waves.desktop -------------------------------------------------------------------------------- /googleAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/googleAnalytics.js -------------------------------------------------------------------------------- /gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/gulpfile.ts -------------------------------------------------------------------------------- /helpers/loginDaemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/helpers/loginDaemon.js -------------------------------------------------------------------------------- /helpers/mobileConsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/helpers/mobileConsole.js -------------------------------------------------------------------------------- /locale/de/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.create.json -------------------------------------------------------------------------------- /locale/de/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.desktop.json -------------------------------------------------------------------------------- /locale/de/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.dex.json -------------------------------------------------------------------------------- /locale/de/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.fag.json -------------------------------------------------------------------------------- /locale/de/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.import.json -------------------------------------------------------------------------------- /locale/de/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.json -------------------------------------------------------------------------------- /locale/de/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.ledger.json -------------------------------------------------------------------------------- /locale/de/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.migrate.json -------------------------------------------------------------------------------- /locale/de/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.restore.json -------------------------------------------------------------------------------- /locale/de/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.saveSeed.json -------------------------------------------------------------------------------- /locale/de/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.sessions.json -------------------------------------------------------------------------------- /locale/de/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.signIn.json -------------------------------------------------------------------------------- /locale/de/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.signUp.json -------------------------------------------------------------------------------- /locale/de/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.tokens.json -------------------------------------------------------------------------------- /locale/de/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.ui.json -------------------------------------------------------------------------------- /locale/de/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.unavailable.json -------------------------------------------------------------------------------- /locale/de/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.utils.json -------------------------------------------------------------------------------- /locale/de/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/de/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/de/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/de/app.wallet.transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.wallet.transactions.json -------------------------------------------------------------------------------- /locale/de/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/app.welcome.json -------------------------------------------------------------------------------- /locale/de/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/de/electron.json -------------------------------------------------------------------------------- /locale/en/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.create.json -------------------------------------------------------------------------------- /locale/en/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.desktop.json -------------------------------------------------------------------------------- /locale/en/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.dex.json -------------------------------------------------------------------------------- /locale/en/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.fag.json -------------------------------------------------------------------------------- /locale/en/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.import.json -------------------------------------------------------------------------------- /locale/en/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.json -------------------------------------------------------------------------------- /locale/en/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.ledger.json -------------------------------------------------------------------------------- /locale/en/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.migrate.json -------------------------------------------------------------------------------- /locale/en/app.migration.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /locale/en/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.restore.json -------------------------------------------------------------------------------- /locale/en/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.saveSeed.json -------------------------------------------------------------------------------- /locale/en/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.sessions.json -------------------------------------------------------------------------------- /locale/en/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.signIn.json -------------------------------------------------------------------------------- /locale/en/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.signUp.json -------------------------------------------------------------------------------- /locale/en/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.tokens.json -------------------------------------------------------------------------------- /locale/en/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.ui.json -------------------------------------------------------------------------------- /locale/en/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.unavailable.json -------------------------------------------------------------------------------- /locale/en/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.utils.json -------------------------------------------------------------------------------- /locale/en/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/en/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/en/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/en/app.wallet.transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.wallet.transactions.json -------------------------------------------------------------------------------- /locale/en/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/app.welcome.json -------------------------------------------------------------------------------- /locale/en/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/en/electron.json -------------------------------------------------------------------------------- /locale/es/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.create.json -------------------------------------------------------------------------------- /locale/es/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.desktop.json -------------------------------------------------------------------------------- /locale/es/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.dex.json -------------------------------------------------------------------------------- /locale/es/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.fag.json -------------------------------------------------------------------------------- /locale/es/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.import.json -------------------------------------------------------------------------------- /locale/es/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.json -------------------------------------------------------------------------------- /locale/es/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.ledger.json -------------------------------------------------------------------------------- /locale/es/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.migrate.json -------------------------------------------------------------------------------- /locale/es/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.restore.json -------------------------------------------------------------------------------- /locale/es/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.saveSeed.json -------------------------------------------------------------------------------- /locale/es/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.sessions.json -------------------------------------------------------------------------------- /locale/es/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.signIn.json -------------------------------------------------------------------------------- /locale/es/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.signUp.json -------------------------------------------------------------------------------- /locale/es/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.tokens.json -------------------------------------------------------------------------------- /locale/es/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.ui.json -------------------------------------------------------------------------------- /locale/es/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.unavailable.json -------------------------------------------------------------------------------- /locale/es/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.utils.json -------------------------------------------------------------------------------- /locale/es/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/es/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/es/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/es/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/app.welcome.json -------------------------------------------------------------------------------- /locale/es/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/es/electron.json -------------------------------------------------------------------------------- /locale/et_EE/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.create.json -------------------------------------------------------------------------------- /locale/et_EE/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.desktop.json -------------------------------------------------------------------------------- /locale/et_EE/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.dex.json -------------------------------------------------------------------------------- /locale/et_EE/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.fag.json -------------------------------------------------------------------------------- /locale/et_EE/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.import.json -------------------------------------------------------------------------------- /locale/et_EE/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.json -------------------------------------------------------------------------------- /locale/et_EE/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.ledger.json -------------------------------------------------------------------------------- /locale/et_EE/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.migrate.json -------------------------------------------------------------------------------- /locale/et_EE/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.restore.json -------------------------------------------------------------------------------- /locale/et_EE/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.saveSeed.json -------------------------------------------------------------------------------- /locale/et_EE/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.sessions.json -------------------------------------------------------------------------------- /locale/et_EE/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.signIn.json -------------------------------------------------------------------------------- /locale/et_EE/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.signUp.json -------------------------------------------------------------------------------- /locale/et_EE/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.tokens.json -------------------------------------------------------------------------------- /locale/et_EE/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.ui.json -------------------------------------------------------------------------------- /locale/et_EE/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.unavailable.json -------------------------------------------------------------------------------- /locale/et_EE/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.utils.json -------------------------------------------------------------------------------- /locale/et_EE/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/et_EE/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/et_EE/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/app.welcome.json -------------------------------------------------------------------------------- /locale/et_EE/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/et_EE/electron.json -------------------------------------------------------------------------------- /locale/fr/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.create.json -------------------------------------------------------------------------------- /locale/fr/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.desktop.json -------------------------------------------------------------------------------- /locale/fr/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.dex.json -------------------------------------------------------------------------------- /locale/fr/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.fag.json -------------------------------------------------------------------------------- /locale/fr/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.import.json -------------------------------------------------------------------------------- /locale/fr/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.json -------------------------------------------------------------------------------- /locale/fr/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.ledger.json -------------------------------------------------------------------------------- /locale/fr/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.migrate.json -------------------------------------------------------------------------------- /locale/fr/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.restore.json -------------------------------------------------------------------------------- /locale/fr/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.saveSeed.json -------------------------------------------------------------------------------- /locale/fr/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.sessions.json -------------------------------------------------------------------------------- /locale/fr/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.signIn.json -------------------------------------------------------------------------------- /locale/fr/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.signUp.json -------------------------------------------------------------------------------- /locale/fr/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.tokens.json -------------------------------------------------------------------------------- /locale/fr/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.ui.json -------------------------------------------------------------------------------- /locale/fr/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.unavailable.json -------------------------------------------------------------------------------- /locale/fr/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.utils.json -------------------------------------------------------------------------------- /locale/fr/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/fr/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/fr/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/fr/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/app.welcome.json -------------------------------------------------------------------------------- /locale/fr/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/fr/electron.json -------------------------------------------------------------------------------- /locale/hi_IN/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.create.json -------------------------------------------------------------------------------- /locale/hi_IN/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.desktop.json -------------------------------------------------------------------------------- /locale/hi_IN/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.dex.json -------------------------------------------------------------------------------- /locale/hi_IN/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.fag.json -------------------------------------------------------------------------------- /locale/hi_IN/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.import.json -------------------------------------------------------------------------------- /locale/hi_IN/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.json -------------------------------------------------------------------------------- /locale/hi_IN/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.ledger.json -------------------------------------------------------------------------------- /locale/hi_IN/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.migrate.json -------------------------------------------------------------------------------- /locale/hi_IN/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.restore.json -------------------------------------------------------------------------------- /locale/hi_IN/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.saveSeed.json -------------------------------------------------------------------------------- /locale/hi_IN/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.sessions.json -------------------------------------------------------------------------------- /locale/hi_IN/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.signIn.json -------------------------------------------------------------------------------- /locale/hi_IN/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.signUp.json -------------------------------------------------------------------------------- /locale/hi_IN/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.tokens.json -------------------------------------------------------------------------------- /locale/hi_IN/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.ui.json -------------------------------------------------------------------------------- /locale/hi_IN/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.unavailable.json -------------------------------------------------------------------------------- /locale/hi_IN/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.utils.json -------------------------------------------------------------------------------- /locale/hi_IN/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/hi_IN/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/hi_IN/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/app.welcome.json -------------------------------------------------------------------------------- /locale/hi_IN/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/hi_IN/electron.json -------------------------------------------------------------------------------- /locale/id/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.create.json -------------------------------------------------------------------------------- /locale/id/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.desktop.json -------------------------------------------------------------------------------- /locale/id/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.dex.json -------------------------------------------------------------------------------- /locale/id/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.fag.json -------------------------------------------------------------------------------- /locale/id/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.import.json -------------------------------------------------------------------------------- /locale/id/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.json -------------------------------------------------------------------------------- /locale/id/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.ledger.json -------------------------------------------------------------------------------- /locale/id/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.migrate.json -------------------------------------------------------------------------------- /locale/id/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.restore.json -------------------------------------------------------------------------------- /locale/id/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.saveSeed.json -------------------------------------------------------------------------------- /locale/id/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.sessions.json -------------------------------------------------------------------------------- /locale/id/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.signIn.json -------------------------------------------------------------------------------- /locale/id/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.signUp.json -------------------------------------------------------------------------------- /locale/id/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.tokens.json -------------------------------------------------------------------------------- /locale/id/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.ui.json -------------------------------------------------------------------------------- /locale/id/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.unavailable.json -------------------------------------------------------------------------------- /locale/id/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.utils.json -------------------------------------------------------------------------------- /locale/id/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/id/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/id/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/id/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/app.welcome.json -------------------------------------------------------------------------------- /locale/id/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/id/electron.json -------------------------------------------------------------------------------- /locale/it/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.create.json -------------------------------------------------------------------------------- /locale/it/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.desktop.json -------------------------------------------------------------------------------- /locale/it/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.dex.json -------------------------------------------------------------------------------- /locale/it/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.fag.json -------------------------------------------------------------------------------- /locale/it/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.import.json -------------------------------------------------------------------------------- /locale/it/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.json -------------------------------------------------------------------------------- /locale/it/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.ledger.json -------------------------------------------------------------------------------- /locale/it/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.migrate.json -------------------------------------------------------------------------------- /locale/it/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.restore.json -------------------------------------------------------------------------------- /locale/it/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.saveSeed.json -------------------------------------------------------------------------------- /locale/it/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.sessions.json -------------------------------------------------------------------------------- /locale/it/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.signIn.json -------------------------------------------------------------------------------- /locale/it/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.signUp.json -------------------------------------------------------------------------------- /locale/it/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.tokens.json -------------------------------------------------------------------------------- /locale/it/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.ui.json -------------------------------------------------------------------------------- /locale/it/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.unavailable.json -------------------------------------------------------------------------------- /locale/it/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.utils.json -------------------------------------------------------------------------------- /locale/it/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/it/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/it/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/it/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/app.welcome.json -------------------------------------------------------------------------------- /locale/it/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/it/electron.json -------------------------------------------------------------------------------- /locale/ja/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.create.json -------------------------------------------------------------------------------- /locale/ja/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.desktop.json -------------------------------------------------------------------------------- /locale/ja/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.dex.json -------------------------------------------------------------------------------- /locale/ja/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.fag.json -------------------------------------------------------------------------------- /locale/ja/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.import.json -------------------------------------------------------------------------------- /locale/ja/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.json -------------------------------------------------------------------------------- /locale/ja/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.ledger.json -------------------------------------------------------------------------------- /locale/ja/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.migrate.json -------------------------------------------------------------------------------- /locale/ja/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.restore.json -------------------------------------------------------------------------------- /locale/ja/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.saveSeed.json -------------------------------------------------------------------------------- /locale/ja/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.sessions.json -------------------------------------------------------------------------------- /locale/ja/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.signIn.json -------------------------------------------------------------------------------- /locale/ja/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.signUp.json -------------------------------------------------------------------------------- /locale/ja/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.tokens.json -------------------------------------------------------------------------------- /locale/ja/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.ui.json -------------------------------------------------------------------------------- /locale/ja/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.unavailable.json -------------------------------------------------------------------------------- /locale/ja/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.utils.json -------------------------------------------------------------------------------- /locale/ja/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/ja/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/ja/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/ja/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/app.welcome.json -------------------------------------------------------------------------------- /locale/ja/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ja/electron.json -------------------------------------------------------------------------------- /locale/ko/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.create.json -------------------------------------------------------------------------------- /locale/ko/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.desktop.json -------------------------------------------------------------------------------- /locale/ko/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.dex.json -------------------------------------------------------------------------------- /locale/ko/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.fag.json -------------------------------------------------------------------------------- /locale/ko/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.import.json -------------------------------------------------------------------------------- /locale/ko/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.json -------------------------------------------------------------------------------- /locale/ko/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.ledger.json -------------------------------------------------------------------------------- /locale/ko/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.migrate.json -------------------------------------------------------------------------------- /locale/ko/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.restore.json -------------------------------------------------------------------------------- /locale/ko/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.saveSeed.json -------------------------------------------------------------------------------- /locale/ko/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.sessions.json -------------------------------------------------------------------------------- /locale/ko/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.signIn.json -------------------------------------------------------------------------------- /locale/ko/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.signUp.json -------------------------------------------------------------------------------- /locale/ko/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.tokens.json -------------------------------------------------------------------------------- /locale/ko/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.ui.json -------------------------------------------------------------------------------- /locale/ko/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.unavailable.json -------------------------------------------------------------------------------- /locale/ko/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.utils.json -------------------------------------------------------------------------------- /locale/ko/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/ko/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/ko/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/ko/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/app.welcome.json -------------------------------------------------------------------------------- /locale/ko/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ko/electron.json -------------------------------------------------------------------------------- /locale/nl_NL/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.create.json -------------------------------------------------------------------------------- /locale/nl_NL/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.desktop.json -------------------------------------------------------------------------------- /locale/nl_NL/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.dex.json -------------------------------------------------------------------------------- /locale/nl_NL/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.fag.json -------------------------------------------------------------------------------- /locale/nl_NL/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.import.json -------------------------------------------------------------------------------- /locale/nl_NL/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.json -------------------------------------------------------------------------------- /locale/nl_NL/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.ledger.json -------------------------------------------------------------------------------- /locale/nl_NL/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.migrate.json -------------------------------------------------------------------------------- /locale/nl_NL/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.restore.json -------------------------------------------------------------------------------- /locale/nl_NL/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.saveSeed.json -------------------------------------------------------------------------------- /locale/nl_NL/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.sessions.json -------------------------------------------------------------------------------- /locale/nl_NL/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.signIn.json -------------------------------------------------------------------------------- /locale/nl_NL/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.signUp.json -------------------------------------------------------------------------------- /locale/nl_NL/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.tokens.json -------------------------------------------------------------------------------- /locale/nl_NL/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.ui.json -------------------------------------------------------------------------------- /locale/nl_NL/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.unavailable.json -------------------------------------------------------------------------------- /locale/nl_NL/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.utils.json -------------------------------------------------------------------------------- /locale/nl_NL/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/nl_NL/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/nl_NL/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/app.welcome.json -------------------------------------------------------------------------------- /locale/nl_NL/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/nl_NL/electron.json -------------------------------------------------------------------------------- /locale/pl/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.create.json -------------------------------------------------------------------------------- /locale/pl/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.desktop.json -------------------------------------------------------------------------------- /locale/pl/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.dex.json -------------------------------------------------------------------------------- /locale/pl/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.fag.json -------------------------------------------------------------------------------- /locale/pl/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.import.json -------------------------------------------------------------------------------- /locale/pl/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.json -------------------------------------------------------------------------------- /locale/pl/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.ledger.json -------------------------------------------------------------------------------- /locale/pl/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.migrate.json -------------------------------------------------------------------------------- /locale/pl/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.restore.json -------------------------------------------------------------------------------- /locale/pl/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.saveSeed.json -------------------------------------------------------------------------------- /locale/pl/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.sessions.json -------------------------------------------------------------------------------- /locale/pl/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.signIn.json -------------------------------------------------------------------------------- /locale/pl/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.signUp.json -------------------------------------------------------------------------------- /locale/pl/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.tokens.json -------------------------------------------------------------------------------- /locale/pl/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.ui.json -------------------------------------------------------------------------------- /locale/pl/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.unavailable.json -------------------------------------------------------------------------------- /locale/pl/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.utils.json -------------------------------------------------------------------------------- /locale/pl/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/pl/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/pl/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/pl/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/app.welcome.json -------------------------------------------------------------------------------- /locale/pl/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pl/electron.json -------------------------------------------------------------------------------- /locale/pt_BR/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.create.json -------------------------------------------------------------------------------- /locale/pt_BR/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.desktop.json -------------------------------------------------------------------------------- /locale/pt_BR/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.dex.json -------------------------------------------------------------------------------- /locale/pt_BR/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.fag.json -------------------------------------------------------------------------------- /locale/pt_BR/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.import.json -------------------------------------------------------------------------------- /locale/pt_BR/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.json -------------------------------------------------------------------------------- /locale/pt_BR/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.ledger.json -------------------------------------------------------------------------------- /locale/pt_BR/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.migrate.json -------------------------------------------------------------------------------- /locale/pt_BR/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.restore.json -------------------------------------------------------------------------------- /locale/pt_BR/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.saveSeed.json -------------------------------------------------------------------------------- /locale/pt_BR/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.sessions.json -------------------------------------------------------------------------------- /locale/pt_BR/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.signIn.json -------------------------------------------------------------------------------- /locale/pt_BR/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.signUp.json -------------------------------------------------------------------------------- /locale/pt_BR/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.tokens.json -------------------------------------------------------------------------------- /locale/pt_BR/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.ui.json -------------------------------------------------------------------------------- /locale/pt_BR/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.unavailable.json -------------------------------------------------------------------------------- /locale/pt_BR/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.utils.json -------------------------------------------------------------------------------- /locale/pt_BR/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/pt_BR/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/pt_BR/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/app.welcome.json -------------------------------------------------------------------------------- /locale/pt_BR/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_BR/electron.json -------------------------------------------------------------------------------- /locale/pt_PT/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.create.json -------------------------------------------------------------------------------- /locale/pt_PT/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.desktop.json -------------------------------------------------------------------------------- /locale/pt_PT/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.dex.json -------------------------------------------------------------------------------- /locale/pt_PT/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.fag.json -------------------------------------------------------------------------------- /locale/pt_PT/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.import.json -------------------------------------------------------------------------------- /locale/pt_PT/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.json -------------------------------------------------------------------------------- /locale/pt_PT/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.ledger.json -------------------------------------------------------------------------------- /locale/pt_PT/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.migrate.json -------------------------------------------------------------------------------- /locale/pt_PT/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.restore.json -------------------------------------------------------------------------------- /locale/pt_PT/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.saveSeed.json -------------------------------------------------------------------------------- /locale/pt_PT/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.sessions.json -------------------------------------------------------------------------------- /locale/pt_PT/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.signIn.json -------------------------------------------------------------------------------- /locale/pt_PT/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.signUp.json -------------------------------------------------------------------------------- /locale/pt_PT/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.tokens.json -------------------------------------------------------------------------------- /locale/pt_PT/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.ui.json -------------------------------------------------------------------------------- /locale/pt_PT/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.unavailable.json -------------------------------------------------------------------------------- /locale/pt_PT/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.utils.json -------------------------------------------------------------------------------- /locale/pt_PT/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/pt_PT/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/pt_PT/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/app.welcome.json -------------------------------------------------------------------------------- /locale/pt_PT/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/pt_PT/electron.json -------------------------------------------------------------------------------- /locale/ru/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.create.json -------------------------------------------------------------------------------- /locale/ru/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.desktop.json -------------------------------------------------------------------------------- /locale/ru/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.dex.json -------------------------------------------------------------------------------- /locale/ru/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.fag.json -------------------------------------------------------------------------------- /locale/ru/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.import.json -------------------------------------------------------------------------------- /locale/ru/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.json -------------------------------------------------------------------------------- /locale/ru/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.ledger.json -------------------------------------------------------------------------------- /locale/ru/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.migrate.json -------------------------------------------------------------------------------- /locale/ru/app.migration.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /locale/ru/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.restore.json -------------------------------------------------------------------------------- /locale/ru/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.saveSeed.json -------------------------------------------------------------------------------- /locale/ru/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.sessions.json -------------------------------------------------------------------------------- /locale/ru/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.signIn.json -------------------------------------------------------------------------------- /locale/ru/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.signUp.json -------------------------------------------------------------------------------- /locale/ru/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.tokens.json -------------------------------------------------------------------------------- /locale/ru/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.ui.json -------------------------------------------------------------------------------- /locale/ru/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.unavailable.json -------------------------------------------------------------------------------- /locale/ru/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.utils.json -------------------------------------------------------------------------------- /locale/ru/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/ru/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/ru/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/ru/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/app.welcome.json -------------------------------------------------------------------------------- /locale/ru/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/ru/electron.json -------------------------------------------------------------------------------- /locale/tr/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.create.json -------------------------------------------------------------------------------- /locale/tr/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.desktop.json -------------------------------------------------------------------------------- /locale/tr/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.dex.json -------------------------------------------------------------------------------- /locale/tr/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.fag.json -------------------------------------------------------------------------------- /locale/tr/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.import.json -------------------------------------------------------------------------------- /locale/tr/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.json -------------------------------------------------------------------------------- /locale/tr/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.ledger.json -------------------------------------------------------------------------------- /locale/tr/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.migrate.json -------------------------------------------------------------------------------- /locale/tr/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.restore.json -------------------------------------------------------------------------------- /locale/tr/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.saveSeed.json -------------------------------------------------------------------------------- /locale/tr/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.sessions.json -------------------------------------------------------------------------------- /locale/tr/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.signIn.json -------------------------------------------------------------------------------- /locale/tr/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.signUp.json -------------------------------------------------------------------------------- /locale/tr/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.tokens.json -------------------------------------------------------------------------------- /locale/tr/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.ui.json -------------------------------------------------------------------------------- /locale/tr/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.unavailable.json -------------------------------------------------------------------------------- /locale/tr/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.utils.json -------------------------------------------------------------------------------- /locale/tr/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/tr/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/tr/app.wallet.portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.wallet.portfolio.json -------------------------------------------------------------------------------- /locale/tr/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/app.welcome.json -------------------------------------------------------------------------------- /locale/tr/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/tr/electron.json -------------------------------------------------------------------------------- /locale/zh_CN/app.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.create.json -------------------------------------------------------------------------------- /locale/zh_CN/app.desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.desktop.json -------------------------------------------------------------------------------- /locale/zh_CN/app.dex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.dex.json -------------------------------------------------------------------------------- /locale/zh_CN/app.fag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.fag.json -------------------------------------------------------------------------------- /locale/zh_CN/app.import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.import.json -------------------------------------------------------------------------------- /locale/zh_CN/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.json -------------------------------------------------------------------------------- /locale/zh_CN/app.ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.ledger.json -------------------------------------------------------------------------------- /locale/zh_CN/app.migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.migrate.json -------------------------------------------------------------------------------- /locale/zh_CN/app.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.restore.json -------------------------------------------------------------------------------- /locale/zh_CN/app.saveSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.saveSeed.json -------------------------------------------------------------------------------- /locale/zh_CN/app.sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.sessions.json -------------------------------------------------------------------------------- /locale/zh_CN/app.signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.signIn.json -------------------------------------------------------------------------------- /locale/zh_CN/app.signUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.signUp.json -------------------------------------------------------------------------------- /locale/zh_CN/app.tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.tokens.json -------------------------------------------------------------------------------- /locale/zh_CN/app.ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.ui.json -------------------------------------------------------------------------------- /locale/zh_CN/app.unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.unavailable.json -------------------------------------------------------------------------------- /locale/zh_CN/app.utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.utils.json -------------------------------------------------------------------------------- /locale/zh_CN/app.wallet.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.wallet.assets.json -------------------------------------------------------------------------------- /locale/zh_CN/app.wallet.leasing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.wallet.leasing.json -------------------------------------------------------------------------------- /locale/zh_CN/app.welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/app.welcome.json -------------------------------------------------------------------------------- /locale/zh_CN/electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/locale/zh_CN/electron.json -------------------------------------------------------------------------------- /localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/localhost.crt -------------------------------------------------------------------------------- /localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/localhost.key -------------------------------------------------------------------------------- /mocks/coinomat/create_tunnel.php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/mocks/coinomat/create_tunnel.php.json -------------------------------------------------------------------------------- /mocks/coinomat/get_confirmation.php.json: -------------------------------------------------------------------------------- 1 | {"status":"ok","is_confirmed":true} -------------------------------------------------------------------------------- /mocks/coinomat/get_ts.php.json: -------------------------------------------------------------------------------- 1 | { 2 | "ts": 1540885879 3 | } -------------------------------------------------------------------------------- /mocks/coinomat/get_tunnel.php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/mocks/coinomat/get_tunnel.php.json -------------------------------------------------------------------------------- /mocks/coinomat/get_xrate.php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/mocks/coinomat/get_xrate.php.json -------------------------------------------------------------------------------- /mocks/coinomat/limits.php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/mocks/coinomat/limits.php.json -------------------------------------------------------------------------------- /mocks/coinomat/rate.php.json: -------------------------------------------------------------------------------- 1 | 1.0001 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/package.json -------------------------------------------------------------------------------- /scripts/babelTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/babelTask.ts -------------------------------------------------------------------------------- /scripts/cleanTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/cleanTask.ts -------------------------------------------------------------------------------- /scripts/concatTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/concatTask.ts -------------------------------------------------------------------------------- /scripts/copyTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/copyTask.ts -------------------------------------------------------------------------------- /scripts/dataServicesTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/dataServicesTask.ts -------------------------------------------------------------------------------- /scripts/electronDebugTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/electronDebugTask.ts -------------------------------------------------------------------------------- /scripts/electronPackageTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/electronPackageTask.ts -------------------------------------------------------------------------------- /scripts/eslintTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/eslintTask.ts -------------------------------------------------------------------------------- /scripts/htmlTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/htmlTask.ts -------------------------------------------------------------------------------- /scripts/imageListTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/imageListTask.ts -------------------------------------------------------------------------------- /scripts/lessTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/lessTask.ts -------------------------------------------------------------------------------- /scripts/localesTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/localesTask.ts -------------------------------------------------------------------------------- /scripts/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/postinstall.sh -------------------------------------------------------------------------------- /scripts/postversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/postversion.sh -------------------------------------------------------------------------------- /scripts/preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/preinstall.sh -------------------------------------------------------------------------------- /scripts/preversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/preversion.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/templatesTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/templatesTask.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/server.ts -------------------------------------------------------------------------------- /src/export.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/export.hbs -------------------------------------------------------------------------------- /src/fonts/roboto-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-light.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-light2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-light2.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-light3.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-light3.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-light4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-light4.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-light5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-light5.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-light6.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-light6.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-light7.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-light7.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-medium.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-medium2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-medium2.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-medium3.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-medium3.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-medium4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-medium4.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-medium5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-medium5.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-medium6.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-medium6.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-medium7.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto-medium7.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto2.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto3.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto3.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto4.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto5.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto6.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto6.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto7.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/fonts/roboto7.woff2 -------------------------------------------------------------------------------- /src/img/assets/bitcoin-cash-sv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/bitcoin-cash-sv.svg -------------------------------------------------------------------------------- /src/img/assets/bitcoin-cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/bitcoin-cash.svg -------------------------------------------------------------------------------- /src/img/assets/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/bitcoin.svg -------------------------------------------------------------------------------- /src/img/assets/bnt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/bnt.svg -------------------------------------------------------------------------------- /src/img/assets/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/dash.svg -------------------------------------------------------------------------------- /src/img/assets/efyt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/efyt.svg -------------------------------------------------------------------------------- /src/img/assets/ergo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/ergo.svg -------------------------------------------------------------------------------- /src/img/assets/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/ethereum.svg -------------------------------------------------------------------------------- /src/img/assets/euro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/euro.svg -------------------------------------------------------------------------------- /src/img/assets/ltc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/ltc.svg -------------------------------------------------------------------------------- /src/img/assets/try.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/try.svg -------------------------------------------------------------------------------- /src/img/assets/usd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/usd.svg -------------------------------------------------------------------------------- /src/img/assets/waves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/waves.svg -------------------------------------------------------------------------------- /src/img/assets/west.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/west.svg -------------------------------------------------------------------------------- /src/img/assets/wnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/wnet.svg -------------------------------------------------------------------------------- /src/img/assets/xmr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/xmr.svg -------------------------------------------------------------------------------- /src/img/assets/zec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/assets/zec.svg -------------------------------------------------------------------------------- /src/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/favicon.ico -------------------------------------------------------------------------------- /src/img/icons/Closed-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/Closed-Dark.svg -------------------------------------------------------------------------------- /src/img/icons/actions-blue-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/actions-blue-active.svg -------------------------------------------------------------------------------- /src/img/icons/actions-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/actions-blue.svg -------------------------------------------------------------------------------- /src/img/icons/add-asset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/add-asset.svg -------------------------------------------------------------------------------- /src/img/icons/amount-modal-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/amount-modal-icon.svg -------------------------------------------------------------------------------- /src/img/icons/apple-store-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/apple-store-icon.svg -------------------------------------------------------------------------------- /src/img/icons/arrow-down-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/arrow-down-dark.svg -------------------------------------------------------------------------------- /src/img/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/arrow-down.svg -------------------------------------------------------------------------------- /src/img/icons/arrow-dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/arrow-dropdown.svg -------------------------------------------------------------------------------- /src/img/icons/arrow-expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/arrow-expand.svg -------------------------------------------------------------------------------- /src/img/icons/arrow-left-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/arrow-left-blue.svg -------------------------------------------------------------------------------- /src/img/icons/arrow-orderbook-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/arrow-orderbook-top.svg -------------------------------------------------------------------------------- /src/img/icons/arrow-right-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/arrow-right-hover.svg -------------------------------------------------------------------------------- /src/img/icons/arrow-right-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/arrow-right-white.svg -------------------------------------------------------------------------------- /src/img/icons/arrow-select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/arrow-select.svg -------------------------------------------------------------------------------- /src/img/icons/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/arrow_down.svg -------------------------------------------------------------------------------- /src/img/icons/attention-icon-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/attention-icon-red.svg -------------------------------------------------------------------------------- /src/img/icons/backup-password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/backup-password.svg -------------------------------------------------------------------------------- /src/img/icons/backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/backup.svg -------------------------------------------------------------------------------- /src/img/icons/bank-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/bank-success.svg -------------------------------------------------------------------------------- /src/img/icons/burn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/burn.svg -------------------------------------------------------------------------------- /src/img/icons/canceled_leasing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/canceled_leasing.svg -------------------------------------------------------------------------------- /src/img/icons/card-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/card-success.svg -------------------------------------------------------------------------------- /src/img/icons/check-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/check-arrow.svg -------------------------------------------------------------------------------- /src/img/icons/check-user-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/check-user-account.svg -------------------------------------------------------------------------------- /src/img/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/check.svg -------------------------------------------------------------------------------- /src/img/icons/checkbox-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/checkbox-icon.svg -------------------------------------------------------------------------------- /src/img/icons/close-24-basic500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/close-24-basic500.svg -------------------------------------------------------------------------------- /src/img/icons/close-tokenomica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/close-tokenomica.svg -------------------------------------------------------------------------------- /src/img/icons/close-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/close-white.svg -------------------------------------------------------------------------------- /src/img/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/close.svg -------------------------------------------------------------------------------- /src/img/icons/close_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/close_arrow.svg -------------------------------------------------------------------------------- /src/img/icons/contest-basic-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/contest-basic-700.svg -------------------------------------------------------------------------------- /src/img/icons/copy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/copy-icon.svg -------------------------------------------------------------------------------- /src/img/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/copy.svg -------------------------------------------------------------------------------- /src/img/icons/dark-add-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark-add-user.svg -------------------------------------------------------------------------------- /src/img/icons/dark/Contest-White.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/Contest-White.svg -------------------------------------------------------------------------------- /src/img/icons/dark/Step1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/Step1.svg -------------------------------------------------------------------------------- /src/img/icons/dark/add-asset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/add-asset.svg -------------------------------------------------------------------------------- /src/img/icons/dark/arrow-dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/arrow-dropdown.svg -------------------------------------------------------------------------------- /src/img/icons/dark/arrow-expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/arrow-expand.svg -------------------------------------------------------------------------------- /src/img/icons/dark/arrow-select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/arrow-select.svg -------------------------------------------------------------------------------- /src/img/icons/dark/card-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/card-success.svg -------------------------------------------------------------------------------- /src/img/icons/dark/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/close.svg -------------------------------------------------------------------------------- /src/img/icons/dark/close_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/close_arrow.svg -------------------------------------------------------------------------------- /src/img/icons/dark/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/copy.svg -------------------------------------------------------------------------------- /src/img/icons/dark/deposit-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/deposit-hover.svg -------------------------------------------------------------------------------- /src/img/icons/dark/deposit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/deposit.svg -------------------------------------------------------------------------------- /src/img/icons/dark/dex-copy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/dex-copy-icon.svg -------------------------------------------------------------------------------- /src/img/icons/dark/dex-icon-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/dex-icon-mini.svg -------------------------------------------------------------------------------- /src/img/icons/dark/dex-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/dex-star.svg -------------------------------------------------------------------------------- /src/img/icons/dark/dex-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/dex-toggle.svg -------------------------------------------------------------------------------- /src/img/icons/dark/double-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/double-arrow.svg -------------------------------------------------------------------------------- /src/img/icons/dark/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/download.svg -------------------------------------------------------------------------------- /src/img/icons/dark/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/fullscreen.svg -------------------------------------------------------------------------------- /src/img/icons/dark/hide-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/hide-icon.svg -------------------------------------------------------------------------------- /src/img/icons/dark/icon-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/icon-empty.svg -------------------------------------------------------------------------------- /src/img/icons/dark/icon-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/icon-error.svg -------------------------------------------------------------------------------- /src/img/icons/dark/icon-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/icon-filter.svg -------------------------------------------------------------------------------- /src/img/icons/dark/icon-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/icon-info.svg -------------------------------------------------------------------------------- /src/img/icons/dark/icon-sorting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/icon-sorting.svg -------------------------------------------------------------------------------- /src/img/icons/dark/info-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/info-icon.svg -------------------------------------------------------------------------------- /src/img/icons/dark/leasing_note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/leasing_note.svg -------------------------------------------------------------------------------- /src/img/icons/dark/menu/accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/menu/accounts.svg -------------------------------------------------------------------------------- /src/img/icons/dark/menu/alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/menu/alias.svg -------------------------------------------------------------------------------- /src/img/icons/dark/menu/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/menu/dashboard.svg -------------------------------------------------------------------------------- /src/img/icons/dark/menu/leasing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/menu/leasing.svg -------------------------------------------------------------------------------- /src/img/icons/dark/menu/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/menu/logout.svg -------------------------------------------------------------------------------- /src/img/icons/dark/menu/portfolio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/menu/portfolio.svg -------------------------------------------------------------------------------- /src/img/icons/dark/menu/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/menu/settings.svg -------------------------------------------------------------------------------- /src/img/icons/dark/qr-code-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/qr-code-big.svg -------------------------------------------------------------------------------- /src/img/icons/dark/seed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/seed.svg -------------------------------------------------------------------------------- /src/img/icons/dark/send-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/send-hover.svg -------------------------------------------------------------------------------- /src/img/icons/dark/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/send.svg -------------------------------------------------------------------------------- /src/img/icons/dark/show-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/show-icon.svg -------------------------------------------------------------------------------- /src/img/icons/dark/unpin-asset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/unpin-asset.svg -------------------------------------------------------------------------------- /src/img/icons/dark/waves_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dark/waves_logo.svg -------------------------------------------------------------------------------- /src/img/icons/deposit-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/deposit-hover.svg -------------------------------------------------------------------------------- /src/img/icons/deposit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/deposit.svg -------------------------------------------------------------------------------- /src/img/icons/dex-copy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-copy-icon.svg -------------------------------------------------------------------------------- /src/img/icons/dex-demo-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-demo-account.svg -------------------------------------------------------------------------------- /src/img/icons/dex-demo-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-demo-avatar.svg -------------------------------------------------------------------------------- /src/img/icons/dex-demo-dex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-demo-dex.svg -------------------------------------------------------------------------------- /src/img/icons/dex-demo-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-demo-settings.svg -------------------------------------------------------------------------------- /src/img/icons/dex-demo-tokens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-demo-tokens.svg -------------------------------------------------------------------------------- /src/img/icons/dex-demo-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-demo-wallet.svg -------------------------------------------------------------------------------- /src/img/icons/dex-icon-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-icon-mini.svg -------------------------------------------------------------------------------- /src/img/icons/dex-star-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-star-active.svg -------------------------------------------------------------------------------- /src/img/icons/dex-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-star.svg -------------------------------------------------------------------------------- /src/img/icons/dex-toggle-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-toggle-active.svg -------------------------------------------------------------------------------- /src/img/icons/dex-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/dex-toggle.svg -------------------------------------------------------------------------------- /src/img/icons/directed-icon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/directed-icon-dark.svg -------------------------------------------------------------------------------- /src/img/icons/directed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/directed-icon.svg -------------------------------------------------------------------------------- /src/img/icons/double-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/double-arrow.svg -------------------------------------------------------------------------------- /src/img/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/download.svg -------------------------------------------------------------------------------- /src/img/icons/downloaded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/downloaded.svg -------------------------------------------------------------------------------- /src/img/icons/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/drag.svg -------------------------------------------------------------------------------- /src/img/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/edit.svg -------------------------------------------------------------------------------- /src/img/icons/error-tooltip-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/error-tooltip-close.svg -------------------------------------------------------------------------------- /src/img/icons/eye-basic-200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/eye-basic-200.svg -------------------------------------------------------------------------------- /src/img/icons/eye-basic-600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/eye-basic-600.svg -------------------------------------------------------------------------------- /src/img/icons/eye-basic-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/eye-basic-900.svg -------------------------------------------------------------------------------- /src/img/icons/flags/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/br.svg -------------------------------------------------------------------------------- /src/img/icons/flags/de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/de.svg -------------------------------------------------------------------------------- /src/img/icons/flags/en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/en.svg -------------------------------------------------------------------------------- /src/img/icons/flags/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/es.svg -------------------------------------------------------------------------------- /src/img/icons/flags/est.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/est.svg -------------------------------------------------------------------------------- /src/img/icons/flags/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/fr.svg -------------------------------------------------------------------------------- /src/img/icons/flags/hi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/hi.svg -------------------------------------------------------------------------------- /src/img/icons/flags/id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/id.svg -------------------------------------------------------------------------------- /src/img/icons/flags/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/it.svg -------------------------------------------------------------------------------- /src/img/icons/flags/jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/jp.svg -------------------------------------------------------------------------------- /src/img/icons/flags/ko.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/ko.svg -------------------------------------------------------------------------------- /src/img/icons/flags/nl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/nl.svg -------------------------------------------------------------------------------- /src/img/icons/flags/pl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/pl.svg -------------------------------------------------------------------------------- /src/img/icons/flags/ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/ru.svg -------------------------------------------------------------------------------- /src/img/icons/flags/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/tr.svg -------------------------------------------------------------------------------- /src/img/icons/flags/zh-Hans-CN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/flags/zh-Hans-CN.svg -------------------------------------------------------------------------------- /src/img/icons/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/fullscreen.svg -------------------------------------------------------------------------------- /src/img/icons/fullscreenclose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/fullscreenclose.svg -------------------------------------------------------------------------------- /src/img/icons/google-play-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/google-play-icon.svg -------------------------------------------------------------------------------- /src/img/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/help.svg -------------------------------------------------------------------------------- /src/img/icons/hide-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/hide-icon.svg -------------------------------------------------------------------------------- /src/img/icons/icon-connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-connected.svg -------------------------------------------------------------------------------- /src/img/icons/icon-document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-document.svg -------------------------------------------------------------------------------- /src/img/icons/icon-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-empty.svg -------------------------------------------------------------------------------- /src/img/icons/icon-error-import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-error-import.svg -------------------------------------------------------------------------------- /src/img/icons/icon-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-error.svg -------------------------------------------------------------------------------- /src/img/icons/icon-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-filter.svg -------------------------------------------------------------------------------- /src/img/icons/icon-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-info.svg -------------------------------------------------------------------------------- /src/img/icons/icon-installed-el.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-installed-el.svg -------------------------------------------------------------------------------- /src/img/icons/icon-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-lock.svg -------------------------------------------------------------------------------- /src/img/icons/icon-orange-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-orange-alert.svg -------------------------------------------------------------------------------- /src/img/icons/icon-removeacc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-removeacc.svg -------------------------------------------------------------------------------- /src/img/icons/icon-search-dex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-search-dex.svg -------------------------------------------------------------------------------- /src/img/icons/icon-sorting-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-sorting-active.svg -------------------------------------------------------------------------------- /src/img/icons/icon-sorting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/icon-sorting.svg -------------------------------------------------------------------------------- /src/img/icons/info-14-basic-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/info-14-basic-700.svg -------------------------------------------------------------------------------- /src/img/icons/info-basic-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/info-basic-300.svg -------------------------------------------------------------------------------- /src/img/icons/info-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/info-icon.svg -------------------------------------------------------------------------------- /src/img/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/info.svg -------------------------------------------------------------------------------- /src/img/icons/input-invalid-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/input-invalid-icon.svg -------------------------------------------------------------------------------- /src/img/icons/input-password-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/input-password-icon.svg -------------------------------------------------------------------------------- /src/img/icons/input-search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/input-search-icon.svg -------------------------------------------------------------------------------- /src/img/icons/input-valid-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/input-valid-icon.svg -------------------------------------------------------------------------------- /src/img/icons/keeper-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/keeper-icon.svg -------------------------------------------------------------------------------- /src/img/icons/keeper-mini-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/keeper-mini-icon.svg -------------------------------------------------------------------------------- /src/img/icons/keystore-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/keystore-file.svg -------------------------------------------------------------------------------- /src/img/icons/komp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/komp.svg -------------------------------------------------------------------------------- /src/img/icons/leasing_note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/leasing_note.svg -------------------------------------------------------------------------------- /src/img/icons/ledger-cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/ledger-cancel.svg -------------------------------------------------------------------------------- /src/img/icons/ledger-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/ledger-ok.svg -------------------------------------------------------------------------------- /src/img/icons/ledger/Request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/ledger/Request.svg -------------------------------------------------------------------------------- /src/img/icons/ledger/Step1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/ledger/Step1.svg -------------------------------------------------------------------------------- /src/img/icons/ledger/ledger-apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/ledger/ledger-apps.svg -------------------------------------------------------------------------------- /src/img/icons/ledger/ledger-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/ledger/ledger-pin.svg -------------------------------------------------------------------------------- /src/img/icons/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/left.svg -------------------------------------------------------------------------------- /src/img/icons/lock-40-basic-200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/lock-40-basic-200.svg -------------------------------------------------------------------------------- /src/img/icons/lock-basic-200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/lock-basic-200.svg -------------------------------------------------------------------------------- /src/img/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/lock.svg -------------------------------------------------------------------------------- /src/img/icons/logo-alfa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/logo-alfa.svg -------------------------------------------------------------------------------- /src/img/icons/logo-beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/logo-beta.svg -------------------------------------------------------------------------------- /src/img/icons/logo-ledger-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/logo-ledger-white.svg -------------------------------------------------------------------------------- /src/img/icons/logo-ledger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/logo-ledger.svg -------------------------------------------------------------------------------- /src/img/icons/logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/logotype.svg -------------------------------------------------------------------------------- /src/img/icons/maintenance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/maintenance.svg -------------------------------------------------------------------------------- /src/img/icons/mastercard-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/mastercard-icon.svg -------------------------------------------------------------------------------- /src/img/icons/menu/accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/accounts.svg -------------------------------------------------------------------------------- /src/img/icons/menu/alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/alias.svg -------------------------------------------------------------------------------- /src/img/icons/menu/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/apple.svg -------------------------------------------------------------------------------- /src/img/icons/menu/arrow-down-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/arrow-down-12.svg -------------------------------------------------------------------------------- /src/img/icons/menu/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/arrow-down.svg -------------------------------------------------------------------------------- /src/img/icons/menu/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/arrow-right.svg -------------------------------------------------------------------------------- /src/img/icons/menu/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/dashboard.svg -------------------------------------------------------------------------------- /src/img/icons/menu/edit-basic-600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/edit-basic-600.svg -------------------------------------------------------------------------------- /src/img/icons/menu/leasing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/leasing.svg -------------------------------------------------------------------------------- /src/img/icons/menu/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/linux.svg -------------------------------------------------------------------------------- /src/img/icons/menu/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/logout.svg -------------------------------------------------------------------------------- /src/img/icons/menu/plus-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/plus-account.svg -------------------------------------------------------------------------------- /src/img/icons/menu/portfolio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/portfolio.svg -------------------------------------------------------------------------------- /src/img/icons/menu/qr-basic-600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/qr-basic-600.svg -------------------------------------------------------------------------------- /src/img/icons/menu/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/settings.svg -------------------------------------------------------------------------------- /src/img/icons/menu/transactions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/transactions.svg -------------------------------------------------------------------------------- /src/img/icons/menu/user-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/user-plus.svg -------------------------------------------------------------------------------- /src/img/icons/menu/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/menu/windows.svg -------------------------------------------------------------------------------- /src/img/icons/migrate-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/migrate-success.svg -------------------------------------------------------------------------------- /src/img/icons/mode-toggler-auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/mode-toggler-auto.svg -------------------------------------------------------------------------------- /src/img/icons/moving-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/moving-dark.svg -------------------------------------------------------------------------------- /src/img/icons/moving.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/moving.svg -------------------------------------------------------------------------------- /src/img/icons/order_cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/order_cancel.svg -------------------------------------------------------------------------------- /src/img/icons/orderbook-to-spread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/orderbook-to-spread.svg -------------------------------------------------------------------------------- /src/img/icons/paper-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/paper-dark.svg -------------------------------------------------------------------------------- /src/img/icons/paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/paper.svg -------------------------------------------------------------------------------- /src/img/icons/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/pin.svg -------------------------------------------------------------------------------- /src/img/icons/pinned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/pinned.svg -------------------------------------------------------------------------------- /src/img/icons/qr-code-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/qr-code-big.svg -------------------------------------------------------------------------------- /src/img/icons/qr-code-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/qr-code-small.svg -------------------------------------------------------------------------------- /src/img/icons/rating-basic-200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/rating-basic-200.svg -------------------------------------------------------------------------------- /src/img/icons/rating-submit-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/rating-submit-300.svg -------------------------------------------------------------------------------- /src/img/icons/screenshots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/screenshots.svg -------------------------------------------------------------------------------- /src/img/icons/script-warning-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/script-warning-icon.svg -------------------------------------------------------------------------------- /src/img/icons/scripted-mini-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/scripted-mini-icon.svg -------------------------------------------------------------------------------- /src/img/icons/search-basic-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/search-basic-500.svg -------------------------------------------------------------------------------- /src/img/icons/searching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/searching.svg -------------------------------------------------------------------------------- /src/img/icons/seed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/seed.svg -------------------------------------------------------------------------------- /src/img/icons/select-arrow-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/select-arrow-active.svg -------------------------------------------------------------------------------- /src/img/icons/select-arrow-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/select-arrow-black.svg -------------------------------------------------------------------------------- /src/img/icons/select-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/select-arrow.svg -------------------------------------------------------------------------------- /src/img/icons/settings-menu-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/settings-menu-icons.svg -------------------------------------------------------------------------------- /src/img/icons/show-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/show-icon.svg -------------------------------------------------------------------------------- /src/img/icons/sign-up-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/sign-up-black.svg -------------------------------------------------------------------------------- /src/img/icons/sign-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/sign-up.svg -------------------------------------------------------------------------------- /src/img/icons/slider-dex-260.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/slider-dex-260.svg -------------------------------------------------------------------------------- /src/img/icons/slider-token-260.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/slider-token-260.png -------------------------------------------------------------------------------- /src/img/icons/slider-wallet-260.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/slider-wallet-260.svg -------------------------------------------------------------------------------- /src/img/icons/smart-asset-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/smart-asset-marker.svg -------------------------------------------------------------------------------- /src/img/icons/sorting-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/sorting-arrow.svg -------------------------------------------------------------------------------- /src/img/icons/switcher-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/switcher-icon.svg -------------------------------------------------------------------------------- /src/img/icons/time-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/time-filled.svg -------------------------------------------------------------------------------- /src/img/icons/transaction-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/transaction-warning.svg -------------------------------------------------------------------------------- /src/img/icons/tutorial-modals/os.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/tutorial-modals/os.svg -------------------------------------------------------------------------------- /src/img/icons/tutorial-modals/url.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/tutorial-modals/url.svg -------------------------------------------------------------------------------- /src/img/icons/unpin-asset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/unpin-asset.svg -------------------------------------------------------------------------------- /src/img/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/user.svg -------------------------------------------------------------------------------- /src/img/icons/visa-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/visa-icon.svg -------------------------------------------------------------------------------- /src/img/icons/wallet-black-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/wallet-black-icon.svg -------------------------------------------------------------------------------- /src/img/icons/wallet-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/wallet-icon.svg -------------------------------------------------------------------------------- /src/img/icons/warning-basic-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/warning-basic-700.svg -------------------------------------------------------------------------------- /src/img/icons/waves-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/waves-30.svg -------------------------------------------------------------------------------- /src/img/icons/waves_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/waves_logo.svg -------------------------------------------------------------------------------- /src/img/icons/wavesdex-black-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/wavesdex-black-32.svg -------------------------------------------------------------------------------- /src/img/icons/wavesdex-invert-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/wavesdex-invert-32.svg -------------------------------------------------------------------------------- /src/img/icons/webcamerror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/webcamerror.svg -------------------------------------------------------------------------------- /src/img/icons/white-cancel-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/white-cancel-icon.svg -------------------------------------------------------------------------------- /src/img/icons/white_cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/white_cancel.svg -------------------------------------------------------------------------------- /src/img/icons/winner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/winner.svg -------------------------------------------------------------------------------- /src/img/icons/wsoc-notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/icons/wsoc-notification.svg -------------------------------------------------------------------------------- /src/img/landing/api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/api.svg -------------------------------------------------------------------------------- /src/img/landing/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/apple.svg -------------------------------------------------------------------------------- /src/img/landing/check-linear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/check-linear.svg -------------------------------------------------------------------------------- /src/img/landing/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/check.svg -------------------------------------------------------------------------------- /src/img/landing/contest-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/contest-bg.svg -------------------------------------------------------------------------------- /src/img/landing/create-token.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/create-token.svg -------------------------------------------------------------------------------- /src/img/landing/decentralized.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/decentralized.svg -------------------------------------------------------------------------------- /src/img/landing/dex-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/dex-screenshot.png -------------------------------------------------------------------------------- /src/img/landing/fees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/fees.svg -------------------------------------------------------------------------------- /src/img/landing/gateways.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/gateways.svg -------------------------------------------------------------------------------- /src/img/landing/ledger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/ledger.svg -------------------------------------------------------------------------------- /src/img/landing/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/linux.svg -------------------------------------------------------------------------------- /src/img/landing/mantle-linear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/mantle-linear.svg -------------------------------------------------------------------------------- /src/img/landing/schield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/schield.svg -------------------------------------------------------------------------------- /src/img/landing/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/wallet.svg -------------------------------------------------------------------------------- /src/img/landing/wavesdex-black-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/wavesdex-black-32.svg -------------------------------------------------------------------------------- /src/img/landing/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/landing/windows.svg -------------------------------------------------------------------------------- /src/img/logo-ledger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/logo-ledger.svg -------------------------------------------------------------------------------- /src/img/no-preload/chrome-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/no-preload/chrome-icon.svg -------------------------------------------------------------------------------- /src/img/no-preload/firefox-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/no-preload/firefox-icon.svg -------------------------------------------------------------------------------- /src/img/no-preload/opera-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/no-preload/opera-icon.svg -------------------------------------------------------------------------------- /src/img/no-preload/safari-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/img/no-preload/safari-icon.svg -------------------------------------------------------------------------------- /src/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/index.hbs -------------------------------------------------------------------------------- /src/modules/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/app.js -------------------------------------------------------------------------------- /src/modules/app/initialize/AppRun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/initialize/AppRun.js -------------------------------------------------------------------------------- /src/modules/app/less/app-icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/less/app-icons.less -------------------------------------------------------------------------------- /src/modules/app/less/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/less/app.less -------------------------------------------------------------------------------- /src/modules/app/less/classes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/less/classes.less -------------------------------------------------------------------------------- /src/modules/app/less/font.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/less/font.less -------------------------------------------------------------------------------- /src/modules/app/less/typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/less/typography.less -------------------------------------------------------------------------------- /src/modules/app/services/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/services/Queue.js -------------------------------------------------------------------------------- /src/modules/app/services/State.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/services/State.js -------------------------------------------------------------------------------- /src/modules/app/services/Themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/services/Themes.js -------------------------------------------------------------------------------- /src/modules/app/services/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/services/User.js -------------------------------------------------------------------------------- /src/modules/app/services/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/services/i18n.js -------------------------------------------------------------------------------- /src/modules/app/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/app/templates/main.html -------------------------------------------------------------------------------- /src/modules/config-classes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/config-classes.less -------------------------------------------------------------------------------- /src/modules/create/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/create/create.js -------------------------------------------------------------------------------- /src/modules/create/less/confirm-backup.less: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/modules/create/less/create.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/create/less/create.less -------------------------------------------------------------------------------- /src/modules/desktop/desktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/desktop/desktop.js -------------------------------------------------------------------------------- /src/modules/desktop/less/desktop.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/desktop/less/desktop.less -------------------------------------------------------------------------------- /src/modules/dex/dex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/dex/dex.js -------------------------------------------------------------------------------- /src/modules/dex/less/dex.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/dex/less/dex.less -------------------------------------------------------------------------------- /src/modules/dex/templates/dex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/dex/templates/dex.html -------------------------------------------------------------------------------- /src/modules/fromBackup/fromBackup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/fromBackup/fromBackup.js -------------------------------------------------------------------------------- /src/modules/import/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/import/import.js -------------------------------------------------------------------------------- /src/modules/keeper/keeper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/keeper/keeper.js -------------------------------------------------------------------------------- /src/modules/keeper/less/keeper.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/keeper/less/keeper.less -------------------------------------------------------------------------------- /src/modules/ledger/ledger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/ledger/ledger.js -------------------------------------------------------------------------------- /src/modules/ledger/less/ledger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/ledger/less/ledger.less -------------------------------------------------------------------------------- /src/modules/migrate/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/migrate/migrate.js -------------------------------------------------------------------------------- /src/modules/migrate/migrate.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/migrate/migrate.less -------------------------------------------------------------------------------- /src/modules/migration/migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/migration/migration.js -------------------------------------------------------------------------------- /src/modules/restore/less/restore.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/restore/less/restore.less -------------------------------------------------------------------------------- /src/modules/restore/restore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/restore/restore.js -------------------------------------------------------------------------------- /src/modules/saveSeed/saveSeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/saveSeed/saveSeed.js -------------------------------------------------------------------------------- /src/modules/sessions/sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/sessions/sessions.js -------------------------------------------------------------------------------- /src/modules/signIn/less/signIn.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/signIn/less/signIn.less -------------------------------------------------------------------------------- /src/modules/signIn/signIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/signIn/signIn.js -------------------------------------------------------------------------------- /src/modules/signUp/signUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/signUp/signUp.js -------------------------------------------------------------------------------- /src/modules/stand/less/stand.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/stand/less/stand.less -------------------------------------------------------------------------------- /src/modules/stand/stand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/stand/stand.js -------------------------------------------------------------------------------- /src/modules/switch/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/switch/switch.js -------------------------------------------------------------------------------- /src/modules/tokens/less/tokens.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/tokens/less/tokens.less -------------------------------------------------------------------------------- /src/modules/tokens/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/tokens/tokens.js -------------------------------------------------------------------------------- /src/modules/ui/directives/account-name/account-name.less: -------------------------------------------------------------------------------- 1 | w-account-name { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/modules/ui/directives/assetLogo/NewAssetLogo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/ui/directives/assetStatus/assetStatus.less: -------------------------------------------------------------------------------- 1 | w-asset-status { 2 | display: inline-flex; 3 | } 4 | -------------------------------------------------------------------------------- /src/modules/ui/directives/inputHelper/inputHelper.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/modules/ui/directives/loader/loader.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/modules/ui/directives/permit/permit.less: -------------------------------------------------------------------------------- 1 | w-permit { 2 | display: block; 3 | } -------------------------------------------------------------------------------- /src/modules/ui/directives/tabs/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/ui/directives/tabs/Tab.js -------------------------------------------------------------------------------- /src/modules/ui/directives/transaction/transaction-icon.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/modules/ui/directives/transaction/types/transfer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/ui/directives/transactionExport/transactionExport.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/ui/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/ui/ui.js -------------------------------------------------------------------------------- /src/modules/utils/modals/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/utils/modals/modal.less -------------------------------------------------------------------------------- /src/modules/utils/modals/script/script.less: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/modules/utils/services/Ease.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/utils/services/Ease.js -------------------------------------------------------------------------------- /src/modules/utils/services/Moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/utils/services/Moment.js -------------------------------------------------------------------------------- /src/modules/utils/services/Poll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/utils/services/Poll.js -------------------------------------------------------------------------------- /src/modules/utils/services/Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/utils/services/Router.js -------------------------------------------------------------------------------- /src/modules/utils/services/Storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/utils/services/Storage.js -------------------------------------------------------------------------------- /src/modules/utils/services/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/utils/services/utils.js -------------------------------------------------------------------------------- /src/modules/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/utils/utils.js -------------------------------------------------------------------------------- /src/modules/wallet/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/wallet/wallet.js -------------------------------------------------------------------------------- /src/modules/welcome/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/modules/welcome/welcome.js -------------------------------------------------------------------------------- /src/themeConfig/black/config.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/themeConfig/black/config.less -------------------------------------------------------------------------------- /src/themeConfig/black/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/themeConfig/black/icons.less -------------------------------------------------------------------------------- /src/themeConfig/candle-style.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/themeConfig/candle-style.hbs -------------------------------------------------------------------------------- /src/themeConfig/default/config.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/themeConfig/default/config.less -------------------------------------------------------------------------------- /src/themeConfig/default/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/themeConfig/default/icons.less -------------------------------------------------------------------------------- /src/themeConfig/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/src/themeConfig/theme.json -------------------------------------------------------------------------------- /tradingview-style/dark-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/tradingview-style/dark-style.css -------------------------------------------------------------------------------- /tradingview-style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/tradingview-style/style.css -------------------------------------------------------------------------------- /ts-scripts/commit-msg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/ts-scripts/commit-msg.ts -------------------------------------------------------------------------------- /ts-scripts/commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/ts-scripts/commit.ts -------------------------------------------------------------------------------- /ts-scripts/interface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/ts-scripts/interface.d.ts -------------------------------------------------------------------------------- /ts-scripts/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/ts-scripts/meta.json -------------------------------------------------------------------------------- /ts-scripts/pull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/ts-scripts/pull.ts -------------------------------------------------------------------------------- /ts-scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/ts-scripts/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendors/require-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/WavesGUI/HEAD/vendors/require-modules.js --------------------------------------------------------------------------------