├── .babelrc ├── .editorconfig ├── .env ├── .eslintignore ├── .eslintrc.js ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── stale.yml └── workflows │ ├── build.yml │ ├── compress.yml │ ├── draft-artifacts.yml │ ├── e2e.yml │ ├── format.yml │ ├── publish-release.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .svgo.yml ├── .testcafe-electron-rc.js ├── .testcaferc.json ├── .yarnrc ├── CODEOWNERS ├── CODING_STANDARDS.md ├── LICENSE ├── NAMING_CONVENTIONS.md ├── Procfile ├── README.md ├── app-update.yml ├── banner.png ├── config-overrides.js ├── custom.d.ts ├── entitlements.mac.plist ├── filePath ├── jest.setup.js ├── notAnImage.png ├── package.json ├── public └── index.html ├── scripts ├── generate-test-workflow.js ├── notarize.js └── version-artifacts.sh ├── src ├── app │ ├── App.test.tsx │ ├── App.tsx │ ├── PluginProviders.tsx │ ├── __snapshots__ │ │ └── App.test.tsx.snap │ ├── assets │ │ ├── background.png │ │ ├── fonts │ │ │ ├── Inter-Bold.otf │ │ │ ├── Inter-BoldItalic.otf │ │ │ ├── Inter-ExtraBold.otf │ │ │ ├── Inter-ExtraBoldItalic.otf │ │ │ ├── Inter-Italic.otf │ │ │ ├── Inter-Medium.otf │ │ │ ├── Inter-MediumItalic.otf │ │ │ ├── Inter-Regular.otf │ │ │ ├── Inter-SemiBold.otf │ │ │ └── Inter-SemiBoldItalic.otf │ │ ├── icons │ │ │ ├── 128x128.png │ │ │ ├── 256x256.png │ │ │ ├── 512x512.png │ │ │ ├── icon.icns │ │ │ └── icon.ico │ │ ├── images │ │ │ ├── ark-logo.svg │ │ │ ├── delete-banner-dark-blue.svg │ │ │ ├── delete-banner-dark-green.svg │ │ │ ├── delete-banner-light-blue.svg │ │ │ ├── delete-banner-light-green.svg │ │ │ ├── empty-notifications-dark-blue.svg │ │ │ ├── empty-notifications-dark-green.svg │ │ │ ├── empty-notifications-light-blue.svg │ │ │ ├── empty-notifications-light-green.svg │ │ │ ├── error-banner-dark-blue.svg │ │ │ ├── error-banner-dark-green.svg │ │ │ ├── error-banner-light-blue.svg │ │ │ ├── error-banner-light-green.svg │ │ │ ├── exchanges.svg │ │ │ ├── generic-warning-dark-blue.svg │ │ │ ├── generic-warning-dark-green.svg │ │ │ ├── generic-warning-light-blue.svg │ │ │ ├── generic-warning-light-green.svg │ │ │ ├── image-import.d.ts │ │ │ ├── index.ts │ │ │ ├── no-results-dark-blue.svg │ │ │ ├── no-results-dark-green.svg │ │ │ ├── no-results-light-blue.svg │ │ │ ├── no-results-light-green.svg │ │ │ ├── success-banner-dark-blue.svg │ │ │ ├── success-banner-dark-green.svg │ │ │ ├── success-banner-light-blue.svg │ │ │ ├── success-banner-light-green.svg │ │ │ ├── warning-banner-dark-blue.svg │ │ │ ├── warning-banner-dark-green.svg │ │ │ ├── warning-banner-light-blue.svg │ │ │ ├── warning-banner-light-green.svg │ │ │ ├── welcome-banner-dark-blue.svg │ │ │ ├── welcome-banner-dark-green.svg │ │ │ ├── welcome-banner-light-blue.svg │ │ │ └── welcome-banner-light-green.svg │ │ └── svg │ │ │ ├── alert-danger.svg │ │ │ ├── alert-default.svg │ │ │ ├── alert-hint.svg │ │ │ ├── alert-info.svg │ │ │ ├── alert-success.svg │ │ │ ├── alert-warning.svg │ │ │ ├── ark-logo.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── article.svg │ │ │ ├── awaiting-final-signature.svg │ │ │ ├── awaiting-other-signature.svg │ │ │ ├── awaiting-our-signature.svg │ │ │ ├── back.svg │ │ │ ├── blockfolio.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-up.svg │ │ │ ├── category.svg │ │ │ ├── chart-active-dot.svg │ │ │ ├── checkmark-big.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left-double.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right-double.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── close.svg │ │ │ ├── copy-address.svg │ │ │ ├── copy-key.svg │ │ │ ├── copy.svg │ │ │ ├── cross-slim.svg │ │ │ ├── currencies │ │ │ ├── ada.svg │ │ │ ├── ark.svg │ │ │ ├── atom.svg │ │ │ ├── avax.svg │ │ │ ├── bind.svg │ │ │ ├── bos.svg │ │ │ ├── btc.svg │ │ │ ├── dot.svg │ │ │ ├── egld.svg │ │ │ ├── eos.svg │ │ │ ├── eth.svg │ │ │ ├── index.ts │ │ │ ├── lsk.svg │ │ │ ├── luna.svg │ │ │ ├── meetone.svg │ │ │ ├── nano.svg │ │ │ ├── neo.svg │ │ │ ├── sol.svg │ │ │ ├── tlos.svg │ │ │ ├── trx.svg │ │ │ ├── wax.svg │ │ │ ├── wbi.svg │ │ │ ├── xlm.svg │ │ │ ├── xrp.svg │ │ │ └── zil.svg │ │ │ ├── dash.svg │ │ │ ├── delegate-resigned.svg │ │ │ ├── delegate.svg │ │ │ ├── download.svg │ │ │ ├── dwe-file.svg │ │ │ ├── edit.svg │ │ │ ├── entity.svg │ │ │ ├── exchange.svg │ │ │ ├── explorer.svg │ │ │ ├── export.svg │ │ │ ├── eye-off.svg │ │ │ ├── eye-tag.svg │ │ │ ├── eye.svg │ │ │ ├── file-password.svg │ │ │ ├── file.svg │ │ │ ├── filters.svg │ │ │ ├── forward.svg │ │ │ ├── general.svg │ │ │ ├── grant.svg │ │ │ ├── grid-view.svg │ │ │ ├── id.svg │ │ │ ├── import.svg │ │ │ ├── index.ts │ │ │ ├── information-circle.svg │ │ │ ├── ipfs.svg │ │ │ ├── json-file.svg │ │ │ ├── key.svg │ │ │ ├── ledger.svg │ │ │ ├── link.svg │ │ │ ├── list-view.svg │ │ │ ├── loader-logo.svg │ │ │ ├── lock.svg │ │ │ ├── magistrate.svg │ │ │ ├── memo.svg │ │ │ ├── msq.svg │ │ │ ├── multipayment.svg │ │ │ ├── multisignature.svg │ │ │ ├── notification.svg │ │ │ ├── official-ark-plugin.svg │ │ │ ├── open-explorer.svg │ │ │ ├── pagination-first.svg │ │ │ ├── pagination-last.svg │ │ │ ├── peer.svg │ │ │ ├── placeholder.svg │ │ │ ├── plus.svg │ │ │ ├── portfolio-tag.svg │ │ │ ├── portfolio.svg │ │ │ ├── profile.svg │ │ │ ├── qr-code.svg │ │ │ ├── questionmark.svg │ │ │ ├── received.svg │ │ │ ├── redirect.svg │ │ │ ├── reload.svg │ │ │ ├── reply-arrow.svg │ │ │ ├── report.svg │ │ │ ├── reset.svg │ │ │ ├── return.svg │ │ │ ├── search.svg │ │ │ ├── second-signature.svg │ │ │ ├── send.svg │ │ │ ├── sent.svg │ │ │ ├── settings-horizontal.svg │ │ │ ├── settings.svg │ │ │ ├── signature-status-ok.svg │ │ │ ├── signature-status-pending.svg │ │ │ ├── sort.svg │ │ │ ├── star-outline.svg │ │ │ ├── star.svg │ │ │ ├── stars-outline.svg │ │ │ ├── status-failed.svg │ │ │ ├── status-ok.svg │ │ │ ├── status-pending.svg │ │ │ ├── timelock.svg │ │ │ ├── transfer.svg │ │ │ ├── trash.svg │ │ │ ├── unvote.svg │ │ │ ├── update.svg │ │ │ ├── upload.svg │ │ │ ├── user.svg │ │ │ ├── verified.svg │ │ │ ├── vote-combination.svg │ │ │ ├── vote.svg │ │ │ └── voted.svg │ ├── components │ │ ├── Address │ │ │ ├── Address.test.tsx │ │ │ ├── Address.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Address.test.tsx.snap │ │ │ └── index.ts │ │ ├── Alert │ │ │ ├── Alert.test.tsx │ │ │ ├── Alert.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Alert.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Amount │ │ │ ├── Amount.contracts.ts │ │ │ ├── Amount.helpers.ts │ │ │ ├── Amount.test.tsx │ │ │ ├── Amount.tsx │ │ │ ├── AmountCrypto.test.tsx │ │ │ ├── AmountCrypto.tsx │ │ │ ├── AmountFiat.test.tsx │ │ │ ├── AmountFiat.tsx │ │ │ └── index.ts │ │ ├── Avatar │ │ │ ├── Avatar.test.tsx │ │ │ ├── Avatar.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Avatar.test.tsx.snap │ │ │ └── index.ts │ │ ├── Badge │ │ │ ├── Badge.styles.ts │ │ │ ├── Badge.test.tsx │ │ │ ├── Badge.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Badge.test.tsx.snap │ │ │ └── index.ts │ │ ├── Button │ │ │ ├── Button.styles.ts │ │ │ ├── Button.test.tsx │ │ │ ├── Button.tsx │ │ │ ├── OriginalButton.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Button.test.tsx.snap │ │ │ └── index.ts │ │ ├── ButtonGroup │ │ │ ├── ButtonGroup.test.tsx │ │ │ ├── ButtonGroup.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── ButtonGroup.test.tsx.snap │ │ │ ├── index.ts │ │ │ └── useSelectionState.tsx │ │ ├── Card │ │ │ ├── Card.styles.ts │ │ │ ├── Card.test.tsx │ │ │ ├── Card.tsx │ │ │ ├── CardControl.test.tsx │ │ │ ├── CardControl.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Card.test.tsx.snap │ │ │ │ └── CardControl.test.tsx.snap │ │ │ └── index.ts │ │ ├── Checkbox │ │ │ ├── Checkbox.styles.ts │ │ │ ├── Checkbox.test.tsx │ │ │ ├── Checkbox.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Checkbox.test.tsx.snap │ │ │ └── index.ts │ │ ├── Circle │ │ │ ├── Circle.styles.ts │ │ │ ├── Circle.test.tsx │ │ │ ├── Circle.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Circle.test.tsx.snap │ │ │ └── index.ts │ │ ├── CircularProgressBar │ │ │ ├── CircularProgressBar.test.tsx │ │ │ ├── CircularProgressBar.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── CircularProgressBar.test.tsx.snap │ │ │ └── index.ts │ │ ├── Clipboard │ │ │ ├── Clipboard.test.tsx │ │ │ ├── Clipboard.tsx │ │ │ ├── ClipboardButton.test.tsx │ │ │ ├── ClipboardButton.tsx │ │ │ ├── ClipboardIcon.test.tsx │ │ │ ├── ClipboardIcon.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Clipboard.test.tsx.snap │ │ │ └── index.ts │ │ ├── Collapse │ │ │ ├── Collapse.test.tsx │ │ │ ├── Collapse.tsx │ │ │ ├── CollapseToggleButton.test.tsx │ │ │ ├── CollapseToggleButton.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Collapse.test.tsx.snap │ │ │ │ └── CollapseToggleButton.test.tsx.snap │ │ │ └── index.ts │ │ ├── ConfirmationModal │ │ │ ├── ConfirmationModal.test.tsx │ │ │ ├── ConfirmationModal.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── ConfirmationModal.test.tsx.snap │ │ │ └── index.ts │ │ ├── ControlButton │ │ │ ├── ControlButton.test.tsx │ │ │ ├── ControlButton.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── ControlButton.test.tsx.snap │ │ │ └── index.ts │ │ ├── DeleteResource │ │ │ ├── DeleteResource.test.tsx │ │ │ ├── DeleteResource.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── DeleteResource.test.tsx.snap │ │ │ └── index.ts │ │ ├── Divider │ │ │ ├── Divider.styles.ts │ │ │ ├── Divider.test.tsx │ │ │ ├── Divider.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Divider.test.tsx.snap │ │ │ └── index.ts │ │ ├── Dropdown │ │ │ ├── Dropdown.styles.ts │ │ │ ├── Dropdown.test.tsx │ │ │ ├── Dropdown.tsx │ │ │ ├── DropdownItem.styles.ts │ │ │ ├── __snapshots__ │ │ │ │ └── Dropdown.test.tsx.snap │ │ │ └── index.ts │ │ ├── EmptyBlock │ │ │ ├── EmptyBlock.test.tsx │ │ │ ├── EmptyBlock.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── EmptyBlock.test.tsx.snap │ │ │ └── index.tsx │ │ ├── EmptyResults │ │ │ ├── EmptyResults.test.tsx │ │ │ ├── EmptyResults.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── EmptyResults.test.tsx.snap │ │ │ └── index.ts │ │ ├── FilterNetwork │ │ │ ├── FilterNetwork.test.tsx │ │ │ ├── FilterNetwork.tsx │ │ │ ├── NetworkOptions.tsx │ │ │ ├── ToggleAllOption.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── FilterNetwork.test.tsx.snap │ │ │ ├── index.ts │ │ │ └── models.ts │ │ ├── Form │ │ │ ├── Form.test.tsx │ │ │ ├── Form.tsx │ │ │ ├── FormField.test.tsx │ │ │ ├── FormField.tsx │ │ │ ├── FormHelperText.test.tsx │ │ │ ├── FormHelperText.tsx │ │ │ ├── FormLabel.test.tsx │ │ │ ├── FormLabel.tsx │ │ │ ├── SubForm.test.tsx │ │ │ ├── SubForm.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── FormHelperText.test.tsx.snap │ │ │ │ ├── FormLabel.test.tsx.snap │ │ │ │ └── SubForm.test.tsx.snap │ │ │ ├── index.tsx │ │ │ └── useFormField.tsx │ │ ├── Header │ │ │ ├── Header.test.tsx │ │ │ ├── Header.tsx │ │ │ ├── HeaderSearchBar │ │ │ │ ├── HeaderSearchBar.test.tsx │ │ │ │ ├── HeaderSearchBar.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── HeaderSearchBar.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── __snapshots__ │ │ │ │ └── Header.test.tsx.snap │ │ │ └── index.ts │ │ ├── Icon │ │ │ ├── Icon.test.tsx │ │ │ ├── Icon.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Icon.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Image │ │ │ ├── Image.test.tsx │ │ │ ├── Image.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Image.test.tsx.snap │ │ │ └── index.ts │ │ ├── Input │ │ │ ├── Input.test.tsx │ │ │ ├── Input.tsx │ │ │ ├── InputAddress.test.tsx │ │ │ ├── InputAddress.tsx │ │ │ ├── InputCounter.test.tsx │ │ │ ├── InputCounter.tsx │ │ │ ├── InputCurrency.test.tsx │ │ │ ├── InputCurrency.tsx │ │ │ ├── InputDefault.test.tsx │ │ │ ├── InputDefault.tsx │ │ │ ├── InputPassword.test.tsx │ │ │ ├── InputPassword.tsx │ │ │ ├── InputRange.test.tsx │ │ │ ├── InputRange.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Input.test.tsx.snap │ │ │ │ ├── InputAddress.test.tsx.snap │ │ │ │ ├── InputCounter.test.tsx.snap │ │ │ │ ├── InputCurrency.test.tsx.snap │ │ │ │ ├── InputDefault.test.tsx.snap │ │ │ │ ├── InputPassword.test.tsx.snap │ │ │ │ └── InputRange.test.tsx.snap │ │ │ ├── index.tsx │ │ │ └── utils.ts │ │ ├── Label │ │ │ ├── Label.styles.tsx │ │ │ ├── Label.test.tsx │ │ │ ├── Label.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Label.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Layout │ │ │ ├── components │ │ │ │ ├── Page │ │ │ │ │ ├── Page.test.tsx │ │ │ │ │ ├── Page.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── Page.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ └── Section │ │ │ │ │ ├── Section.test.tsx │ │ │ │ │ ├── Section.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Section.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ └── index.tsx │ │ ├── LayoutControls │ │ │ ├── LayoutControls.test.tsx │ │ │ ├── LayoutControls.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── LayoutControls.test.tsx.snap │ │ │ └── index.ts │ │ ├── LineChart │ │ │ ├── LineChart.styles.ts │ │ │ ├── LineChart.test.tsx │ │ │ ├── LineChart.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── LineChart.test.tsx.snap │ │ │ └── index.ts │ │ ├── Link │ │ │ ├── Link.test.tsx │ │ │ ├── Link.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Link.test.tsx.snap │ │ │ └── index.ts │ │ ├── ListDivided │ │ │ ├── ListDivided.test.tsx │ │ │ ├── ListDivided.tsx │ │ │ ├── ListDividedItem.test.tsx │ │ │ ├── ListDividedItem.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── ListDivided.test.tsx.snap │ │ │ │ └── ListDividedItem.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Loader │ │ │ ├── Loader.styles.ts │ │ │ ├── Loader.test.tsx │ │ │ ├── Loader.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Loader.test.tsx.snap │ │ │ └── index.ts │ │ ├── Modal │ │ │ ├── Modal.test.tsx │ │ │ ├── Modal.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Modal.test.tsx.snap │ │ │ ├── hooks.ts │ │ │ └── index.tsx │ │ ├── NavigationBar │ │ │ ├── NavigationBar.styles.ts │ │ │ ├── NavigationBar.test.tsx │ │ │ ├── NavigationBar.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── NavigationBar.test.tsx.snap │ │ │ ├── components │ │ │ │ ├── BackButton │ │ │ │ │ ├── BackButton.styles.ts │ │ │ │ │ ├── BackButton.test.tsx │ │ │ │ │ ├── BackButton.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── BackButton.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ └── Balance │ │ │ │ │ ├── Balance.test.tsx │ │ │ │ │ ├── Balance.tsx │ │ │ │ │ ├── BalanceSkeleton.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Balance.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ └── index.tsx │ │ ├── Notifications │ │ │ ├── NotificationItem.test.tsx │ │ │ ├── NotificationItem.tsx │ │ │ ├── NotificationTransactionItem.test.tsx │ │ │ ├── NotificationTransactionItem.tsx │ │ │ ├── Notifications.test.tsx │ │ │ ├── Notifications.tsx │ │ │ ├── NotificationsDropdown.test.tsx │ │ │ ├── NotificationsDropdown.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── NotificationItem.test.tsx.snap │ │ │ │ ├── NotificationTransactionItem.test.tsx.snap │ │ │ │ ├── Notifications.test.tsx.snap │ │ │ │ └── NotificationsDropdown.test.tsx.snap │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ ├── models.ts │ │ │ ├── styles.ts │ │ │ └── utils.ts │ │ ├── Pagination │ │ │ ├── Pagination.models.ts │ │ │ ├── Pagination.styles.ts │ │ │ ├── Pagination.test.tsx │ │ │ ├── Pagination.tsx │ │ │ ├── PaginationSearch.test.tsx │ │ │ ├── PaginationSearch.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Pagination.test.tsx.snap │ │ │ │ └── PaginationSearch.test.tsx.snap │ │ │ └── index.tsx │ │ ├── PercentageBar │ │ │ ├── PercentageBar.test.tsx │ │ │ ├── PercentageBar.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── PercentageBar.test.tsx.snap │ │ │ └── index.ts │ │ ├── RadioButton │ │ │ ├── RadioButton.styles.ts │ │ │ ├── RadioButton.test.tsx │ │ │ ├── RadioButton.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── RadioButton.test.tsx.snap │ │ │ └── index.ts │ │ ├── Range │ │ │ ├── Range.test.tsx │ │ │ ├── Range.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Range.test.tsx.snap │ │ │ └── index.ts │ │ ├── ReviewRating │ │ │ ├── ReviewRating.test.tsx │ │ │ ├── ReviewRating.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── ReviewRating.test.tsx.snap │ │ │ └── index.ts │ │ ├── SearchBar │ │ │ ├── SearchBar.test.tsx │ │ │ ├── SearchBar.tsx │ │ │ ├── SearchBarOptions │ │ │ │ ├── SearchBarOptions.test.tsx │ │ │ │ ├── SearchBarOptions.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SearchBarOptions.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── SearchBarPluginFilters │ │ │ │ ├── SearchBarPluginFilters.test.tsx │ │ │ │ ├── SearchBarPluginFilters.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SearchBarPluginFilters.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── __snapshots__ │ │ │ │ └── SearchBar.test.tsx.snap │ │ │ └── index.ts │ │ ├── Select │ │ │ ├── Select.test.tsx │ │ │ ├── Select.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Select.test.tsx.snap │ │ │ └── index.ts │ │ ├── SelectDropdown │ │ │ ├── SelectDropdown.test.tsx │ │ │ ├── SelectDropdown.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── SelectDropdown.test.tsx.snap │ │ │ ├── index.ts │ │ │ └── styles.ts │ │ ├── SelectFile │ │ │ ├── SelectFile.test.tsx │ │ │ ├── SelectFile.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── SelectFile.test.tsx.snap │ │ │ └── index.tsx │ │ ├── SelectProfileImage │ │ │ ├── SelectProfileImage.test.tsx │ │ │ ├── SelectProfileImage.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── SelectProfileImage.test.tsx.snap │ │ │ └── index.ts │ │ ├── SideBar │ │ │ ├── SideBar.test.tsx │ │ │ ├── SideBar.tsx │ │ │ ├── SideBarItem │ │ │ │ ├── SideBarItem.test.tsx │ │ │ │ ├── SideBarItem.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SideBarItem.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── SideBar.test.tsx.snap │ │ │ └── index.ts │ │ ├── Skeleton │ │ │ ├── Skeleton.test.tsx │ │ │ ├── Skeleton.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Skeleton.test.tsx.snap │ │ │ └── index.ts │ │ ├── Slider │ │ │ ├── Slider.test.tsx │ │ │ ├── Slider.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Slider.test.tsx.snap │ │ │ ├── hooks.ts │ │ │ └── index.ts │ │ ├── Spinner │ │ │ ├── Spinner.styles.ts │ │ │ ├── Spinner.test.tsx │ │ │ ├── Spinner.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Spinner.test.tsx.snap │ │ │ └── index.ts │ │ ├── StepIndicator │ │ │ ├── StepIndicator.test.tsx │ │ │ ├── StepIndicator.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── StepIndicator.test.tsx.snap │ │ │ └── index.ts │ │ ├── StepNavigation │ │ │ ├── StepNavigation.test.tsx │ │ │ ├── StepNavigation.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── StepNavigation.test.tsx.snap │ │ │ └── index.ts │ │ ├── Switch │ │ │ ├── Switch.test.tsx │ │ │ ├── Switch.tsx │ │ │ ├── SwitchText.style.ts │ │ │ ├── __snapshots__ │ │ │ │ └── Switch.test.tsx.snap │ │ │ └── index.ts │ │ ├── Table │ │ │ ├── Table.styles.ts │ │ │ ├── Table.test.tsx │ │ │ ├── Table.tsx │ │ │ ├── TableCell.styles.ts │ │ │ ├── TableCell.tsx │ │ │ ├── TableRow.styles.ts │ │ │ ├── TableRow.test.tsx │ │ │ ├── TableRow.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── Table.test.tsx.snap │ │ │ │ └── TableRow.test.tsx.snap │ │ │ └── index.ts │ │ ├── Tabs │ │ │ ├── Tabs.test.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Tabs.test.tsx.snap │ │ │ ├── index.tsx │ │ │ └── useTab.ts │ │ ├── TextArea │ │ │ ├── TextArea.test.tsx │ │ │ ├── TextArea.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── TextArea.test.tsx.snap │ │ │ └── index.ts │ │ ├── TimeAgo │ │ │ ├── TimeAgo.test.tsx │ │ │ ├── TimeAgo.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── TimeAgo.test.tsx.snap │ │ │ └── index.ts │ │ ├── Toggle │ │ │ ├── Toggle.test.tsx │ │ │ ├── Toggle.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Toggle.test.tsx.snap │ │ │ └── index.ts │ │ ├── Tooltip │ │ │ ├── Tooltip.styles.ts │ │ │ ├── Tooltip.test.tsx │ │ │ ├── Tooltip.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Tooltip.test.tsx.snap │ │ │ └── index.ts │ │ ├── TruncateEnd │ │ │ ├── TruncateEnd.test.tsx │ │ │ ├── TruncateEnd.tsx │ │ │ └── index.ts │ │ ├── TruncateMiddle │ │ │ ├── TruncateMiddle.test.tsx │ │ │ ├── TruncateMiddle.tsx │ │ │ └── index.ts │ │ ├── TruncateMiddleDynamic │ │ │ ├── TruncateMiddleDynamic.test.tsx │ │ │ ├── TruncateMiddleDynamic.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── TruncateMiddleDynamic.test.tsx.snap │ │ │ │ └── use-text-truncate.test.tsx.snap │ │ │ ├── index.ts │ │ │ ├── use-text-truncate.test.tsx │ │ │ └── use-text-truncate.ts │ │ ├── WalletCard │ │ │ ├── WalletCard.test.tsx │ │ │ ├── WalletCard.tsx │ │ │ ├── WalletCardSkeleton.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── WalletCard.test.tsx.snap │ │ │ └── index.ts │ │ ├── WalletIcons │ │ │ ├── WalletIcons.test.tsx │ │ │ ├── WalletIcons.tsx │ │ │ └── index.ts │ │ └── WalletListItem │ │ │ ├── WalletListItem.test.tsx │ │ │ ├── WalletListItem.tsx │ │ │ ├── WalletListItemSkeleton.test.tsx │ │ │ ├── WalletListItemSkeleton.tsx │ │ │ ├── __snapshots__ │ │ │ ├── WalletListItem.test.tsx.snap │ │ │ └── WalletListItemSkeleton.test.tsx.snap │ │ │ └── index.ts │ ├── contexts │ │ ├── Configuration │ │ │ ├── Configuration.test.tsx │ │ │ ├── Configuration.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Configuration.test.tsx.snap │ │ │ └── index.ts │ │ ├── Environment │ │ │ ├── Environment.test.tsx │ │ │ ├── Environment.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Environment.test.tsx.snap │ │ │ └── index.ts │ │ ├── Ledger │ │ │ ├── Ledger.tsx │ │ │ ├── hooks │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── scanner.test.tsx.snap │ │ │ │ ├── connection.state.ts │ │ │ │ ├── connection.test.tsx │ │ │ │ ├── connection.ts │ │ │ │ ├── scanner.state.test.tsx │ │ │ │ ├── scanner.state.ts │ │ │ │ ├── scanner.test.tsx │ │ │ │ └── scanner.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ └── index.ts │ ├── hooks │ │ ├── click-outside.test.tsx │ │ ├── click-outside.ts │ │ ├── debounce.test.tsx │ │ ├── debounce.ts │ │ ├── env.test.tsx │ │ ├── env.ts │ │ ├── index.ts │ │ ├── network-status.test.tsx │ │ ├── network-status.ts │ │ ├── use-clipboard.ts │ │ ├── use-deeplink.test.tsx │ │ ├── use-deeplink.ts │ │ ├── use-env-synchronizer.test.tsx │ │ ├── use-env-synchronizer.ts │ │ ├── use-exchange-rate.test.tsx │ │ ├── use-exchange-rate.ts │ │ ├── use-fees.test.tsx │ │ ├── use-fees.ts │ │ ├── use-files.test.tsx │ │ ├── use-files.ts │ │ ├── use-network-options.test.tsx │ │ ├── use-network-options.ts │ │ ├── use-notifications.test.tsx │ │ ├── use-notifications.ts │ │ ├── use-previous.test.tsx │ │ ├── use-previous.ts │ │ ├── use-profile-balance.test.tsx │ │ ├── use-profile-balance.ts │ │ ├── use-profile-synchronizer.test.tsx │ │ ├── use-profile-synchronizer.ts │ │ ├── use-profile-utils.test.tsx │ │ ├── use-profile-utils.ts │ │ ├── use-query-params.test.tsx │ │ ├── use-query-params.ts │ │ ├── use-random-number.test.ts │ │ ├── use-random-number.ts │ │ ├── use-reload-path.test.tsx │ │ ├── use-reload-path.ts │ │ ├── use-screenshot-protection.test.ts │ │ ├── use-screenshot-protection.ts │ │ ├── use-scroll.test.tsx │ │ ├── use-scroll.tsx │ │ ├── use-synchronizer.test.tsx │ │ ├── use-synchronizer.ts │ │ ├── use-theme.test.tsx │ │ ├── use-theme.ts │ │ ├── use-time-format.test.tsx │ │ ├── use-time-format.tsx │ │ ├── use-updater.test.tsx │ │ ├── use-updater.ts │ │ ├── use-validation.test.tsx │ │ ├── use-validation.ts │ │ ├── use-wallet-alias.test.tsx │ │ └── use-wallet-alias.tsx │ ├── i18n │ │ ├── common │ │ │ └── i18n.ts │ │ ├── helpers │ │ │ └── index.ts │ │ └── index.ts │ ├── index.tsx │ ├── sentry │ │ ├── SentryErrorBoundary.tsx │ │ ├── SentryProvider.test.tsx │ │ ├── SentryProvider.tsx │ │ ├── SentryRouterWrapper.test.tsx │ │ └── SentryRouterWrapper.tsx │ ├── services │ │ ├── Cache.test.ts │ │ ├── Cache.ts │ │ ├── HttpClient.test.ts │ │ ├── HttpClient.ts │ │ ├── ToastService.test.tsx │ │ ├── ToastService.tsx │ │ └── index.tsx │ └── validations │ │ ├── password.test.tsx │ │ └── password.ts ├── data │ ├── index.ts │ └── platform-sdk.ts ├── domains │ ├── contact │ │ ├── __snapshots__ │ │ │ └── routing.test.tsx.snap │ │ ├── components │ │ │ ├── ContactForm │ │ │ │ ├── ContactForm.test.tsx │ │ │ │ ├── ContactForm.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ContactForm.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── ContactListItem │ │ │ │ ├── ContactListItem.models.ts │ │ │ │ ├── ContactListItem.test.tsx │ │ │ │ ├── ContactListItem.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ContactListItem.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── CreateContact │ │ │ │ ├── CreateContact.test.tsx │ │ │ │ ├── CreateContact.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── CreateContact.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── DeleteContact │ │ │ │ ├── DeleteContact.test.tsx │ │ │ │ ├── DeleteContact.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── DeleteContact.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── UpdateContact │ │ │ │ ├── UpdateContact.test.tsx │ │ │ │ ├── UpdateContact.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── UpdateContact.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── e2e │ │ │ ├── common.ts │ │ │ ├── contacts-routing.e2e.ts │ │ │ ├── create-contact.e2e.ts │ │ │ ├── delete-contact.e2e.ts │ │ │ └── update-contact.e2e.ts │ │ ├── i18n.ts │ │ ├── pages │ │ │ ├── Contacts │ │ │ │ ├── Contacts.test.tsx │ │ │ │ ├── Contacts.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Contacts.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── routing.test.tsx │ │ └── routing.ts │ ├── dashboard │ │ ├── components │ │ │ ├── FilterWallets │ │ │ │ ├── FilterWallets.test.tsx │ │ │ │ ├── FilterWallets.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── FilterWallets.test.tsx.snap │ │ │ │ ├── hooks.test.tsx │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.ts │ │ │ │ └── models.ts │ │ │ ├── PortfolioChart │ │ │ │ ├── PortfolioChart.test.tsx │ │ │ │ ├── PortfolioChart.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PortfolioChart.test.tsx.snap │ │ │ │ ├── hooks.test.tsx │ │ │ │ ├── hooks.ts │ │ │ │ └── index.tsx │ │ │ ├── Wallets │ │ │ │ ├── Wallets.test.tsx │ │ │ │ ├── Wallets.tsx │ │ │ │ ├── WalletsGrid.test.tsx │ │ │ │ ├── WalletsGrid.tsx │ │ │ │ ├── WalletsList.test.tsx │ │ │ │ ├── WalletsList.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── Wallets.test.tsx.snap │ │ │ │ │ └── WalletsList.test.tsx.snap │ │ │ │ ├── hooks.test.tsx │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.tsx │ │ │ │ └── models.ts │ │ │ └── WalletsControls │ │ │ │ ├── WalletsControls.test.tsx │ │ │ │ ├── WalletsControls.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── WalletsControls.test.tsx.snap │ │ │ │ └── index.tsx │ │ ├── e2e │ │ │ ├── dashboard-routing.e2e.ts │ │ │ └── navbar-routing.e2e.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── use-tutorial.test.tsx │ │ │ ├── use-tutorial.ts │ │ │ ├── use-wallet-config.test.tsx │ │ │ └── use-wallet-config.ts │ │ ├── i18n.ts │ │ ├── pages │ │ │ ├── Dashboard │ │ │ │ ├── Dashboard.test.tsx │ │ │ │ ├── Dashboard.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Dashboard.test.tsx.snap │ │ │ │ ├── index.tsx │ │ │ │ └── models.ts │ │ │ └── index.ts │ │ ├── routing.test.tsx │ │ └── routing.ts │ ├── error │ │ ├── i18n.ts │ │ ├── images │ │ │ ├── connection-error-dark-blue.svg │ │ │ ├── connection-error-dark-green.svg │ │ │ ├── connection-error-light-blue.svg │ │ │ ├── connection-error-light-green.svg │ │ │ ├── generic-error-dark-blue.svg │ │ │ ├── generic-error-dark-green.svg │ │ │ ├── generic-error-light-blue.svg │ │ │ ├── generic-error-light-green.svg │ │ │ └── index.ts │ │ └── pages │ │ │ ├── ApplicationError │ │ │ ├── ApplicationError.test.tsx │ │ │ ├── ApplicationError.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── ApplicationError.test.tsx.snap │ │ │ └── index.ts │ │ │ ├── Offline │ │ │ ├── Offline.test.tsx │ │ │ ├── Offline.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Offline.test.tsx.snap │ │ │ └── index.ts │ │ │ └── index.ts │ ├── exchange │ │ ├── components │ │ │ ├── AddExchange │ │ │ │ ├── AddExchange.test.tsx │ │ │ │ ├── AddExchange.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── AddExchange.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── ExchangeCard │ │ │ │ ├── ExchangeCard.test.tsx │ │ │ │ ├── ExchangeCard.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ExchangeCard.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── ExchangeGrid │ │ │ │ ├── ExchangeGrid.test.tsx │ │ │ │ ├── ExchangeGrid.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── ExchangeGrid.test.tsx.snap │ │ │ │ └── index.ts │ │ ├── i18n.ts │ │ ├── pages │ │ │ ├── Exchange │ │ │ │ ├── Exchange.test.tsx │ │ │ │ ├── Exchange.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Exchange.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── routing.test.tsx │ │ └── routing.ts │ ├── network │ │ ├── components │ │ │ ├── NetworkIcon │ │ │ │ ├── NetworkIcon.test.tsx │ │ │ │ ├── NetworkIcon.tsx │ │ │ │ └── index.ts │ │ │ ├── NetworkOption │ │ │ │ ├── NetworkOption.test.tsx │ │ │ │ ├── NetworkOption.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── NetworkOption.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── SelectNetwork │ │ │ │ ├── SelectNetwork.test.tsx │ │ │ │ ├── SelectNetwork.tsx │ │ │ │ ├── SelectNetworkInput.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── SelectNetwork.test.tsx.snap │ │ │ │ └── index.ts │ │ ├── data.ts │ │ └── helpers.ts │ ├── news │ │ ├── components │ │ │ ├── AddAssets │ │ │ │ ├── AddAssets.test.tsx │ │ │ │ ├── AddAssets.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── AddAssets.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── BlockfolioAd │ │ │ │ ├── BlockfolioAd.test.tsx │ │ │ │ ├── BlockfolioAd.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── BlockfolioAd.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── NewsCard │ │ │ │ ├── NewsCard.test.tsx │ │ │ │ ├── NewsCard.tsx │ │ │ │ ├── NewsCardSkeleton.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── NewsCard.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ └── NewsOptions │ │ │ │ ├── NewsOptions.test.tsx │ │ │ │ ├── NewsOptions.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── NewsOptions.test.tsx.snap │ │ │ │ ├── components │ │ │ │ └── SelectCategory │ │ │ │ │ ├── SelectCategory.test.tsx │ │ │ │ │ ├── SelectCategory.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SelectCategory.test.tsx.snap │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ ├── data.ts │ │ ├── e2e │ │ │ ├── common.ts │ │ │ ├── filtering.e2e.ts │ │ │ └── news-routing.e2e.ts │ │ ├── i18n.ts │ │ ├── images │ │ │ ├── blockfolio-banner.png │ │ │ ├── download-app-store.svg │ │ │ ├── download-google-play.svg │ │ │ └── index.ts │ │ ├── pages │ │ │ ├── News │ │ │ │ ├── News.test.tsx │ │ │ │ ├── News.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── News.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── routing.test.tsx │ │ └── routing.ts │ ├── plugin │ │ ├── __snapshots__ │ │ │ └── routing.test.tsx.snap │ │ ├── components │ │ │ ├── InstallPlugin │ │ │ │ ├── InstallPlugin.test.tsx │ │ │ │ ├── InstallPlugin.tsx │ │ │ │ ├── Step1.tsx │ │ │ │ ├── Step2.tsx │ │ │ │ ├── Step3.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── InstallPlugin.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── ManualInstallationDisclaimer │ │ │ │ ├── ManualInstallationDisclaimer.test.tsx │ │ │ │ ├── ManualInstallationDisclaimer.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ManualInstallationDisclaimer.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PluginCard │ │ │ │ ├── PluginCard.test.tsx │ │ │ │ ├── PluginCard.tsx │ │ │ │ ├── PluginCardSkeleton.test.tsx │ │ │ │ ├── PluginCardSkeleton.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── PluginCard.test.tsx.snap │ │ │ │ │ └── PluginCardSkeleton.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PluginGrid │ │ │ │ ├── PluginGrid.test.tsx │ │ │ │ ├── PluginGrid.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginGrid.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PluginHeader │ │ │ │ ├── PluginHeader.test.tsx │ │ │ │ ├── PluginHeader.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginHeader.test.tsx.snap │ │ │ │ ├── components │ │ │ │ │ └── PluginSpecs │ │ │ │ │ │ ├── PluginSpecs.test.tsx │ │ │ │ │ │ ├── PluginSpecs.tsx │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── PluginSpecs.test.tsx.snap │ │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── PluginImage │ │ │ │ ├── PluginImage.styles.ts │ │ │ │ ├── PluginImage.test.tsx │ │ │ │ ├── PluginImage.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginImage.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PluginInfo │ │ │ │ ├── PluginInfo.test.tsx │ │ │ │ ├── PluginInfo.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginInfo.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PluginList │ │ │ │ ├── PluginList.test.tsx │ │ │ │ ├── PluginList.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginList.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PluginListItem │ │ │ │ ├── PluginListItem.test.tsx │ │ │ │ ├── PluginListItem.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginListItem.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PluginManagerControls │ │ │ │ ├── PluginManagerControls.test.tsx │ │ │ │ ├── PluginManagerControls.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginManagerControls.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PluginManagerNavigationBar │ │ │ │ ├── PluginManagerNavigationBar.test.tsx │ │ │ │ ├── PluginManagerNavigationBar.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginManagerNavigationBar.test.tsx.snap │ │ │ │ ├── index.ts │ │ │ │ └── styles.ts │ │ │ ├── PluginManualInstallModal │ │ │ │ ├── PluginManualInstallModal.test.tsx │ │ │ │ ├── PluginManualInstallModal.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginManualInstallModal.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PluginPermissionsModal │ │ │ │ ├── PluginPermissionsModal.test.tsx │ │ │ │ ├── PluginPermissionsModal.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── PluginPermissionsModal.test.tsx.snap │ │ │ ├── PluginUninstallConfirmation │ │ │ │ ├── PluginUninstallConfirmation.test.tsx │ │ │ │ ├── PluginUninstallConfirmation.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── PluginUninstallConfirmation.test.tsx.snap │ │ │ └── PluginUpdatesConfirmation │ │ │ │ ├── PluginUpdatesConfirmation.test.tsx │ │ │ │ ├── PluginUpdatesConfirmation.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── PluginUpdatesConfirmation.test.tsx.snap │ │ │ │ └── index.ts │ │ ├── data.ts │ │ ├── e2e │ │ │ ├── common.ts │ │ │ └── plugins-routing.e2e.ts │ │ ├── hooks │ │ │ ├── use-plugin-update-queue.test.tsx │ │ │ └── use-plugin-update-queue.ts │ │ ├── i18n.ts │ │ ├── images │ │ │ ├── index.ts │ │ │ └── plugin-logo-placeholder.svg │ │ ├── pages │ │ │ ├── PluginDetails │ │ │ │ ├── PluginDetails.test.tsx │ │ │ │ ├── PluginDetails.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginDetails.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PluginManager │ │ │ │ ├── PluginManager.test.tsx │ │ │ │ ├── PluginManager.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginManager.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── PluginView │ │ │ │ ├── PluginView.test.tsx │ │ │ │ ├── PluginView.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PluginView.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── routing.test.tsx │ │ └── routing.ts │ ├── profile │ │ ├── components │ │ │ ├── DeleteProfile │ │ │ │ ├── DeleteProfile.test.tsx │ │ │ │ ├── DeleteProfile.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── DeleteProfile.test.tsx.snap │ │ │ ├── FilePreview │ │ │ │ ├── FilePreview.test.tsx │ │ │ │ ├── FilePreview.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── FilePreview.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── PasswordModal │ │ │ │ ├── PasswordModal.test.tsx │ │ │ │ ├── PasswordModal.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── PasswordModal.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── ProfileAvatar │ │ │ │ ├── ProfileAvatar.test.tsx │ │ │ │ ├── ProfileAvatar.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ProfileAvatar.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── ProfileCard │ │ │ │ ├── ProfileCard.test.tsx │ │ │ │ ├── ProfileCard.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ProfileCard.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── ProfileCreated │ │ │ │ ├── ProfileCreated.test.tsx │ │ │ │ ├── ProfileCreated.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ProfileCreated.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── ResetProfile │ │ │ │ ├── ResetProfile.test.tsx │ │ │ │ ├── ResetProfile.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ResetProfile.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── SelectAddress │ │ │ │ ├── SelectAddress.styles.ts │ │ │ │ ├── SelectAddress.test.tsx │ │ │ │ ├── SelectAddress.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SelectAddress.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── SelectRecipient │ │ │ │ ├── SelectRecipient.test.tsx │ │ │ │ ├── SelectRecipient.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SelectRecipient.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── SignIn │ │ │ │ ├── SignIn.test.tsx │ │ │ │ ├── SignIn.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── SignIn.test.tsx.snap │ │ │ │ └── index.ts │ │ ├── data.ts │ │ ├── e2e │ │ │ ├── common.ts │ │ │ ├── create-profile-action.e2e.ts │ │ │ ├── create-profile-routing.e2e.ts │ │ │ ├── delete-profile-action.e2e.ts │ │ │ ├── navigate-profile-settings.e2e.ts │ │ │ ├── notifications.e2e.ts │ │ │ └── welcome-screen.e2e.ts │ │ ├── hooks │ │ │ ├── use-profile-addresses.test.tsx │ │ │ ├── use-profile-addresses.ts │ │ │ ├── use-profile-import.test.tsx │ │ │ └── use-profile-import.ts │ │ ├── i18n.ts │ │ ├── images │ │ │ ├── index.tsx │ │ │ ├── profile-created-banner-dark-blue.svg │ │ │ ├── profile-created-banner-dark-green.svg │ │ │ ├── profile-created-banner-light-blue.svg │ │ │ └── profile-created-banner-light-green.svg │ │ ├── pages │ │ │ ├── CreateProfile │ │ │ │ ├── CreateProfile.test.tsx │ │ │ │ ├── CreateProfile.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── CreateProfile.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── ImportProfile │ │ │ │ ├── ErrorStep.test.tsx │ │ │ │ ├── ErrorStep.tsx │ │ │ │ ├── ImportProfile.test.tsx │ │ │ │ ├── ImportProfile.tsx │ │ │ │ ├── ProcessingImportStep.test.tsx │ │ │ │ ├── ProcessingImportStep.tsx │ │ │ │ ├── ProfileFormStep.test.tsx │ │ │ │ ├── ProfileFormStep.tsx │ │ │ │ ├── SelectFileStep.test.tsx │ │ │ │ ├── SelectFileStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── ErrorStep.test.tsx.snap │ │ │ │ │ ├── ImportProfile.test.tsx.snap │ │ │ │ │ ├── ProcessingImportStep.test.tsx.snap │ │ │ │ │ ├── ProfileFormStep.test.tsx.snap │ │ │ │ │ └── SelectFileStep.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── Welcome │ │ │ │ ├── Welcome.test.tsx │ │ │ │ ├── Welcome.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Welcome.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── routing.test.tsx │ │ ├── routing.ts │ │ └── validations │ │ │ ├── CreateProfile.ts │ │ │ └── index.ts │ ├── setting │ │ ├── components │ │ │ ├── DevelopmentNetwork │ │ │ │ ├── DevelopmentNetwork.test.tsx │ │ │ │ ├── DevelopmentNetwork.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── DevelopmentNetwork.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── SettingsPageWrapper │ │ │ │ ├── SettingsPageWrapper.tsx │ │ │ │ └── index.tsx │ │ ├── e2e │ │ │ ├── common.ts │ │ │ ├── reset-profile.e2e.ts │ │ │ ├── save-settings.e2e.ts │ │ │ └── settings-routing.e2e.ts │ │ ├── hooks │ │ │ ├── use-profile-export.test.tsx │ │ │ ├── use-profile-export.ts │ │ │ ├── use-settings-menu.ts │ │ │ └── use-settings-prompt.ts │ │ ├── i18n.ts │ │ ├── pages │ │ │ ├── Export │ │ │ │ ├── Export.test.tsx │ │ │ │ ├── Export.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Export.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── General │ │ │ │ ├── General.test.tsx │ │ │ │ ├── General.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── General.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── Password │ │ │ │ ├── Password.test.tsx │ │ │ │ ├── Password.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Password.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── routing.test.tsx │ │ ├── routing.ts │ │ └── validations │ │ │ ├── Settings.ts │ │ │ └── index.ts │ ├── splash │ │ ├── e2e │ │ │ └── splash-screen.e2e.ts │ │ ├── i18n.ts │ │ └── pages │ │ │ ├── Splash │ │ │ ├── Splash.test.tsx │ │ │ ├── Splash.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Splash.test.tsx.snap │ │ │ └── index.ts │ │ │ └── index.ts │ ├── transaction │ │ ├── components │ │ │ ├── AddRecipient │ │ │ │ ├── AddRecipient.models.ts │ │ │ │ ├── AddRecipient.styles.ts │ │ │ │ ├── AddRecipient.test.tsx │ │ │ │ ├── AddRecipient.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── AddRecipient.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── AuthenticationStep │ │ │ │ ├── AuthenticationStep.test.tsx │ │ │ │ ├── AuthenticationStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── AuthenticationStep.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── ConfirmSendTransaction │ │ │ │ ├── ConfirmSendTransaction.test.tsx │ │ │ │ ├── ConfirmSendTransaction.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ConfirmSendTransaction.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── DelegateRegistrationDetail │ │ │ │ ├── DelegateRegistrationDetail.test.tsx │ │ │ │ ├── DelegateRegistrationDetail.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── DelegateRegistrationDetail.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── DelegateRegistrationForm │ │ │ │ ├── DelegateRegistrationForm.test.tsx │ │ │ │ ├── DelegateRegistrationForm.tsx │ │ │ │ ├── FormStep.tsx │ │ │ │ ├── ReviewStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── DelegateRegistrationForm.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── DelegateResignationDetail │ │ │ │ ├── DelegateResignationDetail.test.tsx │ │ │ │ ├── DelegateResignationDetail.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── DelegateResignationDetail.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── ErrorStep │ │ │ │ ├── ErrorStep.test.tsx │ │ │ │ ├── ErrorStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ErrorStep.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── FeeWarning │ │ │ │ ├── FeeWarning.test.tsx │ │ │ │ ├── FeeWarning.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── FeeWarning.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── FilterTransactions │ │ │ │ ├── FilterTransactions.test.tsx │ │ │ │ ├── FilterTransactions.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── FilterTransactions.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── InputFee │ │ │ │ ├── InputFee.blocks.tsx │ │ │ │ ├── InputFee.contracts.ts │ │ │ │ ├── InputFee.test.tsx │ │ │ │ ├── InputFee.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── InputFee.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── IpfsDetail │ │ │ │ ├── IpfsDetail.test.tsx │ │ │ │ ├── IpfsDetail.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── IpfsDetail.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── LedgerConfirmation │ │ │ │ ├── LedgerConfirmation.test.tsx │ │ │ │ ├── LedgerConfirmation.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── LedgerConfirmation.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── LegacyMagistrateDetail │ │ │ │ ├── LegacyMagistrateDetail.test.tsx │ │ │ │ ├── LegacyMagistrateDetail.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── LegacyMagistrateDetail.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── MultiPaymentDetail │ │ │ │ ├── MultiPaymentDetail.test.tsx │ │ │ │ ├── MultiPaymentDetail.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── MultiPaymentDetail.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── MultiSignatureDetail │ │ │ │ ├── MultiSignatureDetail.test.tsx │ │ │ │ ├── MultiSignatureDetail.tsx │ │ │ │ ├── MultiSignatureRegistrationDetail.test.tsx │ │ │ │ ├── MultiSignatureRegistrationDetail.tsx │ │ │ │ ├── SentStep.tsx │ │ │ │ ├── Signatures.test.tsx │ │ │ │ ├── Signatures.tsx │ │ │ │ ├── SummaryStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── MultiSignatureDetail.test.tsx.snap │ │ │ │ │ ├── MultiSignatureRegistrationDetail.test.tsx.snap │ │ │ │ │ └── Signatures.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── MultiSignatureRegistrationForm │ │ │ │ ├── FormStep.tsx │ │ │ │ ├── MultiSignatureRegistrationForm.test.tsx │ │ │ │ ├── MultiSignatureRegistrationForm.tsx │ │ │ │ ├── ReviewStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── MultiSignatureRegistrationForm.test.tsx.snap │ │ │ │ ├── components │ │ │ │ │ └── AddParticipant │ │ │ │ │ │ ├── AddParticipant.test.tsx │ │ │ │ │ │ ├── AddParticipant.tsx │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── AddParticipant.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── RecipientList │ │ │ │ ├── RecipientList.models.ts │ │ │ │ ├── RecipientList.styles.ts │ │ │ │ ├── RecipientList.test.tsx │ │ │ │ ├── RecipientList.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── RecipientList.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── SearchRecipient │ │ │ │ ├── SearchRecipient.test.tsx │ │ │ │ ├── SearchRecipient.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SearchRecipient.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── SecondSignatureDetail │ │ │ │ ├── SecondSignatureDetail.test.tsx │ │ │ │ ├── SecondSignatureDetail.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SecondSignatureDetail.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── SecondSignatureRegistrationForm │ │ │ │ ├── BackupStep.tsx │ │ │ │ ├── GenerationStep.tsx │ │ │ │ ├── ReviewStep.tsx │ │ │ │ ├── SecondSignatureRegistrationForm.test.tsx │ │ │ │ ├── SecondSignatureRegistrationForm.tsx │ │ │ │ ├── VerificationStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SecondSignatureRegistrationForm.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── TotalAmountBox │ │ │ │ ├── TotalAmountBox.test.tsx │ │ │ │ ├── TotalAmountBox.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── TotalAmountBox.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── TransactionDetail │ │ │ │ ├── TransactionAmount │ │ │ │ │ ├── TransactionAmount.test.tsx │ │ │ │ │ ├── TransactionAmount.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionAmount.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── TransactionConfirmations │ │ │ │ │ ├── TransactionConfirmations.test.tsx │ │ │ │ │ ├── TransactionConfirmations.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionConfirmations.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── TransactionDetail.styles.ts │ │ │ │ ├── TransactionDetail.test.tsx │ │ │ │ ├── TransactionDetail.tsx │ │ │ │ ├── TransactionExplorerLink │ │ │ │ │ ├── TransactionExplorerLink.test.tsx │ │ │ │ │ ├── TransactionExplorerLink.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionExplorerLink.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── TransactionFee │ │ │ │ │ ├── TransactionFee.test.tsx │ │ │ │ │ ├── TransactionFee.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionFee.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── TransactionMemo │ │ │ │ │ ├── TransactionMemo.test.tsx │ │ │ │ │ ├── TransactionMemo.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionMemo.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── TransactionNetwork │ │ │ │ │ ├── TransactionNetwork.test.tsx │ │ │ │ │ ├── TransactionNetwork.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionNetwork.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── TransactionRecipients │ │ │ │ │ ├── TransactionRecipients.test.tsx │ │ │ │ │ ├── TransactionRecipients.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionRecipients.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── TransactionSender │ │ │ │ │ ├── TransactionSender.test.tsx │ │ │ │ │ ├── TransactionSender.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionSender.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── TransactionTimestamp │ │ │ │ │ ├── TransactionTimestamp.test.tsx │ │ │ │ │ ├── TransactionTimestamp.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionTimestamp.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── TransactionType │ │ │ │ │ ├── TransactionType.test.tsx │ │ │ │ │ ├── TransactionType.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionType.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── TransactionVotes │ │ │ │ │ ├── TransactionVotes.test.tsx │ │ │ │ │ ├── TransactionVotes.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TransactionVotes.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── TransactionDetail.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── TransactionDetailModal │ │ │ │ ├── TransactionDetailModal.test.tsx │ │ │ │ ├── TransactionDetailModal.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── TransactionDetailModal.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── TransactionSuccessful │ │ │ │ ├── TransactionSuccessful.test.tsx │ │ │ │ ├── TransactionSuccessful.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── TransactionSuccessful.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── TransactionTable │ │ │ │ ├── PendingTransactionsTable │ │ │ │ │ ├── PendingTransactionsTable.contracts.ts │ │ │ │ │ ├── PendingTransactionsTable.domain.ts │ │ │ │ │ ├── PendingTransactionsTable.test.tsx │ │ │ │ │ ├── PendingTransactionsTable.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── PendingTransactionsTable.test.tsx.snap │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── use-pending-transactions.test.tsx │ │ │ │ │ │ └── use-pending-transactions.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── TransactionRow │ │ │ │ │ ├── PendingTransferRow.tsx │ │ │ │ │ ├── SignedTransactionRow.tsx │ │ │ │ │ ├── TransactionCompactRow.test.tsx │ │ │ │ │ ├── TransactionCompactRow.tsx │ │ │ │ │ ├── TransactionCompactRowSkeleton.tsx │ │ │ │ │ ├── TransactionRow.test.tsx │ │ │ │ │ ├── TransactionRow.tsx │ │ │ │ │ ├── TransactionRowAmount.test.tsx │ │ │ │ │ ├── TransactionRowAmount.tsx │ │ │ │ │ ├── TransactionRowConfirmation.test.tsx │ │ │ │ │ ├── TransactionRowConfirmation.tsx │ │ │ │ │ ├── TransactionRowInfo.test.tsx │ │ │ │ │ ├── TransactionRowInfo.tsx │ │ │ │ │ ├── TransactionRowMode.test.tsx │ │ │ │ │ ├── TransactionRowMode.tsx │ │ │ │ │ ├── TransactionRowRecipientIcon.test.tsx │ │ │ │ │ ├── TransactionRowRecipientIcon.tsx │ │ │ │ │ ├── TransactionRowRecipientLabel.test.tsx │ │ │ │ │ ├── TransactionRowRecipientLabel.tsx │ │ │ │ │ ├── TransactionRowSkeleton.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ ├── TransactionRow.test.tsx.snap │ │ │ │ │ │ ├── TransactionRowAmount.test.tsx.snap │ │ │ │ │ │ └── TransactionRowRecipientIcon.test.tsx.snap │ │ │ │ ├── TransactionTable.models.ts │ │ │ │ ├── TransactionTable.test.tsx │ │ │ │ ├── TransactionTable.tsx │ │ │ │ ├── UnconfirmedTransactionTable │ │ │ │ │ ├── UnconfirmedTransactionRow.tsx │ │ │ │ │ ├── UnconfirmedTransactionTable.test.tsx │ │ │ │ │ ├── UnconfirmedTransactionTable.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ └── UnconfirmedTransactionTable.test.tsx.snap │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── TransactionTable.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── Transactions │ │ │ │ ├── Transactions.test.tsx │ │ │ │ ├── Transactions.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Transactions.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── TransferDetail │ │ │ │ ├── TransferDetail.test.tsx │ │ │ │ ├── TransferDetail.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── TransferDetail.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ └── VoteDetail │ │ │ │ ├── VoteDetail.test.tsx │ │ │ │ ├── VoteDetail.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ └── VoteDetail.test.tsx.snap │ │ │ │ └── index.tsx │ │ ├── e2e │ │ │ ├── common.ts │ │ │ ├── delegate-registration.e2e.ts │ │ │ ├── delegate-resignation.e2e.ts │ │ │ ├── ipfs-transaction-multisig.e2e.ts │ │ │ ├── ipfs-transaction.e2e.ts │ │ │ ├── multiple-transfer.e2e.ts │ │ │ ├── single-transfer-multisig.e2e.ts │ │ │ ├── single-transfer.e2e.ts │ │ │ ├── transactions-routing.e2e.ts │ │ │ ├── vote-transaction-multisig.e2e.ts │ │ │ └── vote-transaction.e2e.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── use-fee-confirmation.ts │ │ │ ├── use-profile-transactions.test.tsx │ │ │ ├── use-profile-transactions.ts │ │ │ ├── use-transaction-builder-ledger.test.tsx │ │ │ ├── use-transaction-builder.test.tsx │ │ │ ├── use-transaction-builder.ts │ │ │ ├── use-transaction-types.test.tsx │ │ │ ├── use-transaction-types.ts │ │ │ ├── use-transaction.test.tsx │ │ │ ├── use-transaction.ts │ │ │ ├── use-wallet-signatory.test.ts │ │ │ └── use-wallet-signatory.ts │ │ ├── i18n.ts │ │ ├── images │ │ │ ├── confirm-transaction-ledger-banner-dark-blue.svg │ │ │ ├── confirm-transaction-ledger-banner-dark-green.svg │ │ │ ├── confirm-transaction-ledger-banner-light-blue.svg │ │ │ ├── confirm-transaction-ledger-banner-light-green.svg │ │ │ ├── index.ts │ │ │ ├── transaction-error-banner-dark-blue.svg │ │ │ ├── transaction-error-banner-dark-green.svg │ │ │ ├── transaction-error-banner-light-blue.svg │ │ │ ├── transaction-error-banner-light-green.svg │ │ │ ├── transaction-success-banner-dark-blue.svg │ │ │ ├── transaction-success-banner-dark-green.svg │ │ │ ├── transaction-success-banner-light-blue.svg │ │ │ └── transaction-success-banner-light-green.svg │ │ ├── pages │ │ │ ├── SendDelegateResignation │ │ │ │ ├── FormStep.tsx │ │ │ │ ├── ReviewStep.tsx │ │ │ │ ├── SendDelegateResignation.test.tsx │ │ │ │ ├── SendDelegateResignation.tsx │ │ │ │ ├── SummaryStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SendDelegateResignation.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── SendIpfs │ │ │ │ ├── FormStep.tsx │ │ │ │ ├── LedgerReview.tsx │ │ │ │ ├── ReviewStep.tsx │ │ │ │ ├── SendIpfs.test.tsx │ │ │ │ ├── SendIpfs.tsx │ │ │ │ ├── SummaryStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SendIpfs.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── SendRegistration │ │ │ │ ├── SendRegistration.models.ts │ │ │ │ ├── SendRegistration.test.tsx │ │ │ │ ├── SendRegistration.tsx │ │ │ │ ├── SummaryStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── SendRegistration.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── SendTransfer │ │ │ │ ├── FormStep.tsx │ │ │ │ ├── LedgerReview.test.tsx │ │ │ │ ├── LedgerReview.tsx │ │ │ │ ├── NetworkStep.tsx │ │ │ │ ├── ReviewStep.tsx │ │ │ │ ├── SendTransfer.test.tsx │ │ │ │ ├── SendTransfer.tsx │ │ │ │ ├── SummaryStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── LedgerReview.test.tsx.snap │ │ │ │ │ └── SendTransfer.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ ├── SendVote │ │ │ │ ├── FormStep.tsx │ │ │ │ ├── LedgerReview.test.tsx │ │ │ │ ├── LedgerReview.tsx │ │ │ │ ├── ReviewStep.tsx │ │ │ │ ├── SendVote.test.tsx │ │ │ │ ├── SendVote.tsx │ │ │ │ ├── SummaryStep.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── LedgerReview.test.tsx.snap │ │ │ │ │ └── SendVote.test.tsx.snap │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── routing.test.tsx │ │ ├── routing.ts │ │ ├── utils.test.ts │ │ ├── utils.ts │ │ └── validations │ │ │ ├── Authentication.test.tsx │ │ │ ├── Authentication.ts │ │ │ ├── Common.test.tsx │ │ │ ├── Common.ts │ │ │ ├── DelegateRegistration.ts │ │ │ ├── MultiSignatureRegistration.ts │ │ │ ├── SendIpfs.ts │ │ │ ├── SendTransfer.test.tsx │ │ │ ├── SendTransfer.ts │ │ │ ├── SendVote.ts │ │ │ └── index.ts │ ├── vote │ │ ├── components │ │ │ ├── AddressTable │ │ │ │ ├── AddressRow │ │ │ │ │ ├── AddressRow.test.tsx │ │ │ │ │ ├── AddressRow.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── AddressRow.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── AddressTable.test.tsx │ │ │ │ ├── AddressTable.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── AddressTable.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── DelegateTable │ │ │ │ ├── DelegateRow │ │ │ │ │ ├── DelegateRow.test.tsx │ │ │ │ │ ├── DelegateRow.tsx │ │ │ │ │ ├── DelegateRowSkeleton.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── DelegateRow.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── DelegateTable.test.tsx │ │ │ │ ├── DelegateTable.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── DelegateTable.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── VoteList │ │ │ │ ├── VoteList.test.tsx │ │ │ │ ├── VoteList.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── VoteList.test.tsx.snap │ │ │ │ └── index.ts │ │ │ ├── VotesEmpty │ │ │ │ ├── VotesEmpty.tsx │ │ │ │ └── index.ts │ │ │ ├── VotesFilter │ │ │ │ ├── VotesFilter.test.tsx │ │ │ │ ├── VotesFilter.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── VotesFilter.test.tsx.snap │ │ │ │ ├── index.ts │ │ │ │ └── models.ts │ │ │ ├── VotesHeader │ │ │ │ ├── VotesHeader.tsx │ │ │ │ └── index.ts │ │ │ └── VotingWallets │ │ │ │ ├── VotingWallets.tsx │ │ │ │ └── index.ts │ │ ├── e2e │ │ │ └── votes.e2e.ts │ │ ├── hooks │ │ │ ├── use-delegates.ts │ │ │ ├── use-vote-actions.ts │ │ │ ├── use-vote-filters.ts │ │ │ └── use-vote-query-params.ts │ │ ├── i18n.ts │ │ ├── pages │ │ │ ├── Votes │ │ │ │ ├── Votes.test.tsx │ │ │ │ ├── Votes.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Votes.test.tsx.snap │ │ │ │ └── index.ts │ │ │ └── index.tsx │ │ ├── routing.test.tsx │ │ └── routing.ts │ └── wallet │ │ ├── components │ │ ├── DeleteWallet │ │ │ ├── DeleteWallet.test.tsx │ │ │ ├── DeleteWallet.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── DeleteWallet.test.tsx.snap │ │ │ └── index.tsx │ │ ├── EncryptPasswordStep │ │ │ ├── EncryptPasswordStep.test.tsx │ │ │ ├── EncryptPasswordStep.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── EncryptPasswordStep.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Ledger │ │ │ ├── LedgerWaitingApp.test.tsx │ │ │ ├── LedgerWaitingApp.tsx │ │ │ ├── LedgerWaitingDevice.test.tsx │ │ │ ├── LedgerWaitingDevice.tsx │ │ │ └── index.ts │ │ ├── MnemonicList │ │ │ ├── MnemonicList.test.tsx │ │ │ ├── MnemonicList.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── MnemonicList.test.tsx.snap │ │ │ └── index.ts │ │ ├── MnemonicVerification │ │ │ ├── MnemonicVerification.test.tsx │ │ │ ├── MnemonicVerification.tsx │ │ │ ├── MnemonicVerificationOptions.test.tsx │ │ │ ├── MnemonicVerificationOptions.tsx │ │ │ ├── MnemonicVerificationProgress.test.tsx │ │ │ ├── MnemonicVerificationProgress.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── MnemonicVerificationProgress.test.tsx.snap │ │ │ ├── index.ts │ │ │ └── utils │ │ │ │ ├── evaluateOrdinalIndicator.test.ts │ │ │ │ ├── evaluateOrdinalIndicator.ts │ │ │ │ ├── shuffleOptions.test.ts │ │ │ │ └── shuffleOptions.ts │ │ ├── NetworkStep │ │ │ ├── NetworkStep.test.tsx │ │ │ ├── NetworkStep.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── NetworkStep.test.tsx.snap │ │ │ └── index.ts │ │ ├── ReceiveFunds │ │ │ ├── ReceiveFunds.test.tsx │ │ │ ├── ReceiveFunds.tsx │ │ │ ├── ReceiveFundsForm.test.tsx │ │ │ ├── ReceiveFundsForm.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── ReceiveFunds.test.tsx.snap │ │ │ │ └── ReceiveFundsForm.test.tsx.snap │ │ │ ├── hooks.test.tsx │ │ │ ├── hooks.ts │ │ │ └── index.ts │ │ ├── SearchWallet │ │ │ ├── SearchWallet.models.ts │ │ │ ├── SearchWallet.test.tsx │ │ │ ├── SearchWallet.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── SearchWallet.test.tsx.snap │ │ │ └── index.ts │ │ ├── SignMessage │ │ │ ├── FormStep.tsx │ │ │ ├── LedgerConfirmationStep.tsx │ │ │ ├── SignMessage.test.tsx │ │ │ ├── SignMessage.tsx │ │ │ ├── SignedStep.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── SignMessage.test.tsx.snap │ │ │ ├── hooks │ │ │ │ ├── use-message-signer.test.tsx │ │ │ │ └── use-message-signer.ts │ │ │ └── index.ts │ │ ├── UpdateWalletName │ │ │ ├── UpdateWalletName.test.tsx │ │ │ ├── UpdateWalletName.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── UpdateWalletName.test.tsx.snap │ │ │ └── index.tsx │ │ ├── VerifyMessage │ │ │ ├── VerifyMessage.test.tsx │ │ │ ├── VerifyMessage.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── VerifyMessage.test.tsx.snap │ │ │ └── index.ts │ │ ├── VerifyMessageStatus │ │ │ ├── VerifyMessageStatus.test.tsx │ │ │ ├── VerifyMessageStatus.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── VerifyMessageStatus.test.tsx.snap │ │ │ └── index.ts │ │ ├── WalletBottomSheetMenu │ │ │ ├── WalletBottomSheetMenu.test.tsx │ │ │ ├── WalletBottomSheetMenu.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── WalletBottomSheetMenu.test.tsx.snap │ │ │ └── index.ts │ │ └── WalletUpdate │ │ │ ├── Step1.tsx │ │ │ ├── Step2.tsx │ │ │ ├── Step3.tsx │ │ │ ├── WalletUpdate.test.tsx │ │ │ ├── WalletUpdate.tsx │ │ │ ├── __snapshots__ │ │ │ └── WalletUpdate.test.tsx.snap │ │ │ └── index.tsx │ │ ├── data.ts │ │ ├── e2e │ │ ├── common.ts │ │ ├── create-wallet-action.e2e.ts │ │ ├── delete-wallet-action.e2e.ts │ │ ├── import-wallet-action.e2e.ts │ │ ├── sign-message-action.e2e.ts │ │ ├── update-wallet-name-action.e2e.ts │ │ ├── verify-message-action.e2e.ts │ │ ├── wallet-details.e2e.ts │ │ └── wallets-routing.e2e.ts │ │ ├── hooks │ │ ├── use-import-options.test.ts │ │ ├── use-import-options.ts │ │ ├── use-wallet-import.test.tsx │ │ ├── use-wallet-import.ts │ │ ├── use-wallet-sync.test.tsx │ │ └── use-wallet-sync.ts │ │ ├── i18n.ts │ │ ├── images │ │ ├── index.ts │ │ ├── waiting-ledger-device-dark-blue.svg │ │ ├── waiting-ledger-device-dark-green.svg │ │ ├── waiting-ledger-device-light-blue.svg │ │ ├── waiting-ledger-device-light-green.svg │ │ ├── wallet-update-dark-blue.svg │ │ ├── wallet-update-dark-green.svg │ │ ├── wallet-update-light-blue.svg │ │ ├── wallet-update-light-green.svg │ │ ├── wallet-update-ready-dark-blue.svg │ │ ├── wallet-update-ready-dark-green.svg │ │ ├── wallet-update-ready-light-blue.svg │ │ └── wallet-update-ready-light-green.svg │ │ ├── middleware.test.ts │ │ ├── middleware.ts │ │ ├── pages │ │ ├── CreateWallet │ │ │ ├── ConfirmPassphrase.test.tsx │ │ │ ├── ConfirmPassphraseStep.tsx │ │ │ ├── CreateWallet.test.tsx │ │ │ ├── CreateWallet.tsx │ │ │ ├── EncryptionPasswordStep.test.tsx │ │ │ ├── SuccessStep.test.tsx │ │ │ ├── SuccessStep.tsx │ │ │ ├── WalletOverviewStep.test.tsx │ │ │ ├── WalletOverviewStep.tsx │ │ │ ├── __snapshots__ │ │ │ │ ├── CreateWallet.test.tsx.snap │ │ │ │ ├── SuccessStep.test.tsx.snap │ │ │ │ └── WalletOverviewStep.test.tsx.snap │ │ │ └── index.ts │ │ ├── ImportWallet │ │ │ ├── ImportWallet.test.tsx │ │ │ ├── ImportWallet.tsx │ │ │ ├── Ledger │ │ │ │ ├── LedgerConnectionStep.test.tsx │ │ │ │ ├── LedgerConnectionStep.tsx │ │ │ │ ├── LedgerImportStep.test.tsx │ │ │ │ ├── LedgerImportStep.tsx │ │ │ │ ├── LedgerScanStep.test.tsx │ │ │ │ ├── LedgerScanStep.tsx │ │ │ │ ├── LedgerTabs.test.tsx │ │ │ │ ├── LedgerTabs.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── LedgerConnectionStep.test.tsx.snap │ │ │ │ │ ├── LedgerImportStep.test.tsx.snap │ │ │ │ │ ├── LedgerScanStep.test.tsx.snap │ │ │ │ │ └── LedgerTabs.test.tsx.snap │ │ │ ├── Step2.tsx │ │ │ ├── Step3.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── ImportWallet.test.tsx.snap │ │ │ └── index.tsx │ │ ├── WalletDetails │ │ │ ├── WalletDetails.test.tsx │ │ │ ├── WalletDetails.tsx │ │ │ ├── components │ │ │ │ ├── WalletHeader │ │ │ │ │ ├── WalletHeader.test.tsx │ │ │ │ │ ├── WalletHeader.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── WalletHeader.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ ├── WalletVote │ │ │ │ │ ├── WalletVote.test.tsx │ │ │ │ │ ├── WalletVote.tsx │ │ │ │ │ ├── WalletVoteSkeleton.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── WalletVote.test.tsx.snap │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── hooks │ │ │ │ ├── use-wallet-transactions.test.tsx │ │ │ │ └── use-wallet-transactions.tsx │ │ │ └── index.ts │ │ └── index.ts │ │ ├── routing.ts │ │ ├── utils │ │ ├── get-default-alias.test.ts │ │ └── get-default-alias.ts │ │ └── validations │ │ ├── Alias.ts │ │ ├── ReceiveFunds.ts │ │ ├── VerifyMessage.test.tsx │ │ ├── VerifyMessage.ts │ │ └── index.ts ├── electron │ ├── index.ts │ ├── menu.js │ ├── plugins.ts │ ├── updater.js │ └── utils │ │ └── single-instance.ts ├── index.test.tsx ├── index.tsx ├── plugins │ ├── README.md │ ├── components │ │ ├── PluginRouterWrapper.test.tsx │ │ ├── PluginRouterWrapper.tsx │ │ └── shared │ │ │ ├── Box.test.tsx │ │ │ └── Box.tsx │ ├── context │ │ ├── PluginManagerProvider.test.tsx │ │ ├── PluginManagerProvider.tsx │ │ └── index.ts │ ├── core │ │ ├── configuration │ │ │ ├── index.ts │ │ │ ├── permissions.ts │ │ │ ├── plugin-configuration.test.ts │ │ │ ├── plugin-configuration.ts │ │ │ └── schema.ts │ │ ├── index.ts │ │ ├── internals │ │ │ ├── index.ts │ │ │ ├── plugin-hooks.test.ts │ │ │ ├── plugin-hooks.ts │ │ │ ├── plugin-permission.test.ts │ │ │ └── plugin-permission.ts │ │ ├── plugin-container.ts │ │ ├── plugin-controller-repository.test.ts │ │ ├── plugin-controller-repository.ts │ │ ├── plugin-controller.ts │ │ ├── plugin-manager.ts │ │ ├── plugin-service-repository.test.ts │ │ ├── plugin-service-repository.ts │ │ └── plugin-service.ts │ ├── index.ts │ ├── loader │ │ ├── fs │ │ │ ├── index.ts │ │ │ ├── loader-fs-handler.test.ts │ │ │ ├── loader-fs-handler.ts │ │ │ ├── loader-fs-ipc.ts │ │ │ ├── loader-fs.test.ts │ │ │ └── loader-fs.ts │ │ ├── index.ts │ │ ├── vm.test.ts │ │ └── vm.ts │ ├── services │ │ ├── events │ │ │ ├── EventsPluginService.ts │ │ │ ├── EventsPluginsService.test.ts │ │ │ └── index.ts │ │ ├── filesystem │ │ │ ├── FileSystemPluginService.test.ts │ │ │ ├── FileSystemPluginService.ts │ │ │ └── index.ts │ │ ├── http │ │ │ ├── HttpPluginProvider.test.tsx │ │ │ ├── HttpPluginProvider.tsx │ │ │ ├── HttpPluginService.test.ts │ │ │ ├── HttpPluginService.ts │ │ │ ├── __snapshots__ │ │ │ │ └── HttpPluginProvider.test.tsx.snap │ │ │ └── index.ts │ │ ├── index.tsx │ │ ├── launch │ │ │ ├── LaunchPluginComponent.tsx │ │ │ ├── LaunchPluginService.test.tsx │ │ │ ├── LaunchPluginService.ts │ │ │ └── index.ts │ │ ├── message │ │ │ ├── MessagePluginService.test.tsx │ │ │ ├── MessagePluginService.tsx │ │ │ ├── index.tsx │ │ │ └── use-sign-message-modal.tsx │ │ ├── profile │ │ │ ├── ProfilePluginService.test.tsx │ │ │ ├── ProfilePluginService.ts │ │ │ └── index.ts │ │ ├── store │ │ │ ├── StorePluginService.test.ts │ │ │ ├── StorePluginService.ts │ │ │ └── index.ts │ │ ├── theme │ │ │ ├── ThemePluginService.test.tsx │ │ │ ├── ThemePluginService.ts │ │ │ ├── index.ts │ │ │ └── withThemeDecorator.tsx │ │ └── timers │ │ │ ├── TimersPluginService.test.tsx │ │ │ ├── TimersPluginService.ts │ │ │ └── index.ts │ └── types.ts ├── polyfill │ └── memcpy.js ├── react-app-env.d.ts ├── router │ ├── RouterView.test.tsx │ ├── RouterView.tsx │ ├── __snapshots__ │ │ └── RouterView.test.tsx.snap │ ├── index.tsx │ └── interfaces.ts ├── setupTests.ts ├── styles │ ├── app.css │ ├── base.css │ ├── coins.css │ ├── focus-visible.css │ ├── fonts.css │ ├── headings.css │ ├── scrollbars.css │ ├── skeletons.css │ ├── toasts.css │ ├── tooltips.css │ └── variables.css ├── tailwind.config.js ├── tests │ ├── custom-env.js │ ├── fixtures │ │ ├── coins │ │ │ └── ark │ │ │ │ ├── devnet │ │ │ │ ├── blockchain.json │ │ │ │ ├── configuration.json │ │ │ │ ├── cryptoConfiguration.json │ │ │ │ ├── delegates.json │ │ │ │ ├── node-fees.json │ │ │ │ ├── notification-transactions.json │ │ │ │ ├── peers.json │ │ │ │ ├── syncing.json │ │ │ │ ├── transaction-fees.json │ │ │ │ ├── transactions.json │ │ │ │ ├── transactions │ │ │ │ │ ├── byAddress │ │ │ │ │ │ ├── D5sRKWckH4rE1hQ9eeMeHAepgyC3cvJtwb-1-10.json │ │ │ │ │ │ ├── D5sRKWckH4rE1hQ9eeMeHAepgyC3cvJtwb-1-15.json │ │ │ │ │ │ ├── D5sRKWckH4rE1hQ9eeMeHAepgyC3cvJtwb-1-30.json │ │ │ │ │ │ ├── D8rr7B1d6TL6pf14LgMz4sKp1VBMs6YUYD-1-10.json │ │ │ │ │ │ ├── D8rr7B1d6TL6pf14LgMz4sKp1VBMs6YUYD-1-15.json │ │ │ │ │ │ ├── D8rr7B1d6TL6pf14LgMz4sKp1VBMs6YUYD-1-30.json │ │ │ │ │ │ ├── D8rr7B1d6TL6pf14LgMz4sKp1VBMs6YUYD-2-15.json │ │ │ │ │ │ ├── DABCrsfEqhtdzmBrE2AU5NNmdUFCGXKEkr-1-10.json │ │ │ │ │ │ ├── DABCrsfEqhtdzmBrE2AU5NNmdUFCGXKEkr-1-15.json │ │ │ │ │ │ ├── DABCrsfEqhtdzmBrE2AU5NNmdUFCGXKEkr-1-30.json │ │ │ │ │ │ ├── DABCrsfEqhtdzmBrE2AU5NNmdUFCGXKEkr-2-15.json │ │ │ │ │ │ ├── DC8ghUdhS8w8d11K8cFQ37YsLBFhL3Dq2P-1-10.json │ │ │ │ │ │ ├── DC8ghUdhS8w8d11K8cFQ37YsLBFhL3Dq2P-1-15.json │ │ │ │ │ │ ├── DC8ghUdhS8w8d11K8cFQ37YsLBFhL3Dq2P-1-30.json │ │ │ │ │ │ ├── DDA5nM7KEqLeTtQKv5qGgcnc6dpNBKJNTS-1-10.json │ │ │ │ │ │ ├── DDA5nM7KEqLeTtQKv5qGgcnc6dpNBKJNTS-1-15.json │ │ │ │ │ │ ├── DDA5nM7KEqLeTtQKv5qGgcnc6dpNBKJNTS-1-30.json │ │ │ │ │ │ ├── DJXg9Vqg2tofRNrMAvMzhZTkegu8QyyNQq-1-15.json │ │ │ │ │ │ ├── DJXg9Vqg2tofRNrMAvMzhZTkegu8QyyNQq-1-30.json │ │ │ │ │ │ └── no-results.json │ │ │ │ │ ├── delegate-registration.json │ │ │ │ │ ├── delegate-registrations.json │ │ │ │ │ ├── entity-registration.json │ │ │ │ │ ├── entity-resignation.json │ │ │ │ │ ├── entity-update.json │ │ │ │ │ ├── ipfs.json │ │ │ │ │ ├── multisignature-registration.json │ │ │ │ │ ├── plugin-registrations.json │ │ │ │ │ ├── second-signature-registration.json │ │ │ │ │ ├── transfer-multiple.json │ │ │ │ │ ├── transfer.json │ │ │ │ │ ├── unvote.json │ │ │ │ │ └── vote.json │ │ │ │ ├── votes.json │ │ │ │ └── wallets │ │ │ │ │ ├── 034151a3ec46b5670a682b0a63394f863587d1bc97483b1b6c70eb58e7f0aed192.json │ │ │ │ │ ├── D5sRKWckH4rE1hQ9eeMeHAepgyC3cvJtwb.json │ │ │ │ │ ├── D61mfSggzbvQgTUe6JhYKH2doHaqJ3Dyib.json │ │ │ │ │ ├── D68sFcspN2LVd9HZpf98c7bXkNimK3M6AZ.json │ │ │ │ │ ├── D6Z26L69gdk9qYmTv5uzk3uGepigtHY4ax.json │ │ │ │ │ ├── D8rr7B1d6TL6pf14LgMz4sKp1VBMs6YUYD.json │ │ │ │ │ ├── D9YiyRYMBS2ofzqkufjrkB9nHofWgJLM7f.json │ │ │ │ │ ├── DABCrsfEqhtdzmBrE2AU5NNmdUFCGXKEkr-basic.json │ │ │ │ │ ├── DABCrsfEqhtdzmBrE2AU5NNmdUFCGXKEkr.json │ │ │ │ │ ├── DC8ghUdhS8w8d11K8cFQ37YsLBFhL3Dq2P.json │ │ │ │ │ ├── DDA5nM7KEqLeTtQKv5qGgcnc6dpNBKJNTS.json │ │ │ │ │ ├── DFJ5Z51F1euNNdRUQJKQVdG4h495LZkc6T.json │ │ │ │ │ ├── DJXg9Vqg2tofRNrMAvMzhZTkegu8QyyNQq.json │ │ │ │ │ ├── DKrACQw7ytoU2gjppy3qKeE2dQhZjfXYqu.json │ │ │ │ │ └── not-found.json │ │ │ │ └── mainnet │ │ │ │ ├── configuration.json │ │ │ │ ├── cryptoConfiguration.json │ │ │ │ ├── delegates.json │ │ │ │ ├── neo-duplicate.json │ │ │ │ ├── node-fees.json │ │ │ │ ├── peers.json │ │ │ │ ├── syncing.json │ │ │ │ ├── transaction-fees.json │ │ │ │ └── wallets │ │ │ │ ├── AThxYTVgpzZfW7K6UxyB8vBZVMoPAwQS3D.json │ │ │ │ └── AdVSe37niA3uFUPgCgMUH2tMsHF4LpLoiX.json │ │ ├── delegates │ │ │ └── D5sRKWckH4rE1hQ9eeMeHAepgyC3cvJtwb.json │ │ ├── env │ │ │ ├── storage-mainnet.json │ │ │ ├── storage.json │ │ │ └── testing-passwords.json │ │ ├── exchange │ │ │ ├── cryptocompare-eth.json │ │ │ ├── cryptocompare-historical.json │ │ │ └── cryptocompare.json │ │ ├── ipfs │ │ │ └── QmRwgWaaEyYgGqp55196TsFDQLW4NZkyTnPwiSVhJ7NPRV.json │ │ ├── news │ │ │ ├── empty-response.json │ │ │ ├── filtered.json │ │ │ ├── page-1.json │ │ │ └── page-2.json │ │ ├── plugins │ │ │ ├── all-npm-plugins.json │ │ │ ├── downloads │ │ │ │ └── @dated │ │ │ │ │ ├── delegate-calculator-plugin.json │ │ │ │ │ └── transaction-export-plugin.json │ │ │ ├── github │ │ │ │ ├── @arkecosystem │ │ │ │ │ ├── desktop-wallet-explorer │ │ │ │ │ │ └── package.json │ │ │ │ │ └── desktop-wallet-sound-notifications │ │ │ │ │ │ └── package.json │ │ │ │ └── @dated │ │ │ │ │ ├── delegate-calculator-plugin │ │ │ │ │ └── package.json │ │ │ │ │ └── transaction-export-plugin │ │ │ │ │ └── package.json │ │ │ ├── packages │ │ │ │ ├── plugin-test-custom-button │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── plugin-test-launch │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ ├── registry-response.json │ │ │ ├── registry │ │ │ │ ├── @arkecosystem │ │ │ │ │ ├── desktop-wallet-explorer.json │ │ │ │ │ └── sound-notifications.json │ │ │ │ └── @dated │ │ │ │ │ ├── delegate-calculator-plugin.json │ │ │ │ │ └── transaction-export-plugin.json │ │ │ └── whitelist.json │ │ ├── profile │ │ │ └── import │ │ │ │ ├── corrupted-profile.dwe │ │ │ │ ├── d2_test_wallets-empty.json │ │ │ │ ├── d2_test_wallets.json │ │ │ │ ├── password-protected-profile.dwe │ │ │ │ └── profile.dwe │ │ ├── registrations │ │ │ ├── DC8ghUdhS8w8d11K8cFQ37YsLBFhL3Dq2P-businesses.json │ │ │ ├── businesses.json │ │ │ ├── entity-delegates.json │ │ │ └── plugins.json │ │ ├── transactions │ │ │ └── index.ts │ │ └── wallets │ │ │ ├── D61mfSggzbvQgTUe6JhYKH2doHaqJ3Dyib.json │ │ │ ├── D8rr7B1d6TL6pf14LgMz4sKp1VBMs6YUYD.json │ │ │ ├── D9YiyRYMBS2ofzqkufjrkB9nHofWgJLM7f.json │ │ │ ├── DABCrsfEqhtdzmBrE2AU5NNmdUFCGXKEkr.json │ │ │ ├── DFJ5Z51F1euNNdRUQJKQVdG4h495LZkc6T.json │ │ │ └── DKrACQw7ytoU2gjppy3qKeE2dQhZjfXYqu.json │ └── mocks │ │ ├── StubStorage │ │ ├── StubStorage.test.ts │ │ ├── StubStorage.ts │ │ └── index.ts │ │ └── index.ts ├── types │ ├── index.ts │ ├── react-table.d.ts │ └── twin-macro.d.ts └── utils │ ├── assertions.test.ts │ ├── assertions.ts │ ├── debounce.test.ts │ ├── debounce.ts │ ├── e2e-interfaces.ts │ ├── e2e-utils.ts │ ├── electron-utils.test.ts │ ├── electron-utils.ts │ ├── equals.test.ts │ ├── equals.ts │ ├── test-helpers.ts │ ├── testing-library.tsx │ ├── url-encode-root-color.test.ts │ ├── url-encode-root-color.ts │ └── validations │ ├── index.ts │ ├── validate-pattern.test.ts │ └── validate-pattern.ts ├── tsconfig.json ├── webpack.main.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["macros"] 3 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | _extends: .github 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/compress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.github/workflows/compress.yml -------------------------------------------------------------------------------- /.github/workflows/draft-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.github/workflows/draft-artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.prettierrc -------------------------------------------------------------------------------- /.svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.svgo.yml -------------------------------------------------------------------------------- /.testcafe-electron-rc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.testcafe-electron-rc.js -------------------------------------------------------------------------------- /.testcaferc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.testcaferc.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/.yarnrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @faustbrian @ItsANameToo @luciorubeens @samharperpittam 2 | -------------------------------------------------------------------------------- /CODING_STANDARDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/CODING_STANDARDS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMING_CONVENTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/NAMING_CONVENTIONS.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/README.md -------------------------------------------------------------------------------- /app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/app-update.yml -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/banner.png -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/config-overrides.js -------------------------------------------------------------------------------- /custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/custom.d.ts -------------------------------------------------------------------------------- /entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/entitlements.mac.plist -------------------------------------------------------------------------------- /filePath: -------------------------------------------------------------------------------- 1 | test mnemonic -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/jest.setup.js -------------------------------------------------------------------------------- /notAnImage.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/public/index.html -------------------------------------------------------------------------------- /scripts/generate-test-workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/scripts/generate-test-workflow.js -------------------------------------------------------------------------------- /scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/scripts/notarize.js -------------------------------------------------------------------------------- /scripts/version-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/scripts/version-artifacts.sh -------------------------------------------------------------------------------- /src/app/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/App.test.tsx -------------------------------------------------------------------------------- /src/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/App.tsx -------------------------------------------------------------------------------- /src/app/PluginProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/PluginProviders.tsx -------------------------------------------------------------------------------- /src/app/__snapshots__/App.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/__snapshots__/App.test.tsx.snap -------------------------------------------------------------------------------- /src/app/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/background.png -------------------------------------------------------------------------------- /src/app/assets/fonts/Inter-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/fonts/Inter-Bold.otf -------------------------------------------------------------------------------- /src/app/assets/fonts/Inter-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/fonts/Inter-BoldItalic.otf -------------------------------------------------------------------------------- /src/app/assets/fonts/Inter-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/fonts/Inter-ExtraBold.otf -------------------------------------------------------------------------------- /src/app/assets/fonts/Inter-ExtraBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/fonts/Inter-ExtraBoldItalic.otf -------------------------------------------------------------------------------- /src/app/assets/fonts/Inter-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/fonts/Inter-Italic.otf -------------------------------------------------------------------------------- /src/app/assets/fonts/Inter-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/fonts/Inter-Medium.otf -------------------------------------------------------------------------------- /src/app/assets/fonts/Inter-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/fonts/Inter-MediumItalic.otf -------------------------------------------------------------------------------- /src/app/assets/fonts/Inter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/fonts/Inter-Regular.otf -------------------------------------------------------------------------------- /src/app/assets/fonts/Inter-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/fonts/Inter-SemiBold.otf -------------------------------------------------------------------------------- /src/app/assets/fonts/Inter-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/fonts/Inter-SemiBoldItalic.otf -------------------------------------------------------------------------------- /src/app/assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/icons/128x128.png -------------------------------------------------------------------------------- /src/app/assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/icons/256x256.png -------------------------------------------------------------------------------- /src/app/assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/icons/512x512.png -------------------------------------------------------------------------------- /src/app/assets/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/icons/icon.icns -------------------------------------------------------------------------------- /src/app/assets/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/icons/icon.ico -------------------------------------------------------------------------------- /src/app/assets/images/ark-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/images/ark-logo.svg -------------------------------------------------------------------------------- /src/app/assets/images/exchanges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/images/exchanges.svg -------------------------------------------------------------------------------- /src/app/assets/images/image-import.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/images/image-import.d.ts -------------------------------------------------------------------------------- /src/app/assets/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/images/index.ts -------------------------------------------------------------------------------- /src/app/assets/images/no-results-dark-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/images/no-results-dark-blue.svg -------------------------------------------------------------------------------- /src/app/assets/images/no-results-dark-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/images/no-results-dark-green.svg -------------------------------------------------------------------------------- /src/app/assets/images/no-results-light-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/images/no-results-light-blue.svg -------------------------------------------------------------------------------- /src/app/assets/svg/alert-danger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/alert-danger.svg -------------------------------------------------------------------------------- /src/app/assets/svg/alert-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/alert-default.svg -------------------------------------------------------------------------------- /src/app/assets/svg/alert-hint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/alert-hint.svg -------------------------------------------------------------------------------- /src/app/assets/svg/alert-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/alert-info.svg -------------------------------------------------------------------------------- /src/app/assets/svg/alert-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/alert-success.svg -------------------------------------------------------------------------------- /src/app/assets/svg/alert-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/alert-warning.svg -------------------------------------------------------------------------------- /src/app/assets/svg/ark-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/ark-logo.svg -------------------------------------------------------------------------------- /src/app/assets/svg/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/arrow-left.svg -------------------------------------------------------------------------------- /src/app/assets/svg/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/arrow-right.svg -------------------------------------------------------------------------------- /src/app/assets/svg/article.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/article.svg -------------------------------------------------------------------------------- /src/app/assets/svg/awaiting-final-signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/awaiting-final-signature.svg -------------------------------------------------------------------------------- /src/app/assets/svg/awaiting-other-signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/awaiting-other-signature.svg -------------------------------------------------------------------------------- /src/app/assets/svg/awaiting-our-signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/awaiting-our-signature.svg -------------------------------------------------------------------------------- /src/app/assets/svg/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/back.svg -------------------------------------------------------------------------------- /src/app/assets/svg/blockfolio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/blockfolio.svg -------------------------------------------------------------------------------- /src/app/assets/svg/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/caret-down.svg -------------------------------------------------------------------------------- /src/app/assets/svg/caret-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/caret-up.svg -------------------------------------------------------------------------------- /src/app/assets/svg/category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/category.svg -------------------------------------------------------------------------------- /src/app/assets/svg/chart-active-dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/chart-active-dot.svg -------------------------------------------------------------------------------- /src/app/assets/svg/checkmark-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/checkmark-big.svg -------------------------------------------------------------------------------- /src/app/assets/svg/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/checkmark.svg -------------------------------------------------------------------------------- /src/app/assets/svg/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/chevron-down.svg -------------------------------------------------------------------------------- /src/app/assets/svg/chevron-left-double.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/chevron-left-double.svg -------------------------------------------------------------------------------- /src/app/assets/svg/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/chevron-left.svg -------------------------------------------------------------------------------- /src/app/assets/svg/chevron-right-double.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/chevron-right-double.svg -------------------------------------------------------------------------------- /src/app/assets/svg/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/chevron-right.svg -------------------------------------------------------------------------------- /src/app/assets/svg/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/chevron-up.svg -------------------------------------------------------------------------------- /src/app/assets/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/close.svg -------------------------------------------------------------------------------- /src/app/assets/svg/copy-address.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/copy-address.svg -------------------------------------------------------------------------------- /src/app/assets/svg/copy-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/copy-key.svg -------------------------------------------------------------------------------- /src/app/assets/svg/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/copy.svg -------------------------------------------------------------------------------- /src/app/assets/svg/cross-slim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/cross-slim.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/ada.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/ada.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/ark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/ark.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/atom.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/avax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/avax.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/bind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/bind.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/bos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/bos.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/btc.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/dot.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/egld.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/egld.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/eos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/eos.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/eth.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/index.ts -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/lsk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/lsk.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/luna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/luna.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/meetone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/meetone.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/nano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/nano.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/neo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/neo.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/sol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/sol.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/tlos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/tlos.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/trx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/trx.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/wax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/wax.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/wbi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/wbi.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/xlm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/xlm.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/xrp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/xrp.svg -------------------------------------------------------------------------------- /src/app/assets/svg/currencies/zil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/currencies/zil.svg -------------------------------------------------------------------------------- /src/app/assets/svg/dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/dash.svg -------------------------------------------------------------------------------- /src/app/assets/svg/delegate-resigned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/delegate-resigned.svg -------------------------------------------------------------------------------- /src/app/assets/svg/delegate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/delegate.svg -------------------------------------------------------------------------------- /src/app/assets/svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/download.svg -------------------------------------------------------------------------------- /src/app/assets/svg/dwe-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/dwe-file.svg -------------------------------------------------------------------------------- /src/app/assets/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/edit.svg -------------------------------------------------------------------------------- /src/app/assets/svg/entity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/entity.svg -------------------------------------------------------------------------------- /src/app/assets/svg/exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/exchange.svg -------------------------------------------------------------------------------- /src/app/assets/svg/explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/explorer.svg -------------------------------------------------------------------------------- /src/app/assets/svg/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/export.svg -------------------------------------------------------------------------------- /src/app/assets/svg/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/eye-off.svg -------------------------------------------------------------------------------- /src/app/assets/svg/eye-tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/eye-tag.svg -------------------------------------------------------------------------------- /src/app/assets/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/eye.svg -------------------------------------------------------------------------------- /src/app/assets/svg/file-password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/file-password.svg -------------------------------------------------------------------------------- /src/app/assets/svg/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/file.svg -------------------------------------------------------------------------------- /src/app/assets/svg/filters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/filters.svg -------------------------------------------------------------------------------- /src/app/assets/svg/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/forward.svg -------------------------------------------------------------------------------- /src/app/assets/svg/general.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/general.svg -------------------------------------------------------------------------------- /src/app/assets/svg/grant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/grant.svg -------------------------------------------------------------------------------- /src/app/assets/svg/grid-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/grid-view.svg -------------------------------------------------------------------------------- /src/app/assets/svg/id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/id.svg -------------------------------------------------------------------------------- /src/app/assets/svg/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/import.svg -------------------------------------------------------------------------------- /src/app/assets/svg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/index.ts -------------------------------------------------------------------------------- /src/app/assets/svg/information-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/information-circle.svg -------------------------------------------------------------------------------- /src/app/assets/svg/ipfs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/ipfs.svg -------------------------------------------------------------------------------- /src/app/assets/svg/json-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/json-file.svg -------------------------------------------------------------------------------- /src/app/assets/svg/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/key.svg -------------------------------------------------------------------------------- /src/app/assets/svg/ledger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/ledger.svg -------------------------------------------------------------------------------- /src/app/assets/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/link.svg -------------------------------------------------------------------------------- /src/app/assets/svg/list-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/list-view.svg -------------------------------------------------------------------------------- /src/app/assets/svg/loader-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/loader-logo.svg -------------------------------------------------------------------------------- /src/app/assets/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/lock.svg -------------------------------------------------------------------------------- /src/app/assets/svg/magistrate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/magistrate.svg -------------------------------------------------------------------------------- /src/app/assets/svg/memo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/memo.svg -------------------------------------------------------------------------------- /src/app/assets/svg/msq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/msq.svg -------------------------------------------------------------------------------- /src/app/assets/svg/multipayment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/multipayment.svg -------------------------------------------------------------------------------- /src/app/assets/svg/multisignature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/multisignature.svg -------------------------------------------------------------------------------- /src/app/assets/svg/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/notification.svg -------------------------------------------------------------------------------- /src/app/assets/svg/official-ark-plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/official-ark-plugin.svg -------------------------------------------------------------------------------- /src/app/assets/svg/open-explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/open-explorer.svg -------------------------------------------------------------------------------- /src/app/assets/svg/pagination-first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/pagination-first.svg -------------------------------------------------------------------------------- /src/app/assets/svg/pagination-last.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/pagination-last.svg -------------------------------------------------------------------------------- /src/app/assets/svg/peer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/peer.svg -------------------------------------------------------------------------------- /src/app/assets/svg/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/placeholder.svg -------------------------------------------------------------------------------- /src/app/assets/svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/plus.svg -------------------------------------------------------------------------------- /src/app/assets/svg/portfolio-tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/portfolio-tag.svg -------------------------------------------------------------------------------- /src/app/assets/svg/portfolio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/portfolio.svg -------------------------------------------------------------------------------- /src/app/assets/svg/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/profile.svg -------------------------------------------------------------------------------- /src/app/assets/svg/qr-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/qr-code.svg -------------------------------------------------------------------------------- /src/app/assets/svg/questionmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/questionmark.svg -------------------------------------------------------------------------------- /src/app/assets/svg/received.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/received.svg -------------------------------------------------------------------------------- /src/app/assets/svg/redirect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/redirect.svg -------------------------------------------------------------------------------- /src/app/assets/svg/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/reload.svg -------------------------------------------------------------------------------- /src/app/assets/svg/reply-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/reply-arrow.svg -------------------------------------------------------------------------------- /src/app/assets/svg/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/report.svg -------------------------------------------------------------------------------- /src/app/assets/svg/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/reset.svg -------------------------------------------------------------------------------- /src/app/assets/svg/return.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/return.svg -------------------------------------------------------------------------------- /src/app/assets/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/search.svg -------------------------------------------------------------------------------- /src/app/assets/svg/second-signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/second-signature.svg -------------------------------------------------------------------------------- /src/app/assets/svg/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/send.svg -------------------------------------------------------------------------------- /src/app/assets/svg/sent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/sent.svg -------------------------------------------------------------------------------- /src/app/assets/svg/settings-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/settings-horizontal.svg -------------------------------------------------------------------------------- /src/app/assets/svg/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/settings.svg -------------------------------------------------------------------------------- /src/app/assets/svg/signature-status-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/signature-status-ok.svg -------------------------------------------------------------------------------- /src/app/assets/svg/signature-status-pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/signature-status-pending.svg -------------------------------------------------------------------------------- /src/app/assets/svg/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/sort.svg -------------------------------------------------------------------------------- /src/app/assets/svg/star-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/star-outline.svg -------------------------------------------------------------------------------- /src/app/assets/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/star.svg -------------------------------------------------------------------------------- /src/app/assets/svg/stars-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/stars-outline.svg -------------------------------------------------------------------------------- /src/app/assets/svg/status-failed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/status-failed.svg -------------------------------------------------------------------------------- /src/app/assets/svg/status-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/status-ok.svg -------------------------------------------------------------------------------- /src/app/assets/svg/status-pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/status-pending.svg -------------------------------------------------------------------------------- /src/app/assets/svg/timelock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/timelock.svg -------------------------------------------------------------------------------- /src/app/assets/svg/transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/transfer.svg -------------------------------------------------------------------------------- /src/app/assets/svg/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/trash.svg -------------------------------------------------------------------------------- /src/app/assets/svg/unvote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/unvote.svg -------------------------------------------------------------------------------- /src/app/assets/svg/update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/update.svg -------------------------------------------------------------------------------- /src/app/assets/svg/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/upload.svg -------------------------------------------------------------------------------- /src/app/assets/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/user.svg -------------------------------------------------------------------------------- /src/app/assets/svg/verified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/verified.svg -------------------------------------------------------------------------------- /src/app/assets/svg/vote-combination.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/vote-combination.svg -------------------------------------------------------------------------------- /src/app/assets/svg/vote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/vote.svg -------------------------------------------------------------------------------- /src/app/assets/svg/voted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/assets/svg/voted.svg -------------------------------------------------------------------------------- /src/app/components/Address/Address.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Address/Address.test.tsx -------------------------------------------------------------------------------- /src/app/components/Address/Address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Address/Address.tsx -------------------------------------------------------------------------------- /src/app/components/Address/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Address"; 2 | -------------------------------------------------------------------------------- /src/app/components/Alert/Alert.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Alert/Alert.test.tsx -------------------------------------------------------------------------------- /src/app/components/Alert/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Alert/Alert.tsx -------------------------------------------------------------------------------- /src/app/components/Alert/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Alert"; 2 | -------------------------------------------------------------------------------- /src/app/components/Amount/Amount.contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Amount/Amount.contracts.ts -------------------------------------------------------------------------------- /src/app/components/Amount/Amount.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Amount/Amount.helpers.ts -------------------------------------------------------------------------------- /src/app/components/Amount/Amount.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Amount/Amount.test.tsx -------------------------------------------------------------------------------- /src/app/components/Amount/Amount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Amount/Amount.tsx -------------------------------------------------------------------------------- /src/app/components/Amount/AmountCrypto.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Amount/AmountCrypto.test.tsx -------------------------------------------------------------------------------- /src/app/components/Amount/AmountCrypto.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Amount/AmountCrypto.tsx -------------------------------------------------------------------------------- /src/app/components/Amount/AmountFiat.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Amount/AmountFiat.test.tsx -------------------------------------------------------------------------------- /src/app/components/Amount/AmountFiat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Amount/AmountFiat.tsx -------------------------------------------------------------------------------- /src/app/components/Amount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Amount/index.ts -------------------------------------------------------------------------------- /src/app/components/Avatar/Avatar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Avatar/Avatar.test.tsx -------------------------------------------------------------------------------- /src/app/components/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /src/app/components/Avatar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Avatar"; 2 | -------------------------------------------------------------------------------- /src/app/components/Badge/Badge.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Badge/Badge.styles.ts -------------------------------------------------------------------------------- /src/app/components/Badge/Badge.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Badge/Badge.test.tsx -------------------------------------------------------------------------------- /src/app/components/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Badge/Badge.tsx -------------------------------------------------------------------------------- /src/app/components/Badge/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Badge"; 2 | -------------------------------------------------------------------------------- /src/app/components/Button/Button.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Button/Button.styles.ts -------------------------------------------------------------------------------- /src/app/components/Button/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Button/Button.test.tsx -------------------------------------------------------------------------------- /src/app/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/app/components/Button/OriginalButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Button/OriginalButton.tsx -------------------------------------------------------------------------------- /src/app/components/Button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Button/index.ts -------------------------------------------------------------------------------- /src/app/components/ButtonGroup/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/ButtonGroup/ButtonGroup.tsx -------------------------------------------------------------------------------- /src/app/components/ButtonGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/ButtonGroup/index.ts -------------------------------------------------------------------------------- /src/app/components/Card/Card.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Card/Card.styles.ts -------------------------------------------------------------------------------- /src/app/components/Card/Card.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Card/Card.test.tsx -------------------------------------------------------------------------------- /src/app/components/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Card/Card.tsx -------------------------------------------------------------------------------- /src/app/components/Card/CardControl.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Card/CardControl.test.tsx -------------------------------------------------------------------------------- /src/app/components/Card/CardControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Card/CardControl.tsx -------------------------------------------------------------------------------- /src/app/components/Card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Card/index.ts -------------------------------------------------------------------------------- /src/app/components/Checkbox/Checkbox.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Checkbox/Checkbox.styles.ts -------------------------------------------------------------------------------- /src/app/components/Checkbox/Checkbox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Checkbox/Checkbox.test.tsx -------------------------------------------------------------------------------- /src/app/components/Checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /src/app/components/Checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Checkbox"; 2 | -------------------------------------------------------------------------------- /src/app/components/Circle/Circle.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Circle/Circle.styles.ts -------------------------------------------------------------------------------- /src/app/components/Circle/Circle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Circle/Circle.test.tsx -------------------------------------------------------------------------------- /src/app/components/Circle/Circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Circle/Circle.tsx -------------------------------------------------------------------------------- /src/app/components/Circle/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Circle"; 2 | -------------------------------------------------------------------------------- /src/app/components/CircularProgressBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./CircularProgressBar"; 2 | -------------------------------------------------------------------------------- /src/app/components/Clipboard/Clipboard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Clipboard/Clipboard.test.tsx -------------------------------------------------------------------------------- /src/app/components/Clipboard/Clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Clipboard/Clipboard.tsx -------------------------------------------------------------------------------- /src/app/components/Clipboard/ClipboardIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Clipboard/ClipboardIcon.tsx -------------------------------------------------------------------------------- /src/app/components/Clipboard/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Clipboard"; 2 | -------------------------------------------------------------------------------- /src/app/components/Collapse/Collapse.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Collapse/Collapse.test.tsx -------------------------------------------------------------------------------- /src/app/components/Collapse/Collapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Collapse/Collapse.tsx -------------------------------------------------------------------------------- /src/app/components/Collapse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Collapse/index.ts -------------------------------------------------------------------------------- /src/app/components/ConfirmationModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ConfirmationModal"; 2 | -------------------------------------------------------------------------------- /src/app/components/ControlButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ControlButton"; 2 | -------------------------------------------------------------------------------- /src/app/components/DeleteResource/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./DeleteResource"; 2 | -------------------------------------------------------------------------------- /src/app/components/Divider/Divider.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Divider/Divider.styles.ts -------------------------------------------------------------------------------- /src/app/components/Divider/Divider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Divider/Divider.test.tsx -------------------------------------------------------------------------------- /src/app/components/Divider/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Divider/Divider.tsx -------------------------------------------------------------------------------- /src/app/components/Divider/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Divider"; 2 | -------------------------------------------------------------------------------- /src/app/components/Dropdown/Dropdown.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Dropdown/Dropdown.styles.ts -------------------------------------------------------------------------------- /src/app/components/Dropdown/Dropdown.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Dropdown/Dropdown.test.tsx -------------------------------------------------------------------------------- /src/app/components/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/app/components/Dropdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Dropdown"; 2 | -------------------------------------------------------------------------------- /src/app/components/EmptyBlock/EmptyBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/EmptyBlock/EmptyBlock.tsx -------------------------------------------------------------------------------- /src/app/components/EmptyBlock/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./EmptyBlock"; 2 | -------------------------------------------------------------------------------- /src/app/components/EmptyResults/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./EmptyResults"; 2 | -------------------------------------------------------------------------------- /src/app/components/FilterNetwork/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/FilterNetwork/index.ts -------------------------------------------------------------------------------- /src/app/components/FilterNetwork/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/FilterNetwork/models.ts -------------------------------------------------------------------------------- /src/app/components/Form/Form.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/Form.test.tsx -------------------------------------------------------------------------------- /src/app/components/Form/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/Form.tsx -------------------------------------------------------------------------------- /src/app/components/Form/FormField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/FormField.test.tsx -------------------------------------------------------------------------------- /src/app/components/Form/FormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/FormField.tsx -------------------------------------------------------------------------------- /src/app/components/Form/FormHelperText.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/FormHelperText.test.tsx -------------------------------------------------------------------------------- /src/app/components/Form/FormHelperText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/FormHelperText.tsx -------------------------------------------------------------------------------- /src/app/components/Form/FormLabel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/FormLabel.test.tsx -------------------------------------------------------------------------------- /src/app/components/Form/FormLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/FormLabel.tsx -------------------------------------------------------------------------------- /src/app/components/Form/SubForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/SubForm.test.tsx -------------------------------------------------------------------------------- /src/app/components/Form/SubForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/SubForm.tsx -------------------------------------------------------------------------------- /src/app/components/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/index.tsx -------------------------------------------------------------------------------- /src/app/components/Form/useFormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Form/useFormField.tsx -------------------------------------------------------------------------------- /src/app/components/Header/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Header/Header.test.tsx -------------------------------------------------------------------------------- /src/app/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/app/components/Header/HeaderSearchBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./HeaderSearchBar"; 2 | -------------------------------------------------------------------------------- /src/app/components/Header/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Header"; 2 | -------------------------------------------------------------------------------- /src/app/components/Icon/Icon.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Icon/Icon.test.tsx -------------------------------------------------------------------------------- /src/app/components/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Icon/Icon.tsx -------------------------------------------------------------------------------- /src/app/components/Icon/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Icon"; 2 | -------------------------------------------------------------------------------- /src/app/components/Image/Image.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Image/Image.test.tsx -------------------------------------------------------------------------------- /src/app/components/Image/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Image/Image.tsx -------------------------------------------------------------------------------- /src/app/components/Image/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Image"; 2 | -------------------------------------------------------------------------------- /src/app/components/Input/Input.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/Input.test.tsx -------------------------------------------------------------------------------- /src/app/components/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/Input.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputAddress.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputAddress.test.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputAddress.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputCounter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputCounter.test.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputCounter.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputCurrency.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputCurrency.test.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputCurrency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputCurrency.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputDefault.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputDefault.test.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputDefault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputDefault.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputPassword.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputPassword.test.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputPassword.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputRange.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputRange.test.tsx -------------------------------------------------------------------------------- /src/app/components/Input/InputRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/InputRange.tsx -------------------------------------------------------------------------------- /src/app/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/index.tsx -------------------------------------------------------------------------------- /src/app/components/Input/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Input/utils.ts -------------------------------------------------------------------------------- /src/app/components/Label/Label.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Label/Label.styles.tsx -------------------------------------------------------------------------------- /src/app/components/Label/Label.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Label/Label.test.tsx -------------------------------------------------------------------------------- /src/app/components/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Label/Label.tsx -------------------------------------------------------------------------------- /src/app/components/Label/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Label"; 2 | -------------------------------------------------------------------------------- /src/app/components/Layout/components/Page/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Page"; 2 | -------------------------------------------------------------------------------- /src/app/components/Layout/components/Section/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Section"; 2 | -------------------------------------------------------------------------------- /src/app/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/app/components/LayoutControls/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./LayoutControls"; 2 | -------------------------------------------------------------------------------- /src/app/components/LineChart/LineChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/LineChart/LineChart.test.tsx -------------------------------------------------------------------------------- /src/app/components/LineChart/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/LineChart/LineChart.tsx -------------------------------------------------------------------------------- /src/app/components/LineChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./LineChart"; 2 | -------------------------------------------------------------------------------- /src/app/components/Link/Link.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Link/Link.test.tsx -------------------------------------------------------------------------------- /src/app/components/Link/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Link/Link.tsx -------------------------------------------------------------------------------- /src/app/components/Link/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Link"; 2 | -------------------------------------------------------------------------------- /src/app/components/ListDivided/ListDivided.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/ListDivided/ListDivided.tsx -------------------------------------------------------------------------------- /src/app/components/ListDivided/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/ListDivided/index.tsx -------------------------------------------------------------------------------- /src/app/components/Loader/Loader.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Loader/Loader.styles.ts -------------------------------------------------------------------------------- /src/app/components/Loader/Loader.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Loader/Loader.test.tsx -------------------------------------------------------------------------------- /src/app/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /src/app/components/Loader/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Loader"; 2 | -------------------------------------------------------------------------------- /src/app/components/Modal/Modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Modal/Modal.test.tsx -------------------------------------------------------------------------------- /src/app/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/app/components/Modal/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Modal/hooks.ts -------------------------------------------------------------------------------- /src/app/components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Modal/index.tsx -------------------------------------------------------------------------------- /src/app/components/NavigationBar/components/BackButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./BackButton"; 2 | -------------------------------------------------------------------------------- /src/app/components/NavigationBar/components/Balance/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Balance"; 2 | -------------------------------------------------------------------------------- /src/app/components/NavigationBar/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./NavigationBar"; 2 | -------------------------------------------------------------------------------- /src/app/components/Notifications/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Notifications/hooks.ts -------------------------------------------------------------------------------- /src/app/components/Notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Notifications/index.ts -------------------------------------------------------------------------------- /src/app/components/Notifications/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Notifications/models.ts -------------------------------------------------------------------------------- /src/app/components/Notifications/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Notifications/styles.ts -------------------------------------------------------------------------------- /src/app/components/Notifications/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Notifications/utils.ts -------------------------------------------------------------------------------- /src/app/components/Pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Pagination/Pagination.tsx -------------------------------------------------------------------------------- /src/app/components/Pagination/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Pagination/index.tsx -------------------------------------------------------------------------------- /src/app/components/PercentageBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PercentageBar"; 2 | -------------------------------------------------------------------------------- /src/app/components/RadioButton/RadioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/RadioButton/RadioButton.tsx -------------------------------------------------------------------------------- /src/app/components/RadioButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./RadioButton"; 2 | -------------------------------------------------------------------------------- /src/app/components/Range/Range.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Range/Range.test.tsx -------------------------------------------------------------------------------- /src/app/components/Range/Range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Range/Range.tsx -------------------------------------------------------------------------------- /src/app/components/Range/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Range"; 2 | -------------------------------------------------------------------------------- /src/app/components/ReviewRating/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ReviewRating"; 2 | -------------------------------------------------------------------------------- /src/app/components/SearchBar/SearchBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/SearchBar/SearchBar.test.tsx -------------------------------------------------------------------------------- /src/app/components/SearchBar/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/SearchBar/SearchBar.tsx -------------------------------------------------------------------------------- /src/app/components/SearchBar/SearchBarOptions/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SearchBarOptions"; 2 | -------------------------------------------------------------------------------- /src/app/components/SearchBar/SearchBarPluginFilters/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SearchBarPluginFilters"; 2 | -------------------------------------------------------------------------------- /src/app/components/SearchBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SearchBar"; 2 | -------------------------------------------------------------------------------- /src/app/components/Select/Select.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Select/Select.test.tsx -------------------------------------------------------------------------------- /src/app/components/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Select/Select.tsx -------------------------------------------------------------------------------- /src/app/components/Select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Select"; 2 | -------------------------------------------------------------------------------- /src/app/components/SelectDropdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SelectDropdown"; 2 | -------------------------------------------------------------------------------- /src/app/components/SelectDropdown/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/SelectDropdown/styles.ts -------------------------------------------------------------------------------- /src/app/components/SelectFile/SelectFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/SelectFile/SelectFile.tsx -------------------------------------------------------------------------------- /src/app/components/SelectFile/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SelectFile"; 2 | -------------------------------------------------------------------------------- /src/app/components/SelectProfileImage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SelectProfileImage"; 2 | -------------------------------------------------------------------------------- /src/app/components/SideBar/SideBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/SideBar/SideBar.test.tsx -------------------------------------------------------------------------------- /src/app/components/SideBar/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/SideBar/SideBar.tsx -------------------------------------------------------------------------------- /src/app/components/SideBar/SideBarItem/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SideBarItem"; 2 | -------------------------------------------------------------------------------- /src/app/components/SideBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SideBar"; 2 | -------------------------------------------------------------------------------- /src/app/components/Skeleton/Skeleton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Skeleton/Skeleton.test.tsx -------------------------------------------------------------------------------- /src/app/components/Skeleton/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Skeleton/Skeleton.tsx -------------------------------------------------------------------------------- /src/app/components/Skeleton/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Skeleton"; 2 | -------------------------------------------------------------------------------- /src/app/components/Slider/Slider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Slider/Slider.test.tsx -------------------------------------------------------------------------------- /src/app/components/Slider/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Slider/Slider.tsx -------------------------------------------------------------------------------- /src/app/components/Slider/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Slider/hooks.ts -------------------------------------------------------------------------------- /src/app/components/Slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Slider/index.ts -------------------------------------------------------------------------------- /src/app/components/Spinner/Spinner.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Spinner/Spinner.styles.ts -------------------------------------------------------------------------------- /src/app/components/Spinner/Spinner.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Spinner/Spinner.test.tsx -------------------------------------------------------------------------------- /src/app/components/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /src/app/components/Spinner/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Spinner"; 2 | -------------------------------------------------------------------------------- /src/app/components/StepIndicator/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./StepIndicator"; 2 | -------------------------------------------------------------------------------- /src/app/components/StepNavigation/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./StepNavigation"; 2 | -------------------------------------------------------------------------------- /src/app/components/Switch/Switch.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Switch/Switch.test.tsx -------------------------------------------------------------------------------- /src/app/components/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Switch/Switch.tsx -------------------------------------------------------------------------------- /src/app/components/Switch/SwitchText.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Switch/SwitchText.style.ts -------------------------------------------------------------------------------- /src/app/components/Switch/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Switch"; 2 | -------------------------------------------------------------------------------- /src/app/components/Table/Table.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Table/Table.styles.ts -------------------------------------------------------------------------------- /src/app/components/Table/Table.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Table/Table.test.tsx -------------------------------------------------------------------------------- /src/app/components/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Table/Table.tsx -------------------------------------------------------------------------------- /src/app/components/Table/TableCell.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Table/TableCell.styles.ts -------------------------------------------------------------------------------- /src/app/components/Table/TableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Table/TableCell.tsx -------------------------------------------------------------------------------- /src/app/components/Table/TableRow.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Table/TableRow.styles.ts -------------------------------------------------------------------------------- /src/app/components/Table/TableRow.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Table/TableRow.test.tsx -------------------------------------------------------------------------------- /src/app/components/Table/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Table/TableRow.tsx -------------------------------------------------------------------------------- /src/app/components/Table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Table/index.ts -------------------------------------------------------------------------------- /src/app/components/Tabs/Tabs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Tabs/Tabs.test.tsx -------------------------------------------------------------------------------- /src/app/components/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/app/components/Tabs/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Tabs"; 2 | -------------------------------------------------------------------------------- /src/app/components/Tabs/useTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Tabs/useTab.ts -------------------------------------------------------------------------------- /src/app/components/TextArea/TextArea.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/TextArea/TextArea.test.tsx -------------------------------------------------------------------------------- /src/app/components/TextArea/TextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/TextArea/TextArea.tsx -------------------------------------------------------------------------------- /src/app/components/TextArea/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TextArea"; 2 | -------------------------------------------------------------------------------- /src/app/components/TimeAgo/TimeAgo.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/TimeAgo/TimeAgo.test.tsx -------------------------------------------------------------------------------- /src/app/components/TimeAgo/TimeAgo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/TimeAgo/TimeAgo.tsx -------------------------------------------------------------------------------- /src/app/components/TimeAgo/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TimeAgo"; 2 | -------------------------------------------------------------------------------- /src/app/components/Toggle/Toggle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Toggle/Toggle.test.tsx -------------------------------------------------------------------------------- /src/app/components/Toggle/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Toggle/Toggle.tsx -------------------------------------------------------------------------------- /src/app/components/Toggle/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Toggle"; 2 | -------------------------------------------------------------------------------- /src/app/components/Tooltip/Tooltip.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Tooltip/Tooltip.styles.ts -------------------------------------------------------------------------------- /src/app/components/Tooltip/Tooltip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Tooltip/Tooltip.test.tsx -------------------------------------------------------------------------------- /src/app/components/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /src/app/components/Tooltip/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Tooltip"; 2 | -------------------------------------------------------------------------------- /src/app/components/TruncateEnd/TruncateEnd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/TruncateEnd/TruncateEnd.tsx -------------------------------------------------------------------------------- /src/app/components/TruncateEnd/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TruncateEnd"; 2 | -------------------------------------------------------------------------------- /src/app/components/TruncateMiddle/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TruncateMiddle"; 2 | -------------------------------------------------------------------------------- /src/app/components/TruncateMiddleDynamic/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TruncateMiddleDynamic"; 2 | -------------------------------------------------------------------------------- /src/app/components/WalletCard/WalletCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/WalletCard/WalletCard.tsx -------------------------------------------------------------------------------- /src/app/components/WalletCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/WalletCard/index.ts -------------------------------------------------------------------------------- /src/app/components/WalletIcons/WalletIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/components/WalletIcons/WalletIcons.tsx -------------------------------------------------------------------------------- /src/app/components/WalletIcons/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WalletIcons"; 2 | -------------------------------------------------------------------------------- /src/app/components/WalletListItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WalletListItem"; 2 | -------------------------------------------------------------------------------- /src/app/contexts/Configuration/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Configuration"; 2 | -------------------------------------------------------------------------------- /src/app/contexts/Environment/Environment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/contexts/Environment/Environment.tsx -------------------------------------------------------------------------------- /src/app/contexts/Environment/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Environment"; 2 | -------------------------------------------------------------------------------- /src/app/contexts/Ledger/Ledger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/contexts/Ledger/Ledger.tsx -------------------------------------------------------------------------------- /src/app/contexts/Ledger/hooks/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/contexts/Ledger/hooks/connection.ts -------------------------------------------------------------------------------- /src/app/contexts/Ledger/hooks/scanner.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/contexts/Ledger/hooks/scanner.state.ts -------------------------------------------------------------------------------- /src/app/contexts/Ledger/hooks/scanner.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/contexts/Ledger/hooks/scanner.test.tsx -------------------------------------------------------------------------------- /src/app/contexts/Ledger/hooks/scanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/contexts/Ledger/hooks/scanner.ts -------------------------------------------------------------------------------- /src/app/contexts/Ledger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/contexts/Ledger/index.ts -------------------------------------------------------------------------------- /src/app/contexts/Ledger/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/contexts/Ledger/utils.ts -------------------------------------------------------------------------------- /src/app/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/contexts/index.ts -------------------------------------------------------------------------------- /src/app/hooks/click-outside.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/click-outside.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/click-outside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/click-outside.ts -------------------------------------------------------------------------------- /src/app/hooks/debounce.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/debounce.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/debounce.ts -------------------------------------------------------------------------------- /src/app/hooks/env.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/env.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/env.ts -------------------------------------------------------------------------------- /src/app/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/index.ts -------------------------------------------------------------------------------- /src/app/hooks/network-status.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/network-status.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/network-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/network-status.ts -------------------------------------------------------------------------------- /src/app/hooks/use-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-clipboard.ts -------------------------------------------------------------------------------- /src/app/hooks/use-deeplink.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-deeplink.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-deeplink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-deeplink.ts -------------------------------------------------------------------------------- /src/app/hooks/use-env-synchronizer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-env-synchronizer.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-env-synchronizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-env-synchronizer.ts -------------------------------------------------------------------------------- /src/app/hooks/use-exchange-rate.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-exchange-rate.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-exchange-rate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-exchange-rate.ts -------------------------------------------------------------------------------- /src/app/hooks/use-fees.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-fees.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-fees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-fees.ts -------------------------------------------------------------------------------- /src/app/hooks/use-files.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-files.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-files.ts -------------------------------------------------------------------------------- /src/app/hooks/use-network-options.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-network-options.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-network-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-network-options.ts -------------------------------------------------------------------------------- /src/app/hooks/use-notifications.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-notifications.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-notifications.ts -------------------------------------------------------------------------------- /src/app/hooks/use-previous.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-previous.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-previous.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-previous.ts -------------------------------------------------------------------------------- /src/app/hooks/use-profile-balance.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-profile-balance.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-profile-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-profile-balance.ts -------------------------------------------------------------------------------- /src/app/hooks/use-profile-synchronizer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-profile-synchronizer.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-profile-synchronizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-profile-synchronizer.ts -------------------------------------------------------------------------------- /src/app/hooks/use-profile-utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-profile-utils.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-profile-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-profile-utils.ts -------------------------------------------------------------------------------- /src/app/hooks/use-query-params.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-query-params.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-query-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-query-params.ts -------------------------------------------------------------------------------- /src/app/hooks/use-random-number.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-random-number.test.ts -------------------------------------------------------------------------------- /src/app/hooks/use-random-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-random-number.ts -------------------------------------------------------------------------------- /src/app/hooks/use-reload-path.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-reload-path.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-reload-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-reload-path.ts -------------------------------------------------------------------------------- /src/app/hooks/use-screenshot-protection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-screenshot-protection.test.ts -------------------------------------------------------------------------------- /src/app/hooks/use-screenshot-protection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-screenshot-protection.ts -------------------------------------------------------------------------------- /src/app/hooks/use-scroll.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-scroll.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-scroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-scroll.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-synchronizer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-synchronizer.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-synchronizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-synchronizer.ts -------------------------------------------------------------------------------- /src/app/hooks/use-theme.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-theme.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-theme.ts -------------------------------------------------------------------------------- /src/app/hooks/use-time-format.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-time-format.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-time-format.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-time-format.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-updater.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-updater.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-updater.ts -------------------------------------------------------------------------------- /src/app/hooks/use-validation.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-validation.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-validation.ts -------------------------------------------------------------------------------- /src/app/hooks/use-wallet-alias.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-wallet-alias.test.tsx -------------------------------------------------------------------------------- /src/app/hooks/use-wallet-alias.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/hooks/use-wallet-alias.tsx -------------------------------------------------------------------------------- /src/app/i18n/common/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/i18n/common/i18n.ts -------------------------------------------------------------------------------- /src/app/i18n/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/i18n/helpers/index.ts -------------------------------------------------------------------------------- /src/app/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/i18n/index.ts -------------------------------------------------------------------------------- /src/app/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./App"; 2 | -------------------------------------------------------------------------------- /src/app/sentry/SentryErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/sentry/SentryErrorBoundary.tsx -------------------------------------------------------------------------------- /src/app/sentry/SentryProvider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/sentry/SentryProvider.test.tsx -------------------------------------------------------------------------------- /src/app/sentry/SentryProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/sentry/SentryProvider.tsx -------------------------------------------------------------------------------- /src/app/sentry/SentryRouterWrapper.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/sentry/SentryRouterWrapper.test.tsx -------------------------------------------------------------------------------- /src/app/sentry/SentryRouterWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/sentry/SentryRouterWrapper.tsx -------------------------------------------------------------------------------- /src/app/services/Cache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/services/Cache.test.ts -------------------------------------------------------------------------------- /src/app/services/Cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/services/Cache.ts -------------------------------------------------------------------------------- /src/app/services/HttpClient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/services/HttpClient.test.ts -------------------------------------------------------------------------------- /src/app/services/HttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/services/HttpClient.ts -------------------------------------------------------------------------------- /src/app/services/ToastService.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/services/ToastService.test.tsx -------------------------------------------------------------------------------- /src/app/services/ToastService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/services/ToastService.tsx -------------------------------------------------------------------------------- /src/app/services/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/services/index.tsx -------------------------------------------------------------------------------- /src/app/validations/password.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/validations/password.test.tsx -------------------------------------------------------------------------------- /src/app/validations/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/app/validations/password.ts -------------------------------------------------------------------------------- /src/data/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./platform-sdk"; 2 | -------------------------------------------------------------------------------- /src/data/platform-sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/data/platform-sdk.ts -------------------------------------------------------------------------------- /src/domains/contact/components/ContactForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ContactForm"; 2 | -------------------------------------------------------------------------------- /src/domains/contact/components/ContactListItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ContactListItem"; 2 | -------------------------------------------------------------------------------- /src/domains/contact/components/CreateContact/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./CreateContact"; 2 | -------------------------------------------------------------------------------- /src/domains/contact/components/DeleteContact/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./DeleteContact"; 2 | -------------------------------------------------------------------------------- /src/domains/contact/components/UpdateContact/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./UpdateContact"; 2 | -------------------------------------------------------------------------------- /src/domains/contact/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/contact/components/index.ts -------------------------------------------------------------------------------- /src/domains/contact/e2e/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/contact/e2e/common.ts -------------------------------------------------------------------------------- /src/domains/contact/e2e/contacts-routing.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/contact/e2e/contacts-routing.e2e.ts -------------------------------------------------------------------------------- /src/domains/contact/e2e/create-contact.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/contact/e2e/create-contact.e2e.ts -------------------------------------------------------------------------------- /src/domains/contact/e2e/delete-contact.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/contact/e2e/delete-contact.e2e.ts -------------------------------------------------------------------------------- /src/domains/contact/e2e/update-contact.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/contact/e2e/update-contact.e2e.ts -------------------------------------------------------------------------------- /src/domains/contact/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/contact/i18n.ts -------------------------------------------------------------------------------- /src/domains/contact/pages/Contacts/Contacts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/contact/pages/Contacts/Contacts.tsx -------------------------------------------------------------------------------- /src/domains/contact/pages/Contacts/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Contacts"; 2 | -------------------------------------------------------------------------------- /src/domains/contact/pages/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Contacts"; 2 | -------------------------------------------------------------------------------- /src/domains/contact/routing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/contact/routing.test.tsx -------------------------------------------------------------------------------- /src/domains/contact/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/contact/routing.ts -------------------------------------------------------------------------------- /src/domains/dashboard/components/WalletsControls/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./WalletsControls"; 2 | -------------------------------------------------------------------------------- /src/domains/dashboard/e2e/navbar-routing.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/dashboard/e2e/navbar-routing.e2e.ts -------------------------------------------------------------------------------- /src/domains/dashboard/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/dashboard/hooks/index.ts -------------------------------------------------------------------------------- /src/domains/dashboard/hooks/use-tutorial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/dashboard/hooks/use-tutorial.ts -------------------------------------------------------------------------------- /src/domains/dashboard/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/dashboard/i18n.ts -------------------------------------------------------------------------------- /src/domains/dashboard/pages/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/dashboard/pages/Dashboard/index.tsx -------------------------------------------------------------------------------- /src/domains/dashboard/pages/Dashboard/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/dashboard/pages/Dashboard/models.ts -------------------------------------------------------------------------------- /src/domains/dashboard/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/dashboard/pages/index.ts -------------------------------------------------------------------------------- /src/domains/dashboard/routing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/dashboard/routing.test.tsx -------------------------------------------------------------------------------- /src/domains/dashboard/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/dashboard/routing.ts -------------------------------------------------------------------------------- /src/domains/error/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/error/i18n.ts -------------------------------------------------------------------------------- /src/domains/error/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/error/images/index.ts -------------------------------------------------------------------------------- /src/domains/error/pages/ApplicationError/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ApplicationError"; 2 | -------------------------------------------------------------------------------- /src/domains/error/pages/Offline/Offline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/error/pages/Offline/Offline.tsx -------------------------------------------------------------------------------- /src/domains/error/pages/Offline/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Offline"; 2 | -------------------------------------------------------------------------------- /src/domains/error/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/error/pages/index.ts -------------------------------------------------------------------------------- /src/domains/exchange/components/AddExchange/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./AddExchange"; 2 | -------------------------------------------------------------------------------- /src/domains/exchange/components/ExchangeCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ExchangeCard"; 2 | -------------------------------------------------------------------------------- /src/domains/exchange/components/ExchangeGrid/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ExchangeGrid"; 2 | -------------------------------------------------------------------------------- /src/domains/exchange/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/exchange/i18n.ts -------------------------------------------------------------------------------- /src/domains/exchange/pages/Exchange/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Exchange"; 2 | -------------------------------------------------------------------------------- /src/domains/exchange/pages/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Exchange"; 2 | -------------------------------------------------------------------------------- /src/domains/exchange/routing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/exchange/routing.test.tsx -------------------------------------------------------------------------------- /src/domains/exchange/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/exchange/routing.ts -------------------------------------------------------------------------------- /src/domains/network/components/NetworkIcon/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./NetworkIcon"; 2 | -------------------------------------------------------------------------------- /src/domains/network/components/NetworkOption/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./NetworkOption"; 2 | -------------------------------------------------------------------------------- /src/domains/network/components/SelectNetwork/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SelectNetwork"; 2 | -------------------------------------------------------------------------------- /src/domains/network/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/network/data.ts -------------------------------------------------------------------------------- /src/domains/network/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/network/helpers.ts -------------------------------------------------------------------------------- /src/domains/news/components/AddAssets/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./AddAssets"; 2 | -------------------------------------------------------------------------------- /src/domains/news/components/BlockfolioAd/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./BlockfolioAd"; 2 | -------------------------------------------------------------------------------- /src/domains/news/components/NewsCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/components/NewsCard/index.tsx -------------------------------------------------------------------------------- /src/domains/news/components/NewsOptions/components/SelectCategory/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SelectCategory"; 2 | -------------------------------------------------------------------------------- /src/domains/news/components/NewsOptions/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./NewsOptions"; 2 | -------------------------------------------------------------------------------- /src/domains/news/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/data.ts -------------------------------------------------------------------------------- /src/domains/news/e2e/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/e2e/common.ts -------------------------------------------------------------------------------- /src/domains/news/e2e/filtering.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/e2e/filtering.e2e.ts -------------------------------------------------------------------------------- /src/domains/news/e2e/news-routing.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/e2e/news-routing.e2e.ts -------------------------------------------------------------------------------- /src/domains/news/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/i18n.ts -------------------------------------------------------------------------------- /src/domains/news/images/blockfolio-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/images/blockfolio-banner.png -------------------------------------------------------------------------------- /src/domains/news/images/download-app-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/images/download-app-store.svg -------------------------------------------------------------------------------- /src/domains/news/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/images/index.ts -------------------------------------------------------------------------------- /src/domains/news/pages/News/News.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/pages/News/News.test.tsx -------------------------------------------------------------------------------- /src/domains/news/pages/News/News.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/pages/News/News.tsx -------------------------------------------------------------------------------- /src/domains/news/pages/News/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./News"; 2 | -------------------------------------------------------------------------------- /src/domains/news/pages/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./News"; 2 | -------------------------------------------------------------------------------- /src/domains/news/routing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/routing.test.tsx -------------------------------------------------------------------------------- /src/domains/news/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/news/routing.ts -------------------------------------------------------------------------------- /src/domains/plugin/components/InstallPlugin/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./InstallPlugin"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/ManualInstallationDisclaimer/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ManualInstallationDisclaimer"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginCard/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginCard"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginGrid/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginGrid"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginHeader/components/PluginSpecs/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginSpecs"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginHeader/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginHeader"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginImage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginImage"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginInfo/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginInfo"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginList/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginList"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginListItem/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginListItem"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginManagerControls/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginManagerControls"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginManagerNavigationBar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginManagerNavigationBar"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginManualInstallModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginManualInstallModal"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/components/PluginUpdatesConfirmation/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginUpdatesConfirmation"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/plugin/data.ts -------------------------------------------------------------------------------- /src/domains/plugin/e2e/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/plugin/e2e/common.ts -------------------------------------------------------------------------------- /src/domains/plugin/e2e/plugins-routing.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/plugin/e2e/plugins-routing.e2e.ts -------------------------------------------------------------------------------- /src/domains/plugin/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/plugin/i18n.ts -------------------------------------------------------------------------------- /src/domains/plugin/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/plugin/images/index.ts -------------------------------------------------------------------------------- /src/domains/plugin/pages/PluginDetails/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginDetails"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/pages/PluginManager/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PluginManager"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/pages/PluginView/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginView"; 2 | -------------------------------------------------------------------------------- /src/domains/plugin/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/plugin/pages/index.ts -------------------------------------------------------------------------------- /src/domains/plugin/routing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/plugin/routing.test.tsx -------------------------------------------------------------------------------- /src/domains/plugin/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/plugin/routing.ts -------------------------------------------------------------------------------- /src/domains/profile/components/FilePreview/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FilePreview"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/components/PasswordModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PasswordModal"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/components/ProfileAvatar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ProfileAvatar"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/components/ProfileCard/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ProfileCard"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/components/ProfileCreated/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ProfileCreated"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/components/ResetProfile/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ResetProfile"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/components/SelectAddress/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SelectAddress"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/components/SelectRecipient/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SelectRecipient"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/components/SignIn/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SignIn"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/data.ts -------------------------------------------------------------------------------- /src/domains/profile/e2e/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/e2e/common.ts -------------------------------------------------------------------------------- /src/domains/profile/e2e/notifications.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/e2e/notifications.e2e.ts -------------------------------------------------------------------------------- /src/domains/profile/e2e/welcome-screen.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/e2e/welcome-screen.e2e.ts -------------------------------------------------------------------------------- /src/domains/profile/hooks/use-profile-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/hooks/use-profile-import.ts -------------------------------------------------------------------------------- /src/domains/profile/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/i18n.ts -------------------------------------------------------------------------------- /src/domains/profile/images/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/images/index.tsx -------------------------------------------------------------------------------- /src/domains/profile/pages/CreateProfile/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./CreateProfile"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/pages/ImportProfile/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ImportProfile"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/pages/Welcome/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/pages/Welcome/Welcome.tsx -------------------------------------------------------------------------------- /src/domains/profile/pages/Welcome/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Welcome"; 2 | -------------------------------------------------------------------------------- /src/domains/profile/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/pages/index.tsx -------------------------------------------------------------------------------- /src/domains/profile/routing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/routing.test.tsx -------------------------------------------------------------------------------- /src/domains/profile/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/profile/routing.ts -------------------------------------------------------------------------------- /src/domains/profile/validations/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./CreateProfile"; 2 | -------------------------------------------------------------------------------- /src/domains/setting/components/DevelopmentNetwork/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./DevelopmentNetwork"; 2 | -------------------------------------------------------------------------------- /src/domains/setting/components/SettingsPageWrapper/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SettingsPageWrapper"; 2 | -------------------------------------------------------------------------------- /src/domains/setting/e2e/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/e2e/common.ts -------------------------------------------------------------------------------- /src/domains/setting/e2e/reset-profile.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/e2e/reset-profile.e2e.ts -------------------------------------------------------------------------------- /src/domains/setting/e2e/save-settings.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/e2e/save-settings.e2e.ts -------------------------------------------------------------------------------- /src/domains/setting/e2e/settings-routing.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/e2e/settings-routing.e2e.ts -------------------------------------------------------------------------------- /src/domains/setting/hooks/use-profile-export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/hooks/use-profile-export.ts -------------------------------------------------------------------------------- /src/domains/setting/hooks/use-settings-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/hooks/use-settings-menu.ts -------------------------------------------------------------------------------- /src/domains/setting/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/i18n.ts -------------------------------------------------------------------------------- /src/domains/setting/pages/Export/Export.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/pages/Export/Export.tsx -------------------------------------------------------------------------------- /src/domains/setting/pages/Export/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/pages/Export/index.tsx -------------------------------------------------------------------------------- /src/domains/setting/pages/General/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/pages/General/General.tsx -------------------------------------------------------------------------------- /src/domains/setting/pages/General/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./General"; 2 | -------------------------------------------------------------------------------- /src/domains/setting/pages/Password/Password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/pages/Password/Password.tsx -------------------------------------------------------------------------------- /src/domains/setting/pages/Password/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Password"; 2 | -------------------------------------------------------------------------------- /src/domains/setting/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/pages/index.ts -------------------------------------------------------------------------------- /src/domains/setting/routing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/routing.test.tsx -------------------------------------------------------------------------------- /src/domains/setting/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/routing.ts -------------------------------------------------------------------------------- /src/domains/setting/validations/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/setting/validations/Settings.ts -------------------------------------------------------------------------------- /src/domains/setting/validations/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Settings"; 2 | -------------------------------------------------------------------------------- /src/domains/splash/e2e/splash-screen.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/splash/e2e/splash-screen.e2e.ts -------------------------------------------------------------------------------- /src/domains/splash/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/splash/i18n.ts -------------------------------------------------------------------------------- /src/domains/splash/pages/Splash/Splash.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/splash/pages/Splash/Splash.test.tsx -------------------------------------------------------------------------------- /src/domains/splash/pages/Splash/Splash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/splash/pages/Splash/Splash.tsx -------------------------------------------------------------------------------- /src/domains/splash/pages/Splash/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Splash"; 2 | -------------------------------------------------------------------------------- /src/domains/splash/pages/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Splash"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/AddRecipient/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./AddRecipient"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/AuthenticationStep/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./AuthenticationStep"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/ConfirmSendTransaction/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ConfirmSendTransaction"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/DelegateRegistrationDetail/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./DelegateRegistrationDetail"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/DelegateResignationDetail/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./DelegateResignationDetail"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/ErrorStep/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ErrorStep"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/FeeWarning/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FeeWarning"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/FilterTransactions/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FilterTransactions"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/IpfsDetail/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./IpfsDetail"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/LedgerConfirmation/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./LedgerConfirmation"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/LegacyMagistrateDetail/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./LegacyMagistrateDetail"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/MultiPaymentDetail/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./MultiPaymentDetail"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/RecipientList/RecipientList.styles.ts: -------------------------------------------------------------------------------- 1 | export const defaultStyle = ` 2 | thead { display: none } 3 | `; 4 | -------------------------------------------------------------------------------- /src/domains/transaction/components/RecipientList/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./RecipientList"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/SearchRecipient/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SearchRecipient"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/SecondSignatureDetail/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./SecondSignatureDetail"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TotalAmountBox/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TotalAmountBox"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetail/TransactionAmount/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionAmount"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetail/TransactionExplorerLink/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionExplorerLink"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetail/TransactionFee/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionFee"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetail/TransactionMemo/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionMemo"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetail/TransactionNetwork/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionNetwork"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetail/TransactionRecipients/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionRecipients"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetail/TransactionSender/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionSender"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetail/TransactionTimestamp/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionTimestamp"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetail/TransactionType/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionType"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetail/TransactionVotes/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionVotes"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionDetailModal/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./TransactionDetailModal"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionSuccessful/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TransactionSuccessful"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransactionTable/PendingTransactionsTable/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./PendingTransactionsTable"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/Transactions/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Transactions"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/TransferDetail/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./TransferDetail"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/components/VoteDetail/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./VoteDetail"; 2 | -------------------------------------------------------------------------------- /src/domains/transaction/e2e/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/e2e/common.ts -------------------------------------------------------------------------------- /src/domains/transaction/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/hooks/index.ts -------------------------------------------------------------------------------- /src/domains/transaction/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/i18n.ts -------------------------------------------------------------------------------- /src/domains/transaction/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/images/index.ts -------------------------------------------------------------------------------- /src/domains/transaction/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/pages/index.ts -------------------------------------------------------------------------------- /src/domains/transaction/routing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/routing.test.tsx -------------------------------------------------------------------------------- /src/domains/transaction/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/routing.ts -------------------------------------------------------------------------------- /src/domains/transaction/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/utils.test.ts -------------------------------------------------------------------------------- /src/domains/transaction/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/utils.ts -------------------------------------------------------------------------------- /src/domains/transaction/validations/Common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/validations/Common.ts -------------------------------------------------------------------------------- /src/domains/transaction/validations/SendIpfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/validations/SendIpfs.ts -------------------------------------------------------------------------------- /src/domains/transaction/validations/SendVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/validations/SendVote.ts -------------------------------------------------------------------------------- /src/domains/transaction/validations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/transaction/validations/index.ts -------------------------------------------------------------------------------- /src/domains/vote/components/AddressTable/AddressRow/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./AddressRow"; 2 | -------------------------------------------------------------------------------- /src/domains/vote/components/AddressTable/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./AddressTable"; 2 | -------------------------------------------------------------------------------- /src/domains/vote/components/DelegateTable/DelegateRow/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./DelegateRow"; 2 | -------------------------------------------------------------------------------- /src/domains/vote/components/DelegateTable/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./DelegateTable"; 2 | -------------------------------------------------------------------------------- /src/domains/vote/components/VoteList/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./VoteList"; 2 | -------------------------------------------------------------------------------- /src/domains/vote/components/VotesEmpty/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./VotesEmpty"; 2 | -------------------------------------------------------------------------------- /src/domains/vote/components/VotesHeader/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./VotesHeader"; 2 | -------------------------------------------------------------------------------- /src/domains/vote/components/VotingWallets/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./VotingWallets"; 2 | -------------------------------------------------------------------------------- /src/domains/vote/e2e/votes.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/vote/e2e/votes.e2e.ts -------------------------------------------------------------------------------- /src/domains/vote/hooks/use-delegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/vote/hooks/use-delegates.ts -------------------------------------------------------------------------------- /src/domains/vote/hooks/use-vote-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/vote/hooks/use-vote-actions.ts -------------------------------------------------------------------------------- /src/domains/vote/hooks/use-vote-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/vote/hooks/use-vote-filters.ts -------------------------------------------------------------------------------- /src/domains/vote/hooks/use-vote-query-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/vote/hooks/use-vote-query-params.ts -------------------------------------------------------------------------------- /src/domains/vote/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/vote/i18n.ts -------------------------------------------------------------------------------- /src/domains/vote/pages/Votes/Votes.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/vote/pages/Votes/Votes.test.tsx -------------------------------------------------------------------------------- /src/domains/vote/pages/Votes/Votes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/vote/pages/Votes/Votes.tsx -------------------------------------------------------------------------------- /src/domains/vote/pages/Votes/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Votes"; 2 | -------------------------------------------------------------------------------- /src/domains/vote/pages/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./Votes"; 2 | -------------------------------------------------------------------------------- /src/domains/vote/routing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/vote/routing.test.tsx -------------------------------------------------------------------------------- /src/domains/vote/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/vote/routing.ts -------------------------------------------------------------------------------- /src/domains/wallet/components/DeleteWallet/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./DeleteWallet"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/EncryptPasswordStep/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./EncryptPasswordStep"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/Ledger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/components/Ledger/index.ts -------------------------------------------------------------------------------- /src/domains/wallet/components/MnemonicList/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./MnemonicList"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/MnemonicVerification/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./MnemonicVerification"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/NetworkStep/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./NetworkStep"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/SearchWallet/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SearchWallet"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/SignMessage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SignMessage"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/UpdateWalletName/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./UpdateWalletName"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/VerifyMessage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./VerifyMessage"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/VerifyMessageStatus/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./VerifyMessageStatus"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/WalletBottomSheetMenu/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WalletBottomSheetMenu"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/components/WalletUpdate/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./WalletUpdate"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/data.ts -------------------------------------------------------------------------------- /src/domains/wallet/e2e/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/e2e/common.ts -------------------------------------------------------------------------------- /src/domains/wallet/e2e/wallet-details.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/e2e/wallet-details.e2e.ts -------------------------------------------------------------------------------- /src/domains/wallet/e2e/wallets-routing.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/e2e/wallets-routing.e2e.ts -------------------------------------------------------------------------------- /src/domains/wallet/hooks/use-import-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/hooks/use-import-options.ts -------------------------------------------------------------------------------- /src/domains/wallet/hooks/use-wallet-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/hooks/use-wallet-import.ts -------------------------------------------------------------------------------- /src/domains/wallet/hooks/use-wallet-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/hooks/use-wallet-sync.ts -------------------------------------------------------------------------------- /src/domains/wallet/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/i18n.ts -------------------------------------------------------------------------------- /src/domains/wallet/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/images/index.ts -------------------------------------------------------------------------------- /src/domains/wallet/middleware.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/middleware.test.ts -------------------------------------------------------------------------------- /src/domains/wallet/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/middleware.ts -------------------------------------------------------------------------------- /src/domains/wallet/pages/CreateWallet/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./CreateWallet"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/pages/ImportWallet/Step2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/pages/ImportWallet/Step2.tsx -------------------------------------------------------------------------------- /src/domains/wallet/pages/ImportWallet/Step3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/pages/ImportWallet/Step3.tsx -------------------------------------------------------------------------------- /src/domains/wallet/pages/ImportWallet/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./ImportWallet"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/pages/WalletDetails/components/WalletHeader/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WalletHeader"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/pages/WalletDetails/components/WalletVote/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WalletVote"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/pages/WalletDetails/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./WalletDetails"; 2 | -------------------------------------------------------------------------------- /src/domains/wallet/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/pages/index.ts -------------------------------------------------------------------------------- /src/domains/wallet/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/routing.ts -------------------------------------------------------------------------------- /src/domains/wallet/utils/get-default-alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/utils/get-default-alias.ts -------------------------------------------------------------------------------- /src/domains/wallet/validations/Alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/validations/Alias.ts -------------------------------------------------------------------------------- /src/domains/wallet/validations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/domains/wallet/validations/index.ts -------------------------------------------------------------------------------- /src/electron/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/electron/index.ts -------------------------------------------------------------------------------- /src/electron/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/electron/menu.js -------------------------------------------------------------------------------- /src/electron/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/electron/plugins.ts -------------------------------------------------------------------------------- /src/electron/updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/electron/updater.js -------------------------------------------------------------------------------- /src/electron/utils/single-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/electron/utils/single-instance.ts -------------------------------------------------------------------------------- /src/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/index.test.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/README.md -------------------------------------------------------------------------------- /src/plugins/components/shared/Box.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/components/shared/Box.test.tsx -------------------------------------------------------------------------------- /src/plugins/components/shared/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/components/shared/Box.tsx -------------------------------------------------------------------------------- /src/plugins/context/PluginManagerProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/context/PluginManagerProvider.tsx -------------------------------------------------------------------------------- /src/plugins/context/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./PluginManagerProvider"; 2 | -------------------------------------------------------------------------------- /src/plugins/core/configuration/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./plugin-configuration"; 2 | -------------------------------------------------------------------------------- /src/plugins/core/configuration/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/core/configuration/permissions.ts -------------------------------------------------------------------------------- /src/plugins/core/configuration/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/core/configuration/schema.ts -------------------------------------------------------------------------------- /src/plugins/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/core/index.ts -------------------------------------------------------------------------------- /src/plugins/core/internals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/core/internals/index.ts -------------------------------------------------------------------------------- /src/plugins/core/internals/plugin-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/core/internals/plugin-hooks.ts -------------------------------------------------------------------------------- /src/plugins/core/plugin-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/core/plugin-container.ts -------------------------------------------------------------------------------- /src/plugins/core/plugin-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/core/plugin-controller.ts -------------------------------------------------------------------------------- /src/plugins/core/plugin-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/core/plugin-manager.ts -------------------------------------------------------------------------------- /src/plugins/core/plugin-service-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/core/plugin-service-repository.ts -------------------------------------------------------------------------------- /src/plugins/core/plugin-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/core/plugin-service.ts -------------------------------------------------------------------------------- /src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/index.ts -------------------------------------------------------------------------------- /src/plugins/loader/fs/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./loader-fs"; 2 | -------------------------------------------------------------------------------- /src/plugins/loader/fs/loader-fs-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/loader/fs/loader-fs-handler.ts -------------------------------------------------------------------------------- /src/plugins/loader/fs/loader-fs-ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/loader/fs/loader-fs-ipc.ts -------------------------------------------------------------------------------- /src/plugins/loader/fs/loader-fs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/loader/fs/loader-fs.test.ts -------------------------------------------------------------------------------- /src/plugins/loader/fs/loader-fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/loader/fs/loader-fs.ts -------------------------------------------------------------------------------- /src/plugins/loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/loader/index.ts -------------------------------------------------------------------------------- /src/plugins/loader/vm.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/loader/vm.test.ts -------------------------------------------------------------------------------- /src/plugins/loader/vm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/loader/vm.ts -------------------------------------------------------------------------------- /src/plugins/services/events/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./EventsPluginService"; 2 | -------------------------------------------------------------------------------- /src/plugins/services/filesystem/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FileSystemPluginService"; 2 | -------------------------------------------------------------------------------- /src/plugins/services/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/services/http/index.ts -------------------------------------------------------------------------------- /src/plugins/services/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/services/index.tsx -------------------------------------------------------------------------------- /src/plugins/services/launch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/services/launch/index.ts -------------------------------------------------------------------------------- /src/plugins/services/message/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./MessagePluginService"; 2 | -------------------------------------------------------------------------------- /src/plugins/services/profile/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ProfilePluginService"; 2 | -------------------------------------------------------------------------------- /src/plugins/services/store/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./StorePluginService"; 2 | -------------------------------------------------------------------------------- /src/plugins/services/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/services/theme/index.ts -------------------------------------------------------------------------------- /src/plugins/services/timers/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TimersPluginService"; 2 | -------------------------------------------------------------------------------- /src/plugins/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/plugins/types.ts -------------------------------------------------------------------------------- /src/polyfill/memcpy.js: -------------------------------------------------------------------------------- 1 | module.exports = undefined; 2 | -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | // / 2 | -------------------------------------------------------------------------------- /src/router/RouterView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/router/RouterView.test.tsx -------------------------------------------------------------------------------- /src/router/RouterView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/router/RouterView.tsx -------------------------------------------------------------------------------- /src/router/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/router/index.tsx -------------------------------------------------------------------------------- /src/router/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/router/interfaces.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/app.css -------------------------------------------------------------------------------- /src/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/base.css -------------------------------------------------------------------------------- /src/styles/coins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/coins.css -------------------------------------------------------------------------------- /src/styles/focus-visible.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/focus-visible.css -------------------------------------------------------------------------------- /src/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/fonts.css -------------------------------------------------------------------------------- /src/styles/headings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/headings.css -------------------------------------------------------------------------------- /src/styles/scrollbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/scrollbars.css -------------------------------------------------------------------------------- /src/styles/skeletons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/skeletons.css -------------------------------------------------------------------------------- /src/styles/toasts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/toasts.css -------------------------------------------------------------------------------- /src/styles/tooltips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/tooltips.css -------------------------------------------------------------------------------- /src/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/styles/variables.css -------------------------------------------------------------------------------- /src/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tailwind.config.js -------------------------------------------------------------------------------- /src/tests/custom-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/custom-env.js -------------------------------------------------------------------------------- /src/tests/fixtures/env/storage-mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/env/storage-mainnet.json -------------------------------------------------------------------------------- /src/tests/fixtures/env/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/env/storage.json -------------------------------------------------------------------------------- /src/tests/fixtures/env/testing-passwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/env/testing-passwords.json -------------------------------------------------------------------------------- /src/tests/fixtures/news/empty-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/news/empty-response.json -------------------------------------------------------------------------------- /src/tests/fixtures/news/filtered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/news/filtered.json -------------------------------------------------------------------------------- /src/tests/fixtures/news/page-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/news/page-1.json -------------------------------------------------------------------------------- /src/tests/fixtures/news/page-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/news/page-2.json -------------------------------------------------------------------------------- /src/tests/fixtures/plugins/whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/plugins/whitelist.json -------------------------------------------------------------------------------- /src/tests/fixtures/profile/import/profile.dwe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/profile/import/profile.dwe -------------------------------------------------------------------------------- /src/tests/fixtures/registrations/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/registrations/plugins.json -------------------------------------------------------------------------------- /src/tests/fixtures/transactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/fixtures/transactions/index.ts -------------------------------------------------------------------------------- /src/tests/mocks/StubStorage/StubStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/tests/mocks/StubStorage/StubStorage.ts -------------------------------------------------------------------------------- /src/tests/mocks/StubStorage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./StubStorage"; 2 | -------------------------------------------------------------------------------- /src/tests/mocks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./StubStorage"; 2 | -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/react-table.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/types/react-table.d.ts -------------------------------------------------------------------------------- /src/types/twin-macro.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/types/twin-macro.d.ts -------------------------------------------------------------------------------- /src/utils/assertions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/assertions.test.ts -------------------------------------------------------------------------------- /src/utils/assertions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/assertions.ts -------------------------------------------------------------------------------- /src/utils/debounce.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/debounce.test.ts -------------------------------------------------------------------------------- /src/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/debounce.ts -------------------------------------------------------------------------------- /src/utils/e2e-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/e2e-interfaces.ts -------------------------------------------------------------------------------- /src/utils/e2e-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/e2e-utils.ts -------------------------------------------------------------------------------- /src/utils/electron-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/electron-utils.test.ts -------------------------------------------------------------------------------- /src/utils/electron-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/electron-utils.ts -------------------------------------------------------------------------------- /src/utils/equals.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/equals.test.ts -------------------------------------------------------------------------------- /src/utils/equals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/equals.ts -------------------------------------------------------------------------------- /src/utils/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/test-helpers.ts -------------------------------------------------------------------------------- /src/utils/testing-library.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/testing-library.tsx -------------------------------------------------------------------------------- /src/utils/url-encode-root-color.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/url-encode-root-color.test.ts -------------------------------------------------------------------------------- /src/utils/url-encode-root-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/url-encode-root-color.ts -------------------------------------------------------------------------------- /src/utils/validations/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./validate-pattern"; 2 | -------------------------------------------------------------------------------- /src/utils/validations/validate-pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/src/utils/validations/validate-pattern.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/webpack.main.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkEcosystem/desktop-wallet/HEAD/yarn.lock --------------------------------------------------------------------------------