├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .stylelintrc ├── .tx └── config ├── LICENSE ├── README.md ├── SECURITY.md ├── app ├── actions │ ├── AccountMixerActions.js │ ├── ClientActions.js │ ├── ControlActions.js │ ├── DaemonActions.js │ ├── DexActions.js │ ├── GovernanceActions.js │ ├── LNActions.js │ ├── LedgerActions.js │ ├── NotificationActions.js │ ├── SettingsActions.js │ ├── SidebarActions.js │ ├── SnackbarActions.js │ ├── StatisticsActions.js │ ├── TransactionActions.js │ ├── TrezorActions.js │ ├── VSPActions.js │ ├── VersionActions.js │ └── WalletLoaderActions.js ├── app.development.html ├── assets │ └── videos │ │ ├── index.js │ │ ├── onboard01.mp4 │ │ ├── onboard02.mp4 │ │ ├── onboard03.mp4 │ │ └── onboard04.mp4 ├── components │ ├── ErrorScreen │ │ ├── ErrorScreen.jsx │ │ └── index.js │ ├── Header │ │ ├── GetStarted │ │ │ ├── GetStarted.jsx │ │ │ ├── GetStarted.module.css │ │ │ └── index.js │ │ ├── Header.jsx │ │ ├── Standard │ │ │ ├── Standard.jsx │ │ │ ├── Standard.module.css │ │ │ └── index.js │ │ └── index.js │ ├── SideBar │ │ ├── AccountsList │ │ │ ├── AccountsList.jsx │ │ │ └── AccountsList.module.css │ │ ├── Logo │ │ │ ├── Logo.jsx │ │ │ └── Logo.module.css │ │ ├── MenuBottom │ │ │ ├── LastBlockTime │ │ │ │ ├── LastBlockTime.jsx │ │ │ │ └── hooks.js │ │ │ ├── MenuBottom.module.css │ │ │ ├── MenuBottomCollapsed.jsx │ │ │ ├── MenuBottomExpanded.jsx │ │ │ ├── SettingsIconLink │ │ │ │ ├── SettingsIconLink.jsx │ │ │ │ └── SettingsIconLink.module.css │ │ │ └── SpvIcon │ │ │ │ ├── SpvIcon.jsx │ │ │ │ └── SpvIcon.module.css │ │ ├── MenuLinks │ │ │ ├── Links.jsx │ │ │ ├── MenuLinks.jsx │ │ │ ├── MenuLinks.module.css │ │ │ └── hooks.js │ │ ├── SideBar.jsx │ │ ├── SideBar.module.css │ │ └── hooks.js │ ├── Snackbar │ │ ├── Notification │ │ │ ├── Message.jsx │ │ │ ├── Transaction.jsx │ │ │ └── index.js │ │ ├── Snackbar.module.css │ │ ├── hooks.js │ │ └── index.js │ ├── buttons │ │ ├── AutoBuyerSwitch.jsx │ │ ├── Button │ │ │ ├── Button.jsx │ │ │ └── Button.module.css │ │ ├── Buttons.module.css │ │ ├── CloseButton │ │ │ ├── CloseButton.jsx │ │ │ ├── CloseButton.module.css │ │ │ └── index.js │ │ ├── CopyToClipboardButton │ │ │ ├── CopyToClipboardButton.jsx │ │ │ ├── CopyToClipboardButton.module.css │ │ │ └── index.js │ │ ├── DangerButton │ │ │ ├── DangerButton.jsx │ │ │ ├── DangerButton.module.css │ │ │ └── index.js │ │ ├── DocButton.jsx │ │ ├── EnableExternalRequestButton.jsx │ │ ├── EyeFilterMenu │ │ │ ├── EyeFilterMenu.jsx │ │ │ ├── EyeFilterMenu.module.css │ │ │ └── EyeFilterMenuWithSlider │ │ │ │ ├── EyeFilterMenuWithSlider.jsx │ │ │ │ └── EyeFilterMenuWithSlider.module.css │ │ ├── HelpLink │ │ │ ├── HelpLink.jsx │ │ │ └── HelpLink.module.css │ │ ├── InvisibleButton │ │ │ ├── InvisibleButton.jsx │ │ │ ├── InvisibleButton.module.css │ │ │ └── index.js │ │ ├── InvisiblePiUiButton │ │ │ ├── InvisiblePiUiButton.jsx │ │ │ ├── InvisiblePiUiButton.module.css │ │ │ └── index.js │ │ ├── KeyBlueButton │ │ │ ├── KeyBlueButton.jsx │ │ │ ├── KeyBlueButton.module.css │ │ │ └── index.js │ │ ├── ListUTXOsButton │ │ │ ├── ListUTXOsButton.jsx │ │ │ ├── ListUTXOsButton.module.css │ │ │ └── index.js │ │ ├── MixerSettingsIconButton │ │ │ ├── MixerSettingsIconButton.jsx │ │ │ ├── MixerSettingsIconButton.module.css │ │ │ └── index.js │ │ ├── ModalButton.jsx │ │ ├── PathButton │ │ │ ├── PathButton.jsx │ │ │ └── PathButton.module.css │ │ ├── PiUiButton │ │ │ ├── PiUiButton.jsx │ │ │ ├── PiUiButton.module.css │ │ │ └── index.js │ │ ├── RescanButton │ │ │ ├── RescanButton.jsx │ │ │ ├── RescanButton.module.css │ │ │ └── RescanCancelButton.jsx │ │ ├── SearchForNodesButton │ │ │ ├── SearchForNodesButton.jsx │ │ │ ├── SearchForNodesButton.module.css │ │ │ └── index.js │ │ ├── SendTransactionButton │ │ │ ├── SendTransactionButton.jsx │ │ │ ├── SendTransactionButton.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── SlateGrayButton │ │ │ ├── SlateGrayButton.jsx │ │ │ ├── SlateGrayButton.module.css │ │ │ └── index.js │ │ ├── TextToggle │ │ │ ├── TextToggle.module.css │ │ │ ├── Toggle.jsx │ │ │ └── index.js │ │ ├── ToggleSwitch │ │ │ ├── ToggleSwitch.jsx │ │ │ └── ToggleSwitch.module.css │ │ └── index.js │ ├── charts │ │ ├── BalanceChart.jsx │ │ ├── ChartTooltip.jsx │ │ ├── Charts.module.css │ │ ├── StakeRewardsChart.jsx │ │ ├── Styles.js │ │ ├── TicketChart.jsx │ │ ├── TransactionChart.jsx │ │ ├── VoteTimeChart.jsx │ │ ├── hooks.js │ │ ├── index.js │ │ └── messages.js │ ├── indicators │ │ ├── AnimatedLinearProgressFull │ │ │ ├── AnimatedLinearProgressFull.jsx │ │ │ ├── AnimatedLinearProgressFull.module.css │ │ │ └── index.js │ │ ├── DecredLoading │ │ │ ├── DecredLoading.jsx │ │ │ └── DecredLoading.module.css │ │ ├── LinearProgress │ │ │ ├── LinearProgress.module.css │ │ │ └── LinearProgressSmall.jsx │ │ ├── LoaderBarBottom │ │ │ ├── LoaderBarBottom.jsx │ │ │ ├── LoaderBarBottom.module.css │ │ │ └── index.js │ │ ├── LoadingMoreTickets │ │ │ ├── LoadingMoreTickets.jsx │ │ │ ├── LoadingMoreTickets.module.css │ │ │ └── hooks.js │ │ ├── LoadingMoreTransactions │ │ │ ├── LoadingMoreTransactions.jsx │ │ │ └── LoadingMoreTransactions.module.css │ │ ├── NoMoreIndicators │ │ │ ├── NoMoreIndicators.module.css │ │ │ ├── NoMoreTickets.jsx │ │ │ ├── NoMoreTransactions.jsx │ │ │ ├── NoProposals.jsx │ │ │ ├── NoStats.jsx │ │ │ ├── NoTickets.jsx │ │ │ └── NoTransactions.jsx │ │ ├── PoliteiaLoading │ │ │ ├── PoliteiaLoading.jsx │ │ │ └── PoliteiaLoading.module.css │ │ ├── ProgressRing.jsx │ │ ├── RescanProgress │ │ │ ├── RescanProgress.jsx │ │ │ └── RescanProgress.module.css │ │ ├── SimpleLoading │ │ │ ├── SimpleLoading.jsx │ │ │ └── SimpleLoading.module.css │ │ ├── StakeyBounce │ │ │ ├── StakeyBounce.jsx │ │ │ ├── StakeyBounce.module.css │ │ │ └── StakeyBounceExtraSmall.jsx │ │ ├── StepIndicator │ │ │ ├── StepIndicator.jsx │ │ │ └── StepIndicator.module.css │ │ ├── VotingProgress │ │ │ ├── VotingProgress.jsx │ │ │ └── VotingProgress.module.css │ │ └── index.js │ ├── inputs │ │ ├── AccountsSelect │ │ │ ├── AccountsSelect.jsx │ │ │ ├── AccountsSelect.module.css │ │ │ ├── LinkToAccounts │ │ │ │ ├── LinkToAccounts.jsx │ │ │ │ ├── LinkToAccounts.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── AddressInput.jsx │ │ ├── DcrInput │ │ │ ├── DcrInput.jsx │ │ │ ├── DcrInput.module.css │ │ │ └── index.js │ │ ├── DetailedAccountsSelect │ │ │ ├── DetailedAccountsSelect.jsx │ │ │ ├── DetailedAccountsSelect.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── FloatInput.jsx │ │ ├── InlineField │ │ │ ├── InlineField.jsx │ │ │ ├── InlineField.module.css │ │ │ └── index.js │ │ ├── Input │ │ │ ├── Input.jsx │ │ │ ├── Input.module.css │ │ │ └── index.js │ │ ├── IntegerInput.jsx │ │ ├── LanguageSelectInput │ │ │ ├── LanguageSelectInput.jsx │ │ │ ├── LanguageSelectInput.module.css │ │ │ └── index.js │ │ ├── NumTicketsInput │ │ │ ├── NumTicketsInput.jsx │ │ │ ├── NumTicketsInput.module.css │ │ │ └── index.js │ │ ├── NumericInput │ │ │ ├── NumericInput.jsx │ │ │ ├── NumericInput.module.css │ │ │ └── index.js │ │ ├── PassphraseModalField │ │ │ ├── PassphraseModalField.jsx │ │ │ ├── PassphraseModalField.module.css │ │ │ └── index.js │ │ ├── PasswordInput │ │ │ ├── PasswordInput.jsx │ │ │ ├── PasswordInput.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── PathBrowseInput │ │ │ ├── PathBrowseInput.jsx │ │ │ ├── PathBrowseInput.module.css │ │ │ └── index.js │ │ ├── PathInput │ │ │ ├── PathInput.jsx │ │ │ ├── PathInput.module.css │ │ │ └── index.js │ │ ├── ReceiveAccountsSelect.jsx │ │ ├── SeedHexEntry.jsx │ │ ├── Select.jsx │ │ ├── SettingsInput.jsx │ │ ├── SettingsTextInput.jsx │ │ ├── TextInput.jsx │ │ ├── VSPSelect │ │ │ ├── VSPSelect.jsx │ │ │ ├── VSPSelect.modules.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ └── index.js │ ├── layout │ │ ├── BlurableContainer │ │ │ ├── BlurableContainer.jsx │ │ │ ├── BlurableContainer.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── DefaultThemesWithCustomTabsProvider.jsx │ │ ├── DescriptionHeader │ │ │ ├── DescriptionHeader.jsx │ │ │ ├── DescriptionHeader.module.css │ │ │ └── index.js │ │ ├── PageBody │ │ │ ├── PageBody.jsx │ │ │ ├── PageBody.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── StandaloneHeader │ │ │ ├── StandaloneHeader.jsx │ │ │ ├── StandaloneHeader.module.css │ │ │ └── index.js │ │ ├── StandalonePage │ │ │ ├── StandalonePage.jsx │ │ │ ├── StandalonePage.module.css │ │ │ └── index.js │ │ ├── StandalonePageBody │ │ │ ├── StandalonePageBody.jsx │ │ │ ├── StandalonePageBody.module.css │ │ │ └── index.js │ │ ├── TabbedPage │ │ │ ├── TabbedPage.jsx │ │ │ ├── TabbedPage.module.css │ │ │ └── index.js │ │ ├── TitleHeader │ │ │ ├── TitleHeader.jsx │ │ │ ├── TitleHeader.module.css │ │ │ └── index.js │ │ └── index.js │ ├── modals │ │ ├── AboutModal │ │ │ ├── AboutModal.jsx │ │ │ ├── AboutModal.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── AddAccountModal │ │ │ ├── AddAccountModal.jsx │ │ │ ├── AddAccountModalContent.jsx │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── AddMixerAccountsModal.jsx │ │ ├── AppPassAndPassphraseModal │ │ │ ├── AppPassAndPassphraseModal.jsx │ │ │ └── AppPassAndPassphraseModalContent.jsx │ │ ├── AutoBuyerSettingsModal │ │ │ ├── AutoBuyerSettingsModal.jsx │ │ │ ├── AutoBuyerSettingsModal.module.css │ │ │ └── index.js │ │ ├── AutoWalletLaunchingModal │ │ │ ├── AutoWalletLaunchingModal.jsx │ │ │ ├── AutoWalletLaunchingModal.module.css │ │ │ └── index.js │ │ ├── CantCloseModals │ │ │ ├── AccountMixerRunningModal.jsx │ │ │ ├── AutobuyerRunningModal.jsx │ │ │ ├── CantCloseModals.jsx │ │ │ ├── CantCloseModals.module.css │ │ │ ├── DexOpenOrdersModal.jsx │ │ │ ├── HasTicketFeeError.jsx │ │ │ ├── PurchasingTicketsModal.jsx │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── ChangePassphraseModal │ │ │ ├── ChangePassphraseModal.jsx │ │ │ ├── ChangePassphraseModal.module.css │ │ │ ├── ChangePassphraseModalContent.jsx │ │ │ └── index.js │ │ ├── ConfirmModal │ │ │ ├── ConfirmModal.jsx │ │ │ ├── ConfirmModal.module.css │ │ │ └── index.js │ │ ├── ConfirmationDialogModal │ │ │ ├── ConfirmationDialogModal.jsx │ │ │ └── index.js │ │ ├── DiscoverUsageModal │ │ │ ├── DiscoverUsageModal.jsx │ │ │ ├── DiscoverUsageModal.module.css │ │ │ └── index.js │ │ ├── DocumentationInfoModal │ │ │ ├── DocumentationInfoModal.jsx │ │ │ ├── DocumentationInfoModal.module.css │ │ │ └── index.js │ │ ├── InfoConfirmModal │ │ │ ├── InfoConfirmModal.jsx │ │ │ ├── InfoConfirmModal.module.css │ │ │ └── index.js │ │ ├── InfoModal │ │ │ ├── InfoModal.jsx │ │ │ ├── InfoModal.module.css │ │ │ └── index.js │ │ ├── LNChannelModal │ │ │ ├── LNChannelModal.jsx │ │ │ ├── LNChannelModal.module.css │ │ │ └── index.js │ │ ├── LNInvoiceModal │ │ │ ├── LNInvoiceModal.jsx │ │ │ ├── LNInvoiceModal.module.css │ │ │ ├── helpers.js │ │ │ └── index.js │ │ ├── LNPaymentModal │ │ │ ├── LNPaymentModal.jsx │ │ │ ├── LNPaymentModal.module.css │ │ │ ├── helpers.js │ │ │ └── index.js │ │ ├── ListUTXOsModal │ │ │ ├── ListUTXOsModal.jsx │ │ │ ├── ListUTXOsModal.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── MixerSettingsModal │ │ │ ├── MixerSettingsModal.jsx │ │ │ ├── MixerSettingsModal.module.css │ │ │ └── index.js │ │ ├── Modal │ │ │ ├── Modal.jsx │ │ │ ├── Modal.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── PassphraseModal │ │ │ ├── PassphraseModal.jsx │ │ │ ├── PassphraseModal.module.css │ │ │ ├── PassphraseModalContent.jsx │ │ │ └── index.js │ │ ├── QRModal │ │ │ ├── QRModal.jsx │ │ │ ├── QRModal.module.css │ │ │ └── index.js │ │ ├── SearchForNodesModal │ │ │ ├── NodeListElement │ │ │ │ ├── NodeListElement.jsx │ │ │ │ ├── NodeListElement.module.css │ │ │ │ └── index.js │ │ │ ├── SearchForNodesModal.jsx │ │ │ ├── SearchForNodesModal.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── SeedCopyConfirmModal │ │ │ ├── SeedCopyConfirmModal.jsx │ │ │ ├── SeedCopyConfirmModal.module.css │ │ │ ├── SeedCopyConfirmModalContent.jsx │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── SendFromUnmixedAccountModal │ │ │ ├── SendFromUnmixedAccountContent.jsx │ │ │ ├── SendFromUnmixedAccountModal.jsx │ │ │ ├── SendFromUnmixedAccountModal.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── SetNewPassphraseModal │ │ │ ├── SetNewPassModalContent │ │ │ │ ├── SetNewPassModalContent.jsx │ │ │ │ ├── SetNewPassModalContent.module.css │ │ │ │ └── index.js │ │ │ ├── SetNewPassphraseModal.jsx │ │ │ └── hooks.js │ │ ├── SyncVSPFailedTickets │ │ │ ├── SyncVSPFailedTickets.jsx │ │ │ ├── SyncVSPFailedTickets.module.css │ │ │ └── index.js │ │ ├── TrezorModals │ │ │ ├── TrezorModals.jsx │ │ │ ├── TrezorModals.module.css │ │ │ ├── TrezorPassphraseModal.jsx │ │ │ ├── TrezorPinModal.jsx │ │ │ ├── TrezorTogglePassphraseConfirmModal.jsx │ │ │ ├── TrezorWalletCreationPassphraseModal.jsx │ │ │ └── TrezorWordModal.jsx │ │ └── index.js │ ├── shared │ │ ├── AnimatedContainer.jsx │ │ ├── Balance │ │ │ ├── Balance.jsx │ │ │ ├── Balance.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── BalanceDisplay │ │ │ ├── BalanceDisplay.jsx │ │ │ ├── BalanceDisplay.module.css │ │ │ └── index.js │ │ ├── ButtonsToolbar.jsx │ │ ├── Collapse.jsx │ │ ├── CopyableText │ │ │ ├── CopyableText.jsx │ │ │ ├── CopyableText.module.css │ │ │ └── index.js │ │ ├── CreatePassPhrase │ │ │ ├── CreatePassPhrase.jsx │ │ │ └── PassPhraseInputs.jsx │ │ ├── DetailsTable │ │ │ ├── DetailsTable.jsx │ │ │ ├── DetailsTable.module.css │ │ │ └── index.js │ │ ├── Documentation │ │ │ ├── Documentation.jsx │ │ │ ├── Documentation.module.css │ │ │ └── index.js │ │ ├── ExternalButton.jsx │ │ ├── ExternalLink.jsx │ │ ├── FormattedRelative.jsx │ │ ├── LNChannelStatus.jsx │ │ ├── LNInvoiceStatus.jsx │ │ ├── LNPaymentStatus.jsx │ │ ├── LoadingError.jsx │ │ ├── Log │ │ │ ├── Log.jsx │ │ │ └── Log.module.css │ │ ├── PoliteiaLink.jsx │ │ ├── PrivacyForm │ │ │ ├── PrivacyForm.jsx │ │ │ ├── PrivacyForm.module.css │ │ │ └── hooks.js │ │ ├── SendTransaction │ │ │ ├── Form.jsx │ │ │ ├── SendTransaction.jsx │ │ │ ├── helpers.js │ │ │ └── hooks.js │ │ ├── ShowError.jsx │ │ ├── ShowWarning.jsx │ │ ├── StaticSwitch.jsx │ │ ├── Subtitle │ │ │ ├── Subtitle.jsx │ │ │ └── Subtitle.module.css │ │ ├── TabsHeader │ │ │ ├── TabsHeader.jsx │ │ │ └── TabsHeader.module.css │ │ ├── TransitionMotionWrapper.jsx │ │ ├── TruncatedText.jsx │ │ ├── TxHistory │ │ │ ├── LiveStakeTxRow.jsx │ │ │ ├── RegularTxRow.jsx │ │ │ ├── Row.jsx │ │ │ ├── StakeTxRow.jsx │ │ │ ├── TicketPriceMessage.jsx │ │ │ ├── TxHistory.jsx │ │ │ ├── TxHistory.module.css │ │ │ ├── TxRow.jsx │ │ │ ├── helpers.js │ │ │ └── index.js │ │ ├── UnselectableText │ │ │ ├── UnselectableText.jsx │ │ │ ├── UnselectableText.module.css │ │ │ └── index.js │ │ ├── UnsignedTx │ │ │ ├── UnsignedTx.jsx │ │ │ ├── UnsignedTx.module.css │ │ │ └── index.js │ │ ├── VericalAccordion │ │ │ ├── VerticalAccordion.jsx │ │ │ └── VerticalAccordion.module.css │ │ ├── WatchOnlyWarnNotification │ │ │ ├── WatchOnlyWarnNotification.jsx │ │ │ └── hooks.js │ │ ├── index.js │ │ └── shared.module.css │ └── views │ │ ├── AccountsPage │ │ ├── Accounts │ │ │ ├── AccountRow │ │ │ │ ├── AccountDetails │ │ │ │ │ ├── AccountDetails.jsx │ │ │ │ │ ├── AccountDetails.module.css │ │ │ │ │ ├── DataLine │ │ │ │ │ │ ├── DataLine.jsx │ │ │ │ │ │ ├── DataLine.module.css │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── AccountRow.jsx │ │ │ │ ├── AccountRowContent │ │ │ │ │ ├── AccountRowContent.jsx │ │ │ │ │ ├── AccountRowContent.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── Header │ │ │ │ │ ├── Header.jsx │ │ │ │ │ ├── Header.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── RenameAccount │ │ │ │ │ ├── RenameAccount.jsx │ │ │ │ │ ├── RenameAccount.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── hooks.js │ │ │ │ ├── index.js │ │ │ │ └── utils.js │ │ │ ├── Accounts.jsx │ │ │ ├── AccountsList │ │ │ │ ├── AccountsList.jsx │ │ │ │ ├── AccountsList.module.css │ │ │ │ └── index.js │ │ │ ├── SubtitleInfoIcon │ │ │ │ ├── SubtitleInfoIcon.jsx │ │ │ │ ├── SubtitleInfoIcon.module.css │ │ │ │ └── index.js │ │ │ ├── SubtitleWalletName │ │ │ │ ├── SubtitleWalletName.jsx │ │ │ │ ├── SubtitleWalletName.module.css │ │ │ │ └── index.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── AccountsPage.jsx │ │ ├── hooks.js │ │ └── index.js │ │ ├── AgendaDetailsPage │ │ ├── AgendaDetails.jsx │ │ ├── AgendaDetails.module.css │ │ ├── AgendaDetailsPage.jsx │ │ ├── helpers │ │ │ ├── AgendaCard │ │ │ │ ├── AgendaCard.jsx │ │ │ │ ├── AgendaCard.module.css │ │ │ │ └── index.js │ │ │ ├── Header │ │ │ │ ├── Header.jsx │ │ │ │ ├── Header.module.css │ │ │ │ └── index.js │ │ │ ├── VoteSection │ │ │ │ ├── CastVoteModalButton │ │ │ │ │ ├── CastVoteModalButton.jsx │ │ │ │ │ ├── CastVoteModalButton.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── VoteSection.jsx │ │ │ │ ├── VoteSection.module.css │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── hooks.js │ │ └── index.js │ │ ├── DexPage │ │ ├── ConfirmDexSeed │ │ │ ├── ConfirmDexSeed.jsx │ │ │ ├── ConfirmDexSeed.module.css │ │ │ ├── ConfirmDexSeedHeader.jsx │ │ │ └── index.js │ │ ├── CreateDexAcctPage │ │ │ ├── CreateDexAcctPage.jsx │ │ │ ├── CreateDexAcctPage.module.css │ │ │ ├── CreateDexAcctPageHeader.jsx │ │ │ └── index.js │ │ ├── CreateWalletsPage │ │ │ ├── CreateWalletsPage.jsx │ │ │ ├── CreateWalletsPage.module.css │ │ │ ├── CreateWalletsPageHeader.jsx │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── DexPage.jsx │ │ ├── DexView │ │ │ ├── DexView.jsx │ │ │ ├── DexViewHeader.jsx │ │ │ └── index.js │ │ ├── EnablePage │ │ │ ├── EnablePage.jsx │ │ │ ├── EnablePage.module.css │ │ │ ├── EnablePageHeader.jsx │ │ │ └── index.js │ │ ├── ErrorHeader.jsx │ │ ├── InitPage │ │ │ ├── InitPage.jsx │ │ │ ├── InitPage.module.css │ │ │ ├── InitPageHeader.jsx │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── LoginPage │ │ │ ├── LoginPage.jsx │ │ │ ├── LoginPageHeader.jsx │ │ │ └── index.js │ │ ├── hooks.js │ │ └── index.js │ │ ├── FatalErrorPage │ │ ├── FatalErrorPage.jsx │ │ ├── FatalErrorPage.module.css │ │ └── hooks.js │ │ ├── GetStartedPage │ │ ├── AdvancedStartup │ │ │ ├── AdvancedStartup.jsx │ │ │ ├── AppDataForm │ │ │ │ ├── AppDataForm.jsx │ │ │ │ ├── AppDataForm.module.css │ │ │ │ └── index.js │ │ │ ├── Form │ │ │ │ ├── Form.jsx │ │ │ │ ├── Form.module.css │ │ │ │ └── index.js │ │ │ └── RemoteDaemonForm.jsx │ │ ├── CreateWalletPage │ │ │ ├── ConfirmSeed │ │ │ │ ├── ConfirmSeed.jsx │ │ │ │ ├── ConfirmSeedForm │ │ │ │ │ ├── ConfirmSeedForm.jsx │ │ │ │ │ ├── ConfirmSeedForm.module.css │ │ │ │ │ ├── SeedWordRow │ │ │ │ │ │ ├── SeedWordRow.jsx │ │ │ │ │ │ ├── SeedWordRow.module.css │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── utils.js │ │ │ ├── CopySeed │ │ │ │ ├── CopySeed.jsx │ │ │ │ ├── Form │ │ │ │ │ ├── Form.jsx │ │ │ │ │ ├── Form.module.css │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── CreateWallet │ │ │ │ ├── CreateWallet.jsx │ │ │ │ ├── CreateWallet.module.css │ │ │ │ └── index.js │ │ │ ├── CreateWalletPage.jsx │ │ │ ├── ExistingSeed │ │ │ │ ├── ExistingSeed.jsx │ │ │ │ ├── Form │ │ │ │ │ ├── Form.jsx │ │ │ │ │ ├── Form.module.css │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── helpers │ │ │ │ ├── ButtonsBar │ │ │ │ │ ├── ButtonsBar.jsx │ │ │ │ │ ├── ButtonsBar.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── Container │ │ │ │ │ ├── Container.jsx │ │ │ │ │ ├── Container.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── Section │ │ │ │ │ ├── Section.jsx │ │ │ │ │ ├── Section.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── SeedArea │ │ │ │ │ ├── SeedArea.jsx │ │ │ │ │ ├── SeedArea.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── SeedError │ │ │ │ │ ├── SeedError.jsx │ │ │ │ │ ├── SeedError.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── SeedWord │ │ │ │ │ ├── SeedWord.jsx │ │ │ │ │ ├── SeedWord.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── SeedWordEntry │ │ │ │ │ ├── SeedWordEntry.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── TitleWrapper │ │ │ │ │ ├── TitleWrapper.jsx │ │ │ │ │ ├── TitleWrapper.module.css │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── GetStarted.module.css │ │ ├── GetStartedMachinePage │ │ │ ├── GetStartedMachinePage.jsx │ │ │ ├── GetStartedMachinePage.module.css │ │ │ └── index.js │ │ ├── GetStartedPage.jsx │ │ ├── LanguageSelectPage │ │ │ ├── LanguageSelectPage.jsx │ │ │ ├── Page │ │ │ │ ├── Page.jsx │ │ │ │ ├── Page.module.css │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── LoadingPage │ │ │ ├── LoadingPage.jsx │ │ │ ├── LoadingPage.module.css │ │ │ └── index.js │ │ ├── Logs │ │ │ ├── Logs.jsx │ │ │ └── Logs.module.css │ │ ├── OnboardingTutorialPage │ │ │ ├── OnboardingTutorialPage.jsx │ │ │ ├── OnboardingTutorialPage.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── OpenWallet │ │ │ ├── DecryptForm.jsx │ │ │ ├── DiscoverAccounts.jsx │ │ │ ├── OpenWallet.jsx │ │ │ └── PassphraseForm.jsx │ │ ├── PreCreateWallet │ │ │ ├── CreateLedgerWalletForm │ │ │ │ ├── CreateLedgerWalletForm.jsx │ │ │ │ ├── CreateLedgerWalletForm.module.css │ │ │ │ └── index.js │ │ │ ├── CreateTrezorWalletForm │ │ │ │ ├── CreateTrezorWalletForm.jsx │ │ │ │ ├── CreateTrezorWalletForm.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── CreateWalletForm │ │ │ │ ├── CreateWalletForm.jsx │ │ │ │ ├── CreateWalletForm.module.css │ │ │ │ └── index.js │ │ │ ├── LedgerLoaderBarContainer │ │ │ │ ├── LedgerLoaderBarContainer.jsx │ │ │ │ ├── LedgerLoaderBarContainer.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── PreCreateWallet.jsx │ │ │ ├── PreCreateWallet.module.css │ │ │ ├── TrezorLoaderBarContainer │ │ │ │ ├── TrezorLoaderBarContainer.jsx │ │ │ │ ├── TrezorLoaderBarContainer.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ └── hooks.js │ │ ├── PrivacyPage │ │ │ ├── CustomPrivacyOptions │ │ │ │ ├── CustomPrivacyOptions.jsx │ │ │ │ ├── CustomPrivacyOptions.module.css │ │ │ │ └── index.js │ │ │ ├── Page.jsx │ │ │ ├── PrivacyOption │ │ │ │ ├── PrivacyOption.jsx │ │ │ │ ├── PrivacyOption.module.css │ │ │ │ └── index.js │ │ │ ├── PrivacyOptions │ │ │ │ ├── PrivacyOptions.jsx │ │ │ │ ├── PrivacyOptions.module.css │ │ │ │ └── index.js │ │ │ ├── PrivacyPage.jsx │ │ │ ├── TopLevelOptions │ │ │ │ ├── TopLevelOptions.jsx │ │ │ │ ├── TopLevelOptions.module.css │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── ReleaseNotes │ │ │ ├── Form │ │ │ │ ├── Form.jsx │ │ │ │ ├── Form.module.css │ │ │ │ └── index.jsx │ │ │ └── ReleaseNotes.jsx │ │ ├── Settings │ │ │ ├── Settings.jsx │ │ │ └── Settings.module.css │ │ ├── SetupWallet │ │ │ ├── ProcessManagedTickets │ │ │ │ ├── ProcessManagedTickets.jsx │ │ │ │ ├── ProcessUnmanagedTickets.module.css │ │ │ │ └── index.js │ │ │ ├── ProcessUnmanagedTickets │ │ │ │ ├── ProcessUnmanagedTickets.jsx │ │ │ │ ├── ProcessUnmanagedTickets.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── ResendVotesToRecentlyUpdatedVSPs │ │ │ │ ├── ResendVotesToRecentlyUpdatedVSPs.jsx │ │ │ │ ├── ResendVotesToRecentlyUpdatedVSPs.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── SetAccountsPassphrase │ │ │ │ ├── SetAccountsPassphrase.js │ │ │ │ ├── SettingAccountsPassphrase.module.css │ │ │ │ └── index.js │ │ │ ├── SetMixedAcctPage │ │ │ │ ├── SetMixedAcctPage.jsx │ │ │ │ └── SetMixedAcctPage.module.css │ │ │ ├── SetupWallet.jsx │ │ │ ├── SetupWallet.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── SpvChoicePage │ │ │ ├── Page.jsx │ │ │ ├── SpvChoicePage.jsx │ │ │ ├── TopLevelOptions.jsx │ │ │ └── index.js │ │ ├── TutorialPage │ │ │ ├── Page.jsx │ │ │ ├── Tutorial.module.css │ │ │ ├── TutorialPage.jsx │ │ │ └── index.js │ │ ├── WalletSelection │ │ │ ├── Form │ │ │ │ ├── Form.jsx │ │ │ │ ├── Form.module.css │ │ │ │ └── index.js │ │ │ └── WalletSelection.jsx │ │ ├── helpers │ │ │ ├── BackButton │ │ │ │ ├── BackButton.jsx │ │ │ │ ├── BackButton.module.css │ │ │ │ └── index.js │ │ │ ├── BackButtonArea │ │ │ │ ├── BackButtonArea.jsx │ │ │ │ ├── BackButtonArea.module.css │ │ │ │ └── index.js │ │ │ ├── ButtonsBar │ │ │ │ ├── ButtonsBar.jsx │ │ │ │ ├── ButtonsBar.module.css │ │ │ │ └── index.js │ │ │ ├── Content │ │ │ │ ├── Content.jsx │ │ │ │ ├── Content.module.css │ │ │ │ └── index.js │ │ │ ├── ContentContainer │ │ │ │ ├── ContentContainer.jsx │ │ │ │ ├── ContentContainer.module.css │ │ │ │ └── index.js │ │ │ ├── FormContainer │ │ │ │ ├── FormContainer.jsx │ │ │ │ ├── FormContainer.module.css │ │ │ │ └── index.js │ │ │ ├── Input │ │ │ │ ├── Input.jsx │ │ │ │ ├── Input.module.css │ │ │ │ └── index.js │ │ │ ├── Label │ │ │ │ ├── Label.jsx │ │ │ │ ├── Label.module.css │ │ │ │ └── index.js │ │ │ ├── LoaderBarContainer │ │ │ │ ├── LoaderBarContainer.jsx │ │ │ │ ├── LoaderBarContainer.module.css │ │ │ │ └── index.js │ │ │ ├── Row │ │ │ │ ├── Row.jsx │ │ │ │ ├── Row.module.css │ │ │ │ └── index.js │ │ │ ├── SubTitle │ │ │ │ ├── SubTitle.jsx │ │ │ │ ├── SubTitle.module.css │ │ │ │ └── index.js │ │ │ ├── Title │ │ │ │ ├── Title.jsx │ │ │ │ ├── Title.module.css │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── hooks.js │ │ ├── index.js │ │ └── messages │ │ │ ├── index.js │ │ │ ├── messages.jsx │ │ │ └── messages.module.css │ │ ├── GetStartedPosition.jsx │ │ ├── GovernancePage │ │ ├── Blockchain │ │ │ ├── AgendaOverview │ │ │ │ ├── AgendaOverview.jsx │ │ │ │ ├── AgendaOverview.module.css │ │ │ │ └── index.js │ │ │ ├── Blockchain.jsx │ │ │ ├── Blockchain.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── GovernancePage.jsx │ │ ├── GovernancePage.module.css │ │ ├── PageHeader │ │ │ ├── PageHeader.jsx │ │ │ ├── PageHeader.module.css │ │ │ └── index.js │ │ ├── Proposals │ │ │ ├── PoliteiaDisabled.jsx │ │ │ ├── ProposalsList │ │ │ │ ├── ProposalsList.jsx │ │ │ │ ├── ProposalsList.module.css │ │ │ │ └── index.js │ │ │ ├── ProposalsListItem │ │ │ │ ├── CardWrapper │ │ │ │ │ ├── CardWrapper.jsx │ │ │ │ │ ├── CardWrapper.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── ProposalsListItem.jsx │ │ │ │ ├── ProposalsListItem.module.css │ │ │ │ └── index.js │ │ │ ├── ProposalsTab.jsx │ │ │ ├── ProposalsTab.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── TabHeader │ │ │ ├── TabHeader.jsx │ │ │ └── index.js │ │ ├── TreasurySpendingTab │ │ │ ├── TreasurySpendingTab.jsx │ │ │ ├── TreasurySpendingTab.module.css │ │ │ ├── helpers │ │ │ │ ├── TSpendPolicyCard │ │ │ │ │ ├── TSpendPolicyCard.jsx │ │ │ │ │ ├── TSpendPolicyCard.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── TreasuryPolicyCard │ │ │ │ │ ├── TreasuryPolicyCard.jsx │ │ │ │ │ ├── TreasuryPolicyCard.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── VoteSection │ │ │ │ │ ├── CastVoteModalButton │ │ │ │ │ │ ├── CastVoteModalButton.jsx │ │ │ │ │ │ ├── CastVoteModalButton.module.css │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── VoteSection.jsx │ │ │ │ │ ├── VoteSection.module.css │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ └── hooks.js │ │ ├── HomePage │ │ ├── GovernanceNotification │ │ │ ├── GovernanceNotification.jsx │ │ │ ├── GovernanceNotification.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── HomePage.jsx │ │ ├── HomePage.module.css │ │ ├── RecentTickets │ │ │ ├── RecentTickets.jsx │ │ │ ├── RecentTickets.module.css │ │ │ └── index.js │ │ ├── RecentTransactions │ │ │ ├── RecentTransactions.jsx │ │ │ ├── RecentTransactions.module.css │ │ │ └── index.js │ │ ├── Tabs │ │ │ ├── BalanceTab │ │ │ │ ├── BalanceTab.jsx │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── TicketsTab │ │ │ │ ├── TicketsTab.jsx │ │ │ │ ├── TicketsTab.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── TransactionsTab │ │ │ │ ├── TransactionsTab.jsx │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── hooks.js │ │ └── index.js │ │ ├── InvalidRPCVersion │ │ ├── InvalidRPCVersion.jsx │ │ ├── InvalidRPCVersion.module.css │ │ ├── hooks.js │ │ └── index.js │ │ ├── LNPage │ │ ├── AdvancedTab │ │ │ ├── AdvancedTab.jsx │ │ │ ├── AdvancedTab.module.css │ │ │ ├── BackupInfoDetails │ │ │ │ └── BackupInfoDetails.jsx │ │ │ ├── BackupInfoHeader │ │ │ │ ├── BackupInfoHeader.jsx │ │ │ │ └── BackupInfoHeader.module.css │ │ │ ├── Network │ │ │ │ ├── Network.jsx │ │ │ │ ├── NodeInfo │ │ │ │ │ ├── Channel │ │ │ │ │ │ ├── Channel.jsx │ │ │ │ │ │ ├── Channel.module.css │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── NodeInfo.jsx │ │ │ │ │ ├── NodeInfo.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── NodeInfoError │ │ │ │ │ ├── NodeInfoError.jsx │ │ │ │ │ ├── NodeInfoError.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── QueryNode │ │ │ │ │ ├── QueryNode.jsx │ │ │ │ │ ├── QueryNode.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── QueryRoutes │ │ │ │ │ ├── QueryRoutes.jsx │ │ │ │ │ ├── QueryRoutes.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── RoutesInfo │ │ │ │ │ ├── RoutesInfo.jsx │ │ │ │ │ ├── RoutesInfo.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── Tabs │ │ │ │ │ ├── Tabs.jsx │ │ │ │ │ ├── Tabs.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── Watchtowers │ │ │ │ ├── AddWatchtower │ │ │ │ │ ├── AddWatchtower.jsx │ │ │ │ │ ├── AddWatchtower.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── Watchtowers.jsx │ │ │ │ ├── Watchtowers.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── BalancesHeader │ │ │ ├── BalancesHeader.jsx │ │ │ ├── BalancesHeader.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── ChannelDetailsPage │ │ │ ├── ChannelDetails.jsx │ │ │ ├── ChannelDetails.module.css │ │ │ ├── ChannelDetailsPage.jsx │ │ │ ├── helpers │ │ │ │ ├── ChannelCard │ │ │ │ │ ├── ChannelCard.jsx │ │ │ │ │ ├── ChannelCard.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── CloseChannelModalContent │ │ │ │ │ ├── CloseChannelModalContent.jsx │ │ │ │ │ ├── CloseChannelModalContent.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── FlatBalance │ │ │ │ │ ├── FlatBalance.jsx │ │ │ │ │ ├── FlatBalance.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── Header │ │ │ │ │ ├── Header.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── StatusBarBalance │ │ │ │ │ ├── StatusBarBalance.jsx │ │ │ │ │ ├── StatusBarBalance.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── details.js │ │ │ │ └── index.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── ChannelsTab │ │ │ ├── ChannelsTab.jsx │ │ │ ├── ChannelsTab.module.css │ │ │ ├── helpers.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── ConnectPage │ │ │ ├── AutopilotSwitch │ │ │ │ ├── AutopilotSwitch.jsx │ │ │ │ ├── AutopilotSwitch.module.css │ │ │ │ └── index.js │ │ │ ├── ConnectPage.jsx │ │ │ ├── ConnectPage.module.css │ │ │ ├── CreateLNWallet │ │ │ │ ├── CreateLNWallet.jsx │ │ │ │ ├── CreateLNWallet.module.css │ │ │ │ └── index.js │ │ │ ├── CreationWarning │ │ │ │ ├── CreationWarning.jsx │ │ │ │ ├── CreationWarning.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── LNPage.jsx │ │ ├── OverviewTab │ │ │ ├── OverviewTab.jsx │ │ │ ├── OverviewTab.module.css │ │ │ ├── helpers │ │ │ │ ├── AccountOverview │ │ │ │ │ ├── AccountOverview.jsx │ │ │ │ │ ├── AccountOverview.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── NetworkStats │ │ │ │ │ ├── NetworkStats.jsx │ │ │ │ │ ├── NetworkStats.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── RecentChannelRow │ │ │ │ │ ├── RecentChannelRow.jsx │ │ │ │ │ ├── RecentChannelRow.module.css │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── ReceiveTab │ │ │ ├── InvoiceRow │ │ │ │ ├── InvoiceRow.jsx │ │ │ │ ├── InvoiceRow.module.css │ │ │ │ └── index.js │ │ │ ├── ReceiveTab.jsx │ │ │ ├── ReceiveTab.module.css │ │ │ ├── helpers.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── SendTab │ │ │ ├── DecodedPayRequest │ │ │ │ ├── DecodedPayRequest.jsx │ │ │ │ ├── DecodedPayRequest.module.css │ │ │ │ ├── helpers.js │ │ │ │ └── index.js │ │ │ ├── PaymentRow │ │ │ │ ├── PaymentRow.jsx │ │ │ │ ├── PaymentRow.module.css │ │ │ │ └── index.js │ │ │ ├── SendTab.jsx │ │ │ ├── SendTab.module.css │ │ │ ├── helpers.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── hooks.js │ │ └── index.js │ │ ├── LedgerPage │ │ └── NoDevicePage │ │ │ ├── NoDevicePage.jsx │ │ │ ├── NoDevicePage.module.css │ │ │ └── index.js │ │ ├── PrivacyPage │ │ ├── PrivacyPage.jsx │ │ ├── PrivacyPage.module.css │ │ ├── PrivacyTab │ │ │ ├── ConfigMixer │ │ │ │ ├── ConfigMixer.jsx │ │ │ │ ├── ConfigMixer.module.css │ │ │ │ ├── CreateDefaultAccounts │ │ │ │ │ ├── CreateDefaultAccounts.jsx │ │ │ │ │ ├── CreateDefaultAccounts.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── CreateNeededAccounts │ │ │ │ │ ├── CreateNeededAccounts.jsx │ │ │ │ │ ├── CreateNeededAccounts.module.css │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── PrivacyContent.jsx │ │ │ ├── PrivacyContent.module.css │ │ │ ├── PrivacyTab.jsx │ │ │ ├── SendForm.module.css │ │ │ ├── SendOutputRow │ │ │ │ ├── SendOutputRow.jsx │ │ │ │ ├── SendOutputRow.module.css │ │ │ │ └── index.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── SecurityTab │ │ │ ├── SecurityTab.jsx │ │ │ ├── SecurityTab.module.css │ │ │ ├── SignMessage │ │ │ │ ├── SignMessage.jsx │ │ │ │ ├── SignMessageForm.jsx │ │ │ │ ├── SignMessageForm.module.css │ │ │ │ ├── Signature │ │ │ │ │ ├── Signature.jsx │ │ │ │ │ ├── Signature.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── ValidateAddress │ │ │ │ ├── ValidateAddress.jsx │ │ │ │ ├── ValidateAddressForm.jsx │ │ │ │ ├── ValidateAddressForm.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── VerifyMessage │ │ │ │ ├── VerifyMessage.jsx │ │ │ │ ├── VerifyMessageForm.jsx │ │ │ │ ├── VerifyMessageForm.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── hooks.js │ │ └── index.js │ │ ├── ProposalDetailsPage │ │ ├── ProposalDetails.jsx │ │ ├── ProposalDetails.module.css │ │ ├── ProposalDetailsPage.jsx │ │ ├── helpers │ │ │ ├── Event │ │ │ │ ├── Event.jsx │ │ │ │ ├── Event.module.css │ │ │ │ └── index.js │ │ │ ├── Header │ │ │ │ ├── Header.jsx │ │ │ │ ├── Header.module.css │ │ │ │ └── index.js │ │ │ ├── Join │ │ │ │ ├── Join.jsx │ │ │ │ ├── Join.module.css │ │ │ │ └── index.js │ │ │ ├── NoElligibleTicketsVotingInfo.jsx │ │ │ ├── NoTicketsMsg │ │ │ │ ├── NoTicketsMsg.jsx │ │ │ │ ├── NoTicketsMsg.module.css │ │ │ │ └── index.js │ │ │ ├── NoTicketsVotingInfo.jsx │ │ │ ├── NotVotingMsg │ │ │ │ ├── NotVotingMsg.jsx │ │ │ │ ├── NotVotingMsg.module.css │ │ │ │ └── index.js │ │ │ ├── ProposalAbandoned.jsx │ │ │ ├── ProposalBody │ │ │ │ ├── ProposalBody.jsx │ │ │ │ ├── index.js │ │ │ │ └── styles.css │ │ │ ├── ProposalCard │ │ │ │ ├── ProposalCard.jsx │ │ │ │ ├── ProposalCard.module.css │ │ │ │ └── index.js │ │ │ ├── ProposalError.jsx │ │ │ ├── ProposalNotVoting.jsx │ │ │ ├── ProposalVoted │ │ │ │ ├── ProposalVoted.jsx │ │ │ │ ├── ProposalVoted.module.css │ │ │ │ └── index.js │ │ │ ├── VoteButton │ │ │ │ ├── VoteButton.jsx │ │ │ │ ├── VoteButton.module.css │ │ │ │ └── index.js │ │ │ ├── VoteInfo.jsx │ │ │ ├── VotePreferenceWrapper │ │ │ │ ├── VotePreference │ │ │ │ │ ├── CastVoteModalButton │ │ │ │ │ │ ├── CastVoteModalButton.jsx │ │ │ │ │ │ ├── CastVoteModalButton.module.css │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── VotePreference.jsx │ │ │ │ │ ├── VotePreference.module.css │ │ │ │ │ ├── VotedCheckmark │ │ │ │ │ │ ├── VotedCheckmark.jsx │ │ │ │ │ │ ├── VotedCheckmark.module.css │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── VotePreferenceWrapper.jsx │ │ │ │ ├── VotePreferenceWrapper.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── VoteSection │ │ │ │ ├── VoteSection.jsx │ │ │ │ ├── VoteSection.module.css │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── hooks.js │ │ └── utils.js │ │ ├── SettingsPage │ │ ├── ConnectivitySettingsTab │ │ │ ├── ConnectivitySettings.jsx │ │ │ ├── ConnectivitySettings.module.css │ │ │ ├── ConnectivitySettingsTab.jsx │ │ │ ├── NetworkSettings │ │ │ │ ├── NetworkSettings.jsx │ │ │ │ ├── NetworkSettings.module.css │ │ │ │ └── index.js │ │ │ ├── ProxySettings │ │ │ │ ├── ProxySettings.jsx │ │ │ │ ├── ProxySettings.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── GeneralSettingsTab │ │ │ ├── GeneralSettings.jsx │ │ │ ├── GeneralSettings.module.css │ │ │ ├── GeneralSettingsTab.jsx │ │ │ ├── LauncherSettings │ │ │ │ ├── LauncherSettings.jsx │ │ │ │ ├── LauncherSettings.module.css │ │ │ │ └── index.js │ │ │ ├── MiscSettings │ │ │ │ ├── MiscSettings.jsx │ │ │ │ ├── MiscSettings.module.css │ │ │ │ └── index.js │ │ │ ├── TimezoneSettings │ │ │ │ ├── TimezoneSettings.jsx │ │ │ │ ├── TimezoneSettings.module.css │ │ │ │ └── index.js │ │ │ ├── UISettings │ │ │ │ ├── UISettings.jsx │ │ │ │ ├── UISettings.module.css │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── LinksTab │ │ │ ├── LinksTab.jsx │ │ │ ├── LinksTab.module.css │ │ │ └── index.js │ │ ├── LogsTab │ │ │ ├── LogsTab.jsx │ │ │ ├── Page.jsx │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── PrivacyandSecuritySettingsTab │ │ │ ├── PrivacySettings │ │ │ │ ├── PrivacySettings.jsx │ │ │ │ ├── PrivacySettings.module.css │ │ │ │ └── index.js │ │ │ ├── PrivacyandSecuritySettings.jsx │ │ │ ├── PrivacyandSecuritySettings.module.css │ │ │ ├── PrivacyandSecuritySettingsTab.jsx │ │ │ ├── PrivatePassphraseSettings │ │ │ │ ├── PrivatePassphraseSettings.jsx │ │ │ │ ├── PrivatePassphraseSettings.module.css │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── SettingsPage.jsx │ │ ├── SettingsPage.module.css │ │ ├── TrezorTab.jsx │ │ ├── TutorialsTab │ │ │ ├── TutorialsTab.jsx │ │ │ ├── TutorialsTab.module.css │ │ │ ├── helpers │ │ │ │ ├── PagedTutorial │ │ │ │ │ ├── CrossfadingImages │ │ │ │ │ │ ├── CrossfadingImages.jsx │ │ │ │ │ │ ├── CrossfadingImages.module.css │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── PagedTutorial.jsx │ │ │ │ │ ├── PagedTutorial.module.css │ │ │ │ │ ├── TabLabel │ │ │ │ │ │ ├── TabLabel.jsx │ │ │ │ │ │ ├── TabLabel.module.css │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── TutorialCard │ │ │ │ │ ├── TutorialCard.jsx │ │ │ │ │ ├── TutorialCard.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── TutorialOverview │ │ │ │ │ ├── TutorialOverview.jsx │ │ │ │ │ ├── TutorialOverview.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── TutorialPage │ │ │ │ │ ├── TutorialPage.jsx │ │ │ │ │ ├── TutorialPage.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── tutorials.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── helpers │ │ │ ├── Box │ │ │ │ ├── Box.jsx │ │ │ │ ├── Box.module.css │ │ │ │ └── index.js │ │ │ ├── ConfirmRestartModal.jsx │ │ │ ├── Group.jsx │ │ │ ├── Label │ │ │ │ ├── Label.jsx │ │ │ │ ├── Label.module.css │ │ │ │ └── index.js │ │ │ ├── Wrapper │ │ │ │ ├── Wrapper.jsx │ │ │ │ ├── Wrapper.module.css │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── index.js │ │ ├── ShutdownPage │ │ ├── ShutdownPage.jsx │ │ ├── ShutdownPage.module.css │ │ └── hooks.js │ │ ├── TicketsPage │ │ ├── MyTicketsTab │ │ │ ├── MyTicketsTab.jsx │ │ │ ├── MyTicketsTab.module.css │ │ │ ├── Page.jsx │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── PurchaseTab │ │ │ ├── PurchaseTab.jsx │ │ │ ├── PurchaseTabPage.jsx │ │ │ ├── PurchaseTabPage.module.css │ │ │ ├── PurchaseTicketsForm │ │ │ │ ├── PurchaseTicketsForm.jsx │ │ │ │ ├── PurchaseTicketsForm.module.css │ │ │ │ └── index.js │ │ │ ├── StakeInfo │ │ │ │ ├── StakeInfo.jsx │ │ │ │ ├── StakeInfo.module.css │ │ │ │ ├── StakeInfoDetails.jsx │ │ │ │ ├── StakeInfoDisplay.jsx │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── TicketAutoBuyer │ │ │ │ ├── TicketAutoBuyer.jsx │ │ │ │ ├── TicketAutoBuyer.module.css │ │ │ │ ├── hooks.js │ │ │ │ └── index.js │ │ │ ├── UnsignedTickets.jsx │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── StakingTabWarning │ │ │ ├── StakingTabWarning.jsx │ │ │ ├── StakingTabWarning.module.css │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── StatisticsTab │ │ │ ├── Heatmap │ │ │ │ ├── Heatmap.jsx │ │ │ │ ├── HeatmapWrapper.jsx │ │ │ │ ├── TooltipInfo.jsx │ │ │ │ └── themes.js │ │ │ ├── Statistics.module.css │ │ │ ├── StatisticsTab.jsx │ │ │ ├── charts │ │ │ │ ├── StakeRewards.jsx │ │ │ │ └── VoteTime.jsx │ │ │ └── hooks.js │ │ ├── TicketsPage.jsx │ │ ├── VSPTicketsStatusTab │ │ │ ├── MyTicketsTab.module.css │ │ │ ├── MyVSPTickets.jsx │ │ │ ├── Page.jsx │ │ │ └── hooks.js │ │ ├── hooks.js │ │ └── index.js │ │ ├── TransactionPage │ │ ├── TransactionContent │ │ │ ├── TransactionContent.jsx │ │ │ └── TransactionContent.module.css │ │ ├── TransactionHeader │ │ │ ├── TransactionHeader.jsx │ │ │ └── TransactionHeader.module.css │ │ ├── TransactionPage.jsx │ │ ├── TransactionPage.module.css │ │ ├── hooks.js │ │ └── index.js │ │ ├── TransactionsPage │ │ ├── ExportTab │ │ │ ├── ExportPage │ │ │ │ ├── ExportPage.jsx │ │ │ │ ├── ExportPage.module.css │ │ │ │ └── index.js │ │ │ ├── ExportTab.jsx │ │ │ ├── helpers.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── HistoryTab │ │ │ ├── HistoryPage │ │ │ │ ├── HistoryPage.jsx │ │ │ │ ├── HistoryPage.module.css │ │ │ │ └── index.js │ │ │ ├── HistoryTab.jsx │ │ │ ├── helpers.js │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── ReceiveTab │ │ │ ├── ReceivePage │ │ │ │ ├── QRCodeModal │ │ │ │ │ ├── QRCodeModal.jsx │ │ │ │ │ ├── QRCodeModal.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── ReceivePage.jsx │ │ │ │ ├── ReceivePage.module.css │ │ │ │ └── index.js │ │ │ ├── ReceiveTab.jsx │ │ │ ├── hooks.js │ │ │ └── index.js │ │ ├── SendTab │ │ │ ├── SendForm.module.css │ │ │ ├── SendOutputRow │ │ │ │ ├── SendOutputRow.jsx │ │ │ │ ├── SendOutputRow.module.css │ │ │ │ └── index.js │ │ │ ├── SendTab.jsx │ │ │ └── index.js │ │ ├── TransactionsPage.jsx │ │ └── index.js │ │ ├── TrezorPage │ │ ├── NoDevicePage │ │ │ ├── NoDevicePage.jsx │ │ │ ├── NoDevicePage.module.css │ │ │ └── index.js │ │ ├── TrezorPageAccordion │ │ │ ├── TrezorPageAccordion.jsx │ │ │ ├── TrezorPageAccordion.module.css │ │ │ └── index.js │ │ ├── TrezorPageContent.jsx │ │ ├── TrezorPageContent.module.css │ │ ├── TrezorPageSection │ │ │ ├── TrezorPageSection.jsx │ │ │ ├── TrezorPageSection.module.css │ │ │ └── index.js │ │ ├── TrezorPageSections │ │ │ ├── ChangeLabel │ │ │ │ ├── ChangeLabel.jsx │ │ │ │ ├── ChangeLabel.module.css │ │ │ │ └── index.js │ │ │ ├── DeviceSetupSection │ │ │ │ ├── DeviceSetupDocumentation │ │ │ │ │ ├── DeviceSetupDocumentation.jsx │ │ │ │ │ ├── DeviceSetupDocumentation.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── DeviceSetupRow │ │ │ │ │ ├── DeviceSetupRow.jsx │ │ │ │ │ ├── DeviceSetupRow.module.css │ │ │ │ │ └── index.js │ │ │ │ ├── DeviceSetupSection.jsx │ │ │ │ ├── DeviceSetupSection.module.css │ │ │ │ └── index.js │ │ │ ├── FirmwareUpdate │ │ │ │ ├── FirmwareUpdate.jsx │ │ │ │ ├── FirmwareUpdate.module.css │ │ │ │ └── index.js │ │ │ ├── SecuritySection │ │ │ │ ├── SecuritySection.jsx │ │ │ │ ├── SecuritySection.module.css │ │ │ │ ├── SwitchStatusLabel.jsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── hooks.js │ │ ├── TutorialsPage │ │ ├── PagedTutorial │ │ │ ├── PagedTutorial.jsx │ │ │ ├── PagedTutorial.module.css │ │ │ └── hooks.js │ │ ├── Staking.jsx │ │ ├── StandardPage │ │ │ ├── StandardPage.jsx │ │ │ └── StandardPage.module.css │ │ ├── TicketLifecycle.jsx │ │ ├── TutorialsPage.jsx │ │ └── TutorialsPage.module.css │ │ └── WalletError │ │ ├── WalletError.jsx │ │ ├── WalletError.module.css │ │ ├── hooks.js │ │ └── index.js ├── config.js ├── constants │ ├── config.js │ ├── decred.js │ ├── decrediton.js │ ├── dex.js │ ├── governance.js │ ├── index.js │ ├── messages.js │ ├── opcode.js │ ├── seed.js │ └── trezor.js ├── containers │ ├── App │ │ ├── App.jsx │ │ ├── App.module.css │ │ └── index.js │ ├── GetStarted │ │ ├── GetStarted.jsx │ │ ├── GetStarted.module.css │ │ └── index.js │ ├── Wallet │ │ ├── Wallet.jsx │ │ ├── Wallet.module.css │ │ └── index.js │ ├── hooks │ │ ├── index.js │ │ ├── useApp.js │ │ └── useWallet.js │ └── index.js ├── dcrdex.png ├── fp.js ├── helpers │ ├── addresses.js │ ├── arrays.js │ ├── byteActions.js │ ├── dateFormat.js │ ├── displayWalletGradients.js │ ├── dom.js │ ├── electron.js │ ├── electronRenderer.js │ ├── fetch.js │ ├── fetchModule.js │ ├── files.js │ ├── index.js │ ├── ledger.js │ ├── msgTx.js │ ├── politeia.js │ ├── scripts.js │ ├── seed.js │ ├── strings.js │ ├── tickets.js │ ├── transactions.js │ ├── trezor.js │ ├── walletCryptoModule.js │ └── wordlist.js ├── hooks │ ├── index.js │ ├── useAccounts.js │ ├── useClickOutside.js │ ├── useDaemonStartup.js │ ├── useLedger.js │ ├── useLocale.js │ ├── useMountEffect.js │ ├── useNetwork.js │ ├── usePrevious.js │ ├── useRescan.js │ ├── useService.js │ ├── useSettings.js │ ├── useTheming.js │ ├── useTrezor.js │ └── useVSP.js ├── i18n │ ├── README.md │ ├── community_translators.md │ ├── docs │ │ ├── ar │ │ │ ├── DexNotes │ │ │ │ └── DexNotes.md │ │ │ ├── GetStarted │ │ │ │ ├── TutorialPage01.md │ │ │ │ ├── TutorialPage02.md │ │ │ │ ├── TutorialPage03.md │ │ │ │ └── TutorialPage04.md │ │ │ ├── InfoModals │ │ │ │ ├── BalanceOverview.md │ │ │ │ ├── DecredConstitution.md │ │ │ │ ├── GapLimit.md │ │ │ │ ├── Passphrase.md │ │ │ │ ├── PurchasePrivacyTickets.md │ │ │ │ ├── PurchaseTickets.md │ │ │ │ ├── ScriptNotRedeemable.md │ │ │ │ ├── Seed.md │ │ │ │ ├── SendFromUnmixed.md │ │ │ │ ├── SignMessage.md │ │ │ │ ├── TicketAutoBuyer.md │ │ │ │ ├── UIAnimations.md │ │ │ │ └── VerifyMessage.md │ │ │ ├── LN │ │ │ │ ├── BackupInfo.md │ │ │ │ └── WalletCreationWarnings │ │ │ │ │ ├── WarningPage01.md │ │ │ │ │ ├── WarningPage02.md │ │ │ │ │ ├── WarningPage03.md │ │ │ │ │ ├── WarningPage04.md │ │ │ │ │ ├── WarningPage05.md │ │ │ │ │ └── WarningPage06.md │ │ │ ├── ReleaseNotes │ │ │ │ ├── v1.3.0.md │ │ │ │ ├── v1.3.1.md │ │ │ │ ├── v1.4.0.md │ │ │ │ ├── v1.5.0.md │ │ │ │ ├── v1.6.0.md │ │ │ │ └── v1.7.0.md │ │ │ ├── StakingTutorial │ │ │ │ ├── Page01.md │ │ │ │ └── Page02.md │ │ │ ├── TicketLifecycleTutorial │ │ │ │ ├── Page01.md │ │ │ │ ├── Page02.md │ │ │ │ ├── Page03.md │ │ │ │ ├── Page04.md │ │ │ │ ├── Page05.md │ │ │ │ └── Page06.md │ │ │ ├── Trezor │ │ │ │ ├── BackupDevice.md │ │ │ │ ├── DeviceSetup.md │ │ │ │ ├── InitDevice.md │ │ │ │ ├── PreCreateTrezorWallet1.md │ │ │ │ ├── PreCreateTrezorWallet2.md │ │ │ │ ├── RecoverDevice.md │ │ │ │ └── WipeDevice.md │ │ │ ├── Tutorials │ │ │ │ ├── BlocksPage01.md │ │ │ │ ├── BlocksPage02.md │ │ │ │ ├── BlocksPage03.md │ │ │ │ ├── BlocksPage04.md │ │ │ │ ├── BlocksPage05.md │ │ │ │ ├── ConsensusCodePage01.md │ │ │ │ ├── ConsensusVotingPage01.md │ │ │ │ ├── ConsensusVotingPage02.md │ │ │ │ ├── ConsensusVotingPage03.md │ │ │ │ ├── ConsensusVotingPage04.md │ │ │ │ ├── ConsensusVotingPage05.md │ │ │ │ ├── ConsensusVotingPage06.md │ │ │ │ ├── ConsensusVotingPage07.md │ │ │ │ ├── DecredIntoPage01.md │ │ │ │ ├── IdentityPage02.md │ │ │ │ ├── IdentityPage03.md │ │ │ │ ├── IdentityPage04.md │ │ │ │ ├── LifecyclePage01.md │ │ │ │ ├── LifecyclePage02.md │ │ │ │ ├── LifecyclePage03.md │ │ │ │ ├── LifecyclePage04.md │ │ │ │ ├── LifecyclePage05.md │ │ │ │ ├── LifecyclePage06.md │ │ │ │ ├── PowPosPage01.md │ │ │ │ ├── PowPosPage02.md │ │ │ │ ├── PowPosPage03.md │ │ │ │ ├── StakingPage01.md │ │ │ │ ├── StakingPage02.md │ │ │ │ ├── StakingPage03.md │ │ │ │ ├── TicketsPage01.md │ │ │ │ ├── TicketsPage02.md │ │ │ │ └── TicketsPage03.md │ │ │ ├── Warnings │ │ │ │ ├── LNForceCloseChannel.md │ │ │ │ ├── MixerIntroduction.md │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ ├── de │ │ │ ├── GetStarted │ │ │ │ ├── TutorialPage01.md │ │ │ │ ├── TutorialPage02.md │ │ │ │ ├── TutorialPage03.md │ │ │ │ └── TutorialPage04.md │ │ │ ├── InfoModals │ │ │ │ ├── BalanceOverview.md │ │ │ │ ├── DecredConstitution.md │ │ │ │ ├── GapLimit.md │ │ │ │ ├── Passphrase.md │ │ │ │ ├── PurchasePrivacyTickets.md │ │ │ │ ├── PurchaseTickets.md │ │ │ │ ├── ScriptNotRedeemable.md │ │ │ │ ├── Seed.md │ │ │ │ ├── SendFromUnmixed.md │ │ │ │ ├── SignMessage.md │ │ │ │ ├── TicketAutoBuyer.md │ │ │ │ └── VerifyMessage.md │ │ │ ├── LN │ │ │ │ ├── BackupInfo.md │ │ │ │ └── WalletCreationWarnings │ │ │ │ │ ├── WarningPage01.md │ │ │ │ │ ├── WarningPage02.md │ │ │ │ │ ├── WarningPage03.md │ │ │ │ │ ├── WarningPage04.md │ │ │ │ │ ├── WarningPage05.md │ │ │ │ │ └── WarningPage06.md │ │ │ ├── StakingTutorial │ │ │ │ ├── Page01.md │ │ │ │ └── Page02.md │ │ │ ├── TicketLifecycleTutorial │ │ │ │ ├── Page01.md │ │ │ │ ├── Page02.md │ │ │ │ ├── Page03.md │ │ │ │ ├── Page04.md │ │ │ │ ├── Page05.md │ │ │ │ └── Page06.md │ │ │ ├── Warnings │ │ │ │ ├── LNForceCloseChannel.md │ │ │ │ ├── MixerIntroduction.md │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ ├── el │ │ │ ├── DexNotes │ │ │ │ └── DexNotes.md │ │ │ ├── GetStarted │ │ │ │ ├── TutorialPage01.md │ │ │ │ ├── TutorialPage02.md │ │ │ │ ├── TutorialPage03.md │ │ │ │ └── TutorialPage04.md │ │ │ ├── InfoModals │ │ │ │ ├── BalanceOverview.md │ │ │ │ ├── DecredConstitution.md │ │ │ │ ├── GapLimit.md │ │ │ │ ├── Passphrase.md │ │ │ │ ├── PurchasePrivacyTickets.md │ │ │ │ ├── PurchaseTickets.md │ │ │ │ ├── ScriptNotRedeemable.md │ │ │ │ ├── Seed.md │ │ │ │ ├── SendFromUnmixed.md │ │ │ │ ├── SignMessage.md │ │ │ │ ├── TicketAutoBuyer.md │ │ │ │ ├── UIAnimations.md │ │ │ │ └── VerifyMessage.md │ │ │ ├── LN │ │ │ │ └── BackupInfo.md │ │ │ ├── ReleaseNotes │ │ │ │ ├── v1.3.0.md │ │ │ │ ├── v1.3.1.md │ │ │ │ ├── v1.4.0.md │ │ │ │ ├── v1.5.0.md │ │ │ │ └── v1.6.0.md │ │ │ ├── StakingTutorial │ │ │ │ ├── Page01.md │ │ │ │ └── Page02.md │ │ │ ├── TicketLifecycleTutorial │ │ │ │ ├── Page01.md │ │ │ │ ├── Page02.md │ │ │ │ ├── Page03.md │ │ │ │ ├── Page04.md │ │ │ │ ├── Page05.md │ │ │ │ └── Page06.md │ │ │ ├── Warnings │ │ │ │ ├── LNForceCloseChannel.md │ │ │ │ ├── LNWalletCreation.md │ │ │ │ ├── MixerIntroduction.md │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ ├── TrezorWipe.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ ├── en │ │ │ ├── DexNotes │ │ │ │ └── DexNotes.md │ │ │ ├── GetStarted │ │ │ │ ├── TutorialPage01.md │ │ │ │ ├── TutorialPage02.md │ │ │ │ ├── TutorialPage03.md │ │ │ │ └── TutorialPage04.md │ │ │ ├── InfoModals │ │ │ │ ├── BalanceOverview.md │ │ │ │ ├── DecredConstitution.md │ │ │ │ ├── GapLimit.md │ │ │ │ ├── Passphrase.md │ │ │ │ ├── PurchasePrivacyTickets.md │ │ │ │ ├── PurchaseTickets.md │ │ │ │ ├── ScriptNotRedeemable.md │ │ │ │ ├── Seed.md │ │ │ │ ├── SendFromUnmixed.md │ │ │ │ ├── SignMessage.md │ │ │ │ ├── TicketAutoBuyer.md │ │ │ │ ├── UIAnimations.md │ │ │ │ └── VerifyMessage.md │ │ │ ├── LN │ │ │ │ ├── BackupInfo.md │ │ │ │ └── WalletCreationWarnings │ │ │ │ │ ├── WarningPage01.md │ │ │ │ │ ├── WarningPage02.md │ │ │ │ │ ├── WarningPage03.md │ │ │ │ │ ├── WarningPage04.md │ │ │ │ │ ├── WarningPage05.md │ │ │ │ │ └── WarningPage06.md │ │ │ ├── Ledger │ │ │ │ ├── PreCreateLedgerWallet1.md │ │ │ │ └── PreCreateLedgerWallet2.md │ │ │ ├── ReleaseNotes │ │ │ │ ├── v1.3.0.md │ │ │ │ ├── v1.3.1.md │ │ │ │ ├── v1.4.0.md │ │ │ │ ├── v1.5.0.md │ │ │ │ ├── v1.6.0.md │ │ │ │ ├── v1.7.0.md │ │ │ │ ├── v1.8.0.md │ │ │ │ └── v2.1.1.md │ │ │ ├── StakingTutorial │ │ │ │ ├── Page01.md │ │ │ │ └── Page02.md │ │ │ ├── TicketLifecycleTutorial │ │ │ │ ├── Page01.md │ │ │ │ ├── Page02.md │ │ │ │ ├── Page03.md │ │ │ │ ├── Page04.md │ │ │ │ ├── Page05.md │ │ │ │ └── Page06.md │ │ │ ├── Trezor │ │ │ │ ├── BackupDevice.md │ │ │ │ ├── DeviceSetup.md │ │ │ │ ├── InitDevice.md │ │ │ │ ├── PreCreateTrezorWallet1.md │ │ │ │ ├── PreCreateTrezorWallet2.md │ │ │ │ ├── RecoverDevice.md │ │ │ │ └── WipeDevice.md │ │ │ ├── Tutorials │ │ │ │ ├── BlocksPage01.md │ │ │ │ ├── BlocksPage02.md │ │ │ │ ├── BlocksPage03.md │ │ │ │ ├── BlocksPage04.md │ │ │ │ ├── BlocksPage05.md │ │ │ │ ├── ConsensusCodePage01.md │ │ │ │ ├── ConsensusVotingPage01.md │ │ │ │ ├── ConsensusVotingPage02.md │ │ │ │ ├── ConsensusVotingPage03.md │ │ │ │ ├── ConsensusVotingPage04.md │ │ │ │ ├── ConsensusVotingPage05.md │ │ │ │ ├── ConsensusVotingPage06.md │ │ │ │ ├── ConsensusVotingPage07.md │ │ │ │ ├── DecredIntoPage01.md │ │ │ │ ├── DecredIntoPage02.md │ │ │ │ ├── IdentityPage01.md │ │ │ │ ├── IdentityPage02.md │ │ │ │ ├── IdentityPage03.md │ │ │ │ ├── IdentityPage04.md │ │ │ │ ├── LifecyclePage01.md │ │ │ │ ├── LifecyclePage02.md │ │ │ │ ├── LifecyclePage03.md │ │ │ │ ├── LifecyclePage04.md │ │ │ │ ├── LifecyclePage05.md │ │ │ │ ├── LifecyclePage06.md │ │ │ │ ├── PowPosPage01.md │ │ │ │ ├── PowPosPage02.md │ │ │ │ ├── PowPosPage03.md │ │ │ │ ├── StakingPage01.md │ │ │ │ ├── StakingPage02.md │ │ │ │ ├── StakingPage03.md │ │ │ │ ├── TicketsPage01.md │ │ │ │ ├── TicketsPage02.md │ │ │ │ └── TicketsPage03.md │ │ │ ├── Warnings │ │ │ │ ├── LNForceCloseChannel.md │ │ │ │ ├── MixerIntroduction.md │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ ├── es │ │ │ ├── LN │ │ │ │ ├── BackupInfo.md │ │ │ │ └── WalletCreationWarnings │ │ │ │ │ ├── WarningPage01.md │ │ │ │ │ ├── WarningPage02.md │ │ │ │ │ ├── WarningPage03.md │ │ │ │ │ ├── WarningPage04.md │ │ │ │ │ ├── WarningPage05.md │ │ │ │ │ └── WarningPage06.md │ │ │ ├── Warnings │ │ │ │ ├── LNForceCloseChannel.md │ │ │ │ ├── MixerIntroduction.md │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ ├── fr │ │ │ ├── DexNotes │ │ │ │ └── DexNotes.md │ │ │ ├── GetStarted │ │ │ │ ├── TutorialPage01.md │ │ │ │ ├── TutorialPage02.md │ │ │ │ ├── TutorialPage03.md │ │ │ │ └── TutorialPage04.md │ │ │ ├── InfoModals │ │ │ │ ├── BalanceOverview.md │ │ │ │ ├── DecredConstitution.md │ │ │ │ ├── GapLimit.md │ │ │ │ ├── Passphrase.md │ │ │ │ ├── PurchasePrivacyTickets.md │ │ │ │ ├── PurchaseTickets.md │ │ │ │ ├── ScriptNotRedeemable.md │ │ │ │ ├── Seed.md │ │ │ │ ├── SendFromUnmixed.md │ │ │ │ ├── SignMessage.md │ │ │ │ ├── TicketAutoBuyer.md │ │ │ │ ├── UIAnimations.md │ │ │ │ └── VerifyMessage.md │ │ │ ├── LN │ │ │ │ ├── BackupInfo.md │ │ │ │ └── WalletCreationWarnings │ │ │ │ │ ├── WarningPage01.md │ │ │ │ │ ├── WarningPage02.md │ │ │ │ │ ├── WarningPage03.md │ │ │ │ │ ├── WarningPage04.md │ │ │ │ │ ├── WarningPage05.md │ │ │ │ │ └── WarningPage06.md │ │ │ ├── ReleaseNotes │ │ │ │ ├── v1.7.0.md │ │ │ │ └── v1.8.0.md │ │ │ ├── StakingTutorial │ │ │ │ ├── Page01.md │ │ │ │ └── Page02.md │ │ │ ├── TicketLifecycleTutorial │ │ │ │ ├── Page01.md │ │ │ │ ├── Page02.md │ │ │ │ ├── Page03.md │ │ │ │ ├── Page04.md │ │ │ │ ├── Page05.md │ │ │ │ └── Page06.md │ │ │ ├── Trezor │ │ │ │ ├── BackupDevice.md │ │ │ │ ├── DeviceSetup.md │ │ │ │ ├── InitDevice.md │ │ │ │ ├── PreCreateTrezorWallet1.md │ │ │ │ ├── PreCreateTrezorWallet2.md │ │ │ │ ├── RecoverDevice.md │ │ │ │ └── WipeDevice.md │ │ │ ├── Tutorials │ │ │ │ ├── BlocksPage01.md │ │ │ │ ├── BlocksPage02.md │ │ │ │ ├── BlocksPage03.md │ │ │ │ ├── BlocksPage04.md │ │ │ │ ├── BlocksPage05.md │ │ │ │ ├── ConsensusCodePage01.md │ │ │ │ ├── ConsensusVotingPage01.md │ │ │ │ ├── ConsensusVotingPage02.md │ │ │ │ ├── ConsensusVotingPage03.md │ │ │ │ ├── ConsensusVotingPage04.md │ │ │ │ ├── ConsensusVotingPage05.md │ │ │ │ ├── ConsensusVotingPage06.md │ │ │ │ ├── ConsensusVotingPage07.md │ │ │ │ ├── DecredIntoPage01.md │ │ │ │ ├── DecredIntoPage02.md │ │ │ │ ├── IdentityPage01.md │ │ │ │ ├── IdentityPage02.md │ │ │ │ ├── IdentityPage03.md │ │ │ │ ├── IdentityPage04.md │ │ │ │ ├── LifecyclePage01.md │ │ │ │ ├── LifecyclePage02.md │ │ │ │ ├── LifecyclePage03.md │ │ │ │ ├── LifecyclePage04.md │ │ │ │ ├── LifecyclePage05.md │ │ │ │ ├── LifecyclePage06.md │ │ │ │ ├── PowPosPage01.md │ │ │ │ ├── PowPosPage02.md │ │ │ │ ├── PowPosPage03.md │ │ │ │ ├── StakingPage01.md │ │ │ │ ├── StakingPage02.md │ │ │ │ ├── StakingPage03.md │ │ │ │ ├── TicketsPage01.md │ │ │ │ ├── TicketsPage02.md │ │ │ │ └── TicketsPage03.md │ │ │ ├── Warnings │ │ │ │ ├── LNForceCloseChannel.md │ │ │ │ ├── MixerIntroduction.md │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ ├── index.js │ │ ├── it │ │ │ ├── GetStarted │ │ │ │ ├── TutorialPage01.md │ │ │ │ ├── TutorialPage02.md │ │ │ │ ├── TutorialPage03.md │ │ │ │ └── TutorialPage04.md │ │ │ ├── InfoModals │ │ │ │ ├── BalanceOverview.md │ │ │ │ ├── DecredConstitution.md │ │ │ │ ├── GapLimit.md │ │ │ │ ├── Passphrase.md │ │ │ │ ├── PurchasePrivacyTickets.md │ │ │ │ ├── PurchaseTickets.md │ │ │ │ ├── ScriptNotRedeemable.md │ │ │ │ ├── Seed.md │ │ │ │ ├── SendFromUnmixed.md │ │ │ │ ├── SignMessage.md │ │ │ │ ├── TicketAutoBuyer.md │ │ │ │ └── VerifyMessage.md │ │ │ ├── LN │ │ │ │ ├── BackupInfo.md │ │ │ │ └── WalletCreationWarnings │ │ │ │ │ ├── WarningPage01.md │ │ │ │ │ ├── WarningPage02.md │ │ │ │ │ ├── WarningPage03.md │ │ │ │ │ ├── WarningPage04.md │ │ │ │ │ ├── WarningPage05.md │ │ │ │ │ └── WarningPage06.md │ │ │ ├── ReleaseNotes │ │ │ │ ├── v1.3.0.md │ │ │ │ ├── v1.3.1.md │ │ │ │ ├── v1.4.0.md │ │ │ │ └── v1.5.0.md │ │ │ ├── StakingTutorial │ │ │ │ ├── Page01.md │ │ │ │ └── Page02.md │ │ │ ├── TicketLifecycleTutorial │ │ │ │ ├── Page01.md │ │ │ │ ├── Page02.md │ │ │ │ ├── Page03.md │ │ │ │ ├── Page04.md │ │ │ │ ├── Page05.md │ │ │ │ └── Page06.md │ │ │ ├── Warnings │ │ │ │ ├── LNForceCloseChannel.md │ │ │ │ ├── MixerIntroduction.md │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ ├── ja │ │ │ ├── LN │ │ │ │ └── BackupInfo.md │ │ │ ├── Warnings │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ ├── pl │ │ │ ├── GetStarted │ │ │ │ ├── TutorialPage01.md │ │ │ │ ├── TutorialPage02.md │ │ │ │ ├── TutorialPage03.md │ │ │ │ └── TutorialPage04.md │ │ │ ├── InfoModals │ │ │ │ ├── BalanceOverview.md │ │ │ │ ├── DecredConstitution.md │ │ │ │ ├── GapLimit.md │ │ │ │ ├── Passphrase.md │ │ │ │ ├── PurchasePrivacyTickets.md │ │ │ │ ├── PurchaseTickets.md │ │ │ │ ├── ScriptNotRedeemable.md │ │ │ │ ├── Seed.md │ │ │ │ ├── SendFromUnmixed.md │ │ │ │ ├── SignMessage.md │ │ │ │ ├── TicketAutoBuyer.md │ │ │ │ └── VerifyMessage.md │ │ │ ├── LN │ │ │ │ ├── BackupInfo.md │ │ │ │ └── WalletCreationWarnings │ │ │ │ │ ├── WarningPage01.md │ │ │ │ │ ├── WarningPage02.md │ │ │ │ │ ├── WarningPage03.md │ │ │ │ │ ├── WarningPage04.md │ │ │ │ │ ├── WarningPage05.md │ │ │ │ │ └── WarningPage06.md │ │ │ ├── StakingTutorial │ │ │ │ ├── Page01.md │ │ │ │ └── Page02.md │ │ │ ├── TicketLifecycleTutorial │ │ │ │ ├── Page01.md │ │ │ │ ├── Page02.md │ │ │ │ ├── Page03.md │ │ │ │ ├── Page04.md │ │ │ │ ├── Page05.md │ │ │ │ └── Page06.md │ │ │ ├── Trezor │ │ │ │ ├── BackupDevice.md │ │ │ │ ├── DeviceSetup.md │ │ │ │ ├── InitDevice.md │ │ │ │ ├── PreCreateTrezorWallet1.md │ │ │ │ ├── PreCreateTrezorWallet2.md │ │ │ │ ├── RecoverDevice.md │ │ │ │ └── WipeDevice.md │ │ │ ├── Warnings │ │ │ │ ├── LNForceCloseChannel.md │ │ │ │ ├── MixerIntroduction.md │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ ├── pt │ │ │ ├── DexNotes │ │ │ │ └── DexNotes.md │ │ │ ├── GetStarted │ │ │ │ ├── TutorialPage01.md │ │ │ │ ├── TutorialPage02.md │ │ │ │ ├── TutorialPage03.md │ │ │ │ └── TutorialPage04.md │ │ │ ├── InfoModals │ │ │ │ ├── BalanceOverview.md │ │ │ │ ├── GapLimit.md │ │ │ │ ├── Passphrase.md │ │ │ │ ├── PurchasePrivacyTickets.md │ │ │ │ ├── PurchaseTickets.md │ │ │ │ ├── ScriptNotRedeemable.md │ │ │ │ ├── Seed.md │ │ │ │ ├── SendFromUnmixed.md │ │ │ │ ├── SignMessage.md │ │ │ │ ├── TicketAutoBuyer.md │ │ │ │ ├── UIAnimations.md │ │ │ │ └── VerifyMessage.md │ │ │ ├── LN │ │ │ │ ├── BackupInfo.md │ │ │ │ └── WalletCreationWarnings │ │ │ │ │ ├── WarningPage01.md │ │ │ │ │ ├── WarningPage02.md │ │ │ │ │ ├── WarningPage03.md │ │ │ │ │ ├── WarningPage04.md │ │ │ │ │ ├── WarningPage05.md │ │ │ │ │ └── WarningPage06.md │ │ │ ├── ReleaseNotes │ │ │ │ └── v1.4.0.md │ │ │ ├── StakingTutorial │ │ │ │ ├── Page01.md │ │ │ │ └── Page02.md │ │ │ ├── TicketLifecycleTutorial │ │ │ │ ├── Page01.md │ │ │ │ ├── Page02.md │ │ │ │ ├── Page03.md │ │ │ │ ├── Page04.md │ │ │ │ ├── Page05.md │ │ │ │ └── Page06.md │ │ │ ├── Warnings │ │ │ │ ├── LNForceCloseChannel.md │ │ │ │ ├── MixerIntroduction.md │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ ├── zh-HK │ │ │ ├── GetStarted │ │ │ │ ├── TutorialPage01.md │ │ │ │ ├── TutorialPage02.md │ │ │ │ ├── TutorialPage03.md │ │ │ │ └── TutorialPage04.md │ │ │ ├── InfoModals │ │ │ │ ├── BalanceOverview.md │ │ │ │ ├── GapLimit.md │ │ │ │ ├── Passphrase.md │ │ │ │ ├── PurchasePrivacyTickets.md │ │ │ │ ├── PurchaseTickets.md │ │ │ │ ├── ScriptNotRedeemable.md │ │ │ │ ├── Seed.md │ │ │ │ ├── SendFromUnmixed.md │ │ │ │ ├── SignMessage.md │ │ │ │ ├── TicketAutoBuyer.md │ │ │ │ └── VerifyMessage.md │ │ │ ├── LN │ │ │ │ ├── BackupInfo.md │ │ │ │ └── WalletCreationWarnings │ │ │ │ │ ├── WarningPage01.md │ │ │ │ │ ├── WarningPage02.md │ │ │ │ │ ├── WarningPage03.md │ │ │ │ │ ├── WarningPage04.md │ │ │ │ │ ├── WarningPage05.md │ │ │ │ │ └── WarningPage06.md │ │ │ ├── StakingTutorial │ │ │ │ ├── Page01.md │ │ │ │ └── Page02.md │ │ │ ├── TicketLifecycleTutorial │ │ │ │ ├── Page01.md │ │ │ │ ├── Page02.md │ │ │ │ ├── Page03.md │ │ │ │ ├── Page04.md │ │ │ │ ├── Page05.md │ │ │ │ └── Page06.md │ │ │ ├── Warnings │ │ │ │ ├── LNForceCloseChannel.md │ │ │ │ ├── MixerIntroduction.md │ │ │ │ ├── SeedCopy.md │ │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ │ └── WalletCreation.md │ │ │ └── index.js │ │ └── zh │ │ │ ├── LN │ │ │ ├── BackupInfo.md │ │ │ └── WalletCreationWarnings │ │ │ │ ├── WarningPage01.md │ │ │ │ ├── WarningPage02.md │ │ │ │ ├── WarningPage03.md │ │ │ │ ├── WarningPage04.md │ │ │ │ ├── WarningPage05.md │ │ │ │ └── WarningPage06.md │ │ │ ├── ReleaseNotes │ │ │ └── v1.4.0.md │ │ │ ├── Warnings │ │ │ ├── LNForceCloseChannel.md │ │ │ ├── MixerIntroduction.md │ │ │ ├── SeedCopy.md │ │ │ ├── TrezorFirmwareUpdate.md │ │ │ ├── TrezorWalletCreationPassPhrase.md │ │ │ └── WalletCreation.md │ │ │ └── index.js │ ├── extracted │ │ └── static │ │ │ ├── dialogs.json │ │ │ ├── index.js │ │ │ └── menus.json │ ├── lib │ │ └── diff_match_patch.js │ ├── locales │ │ └── index.js │ ├── translations │ │ ├── ar.json │ │ ├── de.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── gr.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── original.json │ │ ├── pl.json │ │ ├── previous_original.json │ │ ├── pt.json │ │ ├── whitelist_dev.json │ │ ├── whitelist_original.json │ │ ├── zh-HK.json │ │ └── zh.json │ └── translator.html ├── icon.png ├── index.js ├── main.development.js ├── main_dev │ ├── constants.js │ ├── customTranslation.js │ ├── externalRequests.js │ ├── ipc.js │ ├── launch.js │ ├── logging.js │ ├── paths.js │ ├── proxy.js │ └── templates.js ├── middleware │ ├── api.proto │ ├── dcrdataapi.js │ ├── grpc │ │ ├── client.js │ │ └── clientTracking.js │ ├── ln │ │ ├── autopilot.proto │ │ ├── autopilot_grpc_pb.js │ │ ├── autopilot_pb.js │ │ ├── client.js │ │ ├── invoices.proto │ │ ├── invoices_grpc_pb.js │ │ ├── invoices_pb.js │ │ ├── lightning.proto │ │ ├── lightning_grpc_pb.js │ │ ├── lightning_pb.js │ │ ├── regen.sh │ │ ├── walletunlocker.proto │ │ ├── walletunlocker_grpc_pb.js │ │ ├── walletunlocker_pb.js │ │ ├── wtclient.proto │ │ ├── wtclient_grpc_pb.js │ │ └── wtclient_pb.js │ ├── politeiaapi.js │ ├── regen.sh │ ├── vspapi.js │ └── walletrpc │ │ ├── api_grpc_pb.js │ │ └── api_pb.js ├── package.json ├── reducers │ ├── control.js │ ├── daemon.js │ ├── dex.js │ ├── governance.js │ ├── grpc.js │ ├── index.js │ ├── ledger.js │ ├── ln.js │ ├── locales.js │ ├── notifications.js │ ├── settings.js │ ├── sidebar.js │ ├── snackbar.js │ ├── statistics.js │ ├── trezor.js │ ├── version.js │ ├── vsp.js │ └── walletLoader.js ├── selectors.js ├── stateMachines │ ├── CreateWalletStateMachine.js │ ├── FetchStateMachine.js │ ├── GetStartedStateMachine.js │ └── SetupWalletConfigMachine.js ├── staticPages │ ├── SourceSansPro-Regular.ttf │ ├── confirmation-dialog.html │ └── secondInstance.html ├── store │ ├── configureStore.development.js │ ├── configureStore.js │ └── configureStore.production.js ├── style │ ├── animations │ │ ├── blockChainLoading.json │ │ ├── daemonWaiting.json │ │ ├── discoveringAddresses.json │ │ ├── establishingRpc.json │ │ ├── fetchingHeaders.json │ │ ├── finalizingSetup.json │ │ ├── politeiaLoading.gif │ │ ├── politeiaLoadingDark.gif │ │ ├── scanningBlocks.json │ │ └── syncingMotion.gif │ ├── fonts │ │ ├── SourceCodePro-Bold.ttf │ │ ├── SourceCodePro-Regular.ttf │ │ ├── SourceSansPro-Bold.ttf │ │ ├── SourceSansPro-BoldItalic.ttf │ │ ├── SourceSansPro-Italic.ttf │ │ ├── SourceSansPro-Light.ttf │ │ ├── SourceSansPro-LightItalic.ttf │ │ ├── SourceSansPro-Regular.ttf │ │ ├── SourceSansPro-SemiBold.ttf │ │ └── SourceSansPro-SemiBoldItalic.ttf │ ├── icons │ │ ├── 3D_Loading.gif │ │ ├── LNCapacityIcon.svg │ │ ├── LNCapacityIconDark.svg │ │ ├── LNChannelsIcon.svg │ │ ├── LNChannelsIconDark.svg │ │ ├── LNConfirmedBalanceIcon.svg │ │ ├── LNConfirmedBalanceIconDark.svg │ │ ├── LNNetworkCapacityIcon.svg │ │ ├── LNNetworkCapacityIconDark.svg │ │ ├── LNNodesEyeIcon.svg │ │ ├── LNNodesEyeIconDark.svg │ │ ├── LNNodesIcon.svg │ │ ├── LNNodesIconDark.svg │ │ ├── LNOpenChannelsIcon.svg │ │ ├── LNOpenChannelsIconDark.svg │ │ ├── LNTotalAccountBalanceIcon.svg │ │ ├── LNTotalAccountBalanceIconDark.svg │ │ ├── LNUnconfirmedBalanceIcon.svg │ │ ├── LNUnconfirmedBalanceIconDark.svg │ │ ├── LNWalletCreationWarningArrow.svg │ │ ├── LNWalletCreationWarningArrowDark.svg │ │ ├── LauncherWalletDelete.svg │ │ ├── LauncherWalletDeleteHover.svg │ │ ├── account-download.svg │ │ ├── account-eye-hide.svg │ │ ├── account-eye-open.svg │ │ ├── account-rename.svg │ │ ├── accountDefault.svg │ │ ├── accountDefaultDark.svg │ │ ├── accountHideWhite.svg │ │ ├── accountImported.svg │ │ ├── accountImportedDark.svg │ │ ├── accountShowWhite.svg │ │ ├── accounts-active.png │ │ ├── accountsActiveDark.svg │ │ ├── accountsHeader.svg │ │ ├── accountsHeaderDark.svg │ │ ├── activeLegend.svg │ │ ├── animated_alert_icon.gif │ │ ├── ar-flag.svg │ │ ├── arrow-down-key-blue.svg │ │ ├── arrow-down-mid-blue.svg │ │ ├── arrow-left-white.svg │ │ ├── arrow-right-gray.svg │ │ ├── arrow-right-key-blue.svg │ │ ├── arrow-right-smoke.svg │ │ ├── arrow.svg │ │ ├── arrowDark.svg │ │ ├── arrowRightGrayDark.svg │ │ ├── au-flag.svg │ │ ├── availLegend.svg │ │ ├── balanceSelector.svg │ │ ├── bell-notification.svg │ │ ├── blockReward.svg │ │ ├── blockRewardDark.svg │ │ ├── blockSynced.svg │ │ ├── blockSyncedDark.svg │ │ ├── blockchain.svg │ │ ├── blockchainDark.svg │ │ ├── blockchainDefault.svg │ │ ├── blockchainDefaultDark.svg │ │ ├── blockchainExplorerGrey.svg │ │ ├── blockchainExplorerGreyDark.svg │ │ ├── blockchainInitial.svg │ │ ├── blockchainInitialDark.svg │ │ ├── blockchain_syncing_loader.gif │ │ ├── blueCheckmark.svg │ │ ├── buy-decred.svg │ │ ├── chatBubbles.svg │ │ ├── checkMarkContextMenu.svg │ │ ├── checkbox.svg │ │ ├── checkmarkBlue.svg │ │ ├── checkmarkGrey.svg │ │ ├── closeWallet.svg │ │ ├── constitutionGrey.svg │ │ ├── constitutionGreyDark.svg │ │ ├── contextbutton-eye-default.svg │ │ ├── contextbutton-eye-disabled.svg │ │ ├── contextbuttonEyeDefaultDark.svg │ │ ├── createnewwallet.svg │ │ ├── createnewwalletDark.svg │ │ ├── daemonWaitingLoaderDark.gif │ │ ├── daemonWaitingLoaderInitialDark.gif │ │ ├── daemon_waiting_loader.gif │ │ ├── dcrLogoShare.svg │ │ ├── de-flag.svg │ │ ├── decentralizedLoopAnimation.gif │ │ ├── decentralizedLoopAnimationDark.gif │ │ ├── decentralizedLoopStill.svg │ │ ├── decentralizedLoopStillDark.svg │ │ ├── decred-logo.svg │ │ ├── decred-macos-1024-logo.png │ │ ├── decred-qrcode.png │ │ ├── decredLogoDark.svg │ │ ├── dex.svg │ │ ├── dexDark.svg │ │ ├── disableSpv.svg │ │ ├── discovering_addresses_loader.gif │ │ ├── docsGrey.svg │ │ ├── docsGreyDark.svg │ │ ├── dummy-icon.svg │ │ ├── enableSpv.svg │ │ ├── eng-flag.svg │ │ ├── es-flag.svg │ │ ├── establishing_rpc_loader.gif │ │ ├── expandDefault.svg │ │ ├── expandDefaultDark.svg │ │ ├── expandHover.svg │ │ ├── expandHoverDark.svg │ │ ├── externalDefault.svg │ │ ├── externalDefaultDark.svg │ │ ├── externalHover.svg │ │ ├── externalHoverDark.svg │ │ ├── eye.svg │ │ ├── eyeDark.svg │ │ ├── eyeDisabled.svg │ │ ├── eyeDisabledDark.svg │ │ ├── fetching_headers_loader.gif │ │ ├── finalizing_setup_loader.gif │ │ ├── forumGrey.svg │ │ ├── forumGreyDark.svg │ │ ├── fr-flag.svg │ │ ├── gb-flag.svg │ │ ├── generate-address.svg │ │ ├── githubGrey.svg │ │ ├── githubGreyDark.svg │ │ ├── governance-active.png │ │ ├── governanceActiveDark.svg │ │ ├── governanceHeader.svg │ │ ├── governanceHeaderDark.svg │ │ ├── hamburger.svg │ │ ├── hamburgerDark.svg │ │ ├── harddrive.svg │ │ ├── harddriveDark.svg │ │ ├── help-active.png │ │ ├── helpActiveDark.svg │ │ ├── helpGetstared.svg │ │ ├── helpGetstaredDark.svg │ │ ├── hk-flag.svg │ │ ├── img.svg │ │ ├── indicator-confirmed.svg │ │ ├── indicator-finished.svg │ │ ├── indicator-invalid.svg │ │ ├── indicator-pending.svg │ │ ├── info-warning.svg │ │ ├── information.svg │ │ ├── informationDark.svg │ │ ├── it-flag.svg │ │ ├── ja-flag.svg │ │ ├── launcher-logo.svg │ │ ├── launcherLogoDark.svg │ │ ├── lifecycle-01.png │ │ ├── lifecycle-02.png │ │ ├── lifecycle-03.png │ │ ├── lifecycle-04.png │ │ ├── lifecycle-05.png │ │ ├── lifecycle-06.png │ │ ├── lifecycle-06.svg │ │ ├── lightning.svg │ │ ├── lightningDark.svg │ │ ├── lightningHeader.svg │ │ ├── lightningHeaderDark.svg │ │ ├── lightningIcon.svg │ │ ├── lnInvoiceIcon.svg │ │ ├── lockCheckmark.svg │ │ ├── lockCheckmarkDark.svg │ │ ├── lockedLegend.svg │ │ ├── logo.svg │ │ ├── logoDark.svg │ │ ├── lookupIcon.svg │ │ ├── matrixGrey.svg │ │ ├── matrixGreyDark.svg │ │ ├── menu-arrow-up.svg │ │ ├── menu-cancel-rescan.svg │ │ ├── menuArrowUpDark.svg │ │ ├── menuCancelRescanDark.svg │ │ ├── menuMixer.svg │ │ ├── menuMixerDark.svg │ │ ├── menuSettings.svg │ │ ├── menuSettingsDark.svg │ │ ├── menuSpvOff.svg │ │ ├── menuSpvOffDark.svg │ │ ├── menuSpvOn.svg │ │ ├── menuSpvOnDark.svg │ │ ├── minus-big.svg │ │ ├── minus-small.svg │ │ ├── mixedAccount.svg │ │ ├── mixedAccountDark.svg │ │ ├── mixedTx.svg │ │ ├── mixerArrows.gif │ │ ├── mixerArrowsDark.gif │ │ ├── no-tickets.svg │ │ ├── no-tx.svg │ │ ├── noTxDark.svg │ │ ├── notificationError.svg │ │ ├── notificationSuccess.svg │ │ ├── onboarding-checkcircle.svg │ │ ├── onboardingCheckcircleDark.svg │ │ ├── overview-active.png │ │ ├── overview-hover.svg │ │ ├── overviewActiveDark.svg │ │ ├── password.svg │ │ ├── passwordDark.svg │ │ ├── passwordInactive.svg │ │ ├── pending_dots.gif │ │ ├── pl-flag.svg │ │ ├── plus-big.svg │ │ ├── plus-small.svg │ │ ├── plusIcon.svg │ │ ├── privacy.svg │ │ ├── privacyCustom.svg │ │ ├── privacyCustomDark.svg │ │ ├── privacyDark.svg │ │ ├── privacyDisabled.svg │ │ ├── privacyDisabledDark.svg │ │ ├── privacyHeader.svg │ │ ├── privacyHeaderDark.svg │ │ ├── privacyStandard.svg │ │ ├── privacyStandardDark.svg │ │ ├── ptbr-flag.svg │ │ ├── qr-logo.svg │ │ ├── qrcode-1.svg │ │ ├── rebroadcastTransaction.svg │ │ ├── receivedLegend.svg │ │ ├── release-note-v130.gif │ │ ├── release-note-v140.gif │ │ ├── release-note-v150.png │ │ ├── release-note-v160.png │ │ ├── release-note-v170.gif │ │ ├── release-note-v180.png │ │ ├── release-note-v211.png │ │ ├── release-note.png │ │ ├── restorewallet.svg │ │ ├── rightArrow.svg │ │ ├── rightArrowDark.svg │ │ ├── rocketchat-hover.svg │ │ ├── rocketchat.svg │ │ ├── scanning_blocks_loader.gif │ │ ├── search-hover.svg │ │ ├── search.svg │ │ ├── searchDark.svg │ │ ├── searchHightWidth.svg │ │ ├── select-arrow-up.svg │ │ ├── selectArrowUpDark.svg │ │ ├── sendMaxDefault.svg │ │ ├── sendMaxDefaultDark.svg │ │ ├── sendMaxDisabled.svg │ │ ├── sendMaxHover.svg │ │ ├── sendMaxHoverDark.svg │ │ ├── sendSelfDefault.svg │ │ ├── sendSelfDefaultDark.svg │ │ ├── sendSelfHover.svg │ │ ├── sendSelfHoverDark.svg │ │ ├── sentLegend.svg │ │ ├── sentToSelfTx.svg │ │ ├── sentToSelfTxDark.svg │ │ ├── settings-hover.svg │ │ ├── sidebar-balance.svg │ │ ├── sidebarBalanceDark.svg │ │ ├── sort-by.svg │ │ ├── sortbyDark.svg │ │ ├── stakeRewardsActive.svg │ │ ├── stakeRewardsActiveDark.svg │ │ ├── stakeRewardsDefault.svg │ │ ├── stakeRewardsDefaultDark.svg │ │ ├── stakepoolsActive.svg │ │ ├── stakepoolsActiveDark.svg │ │ ├── stakepoolsDefault.svg │ │ ├── stakepoolsDefaultDark.svg │ │ ├── stakepoolsGrey.svg │ │ ├── stakepoolsGreyDark.svg │ │ ├── stakeySprites.png │ │ ├── starGrey.svg │ │ ├── starGreyDark.svg │ │ ├── stats-disabled.svg │ │ ├── stripe.svg │ │ ├── testnet-logo.svg │ │ ├── testnetLogoDark.svg │ │ ├── ticket-expired.svg │ │ ├── ticket-immature.svg │ │ ├── ticket-lifecycle.svg │ │ ├── ticket-live.svg │ │ ├── ticket-missed.svg │ │ ├── ticket-revoked.svg │ │ ├── ticket-reward.svg │ │ ├── ticket-unmined.svg │ │ ├── ticket-voted.svg │ │ ├── ticketExpired.svg │ │ ├── ticketFeeTransaction.svg │ │ ├── ticketImmature.svg │ │ ├── ticketLive.svg │ │ ├── ticketMissed.svg │ │ ├── ticketRevoked.svg │ │ ├── ticketUnmined.svg │ │ ├── ticketVoted.svg │ │ ├── ticket_live_loop_decrediton_grey.gif │ │ ├── tickets-active.png │ │ ├── tickets-agenda-card-cebab-disabled.svg │ │ ├── tickets-agenda-card-cebab-hover.svg │ │ ├── tickets-agenda-card-cebab.svg │ │ ├── tickets-agenda-card-kebab-disabled.svg │ │ ├── tickets-agenda-card-kebab-hover.svg │ │ ├── tickets-agenda-card-kebab.svg │ │ ├── tickets-agenda-close.svg │ │ ├── tickets-cogs-closed.svg │ │ ├── tickets-cogs-opened.svg │ │ ├── tickets-default.png │ │ ├── tickets-hover.svg │ │ ├── tickets-info.svg │ │ ├── tickets-ticket.svg │ │ ├── ticketsActiveDark.svg │ │ ├── ticketsAgendaCardKebabDark.svg │ │ ├── ticketsAgendaCloseDark.svg │ │ ├── ticketsCogsOpenedDark.svg │ │ ├── ticketsDefaultDark.svg │ │ ├── ticketsHeader.svg │ │ ├── ticketsHeaderDark.svg │ │ ├── ticketsInfoDark.svg │ │ ├── ticketsMinusWhite.svg │ │ ├── ticketsPlusWhite.svg │ │ ├── time-lock.svg │ │ ├── timeLockDark.svg │ │ ├── transactions-active.png │ │ ├── transactions-default.png │ │ ├── transactions-hover.svg │ │ ├── transactionsActiveDark.svg │ │ ├── transactionsDefaultDark.svg │ │ ├── transactionsHeader.svg │ │ ├── transactionsHeaderDark.svg │ │ ├── transparent.png │ │ ├── trezorActive.svg │ │ ├── trezorActiveDark.svg │ │ ├── trezorHeader.svg │ │ ├── trezorHeaderDark.svg │ │ ├── tutorials │ │ │ ├── blocks │ │ │ │ ├── blocks-slide1.svg │ │ │ │ ├── blocks-slide2.svg │ │ │ │ ├── blocks-slide3.svg │ │ │ │ ├── blocks-slide4.svg │ │ │ │ ├── blocks-slide5.svg │ │ │ │ └── thumb.svg │ │ │ ├── consensusCode │ │ │ │ ├── consensus-slide1-1.svg │ │ │ │ ├── consensus-slide1-2.svg │ │ │ │ └── thumb.svg │ │ │ ├── consensusVoting │ │ │ │ ├── consensusvoting-slide1.svg │ │ │ │ ├── consensusvoting-slide2.svg │ │ │ │ ├── consensusvoting-slide3.svg │ │ │ │ ├── consensusvoting-slide4.svg │ │ │ │ ├── consensusvoting-slide5.svg │ │ │ │ ├── consensusvoting-slide6.svg │ │ │ │ ├── consensusvoting-slide7.svg │ │ │ │ └── thumb.svg │ │ │ ├── decredIntro │ │ │ │ ├── intro-slide1.svg │ │ │ │ ├── intro-slide2-1.svg │ │ │ │ ├── intro-slide2-2.svg │ │ │ │ └── thumb.svg │ │ │ ├── identity │ │ │ │ ├── identity-slide1.svg │ │ │ │ ├── identity-slide2.svg │ │ │ │ ├── identity-slide3.svg │ │ │ │ └── identity-slide4.svg │ │ │ ├── lifecycle │ │ │ │ ├── lifecycle-slide1-1.svg │ │ │ │ ├── lifecycle-slide1-2.svg │ │ │ │ ├── lifecycle-slide2.svg │ │ │ │ ├── lifecycle-slide3-1.svg │ │ │ │ ├── lifecycle-slide3-2.svg │ │ │ │ ├── lifecycle-slide4-1.svg │ │ │ │ ├── lifecycle-slide4-2.svg │ │ │ │ ├── lifecycle-slide5-1.svg │ │ │ │ ├── lifecycle-slide5-2.svg │ │ │ │ ├── lifecycle-slide5-3.svg │ │ │ │ ├── lifecycle-slide5-4.svg │ │ │ │ ├── lifecycle-slide6-1.svg │ │ │ │ ├── lifecycle-slide6-2.svg │ │ │ │ ├── lifecycle-slide6-3.svg │ │ │ │ └── thumb.svg │ │ │ ├── ln │ │ │ │ ├── ln-slide1.svg │ │ │ │ ├── ln-slide2.svg │ │ │ │ ├── ln-slide3.svg │ │ │ │ ├── ln-slide4.svg │ │ │ │ ├── ln-slide5.svg │ │ │ │ ├── ln-slide6.svg │ │ │ │ └── thumb.svg │ │ │ ├── powPos │ │ │ │ ├── pos-pow-slide1.svg │ │ │ │ ├── pos-pow-slide2.svg │ │ │ │ ├── pos-pow-slide3.svg │ │ │ │ └── thumb.svg │ │ │ ├── staking │ │ │ │ ├── staking-slide1.svg │ │ │ │ ├── staking-slide2.svg │ │ │ │ ├── staking-slide3-1.svg │ │ │ │ ├── staking-slide3-2.svg │ │ │ │ ├── staking-slide4-1.svg │ │ │ │ ├── staking-slide4-2.svg │ │ │ │ └── thumb.svg │ │ │ └── tickets │ │ │ │ ├── thumb.svg │ │ │ │ ├── tickets-slide1.svg │ │ │ │ ├── tickets-slide2-1.svg │ │ │ │ ├── tickets-slide2-2.svg │ │ │ │ ├── tickets-slide3-1.svg │ │ │ │ └── tickets-slide3-2.svg │ │ ├── txDetailsArrowLeft.svg │ │ ├── txDetailsArrowLeftDark.svg │ │ ├── tzBackupDevice.svg │ │ ├── tzCreateBt.svg │ │ ├── tzInitDevice.svg │ │ ├── tzRecoverDevice.svg │ │ ├── tzWipeDevice.svg │ │ ├── unmixedAccount.svg │ │ ├── unmixedAccountDark.svg │ │ ├── vote-time-stats.svg │ │ ├── voteTimeActive.svg │ │ ├── voteTimeActiveDark.svg │ │ ├── voteTimeDefault.svg │ │ ├── voteTimeDefaultDark.svg │ │ ├── votedLegend.svg │ │ ├── votingGrey.svg │ │ ├── wallet-blue.svg │ │ ├── wallet-gray.svg │ │ ├── wallet-smoke.svg │ │ ├── wallet-turquoise.svg │ │ ├── walletBlueDark.svg │ │ ├── walletGrayDark.svg │ │ ├── walletTutorialCheckcircle.svg │ │ ├── walletTutorialCheckcircleDark.svg │ │ ├── warningExclamationOrange.svg │ │ ├── warrior.png │ │ ├── watchOnlyNav.svg │ │ ├── what-is-staking.svg │ │ ├── x-grey.svg │ │ ├── xGreyDark.svg │ │ └── zh-flag.svg │ ├── main.css │ └── themes │ │ ├── darkTheme.js │ │ ├── icons.js │ │ ├── index.js │ │ ├── lightTheme.js │ │ └── sharedTheme.js ├── theme.js ├── trezor-iframe.development.html ├── wallet-preload-shim.js ├── wallet-preload.js ├── wallet │ ├── app.js │ ├── client.js │ ├── config.js │ ├── confirmationDialog │ │ ├── allowVspHost.js │ │ ├── dialog.js │ │ ├── index.js │ │ ├── seed.js │ │ ├── sendLNPayment.js │ │ └── signTx.js │ ├── control.js │ ├── crypto.js │ ├── daemon.js │ ├── dex │ │ └── index.js │ ├── fs.js │ ├── index.js │ ├── ln │ │ ├── index.js │ │ └── watchtower.js │ ├── loader.js │ ├── message.js │ ├── notifications.js │ ├── politeia.js │ ├── seed.js │ ├── service.js │ ├── trezord │ │ └── index.js │ ├── version.js │ └── vsp.js └── yarn.lock ├── appveyor.yml ├── babel.config.js ├── certs ├── cspp.decred.org.pem └── mix.decred.org.pem ├── decrediton.desktop ├── go.mod ├── go.sum ├── modules ├── dcrwin32ipc │ ├── binding.gyp │ ├── module.cc │ ├── moduleTest.js │ ├── moduleTestWallet.js │ ├── package.json │ ├── pipe_wrapper.cc │ └── pipe_wrapper.h └── dex │ ├── .gitignore │ ├── cnode │ └── cnode.cc │ ├── libdexc │ ├── adapter.go │ ├── libdexc.go │ └── log.go │ ├── package.json │ └── sbffi-test.js ├── package.json ├── package_linux.sh ├── package_macos.sh ├── package_win.sh ├── postcss.config.js ├── scripts ├── aliasDefaultMessage.js ├── checkDuplicateTranslationIds.js ├── docsTranslationStatus.js ├── generateDepGraphs.js └── prepareUntranslated.js ├── server.mjs ├── somefile.log ├── test ├── README.md ├── data │ ├── FullProposalMarkdown.js │ ├── HexTransactions.js │ ├── decodedTransactions.js │ ├── rawTransactions.js │ └── script.js ├── mocks │ ├── dexMock.js │ ├── electronMock.js │ ├── electronStore.js │ ├── fileMock.js │ ├── fsMock.js │ ├── grpcMock.js │ ├── styleMock.js │ ├── trezordMock.js │ ├── walletMock.js │ └── walletPreloadShimMock.js ├── setup.js ├── test-utils.js └── unit │ ├── actions │ ├── AccountMixerActions.spec.js │ ├── ClientActions.spec.js │ ├── ControlActions.spec.js │ ├── DaemonActions.spec.js │ ├── DexActions.spec.js │ ├── SettingsActions.spec.js │ ├── SidebarActions.spec.js │ ├── TransactionActions.spec.js │ ├── VSPActions.spec.js │ ├── accountMocks.js │ └── vspMocks.js │ ├── components │ ├── Balance.spec.js │ ├── SideBar │ │ ├── LastBlockTime.spec.js │ │ └── Sidebar.spec.js │ ├── Snackbar │ │ └── Snackbar.spec.js │ ├── buttons │ │ ├── Buttons.spec.js │ │ ├── CopyToClipboardButton.spec.js │ │ ├── SendTransactionButton.spec.js │ │ └── TextToggle.spec.js │ ├── indicators │ │ ├── AnimatedLinearProgressFull.spec.js │ │ ├── Indicators.spec.js │ │ └── LoadingMoreTickets.spec.js │ ├── inputs │ │ ├── AccountsSelect.spec.js │ │ ├── DcrInput.spec.js │ │ └── Inputs.spec.js │ ├── layout │ │ └── TabbedPage.spec.js │ ├── shared │ │ ├── CreatePassPhrase.spec.js │ │ ├── DetailsTable.spec.js │ │ ├── TruncatedText.spec.js │ │ └── VerticalAccordion.spec.js │ └── views │ │ ├── AccountsPage │ │ └── AccountsPage.spec.js │ │ ├── AgendaDetailsPage │ │ └── AgendaDetailsPage.spec.js │ │ ├── DexPage │ │ └── DexPage.spec.js │ │ ├── GetStaredPage │ │ ├── AdvancedStartup.spec.js │ │ ├── CreateWallet.spec.js │ │ ├── GetStartedPage.spec.js │ │ ├── LanguageSelectPage.spec.js │ │ ├── Logs.spec.js │ │ ├── PreCreateWallet.spec.js │ │ ├── PrivacyPage.spec.js │ │ ├── SetMixedAcctPage.spec.js │ │ ├── SetupWallet │ │ │ ├── ProcessManagedTickets.spec.js │ │ │ ├── ProcessUnmanagedTickets.spec.js │ │ │ └── ResendVotesToRecentlyUpdatedVSPs.spec.js │ │ ├── SpvChoicePage.spec.js │ │ ├── TutorialPage.spec.js │ │ └── WalletSelection.spec.js │ │ ├── GovernancePage │ │ ├── Blockchain │ │ │ └── Blockchain.spec.js │ │ ├── Proposals │ │ │ └── Details │ │ │ │ ├── ProposalBody.spec.js │ │ │ │ └── __snapshots__ │ │ │ │ └── ProposalBody.spec.js.snap │ │ └── TreasurySpending │ │ │ └── TreasurySpending.spec.js │ │ ├── HomePage │ │ ├── HomePage.spec.js │ │ └── mocks.js │ │ ├── LNPage │ │ ├── AdvancedTab.spec.js │ │ ├── ChannelDetailsTab.spec.js │ │ ├── ChannelsTab.spec.js │ │ ├── ConnectPage.spec.js │ │ ├── OverviewTab.spec.js │ │ ├── ReceiveTab.spec.js │ │ ├── SendTab.spec.js │ │ └── mocks.js │ │ ├── PrivacyPage │ │ ├── PrivacyTab.spec.js │ │ └── SecurityTab.spec.js │ │ ├── SettingsPage │ │ └── SettingsPage.spec.js │ │ ├── TicketsPage │ │ ├── MyTicketsTab │ │ │ └── MyTicketsTab.spec.js │ │ ├── MyVSPTickets │ │ │ └── MyVSPTicketsTab.spec.js │ │ └── PurchaseTab │ │ │ ├── PurchasePage.spec.js │ │ │ ├── StakeInfo.spec.js │ │ │ ├── TicketsPage.spec.js │ │ │ └── mocks.js │ │ ├── TransactionPage │ │ ├── TransactionPage.spec.js │ │ ├── mocks.js │ │ ├── mocks_decodedTransactions.js │ │ ├── mocks_spenderTransactions.js │ │ ├── mocks_stakeTransactions.js │ │ └── mocks_tickets.js │ │ ├── TransactionsPage │ │ ├── ExportTab │ │ │ └── ExportTab.spec.js │ │ ├── HistoryTab │ │ │ └── HistoryTab.spec.js │ │ ├── ReceiveTab │ │ │ └── ReceiveTab.spec.js │ │ └── SendTab │ │ │ └── SendTab.spec.js │ │ └── TrezorPage │ │ └── TrezorPage.spec.js │ ├── helpers │ ├── addresses.spec.js │ ├── date.spec.js │ ├── encodeWitness.spec.js │ ├── ledger.spec.js │ ├── script.spec.js │ ├── seed.spec.js │ ├── tickets.spec.js │ └── transactions.spec.js │ └── wallet │ └── service.spec.js ├── webpack ├── electron.dev.js ├── electron.prod.js ├── preload.dev.js ├── preload.prod.js ├── trezor.js ├── ui.base.js ├── ui.dev.js └── ui.prod.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/.tx/config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/actions/AccountMixerActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/AccountMixerActions.js -------------------------------------------------------------------------------- /app/actions/ClientActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/ClientActions.js -------------------------------------------------------------------------------- /app/actions/ControlActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/ControlActions.js -------------------------------------------------------------------------------- /app/actions/DaemonActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/DaemonActions.js -------------------------------------------------------------------------------- /app/actions/DexActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/DexActions.js -------------------------------------------------------------------------------- /app/actions/GovernanceActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/GovernanceActions.js -------------------------------------------------------------------------------- /app/actions/LNActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/LNActions.js -------------------------------------------------------------------------------- /app/actions/LedgerActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/LedgerActions.js -------------------------------------------------------------------------------- /app/actions/NotificationActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/NotificationActions.js -------------------------------------------------------------------------------- /app/actions/SettingsActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/SettingsActions.js -------------------------------------------------------------------------------- /app/actions/SidebarActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/SidebarActions.js -------------------------------------------------------------------------------- /app/actions/SnackbarActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/SnackbarActions.js -------------------------------------------------------------------------------- /app/actions/StatisticsActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/StatisticsActions.js -------------------------------------------------------------------------------- /app/actions/TransactionActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/TransactionActions.js -------------------------------------------------------------------------------- /app/actions/TrezorActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/TrezorActions.js -------------------------------------------------------------------------------- /app/actions/VSPActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/VSPActions.js -------------------------------------------------------------------------------- /app/actions/VersionActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/VersionActions.js -------------------------------------------------------------------------------- /app/actions/WalletLoaderActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/actions/WalletLoaderActions.js -------------------------------------------------------------------------------- /app/app.development.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/app.development.html -------------------------------------------------------------------------------- /app/assets/videos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/assets/videos/index.js -------------------------------------------------------------------------------- /app/assets/videos/onboard01.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/assets/videos/onboard01.mp4 -------------------------------------------------------------------------------- /app/assets/videos/onboard02.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/assets/videos/onboard02.mp4 -------------------------------------------------------------------------------- /app/assets/videos/onboard03.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/assets/videos/onboard03.mp4 -------------------------------------------------------------------------------- /app/assets/videos/onboard04.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/assets/videos/onboard04.mp4 -------------------------------------------------------------------------------- /app/components/ErrorScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/ErrorScreen/index.js -------------------------------------------------------------------------------- /app/components/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/Header/Header.jsx -------------------------------------------------------------------------------- /app/components/Header/Standard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/Header/Standard/index.js -------------------------------------------------------------------------------- /app/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/Header/index.js -------------------------------------------------------------------------------- /app/components/SideBar/Logo/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/SideBar/Logo/Logo.jsx -------------------------------------------------------------------------------- /app/components/SideBar/SideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/SideBar/SideBar.jsx -------------------------------------------------------------------------------- /app/components/SideBar/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/SideBar/hooks.js -------------------------------------------------------------------------------- /app/components/Snackbar/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/Snackbar/hooks.js -------------------------------------------------------------------------------- /app/components/Snackbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/Snackbar/index.js -------------------------------------------------------------------------------- /app/components/buttons/Button/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/buttons/Button/Button.jsx -------------------------------------------------------------------------------- /app/components/buttons/CloseButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CloseButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/CopyToClipboardButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CopyToClipboardButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/DangerButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DangerButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/DocButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/buttons/DocButton.jsx -------------------------------------------------------------------------------- /app/components/buttons/InvisibleButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./InvisibleButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/InvisiblePiUiButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./InvisiblePiUiButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/KeyBlueButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./KeyBlueButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/ListUTXOsButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ListUTXOsButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/MixerSettingsIconButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./MixerSettingsIconButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/ModalButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/buttons/ModalButton.jsx -------------------------------------------------------------------------------- /app/components/buttons/PiUiButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PiUiButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/SearchForNodesButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SearchForNodesButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/SendTransactionButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SendTransactionButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/SlateGrayButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SlateGrayButton"; 2 | -------------------------------------------------------------------------------- /app/components/buttons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/buttons/index.js -------------------------------------------------------------------------------- /app/components/charts/BalanceChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/charts/BalanceChart.jsx -------------------------------------------------------------------------------- /app/components/charts/ChartTooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/charts/ChartTooltip.jsx -------------------------------------------------------------------------------- /app/components/charts/Charts.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/charts/Charts.module.css -------------------------------------------------------------------------------- /app/components/charts/Styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/charts/Styles.js -------------------------------------------------------------------------------- /app/components/charts/TicketChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/charts/TicketChart.jsx -------------------------------------------------------------------------------- /app/components/charts/VoteTimeChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/charts/VoteTimeChart.jsx -------------------------------------------------------------------------------- /app/components/charts/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/charts/hooks.js -------------------------------------------------------------------------------- /app/components/charts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/charts/index.js -------------------------------------------------------------------------------- /app/components/charts/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/charts/messages.js -------------------------------------------------------------------------------- /app/components/indicators/AnimatedLinearProgressFull/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AnimatedLinearProgressFull"; 2 | -------------------------------------------------------------------------------- /app/components/indicators/LoaderBarBottom/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LoaderBarBottom"; 2 | -------------------------------------------------------------------------------- /app/components/indicators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/indicators/index.js -------------------------------------------------------------------------------- /app/components/inputs/AccountsSelect/LinkToAccounts/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LinkToAccounts"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/AccountsSelect/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AccountsSelect"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/AddressInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/inputs/AddressInput.jsx -------------------------------------------------------------------------------- /app/components/inputs/DcrInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DcrInput"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/DetailedAccountsSelect/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DetailedAccountsSelect"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/FloatInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/inputs/FloatInput.jsx -------------------------------------------------------------------------------- /app/components/inputs/InlineField/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./InlineField"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/Input/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/inputs/Input/Input.jsx -------------------------------------------------------------------------------- /app/components/inputs/Input/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Input"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/IntegerInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/inputs/IntegerInput.jsx -------------------------------------------------------------------------------- /app/components/inputs/LanguageSelectInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LanguageSelectInput"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/NumTicketsInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NumTicketsInput"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/NumericInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NumericInput"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/PassphraseModalField/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PassphraseModalField"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/PasswordInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PasswordInput"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/PathBrowseInput/PathBrowseInput.module.css: -------------------------------------------------------------------------------- 1 | .textInput { 2 | padding-right: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /app/components/inputs/PathBrowseInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PathBrowseInput"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/PathInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PathInput"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/SeedHexEntry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/inputs/SeedHexEntry.jsx -------------------------------------------------------------------------------- /app/components/inputs/Select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/inputs/Select.jsx -------------------------------------------------------------------------------- /app/components/inputs/SettingsInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/inputs/SettingsInput.jsx -------------------------------------------------------------------------------- /app/components/inputs/TextInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/inputs/TextInput.jsx -------------------------------------------------------------------------------- /app/components/inputs/VSPSelect/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/inputs/VSPSelect/hooks.js -------------------------------------------------------------------------------- /app/components/inputs/VSPSelect/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./VSPSelect"; 2 | -------------------------------------------------------------------------------- /app/components/inputs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/inputs/index.js -------------------------------------------------------------------------------- /app/components/layout/BlurableContainer/BlurableContainer.module.css: -------------------------------------------------------------------------------- 1 | .blur { 2 | filter: blur(5px); 3 | } 4 | -------------------------------------------------------------------------------- /app/components/layout/BlurableContainer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./BlurableContainer"; 2 | -------------------------------------------------------------------------------- /app/components/layout/DescriptionHeader/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DescriptionHeader"; 2 | -------------------------------------------------------------------------------- /app/components/layout/PageBody/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/layout/PageBody/hooks.js -------------------------------------------------------------------------------- /app/components/layout/PageBody/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PageBody"; 2 | -------------------------------------------------------------------------------- /app/components/layout/StandaloneHeader/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./StandaloneHeader"; 2 | -------------------------------------------------------------------------------- /app/components/layout/StandalonePage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./StandalonePage"; 2 | -------------------------------------------------------------------------------- /app/components/layout/StandalonePageBody/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./StandalonePageBody"; 2 | -------------------------------------------------------------------------------- /app/components/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/layout/index.js -------------------------------------------------------------------------------- /app/components/modals/AboutModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AboutModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/AddAccountModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AddAccountModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/AutoBuyerSettingsModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AutoBuyerSettingsModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/AutoWalletLaunchingModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AutoWalletLaunchingModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/CantCloseModals/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CantCloseModals"; 2 | -------------------------------------------------------------------------------- /app/components/modals/ChangePassphraseModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ChangePassphraseModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/ConfirmModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ConfirmModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/ConfirmationDialogModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ConfirmationDialogModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/DiscoverUsageModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DiscoverUsageModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/DocumentationInfoModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DocumentationInfoModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/InfoConfirmModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./InfoConfirmModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/InfoModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./InfoModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/LNChannelModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LNChannelModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/LNInvoiceModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LNInvoiceModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/LNPaymentModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LNPaymentModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/ListUTXOsModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ListUTXOsModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/MixerSettingsModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./MixerSettingsModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/Modal/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/modals/Modal/Modal.jsx -------------------------------------------------------------------------------- /app/components/modals/Modal/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/modals/Modal/hooks.js -------------------------------------------------------------------------------- /app/components/modals/Modal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Modal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/PassphraseModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PassphraseModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/QRModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./QRModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/SearchForNodesModal/NodeListElement/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NodeListElement"; 2 | -------------------------------------------------------------------------------- /app/components/modals/SearchForNodesModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SearchForNodesModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/SeedCopyConfirmModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SeedCopyConfirmModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/SendFromUnmixedAccountModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SendFromUnmixedAccountModal"; 2 | -------------------------------------------------------------------------------- /app/components/modals/SetNewPassphraseModal/SetNewPassModalContent/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SetNewPassModalContent"; 2 | -------------------------------------------------------------------------------- /app/components/modals/SyncVSPFailedTickets/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SyncVSPFailedTickets"; 2 | -------------------------------------------------------------------------------- /app/components/modals/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/modals/index.js -------------------------------------------------------------------------------- /app/components/shared/Balance/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/Balance/hooks.js -------------------------------------------------------------------------------- /app/components/shared/Balance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/Balance/index.js -------------------------------------------------------------------------------- /app/components/shared/BalanceDisplay/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./BalanceDisplay"; 2 | -------------------------------------------------------------------------------- /app/components/shared/ButtonsToolbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/ButtonsToolbar.jsx -------------------------------------------------------------------------------- /app/components/shared/Collapse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/Collapse.jsx -------------------------------------------------------------------------------- /app/components/shared/CopyableText/CopyableText.module.css: -------------------------------------------------------------------------------- 1 | .copyableText > span { 2 | padding: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /app/components/shared/CopyableText/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CopyableText"; 2 | -------------------------------------------------------------------------------- /app/components/shared/DetailsTable/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DetailsTable"; 2 | -------------------------------------------------------------------------------- /app/components/shared/Documentation/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Documentation"; 2 | -------------------------------------------------------------------------------- /app/components/shared/ExternalButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/ExternalButton.jsx -------------------------------------------------------------------------------- /app/components/shared/ExternalLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/ExternalLink.jsx -------------------------------------------------------------------------------- /app/components/shared/LoadingError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/LoadingError.jsx -------------------------------------------------------------------------------- /app/components/shared/Log/Log.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/Log/Log.jsx -------------------------------------------------------------------------------- /app/components/shared/Log/Log.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/Log/Log.module.css -------------------------------------------------------------------------------- /app/components/shared/PoliteiaLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/PoliteiaLink.jsx -------------------------------------------------------------------------------- /app/components/shared/ShowError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/ShowError.jsx -------------------------------------------------------------------------------- /app/components/shared/ShowWarning.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/ShowWarning.jsx -------------------------------------------------------------------------------- /app/components/shared/StaticSwitch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/StaticSwitch.jsx -------------------------------------------------------------------------------- /app/components/shared/TruncatedText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/TruncatedText.jsx -------------------------------------------------------------------------------- /app/components/shared/TxHistory/Row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/TxHistory/Row.jsx -------------------------------------------------------------------------------- /app/components/shared/TxHistory/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TxHistory"; 2 | -------------------------------------------------------------------------------- /app/components/shared/UnselectableText/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./UnselectableText"; 2 | -------------------------------------------------------------------------------- /app/components/shared/UnsignedTx/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./UnsignedTx"; 2 | -------------------------------------------------------------------------------- /app/components/shared/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/index.js -------------------------------------------------------------------------------- /app/components/shared/shared.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/shared/shared.module.css -------------------------------------------------------------------------------- /app/components/views/AccountsPage/Accounts/AccountRow/AccountDetails/DataLine/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DataLine"; 2 | -------------------------------------------------------------------------------- /app/components/views/AccountsPage/Accounts/AccountRow/AccountDetails/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AccountDetails"; 2 | -------------------------------------------------------------------------------- /app/components/views/AccountsPage/Accounts/AccountRow/Header/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Header"; 2 | -------------------------------------------------------------------------------- /app/components/views/AccountsPage/Accounts/AccountRow/RenameAccount/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./RenameAccount"; 2 | -------------------------------------------------------------------------------- /app/components/views/AccountsPage/Accounts/AccountRow/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AccountRow"; 2 | -------------------------------------------------------------------------------- /app/components/views/AccountsPage/Accounts/AccountsList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AccountsList"; 2 | -------------------------------------------------------------------------------- /app/components/views/AccountsPage/Accounts/SubtitleInfoIcon/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SubtitleInfoIcon"; 2 | -------------------------------------------------------------------------------- /app/components/views/AccountsPage/Accounts/SubtitleWalletName/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SubtitleWalletName"; 2 | -------------------------------------------------------------------------------- /app/components/views/AccountsPage/Accounts/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Accounts"; 2 | -------------------------------------------------------------------------------- /app/components/views/AccountsPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AccountsPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/AgendaDetailsPage/helpers/AgendaCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AgendaCard"; 2 | -------------------------------------------------------------------------------- /app/components/views/AgendaDetailsPage/helpers/Header/Header.module.css: -------------------------------------------------------------------------------- 1 | .descriptionHeader { 2 | margin-left: 0; 3 | } 4 | -------------------------------------------------------------------------------- /app/components/views/AgendaDetailsPage/helpers/Header/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Header"; 2 | -------------------------------------------------------------------------------- /app/components/views/AgendaDetailsPage/helpers/VoteSection/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./VoteSection"; 2 | -------------------------------------------------------------------------------- /app/components/views/AgendaDetailsPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AgendaDetailsPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/DexPage/EnablePage/EnablePage.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | width: 60rem; 3 | } 4 | -------------------------------------------------------------------------------- /app/components/views/DexPage/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/views/DexPage/hooks.js -------------------------------------------------------------------------------- /app/components/views/DexPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DexPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/AdvancedStartup/AppDataForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AppDataForm"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/AdvancedStartup/Form/index.js: -------------------------------------------------------------------------------- 1 | export * from "./Form"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/ConfirmSeed/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ConfirmSeed"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/CopySeed/Form/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Form"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/CopySeed/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CopySeed"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/CreateWallet/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CreateWallet"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/ExistingSeed/Form/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Form"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/ExistingSeed/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ExistingSeed"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/helpers/ButtonsBar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ButtonsBar"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/helpers/Container/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Container"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/helpers/Section/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Section"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/helpers/SeedArea/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SeedArea"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/helpers/SeedError/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SeedError"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/helpers/SeedWord/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SeedWord"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/helpers/TitleWrapper/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TitleWrapper"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/CreateWalletPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CreateWalletPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/GetStartedMachinePage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./GetStartedMachinePage"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/LanguageSelectPage/Page/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Page"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/LanguageSelectPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LanguageSelectPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/LoadingPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LoadingPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/OnboardingTutorialPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./OnboardingTutorialPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/PreCreateWallet/CreateWalletForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CreateWalletForm"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/PrivacyPage/PrivacyOption/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PrivacyOption"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/PrivacyPage/PrivacyOptions/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PrivacyOptions"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/PrivacyPage/TopLevelOptions/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TopLevelOptions"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/PrivacyPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PrivacyPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/ReleaseNotes/Form/index.jsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Form"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/SetupWallet/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SetupWallet"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/SpvChoicePage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SpvChoicePage"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/TutorialPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TutorialPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/WalletSelection/Form/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Form"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/BackButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./BackButton"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/BackButtonArea/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./BackButtonArea"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/ButtonsBar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ButtonsBar"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/Content/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Content"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/FormContainer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./FormContainer"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/Input/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Input"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/Label/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Label"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/LoaderBarContainer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LoaderBarContainer"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/Row/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Row"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/SubTitle/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SubTitle"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/helpers/Title/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Title"; 2 | -------------------------------------------------------------------------------- /app/components/views/GetStartedPage/messages/index.js: -------------------------------------------------------------------------------- 1 | export * from "./messages"; 2 | -------------------------------------------------------------------------------- /app/components/views/GovernancePage/Blockchain/AgendaOverview/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AgendaOverview"; 2 | -------------------------------------------------------------------------------- /app/components/views/GovernancePage/Blockchain/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Blockchain"; 2 | -------------------------------------------------------------------------------- /app/components/views/GovernancePage/PageHeader/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PageHeader"; 2 | -------------------------------------------------------------------------------- /app/components/views/GovernancePage/Proposals/ProposalsList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProposalsList"; 2 | -------------------------------------------------------------------------------- /app/components/views/GovernancePage/Proposals/ProposalsListItem/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProposalsListItem"; 2 | -------------------------------------------------------------------------------- /app/components/views/GovernancePage/Proposals/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProposalsTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/GovernancePage/TabHeader/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TabHeader"; 2 | -------------------------------------------------------------------------------- /app/components/views/GovernancePage/TreasurySpendingTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TreasurySpendingTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/HomePage/GovernanceNotification/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./GovernanceNotification"; 2 | -------------------------------------------------------------------------------- /app/components/views/HomePage/RecentTickets/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./RecentTickets"; 2 | -------------------------------------------------------------------------------- /app/components/views/HomePage/RecentTransactions/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./RecentTransactions"; 2 | -------------------------------------------------------------------------------- /app/components/views/HomePage/Tabs/BalanceTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./BalanceTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/HomePage/Tabs/TicketsTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TicketsTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/HomePage/Tabs/TransactionsTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TransactionsTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/HomePage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./HomePage"; 2 | -------------------------------------------------------------------------------- /app/components/views/InvalidRPCVersion/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./InvalidRPCVersion"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/AdvancedTab/Network/NodeInfo/Channel/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Channel"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/AdvancedTab/Network/NodeInfo/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NodeInfo"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/AdvancedTab/Network/NodeInfoError/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NodeInfoError"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/AdvancedTab/Network/QueryNode/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./QueryNode"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/AdvancedTab/Network/QueryRoutes/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./QueryRoutes"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/AdvancedTab/Network/RoutesInfo/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./RoutesInfo"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/AdvancedTab/Network/Tabs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Tabs"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/AdvancedTab/Network/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Network"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/AdvancedTab/Watchtowers/AddWatchtower/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AddWatchtower"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/AdvancedTab/Watchtowers/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Watchtowers"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/BalancesHeader/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./BalancesHeader"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/ChannelDetailsPage/helpers/ChannelCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ChannelCard"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/ChannelDetailsPage/helpers/FlatBalance/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./FlatBalance"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/ChannelDetailsPage/helpers/Header/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Header"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/ChannelDetailsPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ChannelDetailsPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/ConnectPage/CreationWarning/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CreationWarning"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/OverviewTab/helpers/AccountOverview/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AccountOverview"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/OverviewTab/helpers/NetworkStats/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NetworkStats"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/OverviewTab/helpers/RecentChannelRow/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./RecentChannelRow"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/ReceiveTab/InvoiceRow/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./InvoiceRow"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/SendTab/DecodedPayRequest/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DecodedPayRequest"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/SendTab/PaymentRow/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PaymentRow"; 2 | -------------------------------------------------------------------------------- /app/components/views/LNPage/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/components/views/LNPage/hooks.js -------------------------------------------------------------------------------- /app/components/views/LNPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LNPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/LedgerPage/NoDevicePage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NoDevicePage"; 2 | -------------------------------------------------------------------------------- /app/components/views/PrivacyPage/PrivacyTab/ConfigMixer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ConfigMixer"; 2 | -------------------------------------------------------------------------------- /app/components/views/PrivacyPage/PrivacyTab/SendOutputRow/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SendOutputRow"; 2 | -------------------------------------------------------------------------------- /app/components/views/PrivacyPage/PrivacyTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PrivacyTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/PrivacyPage/SecurityTab/SignMessage/Signature/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Signature"; 2 | -------------------------------------------------------------------------------- /app/components/views/PrivacyPage/SecurityTab/SignMessage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SignMessage"; 2 | -------------------------------------------------------------------------------- /app/components/views/PrivacyPage/SecurityTab/ValidateAddress/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ValidateAddress"; 2 | -------------------------------------------------------------------------------- /app/components/views/PrivacyPage/SecurityTab/VerifyMessage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./VerifyMessage"; 2 | -------------------------------------------------------------------------------- /app/components/views/PrivacyPage/SecurityTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SecurityTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/PrivacyPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PrivacyPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/ProposalDetailsPage/helpers/Header/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Header"; 2 | -------------------------------------------------------------------------------- /app/components/views/ProposalDetailsPage/helpers/Join/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Join"; 2 | -------------------------------------------------------------------------------- /app/components/views/ProposalDetailsPage/helpers/NoTicketsMsg/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NoTicketsMsg"; 2 | -------------------------------------------------------------------------------- /app/components/views/ProposalDetailsPage/helpers/NotVotingMsg/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NotVotingMsg"; 2 | -------------------------------------------------------------------------------- /app/components/views/ProposalDetailsPage/helpers/ProposalBody/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProposalBody"; 2 | -------------------------------------------------------------------------------- /app/components/views/ProposalDetailsPage/helpers/ProposalCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProposalCard"; 2 | -------------------------------------------------------------------------------- /app/components/views/ProposalDetailsPage/helpers/ProposalVoted/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProposalVoted"; 2 | -------------------------------------------------------------------------------- /app/components/views/ProposalDetailsPage/helpers/VoteButton/VoteButton.module.css: -------------------------------------------------------------------------------- 1 | .voteButton { 2 | padding: 5px; 3 | } 4 | -------------------------------------------------------------------------------- /app/components/views/ProposalDetailsPage/helpers/VoteButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./VoteButton"; 2 | -------------------------------------------------------------------------------- /app/components/views/ProposalDetailsPage/helpers/VoteSection/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./VoteSection"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/ConnectivitySettingsTab/ProxySettings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProxySettings"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/ConnectivitySettingsTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ConnectivitySettingsTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/GeneralSettingsTab/LauncherSettings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LauncherSettings"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/GeneralSettingsTab/MiscSettings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./MiscSettings"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/GeneralSettingsTab/TimezoneSettings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TimezoneSettings"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/GeneralSettingsTab/UISettings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./UISettings"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/GeneralSettingsTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./GeneralSettingsTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/LinksTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LinksTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/LogsTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LogsTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/TutorialsTab/helpers/PagedTutorial/TabLabel/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TabLabel"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/TutorialsTab/helpers/PagedTutorial/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PagedTutorial"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/TutorialsTab/helpers/TutorialCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TutorialCard"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/TutorialsTab/helpers/TutorialPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TutorialPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/TutorialsTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TutorialsTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/helpers/Box/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Box"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/helpers/Label/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Label"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/helpers/Wrapper/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Wrapper"; 2 | -------------------------------------------------------------------------------- /app/components/views/SettingsPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SettingsPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/TicketsPage/MyTicketsTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./MyTicketsTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/TicketsPage/PurchaseTab/PurchaseTicketsForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PurchaseTicketsForm"; 2 | -------------------------------------------------------------------------------- /app/components/views/TicketsPage/PurchaseTab/StakeInfo/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./StakeInfo"; 2 | -------------------------------------------------------------------------------- /app/components/views/TicketsPage/PurchaseTab/TicketAutoBuyer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TicketAutoBuyer"; 2 | -------------------------------------------------------------------------------- /app/components/views/TicketsPage/PurchaseTab/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PurchaseTab"; 2 | -------------------------------------------------------------------------------- /app/components/views/TicketsPage/StakingTabWarning/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./StakingTabWarning"; 2 | -------------------------------------------------------------------------------- /app/components/views/TicketsPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TicketsPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/TransactionPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TransactionPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/TransactionsPage/HistoryTab/HistoryPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./HistoryPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/TransactionsPage/ReceiveTab/ReceivePage/QRCodeModal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./QRCodeModal"; 2 | -------------------------------------------------------------------------------- /app/components/views/TransactionsPage/ReceiveTab/ReceivePage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ReceivePage"; 2 | -------------------------------------------------------------------------------- /app/components/views/TransactionsPage/SendTab/SendOutputRow/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SendOutputRow"; 2 | -------------------------------------------------------------------------------- /app/components/views/TransactionsPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TransactionsPage"; 2 | -------------------------------------------------------------------------------- /app/components/views/TrezorPage/NoDevicePage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NoDevicePage"; 2 | -------------------------------------------------------------------------------- /app/components/views/TrezorPage/TrezorPageAccordion/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TrezorPageAccordion"; 2 | -------------------------------------------------------------------------------- /app/components/views/TrezorPage/TrezorPageSection/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./TrezorPageSection"; 2 | -------------------------------------------------------------------------------- /app/components/views/TrezorPage/TrezorPageSections/ChangeLabel/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ChangeLabel"; 2 | -------------------------------------------------------------------------------- /app/components/views/TrezorPage/TrezorPageSections/FirmwareUpdate/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./FirmwareUpdate"; 2 | -------------------------------------------------------------------------------- /app/components/views/TrezorPage/TrezorPageSections/SecuritySection/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SecuritySection"; 2 | -------------------------------------------------------------------------------- /app/components/views/WalletError/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./WalletError"; 2 | -------------------------------------------------------------------------------- /app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/config.js -------------------------------------------------------------------------------- /app/constants/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/constants/config.js -------------------------------------------------------------------------------- /app/constants/decred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/constants/decred.js -------------------------------------------------------------------------------- /app/constants/decrediton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/constants/decrediton.js -------------------------------------------------------------------------------- /app/constants/dex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/constants/dex.js -------------------------------------------------------------------------------- /app/constants/governance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/constants/governance.js -------------------------------------------------------------------------------- /app/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/constants/index.js -------------------------------------------------------------------------------- /app/constants/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/constants/messages.js -------------------------------------------------------------------------------- /app/constants/opcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/constants/opcode.js -------------------------------------------------------------------------------- /app/constants/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/constants/seed.js -------------------------------------------------------------------------------- /app/constants/trezor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/constants/trezor.js -------------------------------------------------------------------------------- /app/containers/App/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/containers/App/App.jsx -------------------------------------------------------------------------------- /app/containers/App/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/containers/App/App.module.css -------------------------------------------------------------------------------- /app/containers/App/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./App"; 2 | -------------------------------------------------------------------------------- /app/containers/GetStarted/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./GetStarted"; 2 | -------------------------------------------------------------------------------- /app/containers/Wallet/Wallet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/containers/Wallet/Wallet.jsx -------------------------------------------------------------------------------- /app/containers/Wallet/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Wallet"; 2 | -------------------------------------------------------------------------------- /app/containers/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/containers/hooks/index.js -------------------------------------------------------------------------------- /app/containers/hooks/useApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/containers/hooks/useApp.js -------------------------------------------------------------------------------- /app/containers/hooks/useWallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/containers/hooks/useWallet.js -------------------------------------------------------------------------------- /app/containers/index.js: -------------------------------------------------------------------------------- 1 | export { default as App } from "./App"; 2 | -------------------------------------------------------------------------------- /app/dcrdex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/dcrdex.png -------------------------------------------------------------------------------- /app/fp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/fp.js -------------------------------------------------------------------------------- /app/helpers/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/addresses.js -------------------------------------------------------------------------------- /app/helpers/arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/arrays.js -------------------------------------------------------------------------------- /app/helpers/byteActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/byteActions.js -------------------------------------------------------------------------------- /app/helpers/dateFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/dateFormat.js -------------------------------------------------------------------------------- /app/helpers/displayWalletGradients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/displayWalletGradients.js -------------------------------------------------------------------------------- /app/helpers/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/dom.js -------------------------------------------------------------------------------- /app/helpers/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/electron.js -------------------------------------------------------------------------------- /app/helpers/electronRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/electronRenderer.js -------------------------------------------------------------------------------- /app/helpers/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/fetch.js -------------------------------------------------------------------------------- /app/helpers/fetchModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/fetchModule.js -------------------------------------------------------------------------------- /app/helpers/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/files.js -------------------------------------------------------------------------------- /app/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/index.js -------------------------------------------------------------------------------- /app/helpers/ledger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/ledger.js -------------------------------------------------------------------------------- /app/helpers/msgTx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/msgTx.js -------------------------------------------------------------------------------- /app/helpers/politeia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/politeia.js -------------------------------------------------------------------------------- /app/helpers/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/scripts.js -------------------------------------------------------------------------------- /app/helpers/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/seed.js -------------------------------------------------------------------------------- /app/helpers/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/strings.js -------------------------------------------------------------------------------- /app/helpers/tickets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/tickets.js -------------------------------------------------------------------------------- /app/helpers/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/transactions.js -------------------------------------------------------------------------------- /app/helpers/trezor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/trezor.js -------------------------------------------------------------------------------- /app/helpers/walletCryptoModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/walletCryptoModule.js -------------------------------------------------------------------------------- /app/helpers/wordlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/helpers/wordlist.js -------------------------------------------------------------------------------- /app/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/index.js -------------------------------------------------------------------------------- /app/hooks/useAccounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useAccounts.js -------------------------------------------------------------------------------- /app/hooks/useClickOutside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useClickOutside.js -------------------------------------------------------------------------------- /app/hooks/useDaemonStartup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useDaemonStartup.js -------------------------------------------------------------------------------- /app/hooks/useLedger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useLedger.js -------------------------------------------------------------------------------- /app/hooks/useLocale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useLocale.js -------------------------------------------------------------------------------- /app/hooks/useMountEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useMountEffect.js -------------------------------------------------------------------------------- /app/hooks/useNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useNetwork.js -------------------------------------------------------------------------------- /app/hooks/usePrevious.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/usePrevious.js -------------------------------------------------------------------------------- /app/hooks/useRescan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useRescan.js -------------------------------------------------------------------------------- /app/hooks/useService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useService.js -------------------------------------------------------------------------------- /app/hooks/useSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useSettings.js -------------------------------------------------------------------------------- /app/hooks/useTheming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useTheming.js -------------------------------------------------------------------------------- /app/hooks/useTrezor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useTrezor.js -------------------------------------------------------------------------------- /app/hooks/useVSP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/hooks/useVSP.js -------------------------------------------------------------------------------- /app/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/README.md -------------------------------------------------------------------------------- /app/i18n/community_translators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/community_translators.md -------------------------------------------------------------------------------- /app/i18n/docs/ar/DexNotes/DexNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/ar/DexNotes/DexNotes.md -------------------------------------------------------------------------------- /app/i18n/docs/ar/InfoModals/Seed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/ar/InfoModals/Seed.md -------------------------------------------------------------------------------- /app/i18n/docs/ar/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/ar/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/ar/Trezor/InitDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/ar/Trezor/InitDevice.md -------------------------------------------------------------------------------- /app/i18n/docs/ar/Trezor/WipeDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/ar/Trezor/WipeDevice.md -------------------------------------------------------------------------------- /app/i18n/docs/ar/Tutorials/IdentityPage04.md: -------------------------------------------------------------------------------- 1 | ... 2 | -------------------------------------------------------------------------------- /app/i18n/docs/ar/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/ar/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/ar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/ar/index.js -------------------------------------------------------------------------------- /app/i18n/docs/de/InfoModals/Seed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/de/InfoModals/Seed.md -------------------------------------------------------------------------------- /app/i18n/docs/de/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/de/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/de/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/de/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/de/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/de/index.js -------------------------------------------------------------------------------- /app/i18n/docs/el/DexNotes/DexNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/el/DexNotes/DexNotes.md -------------------------------------------------------------------------------- /app/i18n/docs/el/InfoModals/Seed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/el/InfoModals/Seed.md -------------------------------------------------------------------------------- /app/i18n/docs/el/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/el/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/el/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/el/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/el/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/el/index.js -------------------------------------------------------------------------------- /app/i18n/docs/en/DexNotes/DexNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/en/DexNotes/DexNotes.md -------------------------------------------------------------------------------- /app/i18n/docs/en/InfoModals/Seed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/en/InfoModals/Seed.md -------------------------------------------------------------------------------- /app/i18n/docs/en/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/en/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/en/Trezor/InitDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/en/Trezor/InitDevice.md -------------------------------------------------------------------------------- /app/i18n/docs/en/Trezor/WipeDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/en/Trezor/WipeDevice.md -------------------------------------------------------------------------------- /app/i18n/docs/en/Tutorials/IdentityPage04.md: -------------------------------------------------------------------------------- 1 | ... 2 | -------------------------------------------------------------------------------- /app/i18n/docs/en/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/en/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/en/index.js -------------------------------------------------------------------------------- /app/i18n/docs/es/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/es/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/es/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/es/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/es/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/es/index.js -------------------------------------------------------------------------------- /app/i18n/docs/fr/DexNotes/DexNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/fr/DexNotes/DexNotes.md -------------------------------------------------------------------------------- /app/i18n/docs/fr/InfoModals/Seed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/fr/InfoModals/Seed.md -------------------------------------------------------------------------------- /app/i18n/docs/fr/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/fr/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/fr/Trezor/InitDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/fr/Trezor/InitDevice.md -------------------------------------------------------------------------------- /app/i18n/docs/fr/Trezor/WipeDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/fr/Trezor/WipeDevice.md -------------------------------------------------------------------------------- /app/i18n/docs/fr/Tutorials/IdentityPage04.md: -------------------------------------------------------------------------------- 1 | ... 2 | -------------------------------------------------------------------------------- /app/i18n/docs/fr/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/fr/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/fr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/fr/index.js -------------------------------------------------------------------------------- /app/i18n/docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/index.js -------------------------------------------------------------------------------- /app/i18n/docs/it/InfoModals/Seed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/it/InfoModals/Seed.md -------------------------------------------------------------------------------- /app/i18n/docs/it/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/it/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/it/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/it/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/it/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/it/index.js -------------------------------------------------------------------------------- /app/i18n/docs/ja/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/ja/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/ja/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/ja/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/ja/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/ja/index.js -------------------------------------------------------------------------------- /app/i18n/docs/pl/InfoModals/Seed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pl/InfoModals/Seed.md -------------------------------------------------------------------------------- /app/i18n/docs/pl/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pl/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/pl/Trezor/InitDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pl/Trezor/InitDevice.md -------------------------------------------------------------------------------- /app/i18n/docs/pl/Trezor/WipeDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pl/Trezor/WipeDevice.md -------------------------------------------------------------------------------- /app/i18n/docs/pl/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pl/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/pl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pl/index.js -------------------------------------------------------------------------------- /app/i18n/docs/pt/DexNotes/DexNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pt/DexNotes/DexNotes.md -------------------------------------------------------------------------------- /app/i18n/docs/pt/InfoModals/Seed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pt/InfoModals/Seed.md -------------------------------------------------------------------------------- /app/i18n/docs/pt/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pt/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/pt/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pt/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/pt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/pt/index.js -------------------------------------------------------------------------------- /app/i18n/docs/zh-HK/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/zh-HK/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/zh-HK/LN/WalletCreationWarnings/WarningPage04.md: -------------------------------------------------------------------------------- 1 | 發送和接收交易的金額受已開啟通道的餘額限制,並且在 6 個區塊確認後才可使用。 2 | -------------------------------------------------------------------------------- /app/i18n/docs/zh-HK/TicketLifecycleTutorial/Page01.md: -------------------------------------------------------------------------------- 1 | PoS買票的過程相當簡單,但你知道之後會發生甚麼事情嗎?選票在生命周期裡會經歷多個階段: 2 | -------------------------------------------------------------------------------- /app/i18n/docs/zh-HK/TicketLifecycleTutorial/Page06.md: -------------------------------------------------------------------------------- 1 | 你現在對選票的生命周期應該有更深入的理解。立即用你的DCR參與權益証明並加入我們的社區吧! 2 | -------------------------------------------------------------------------------- /app/i18n/docs/zh-HK/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/zh-HK/index.js -------------------------------------------------------------------------------- /app/i18n/docs/zh/LN/BackupInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/zh/LN/BackupInfo.md -------------------------------------------------------------------------------- /app/i18n/docs/zh/LN/WalletCreationWarnings/WarningPage04.md: -------------------------------------------------------------------------------- 1 | 你只能发送和接收已开启通道中的余额,并且需等待 6 个确认(区块)才能使用。 2 | -------------------------------------------------------------------------------- /app/i18n/docs/zh/Warnings/SeedCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/zh/Warnings/SeedCopy.md -------------------------------------------------------------------------------- /app/i18n/docs/zh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/docs/zh/index.js -------------------------------------------------------------------------------- /app/i18n/extracted/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/extracted/static/index.js -------------------------------------------------------------------------------- /app/i18n/extracted/static/menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/extracted/static/menus.json -------------------------------------------------------------------------------- /app/i18n/lib/diff_match_patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/lib/diff_match_patch.js -------------------------------------------------------------------------------- /app/i18n/locales/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/locales/index.js -------------------------------------------------------------------------------- /app/i18n/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/ar.json -------------------------------------------------------------------------------- /app/i18n/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/de.json -------------------------------------------------------------------------------- /app/i18n/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/es.json -------------------------------------------------------------------------------- /app/i18n/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/fr.json -------------------------------------------------------------------------------- /app/i18n/translations/gr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/gr.json -------------------------------------------------------------------------------- /app/i18n/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/it.json -------------------------------------------------------------------------------- /app/i18n/translations/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/ja.json -------------------------------------------------------------------------------- /app/i18n/translations/original.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/original.json -------------------------------------------------------------------------------- /app/i18n/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/pl.json -------------------------------------------------------------------------------- /app/i18n/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/pt.json -------------------------------------------------------------------------------- /app/i18n/translations/whitelist_original.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /app/i18n/translations/zh-HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/zh-HK.json -------------------------------------------------------------------------------- /app/i18n/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translations/zh.json -------------------------------------------------------------------------------- /app/i18n/translator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/i18n/translator.html -------------------------------------------------------------------------------- /app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/icon.png -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/index.js -------------------------------------------------------------------------------- /app/main.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/main.development.js -------------------------------------------------------------------------------- /app/main_dev/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/main_dev/constants.js -------------------------------------------------------------------------------- /app/main_dev/customTranslation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/main_dev/customTranslation.js -------------------------------------------------------------------------------- /app/main_dev/externalRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/main_dev/externalRequests.js -------------------------------------------------------------------------------- /app/main_dev/ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/main_dev/ipc.js -------------------------------------------------------------------------------- /app/main_dev/launch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/main_dev/launch.js -------------------------------------------------------------------------------- /app/main_dev/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/main_dev/logging.js -------------------------------------------------------------------------------- /app/main_dev/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/main_dev/paths.js -------------------------------------------------------------------------------- /app/main_dev/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/main_dev/proxy.js -------------------------------------------------------------------------------- /app/main_dev/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/main_dev/templates.js -------------------------------------------------------------------------------- /app/middleware/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/api.proto -------------------------------------------------------------------------------- /app/middleware/dcrdataapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/dcrdataapi.js -------------------------------------------------------------------------------- /app/middleware/grpc/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/grpc/client.js -------------------------------------------------------------------------------- /app/middleware/grpc/clientTracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/grpc/clientTracking.js -------------------------------------------------------------------------------- /app/middleware/ln/autopilot.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/autopilot.proto -------------------------------------------------------------------------------- /app/middleware/ln/autopilot_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/autopilot_pb.js -------------------------------------------------------------------------------- /app/middleware/ln/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/client.js -------------------------------------------------------------------------------- /app/middleware/ln/invoices.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/invoices.proto -------------------------------------------------------------------------------- /app/middleware/ln/invoices_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/invoices_grpc_pb.js -------------------------------------------------------------------------------- /app/middleware/ln/invoices_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/invoices_pb.js -------------------------------------------------------------------------------- /app/middleware/ln/lightning.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/lightning.proto -------------------------------------------------------------------------------- /app/middleware/ln/lightning_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/lightning_pb.js -------------------------------------------------------------------------------- /app/middleware/ln/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/regen.sh -------------------------------------------------------------------------------- /app/middleware/ln/wtclient.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/wtclient.proto -------------------------------------------------------------------------------- /app/middleware/ln/wtclient_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/wtclient_grpc_pb.js -------------------------------------------------------------------------------- /app/middleware/ln/wtclient_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/ln/wtclient_pb.js -------------------------------------------------------------------------------- /app/middleware/politeiaapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/politeiaapi.js -------------------------------------------------------------------------------- /app/middleware/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/regen.sh -------------------------------------------------------------------------------- /app/middleware/vspapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/vspapi.js -------------------------------------------------------------------------------- /app/middleware/walletrpc/api_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/middleware/walletrpc/api_pb.js -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/package.json -------------------------------------------------------------------------------- /app/reducers/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/control.js -------------------------------------------------------------------------------- /app/reducers/daemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/daemon.js -------------------------------------------------------------------------------- /app/reducers/dex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/dex.js -------------------------------------------------------------------------------- /app/reducers/governance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/governance.js -------------------------------------------------------------------------------- /app/reducers/grpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/grpc.js -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /app/reducers/ledger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/ledger.js -------------------------------------------------------------------------------- /app/reducers/ln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/ln.js -------------------------------------------------------------------------------- /app/reducers/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/locales.js -------------------------------------------------------------------------------- /app/reducers/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/notifications.js -------------------------------------------------------------------------------- /app/reducers/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/settings.js -------------------------------------------------------------------------------- /app/reducers/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/sidebar.js -------------------------------------------------------------------------------- /app/reducers/snackbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/snackbar.js -------------------------------------------------------------------------------- /app/reducers/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/statistics.js -------------------------------------------------------------------------------- /app/reducers/trezor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/trezor.js -------------------------------------------------------------------------------- /app/reducers/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/version.js -------------------------------------------------------------------------------- /app/reducers/vsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/vsp.js -------------------------------------------------------------------------------- /app/reducers/walletLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/reducers/walletLoader.js -------------------------------------------------------------------------------- /app/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/selectors.js -------------------------------------------------------------------------------- /app/staticPages/secondInstance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/staticPages/secondInstance.html -------------------------------------------------------------------------------- /app/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/store/configureStore.js -------------------------------------------------------------------------------- /app/style/icons/3D_Loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/3D_Loading.gif -------------------------------------------------------------------------------- /app/style/icons/LNCapacityIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/LNCapacityIcon.svg -------------------------------------------------------------------------------- /app/style/icons/LNChannelsIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/LNChannelsIcon.svg -------------------------------------------------------------------------------- /app/style/icons/LNNodesEyeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/LNNodesEyeIcon.svg -------------------------------------------------------------------------------- /app/style/icons/LNNodesIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/LNNodesIcon.svg -------------------------------------------------------------------------------- /app/style/icons/LNNodesIconDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/LNNodesIconDark.svg -------------------------------------------------------------------------------- /app/style/icons/account-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/account-download.svg -------------------------------------------------------------------------------- /app/style/icons/account-eye-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/account-eye-hide.svg -------------------------------------------------------------------------------- /app/style/icons/account-eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/account-eye-open.svg -------------------------------------------------------------------------------- /app/style/icons/account-rename.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/account-rename.svg -------------------------------------------------------------------------------- /app/style/icons/accountDefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/accountDefault.svg -------------------------------------------------------------------------------- /app/style/icons/accountHideWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/accountHideWhite.svg -------------------------------------------------------------------------------- /app/style/icons/accountImported.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/accountImported.svg -------------------------------------------------------------------------------- /app/style/icons/accountShowWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/accountShowWhite.svg -------------------------------------------------------------------------------- /app/style/icons/accounts-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/accounts-active.png -------------------------------------------------------------------------------- /app/style/icons/accountsHeader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/accountsHeader.svg -------------------------------------------------------------------------------- /app/style/icons/activeLegend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/activeLegend.svg -------------------------------------------------------------------------------- /app/style/icons/ar-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ar-flag.svg -------------------------------------------------------------------------------- /app/style/icons/arrow-left-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/arrow-left-white.svg -------------------------------------------------------------------------------- /app/style/icons/arrow-right-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/arrow-right-gray.svg -------------------------------------------------------------------------------- /app/style/icons/arrow-right-smoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/arrow-right-smoke.svg -------------------------------------------------------------------------------- /app/style/icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/arrow.svg -------------------------------------------------------------------------------- /app/style/icons/arrowDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/arrowDark.svg -------------------------------------------------------------------------------- /app/style/icons/au-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/au-flag.svg -------------------------------------------------------------------------------- /app/style/icons/availLegend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/availLegend.svg -------------------------------------------------------------------------------- /app/style/icons/balanceSelector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/balanceSelector.svg -------------------------------------------------------------------------------- /app/style/icons/bell-notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/bell-notification.svg -------------------------------------------------------------------------------- /app/style/icons/blockReward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/blockReward.svg -------------------------------------------------------------------------------- /app/style/icons/blockRewardDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/blockRewardDark.svg -------------------------------------------------------------------------------- /app/style/icons/blockSynced.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/blockSynced.svg -------------------------------------------------------------------------------- /app/style/icons/blockSyncedDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/blockSyncedDark.svg -------------------------------------------------------------------------------- /app/style/icons/blockchain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/blockchain.svg -------------------------------------------------------------------------------- /app/style/icons/blockchainDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/blockchainDark.svg -------------------------------------------------------------------------------- /app/style/icons/blockchainDefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/blockchainDefault.svg -------------------------------------------------------------------------------- /app/style/icons/blockchainInitial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/blockchainInitial.svg -------------------------------------------------------------------------------- /app/style/icons/blueCheckmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/blueCheckmark.svg -------------------------------------------------------------------------------- /app/style/icons/buy-decred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/buy-decred.svg -------------------------------------------------------------------------------- /app/style/icons/chatBubbles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/chatBubbles.svg -------------------------------------------------------------------------------- /app/style/icons/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/checkbox.svg -------------------------------------------------------------------------------- /app/style/icons/checkmarkBlue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/checkmarkBlue.svg -------------------------------------------------------------------------------- /app/style/icons/checkmarkGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/checkmarkGrey.svg -------------------------------------------------------------------------------- /app/style/icons/closeWallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/closeWallet.svg -------------------------------------------------------------------------------- /app/style/icons/constitutionGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/constitutionGrey.svg -------------------------------------------------------------------------------- /app/style/icons/createnewwallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/createnewwallet.svg -------------------------------------------------------------------------------- /app/style/icons/dcrLogoShare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/dcrLogoShare.svg -------------------------------------------------------------------------------- /app/style/icons/de-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/de-flag.svg -------------------------------------------------------------------------------- /app/style/icons/decred-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/decred-logo.svg -------------------------------------------------------------------------------- /app/style/icons/decred-qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/decred-qrcode.png -------------------------------------------------------------------------------- /app/style/icons/decredLogoDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/decredLogoDark.svg -------------------------------------------------------------------------------- /app/style/icons/dex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/dex.svg -------------------------------------------------------------------------------- /app/style/icons/dexDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/dexDark.svg -------------------------------------------------------------------------------- /app/style/icons/disableSpv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/disableSpv.svg -------------------------------------------------------------------------------- /app/style/icons/docsGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/docsGrey.svg -------------------------------------------------------------------------------- /app/style/icons/docsGreyDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/docsGreyDark.svg -------------------------------------------------------------------------------- /app/style/icons/dummy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/dummy-icon.svg -------------------------------------------------------------------------------- /app/style/icons/enableSpv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/enableSpv.svg -------------------------------------------------------------------------------- /app/style/icons/eng-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/eng-flag.svg -------------------------------------------------------------------------------- /app/style/icons/es-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/es-flag.svg -------------------------------------------------------------------------------- /app/style/icons/expandDefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/expandDefault.svg -------------------------------------------------------------------------------- /app/style/icons/expandDefaultDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/expandDefaultDark.svg -------------------------------------------------------------------------------- /app/style/icons/expandHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/expandHover.svg -------------------------------------------------------------------------------- /app/style/icons/expandHoverDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/expandHoverDark.svg -------------------------------------------------------------------------------- /app/style/icons/externalDefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/externalDefault.svg -------------------------------------------------------------------------------- /app/style/icons/externalHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/externalHover.svg -------------------------------------------------------------------------------- /app/style/icons/externalHoverDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/externalHoverDark.svg -------------------------------------------------------------------------------- /app/style/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/eye.svg -------------------------------------------------------------------------------- /app/style/icons/eyeDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/eyeDark.svg -------------------------------------------------------------------------------- /app/style/icons/eyeDisabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/eyeDisabled.svg -------------------------------------------------------------------------------- /app/style/icons/eyeDisabledDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/eyeDisabledDark.svg -------------------------------------------------------------------------------- /app/style/icons/forumGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/forumGrey.svg -------------------------------------------------------------------------------- /app/style/icons/forumGreyDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/forumGreyDark.svg -------------------------------------------------------------------------------- /app/style/icons/fr-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/fr-flag.svg -------------------------------------------------------------------------------- /app/style/icons/gb-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/gb-flag.svg -------------------------------------------------------------------------------- /app/style/icons/generate-address.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/generate-address.svg -------------------------------------------------------------------------------- /app/style/icons/githubGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/githubGrey.svg -------------------------------------------------------------------------------- /app/style/icons/githubGreyDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/githubGreyDark.svg -------------------------------------------------------------------------------- /app/style/icons/governance-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/governance-active.png -------------------------------------------------------------------------------- /app/style/icons/governanceHeader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/governanceHeader.svg -------------------------------------------------------------------------------- /app/style/icons/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/hamburger.svg -------------------------------------------------------------------------------- /app/style/icons/hamburgerDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/hamburgerDark.svg -------------------------------------------------------------------------------- /app/style/icons/harddrive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/harddrive.svg -------------------------------------------------------------------------------- /app/style/icons/harddriveDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/harddriveDark.svg -------------------------------------------------------------------------------- /app/style/icons/help-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/help-active.png -------------------------------------------------------------------------------- /app/style/icons/helpActiveDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/helpActiveDark.svg -------------------------------------------------------------------------------- /app/style/icons/helpGetstared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/helpGetstared.svg -------------------------------------------------------------------------------- /app/style/icons/helpGetstaredDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/helpGetstaredDark.svg -------------------------------------------------------------------------------- /app/style/icons/hk-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/hk-flag.svg -------------------------------------------------------------------------------- /app/style/icons/img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/img.svg -------------------------------------------------------------------------------- /app/style/icons/indicator-invalid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/indicator-invalid.svg -------------------------------------------------------------------------------- /app/style/icons/indicator-pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/indicator-pending.svg -------------------------------------------------------------------------------- /app/style/icons/info-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/info-warning.svg -------------------------------------------------------------------------------- /app/style/icons/information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/information.svg -------------------------------------------------------------------------------- /app/style/icons/informationDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/informationDark.svg -------------------------------------------------------------------------------- /app/style/icons/it-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/it-flag.svg -------------------------------------------------------------------------------- /app/style/icons/ja-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ja-flag.svg -------------------------------------------------------------------------------- /app/style/icons/launcher-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/launcher-logo.svg -------------------------------------------------------------------------------- /app/style/icons/launcherLogoDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/launcherLogoDark.svg -------------------------------------------------------------------------------- /app/style/icons/lifecycle-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lifecycle-01.png -------------------------------------------------------------------------------- /app/style/icons/lifecycle-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lifecycle-02.png -------------------------------------------------------------------------------- /app/style/icons/lifecycle-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lifecycle-03.png -------------------------------------------------------------------------------- /app/style/icons/lifecycle-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lifecycle-04.png -------------------------------------------------------------------------------- /app/style/icons/lifecycle-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lifecycle-05.png -------------------------------------------------------------------------------- /app/style/icons/lifecycle-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lifecycle-06.png -------------------------------------------------------------------------------- /app/style/icons/lifecycle-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lifecycle-06.svg -------------------------------------------------------------------------------- /app/style/icons/lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lightning.svg -------------------------------------------------------------------------------- /app/style/icons/lightningDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lightningDark.svg -------------------------------------------------------------------------------- /app/style/icons/lightningHeader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lightningHeader.svg -------------------------------------------------------------------------------- /app/style/icons/lightningIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lightningIcon.svg -------------------------------------------------------------------------------- /app/style/icons/lnInvoiceIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lnInvoiceIcon.svg -------------------------------------------------------------------------------- /app/style/icons/lockCheckmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lockCheckmark.svg -------------------------------------------------------------------------------- /app/style/icons/lockCheckmarkDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lockCheckmarkDark.svg -------------------------------------------------------------------------------- /app/style/icons/lockedLegend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lockedLegend.svg -------------------------------------------------------------------------------- /app/style/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/logo.svg -------------------------------------------------------------------------------- /app/style/icons/logoDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/logoDark.svg -------------------------------------------------------------------------------- /app/style/icons/lookupIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/lookupIcon.svg -------------------------------------------------------------------------------- /app/style/icons/matrixGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/matrixGrey.svg -------------------------------------------------------------------------------- /app/style/icons/matrixGreyDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/matrixGreyDark.svg -------------------------------------------------------------------------------- /app/style/icons/menu-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/menu-arrow-up.svg -------------------------------------------------------------------------------- /app/style/icons/menuArrowUpDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/menuArrowUpDark.svg -------------------------------------------------------------------------------- /app/style/icons/menuMixer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/menuMixer.svg -------------------------------------------------------------------------------- /app/style/icons/menuMixerDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/menuMixerDark.svg -------------------------------------------------------------------------------- /app/style/icons/menuSettings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/menuSettings.svg -------------------------------------------------------------------------------- /app/style/icons/menuSettingsDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/menuSettingsDark.svg -------------------------------------------------------------------------------- /app/style/icons/menuSpvOff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/menuSpvOff.svg -------------------------------------------------------------------------------- /app/style/icons/menuSpvOffDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/menuSpvOffDark.svg -------------------------------------------------------------------------------- /app/style/icons/menuSpvOn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/menuSpvOn.svg -------------------------------------------------------------------------------- /app/style/icons/menuSpvOnDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/menuSpvOnDark.svg -------------------------------------------------------------------------------- /app/style/icons/minus-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/minus-big.svg -------------------------------------------------------------------------------- /app/style/icons/minus-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/minus-small.svg -------------------------------------------------------------------------------- /app/style/icons/mixedAccount.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/mixedAccount.svg -------------------------------------------------------------------------------- /app/style/icons/mixedAccountDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/mixedAccountDark.svg -------------------------------------------------------------------------------- /app/style/icons/mixedTx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/mixedTx.svg -------------------------------------------------------------------------------- /app/style/icons/mixerArrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/mixerArrows.gif -------------------------------------------------------------------------------- /app/style/icons/mixerArrowsDark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/mixerArrowsDark.gif -------------------------------------------------------------------------------- /app/style/icons/no-tickets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/no-tickets.svg -------------------------------------------------------------------------------- /app/style/icons/no-tx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/no-tx.svg -------------------------------------------------------------------------------- /app/style/icons/noTxDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/noTxDark.svg -------------------------------------------------------------------------------- /app/style/icons/notificationError.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/notificationError.svg -------------------------------------------------------------------------------- /app/style/icons/overview-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/overview-active.png -------------------------------------------------------------------------------- /app/style/icons/overview-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/overview-hover.svg -------------------------------------------------------------------------------- /app/style/icons/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/password.svg -------------------------------------------------------------------------------- /app/style/icons/passwordDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/passwordDark.svg -------------------------------------------------------------------------------- /app/style/icons/passwordInactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/passwordInactive.svg -------------------------------------------------------------------------------- /app/style/icons/pending_dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/pending_dots.gif -------------------------------------------------------------------------------- /app/style/icons/pl-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/pl-flag.svg -------------------------------------------------------------------------------- /app/style/icons/plus-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/plus-big.svg -------------------------------------------------------------------------------- /app/style/icons/plus-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/plus-small.svg -------------------------------------------------------------------------------- /app/style/icons/plusIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/plusIcon.svg -------------------------------------------------------------------------------- /app/style/icons/privacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/privacy.svg -------------------------------------------------------------------------------- /app/style/icons/privacyCustom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/privacyCustom.svg -------------------------------------------------------------------------------- /app/style/icons/privacyCustomDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/privacyCustomDark.svg -------------------------------------------------------------------------------- /app/style/icons/privacyDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/privacyDark.svg -------------------------------------------------------------------------------- /app/style/icons/privacyDisabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/privacyDisabled.svg -------------------------------------------------------------------------------- /app/style/icons/privacyHeader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/privacyHeader.svg -------------------------------------------------------------------------------- /app/style/icons/privacyHeaderDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/privacyHeaderDark.svg -------------------------------------------------------------------------------- /app/style/icons/privacyStandard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/privacyStandard.svg -------------------------------------------------------------------------------- /app/style/icons/ptbr-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ptbr-flag.svg -------------------------------------------------------------------------------- /app/style/icons/qr-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/qr-logo.svg -------------------------------------------------------------------------------- /app/style/icons/qrcode-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/qrcode-1.svg -------------------------------------------------------------------------------- /app/style/icons/receivedLegend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/receivedLegend.svg -------------------------------------------------------------------------------- /app/style/icons/release-note-v130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/release-note-v130.gif -------------------------------------------------------------------------------- /app/style/icons/release-note-v140.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/release-note-v140.gif -------------------------------------------------------------------------------- /app/style/icons/release-note-v150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/release-note-v150.png -------------------------------------------------------------------------------- /app/style/icons/release-note-v160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/release-note-v160.png -------------------------------------------------------------------------------- /app/style/icons/release-note-v170.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/release-note-v170.gif -------------------------------------------------------------------------------- /app/style/icons/release-note-v180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/release-note-v180.png -------------------------------------------------------------------------------- /app/style/icons/release-note-v211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/release-note-v211.png -------------------------------------------------------------------------------- /app/style/icons/release-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/release-note.png -------------------------------------------------------------------------------- /app/style/icons/restorewallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/restorewallet.svg -------------------------------------------------------------------------------- /app/style/icons/rightArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/rightArrow.svg -------------------------------------------------------------------------------- /app/style/icons/rightArrowDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/rightArrowDark.svg -------------------------------------------------------------------------------- /app/style/icons/rocketchat-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/rocketchat-hover.svg -------------------------------------------------------------------------------- /app/style/icons/rocketchat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/rocketchat.svg -------------------------------------------------------------------------------- /app/style/icons/search-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/search-hover.svg -------------------------------------------------------------------------------- /app/style/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/search.svg -------------------------------------------------------------------------------- /app/style/icons/searchDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/searchDark.svg -------------------------------------------------------------------------------- /app/style/icons/searchHightWidth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/searchHightWidth.svg -------------------------------------------------------------------------------- /app/style/icons/select-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/select-arrow-up.svg -------------------------------------------------------------------------------- /app/style/icons/selectArrowUpDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/selectArrowUpDark.svg -------------------------------------------------------------------------------- /app/style/icons/sendMaxDefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sendMaxDefault.svg -------------------------------------------------------------------------------- /app/style/icons/sendMaxDisabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sendMaxDisabled.svg -------------------------------------------------------------------------------- /app/style/icons/sendMaxHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sendMaxHover.svg -------------------------------------------------------------------------------- /app/style/icons/sendMaxHoverDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sendMaxHoverDark.svg -------------------------------------------------------------------------------- /app/style/icons/sendSelfDefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sendSelfDefault.svg -------------------------------------------------------------------------------- /app/style/icons/sendSelfHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sendSelfHover.svg -------------------------------------------------------------------------------- /app/style/icons/sendSelfHoverDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sendSelfHoverDark.svg -------------------------------------------------------------------------------- /app/style/icons/sentLegend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sentLegend.svg -------------------------------------------------------------------------------- /app/style/icons/sentToSelfTx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sentToSelfTx.svg -------------------------------------------------------------------------------- /app/style/icons/sentToSelfTxDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sentToSelfTxDark.svg -------------------------------------------------------------------------------- /app/style/icons/settings-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/settings-hover.svg -------------------------------------------------------------------------------- /app/style/icons/sidebar-balance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sidebar-balance.svg -------------------------------------------------------------------------------- /app/style/icons/sort-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sort-by.svg -------------------------------------------------------------------------------- /app/style/icons/sortbyDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/sortbyDark.svg -------------------------------------------------------------------------------- /app/style/icons/stakepoolsActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/stakepoolsActive.svg -------------------------------------------------------------------------------- /app/style/icons/stakepoolsDefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/stakepoolsDefault.svg -------------------------------------------------------------------------------- /app/style/icons/stakepoolsGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/stakepoolsGrey.svg -------------------------------------------------------------------------------- /app/style/icons/stakeySprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/stakeySprites.png -------------------------------------------------------------------------------- /app/style/icons/starGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/starGrey.svg -------------------------------------------------------------------------------- /app/style/icons/starGreyDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/starGreyDark.svg -------------------------------------------------------------------------------- /app/style/icons/stats-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/stats-disabled.svg -------------------------------------------------------------------------------- /app/style/icons/stripe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/stripe.svg -------------------------------------------------------------------------------- /app/style/icons/testnet-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/testnet-logo.svg -------------------------------------------------------------------------------- /app/style/icons/testnetLogoDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/testnetLogoDark.svg -------------------------------------------------------------------------------- /app/style/icons/ticket-expired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticket-expired.svg -------------------------------------------------------------------------------- /app/style/icons/ticket-immature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticket-immature.svg -------------------------------------------------------------------------------- /app/style/icons/ticket-lifecycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticket-lifecycle.svg -------------------------------------------------------------------------------- /app/style/icons/ticket-live.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticket-live.svg -------------------------------------------------------------------------------- /app/style/icons/ticket-missed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticket-missed.svg -------------------------------------------------------------------------------- /app/style/icons/ticket-revoked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticket-revoked.svg -------------------------------------------------------------------------------- /app/style/icons/ticket-reward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticket-reward.svg -------------------------------------------------------------------------------- /app/style/icons/ticket-unmined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticket-unmined.svg -------------------------------------------------------------------------------- /app/style/icons/ticket-voted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticket-voted.svg -------------------------------------------------------------------------------- /app/style/icons/ticketExpired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketExpired.svg -------------------------------------------------------------------------------- /app/style/icons/ticketImmature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketImmature.svg -------------------------------------------------------------------------------- /app/style/icons/ticketLive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketLive.svg -------------------------------------------------------------------------------- /app/style/icons/ticketMissed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketMissed.svg -------------------------------------------------------------------------------- /app/style/icons/ticketRevoked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketRevoked.svg -------------------------------------------------------------------------------- /app/style/icons/ticketUnmined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketUnmined.svg -------------------------------------------------------------------------------- /app/style/icons/ticketVoted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketVoted.svg -------------------------------------------------------------------------------- /app/style/icons/tickets-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/tickets-active.png -------------------------------------------------------------------------------- /app/style/icons/tickets-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/tickets-default.png -------------------------------------------------------------------------------- /app/style/icons/tickets-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/tickets-hover.svg -------------------------------------------------------------------------------- /app/style/icons/tickets-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/tickets-info.svg -------------------------------------------------------------------------------- /app/style/icons/tickets-ticket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/tickets-ticket.svg -------------------------------------------------------------------------------- /app/style/icons/ticketsActiveDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketsActiveDark.svg -------------------------------------------------------------------------------- /app/style/icons/ticketsHeader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketsHeader.svg -------------------------------------------------------------------------------- /app/style/icons/ticketsHeaderDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketsHeaderDark.svg -------------------------------------------------------------------------------- /app/style/icons/ticketsInfoDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketsInfoDark.svg -------------------------------------------------------------------------------- /app/style/icons/ticketsMinusWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketsMinusWhite.svg -------------------------------------------------------------------------------- /app/style/icons/ticketsPlusWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/ticketsPlusWhite.svg -------------------------------------------------------------------------------- /app/style/icons/time-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/time-lock.svg -------------------------------------------------------------------------------- /app/style/icons/timeLockDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/timeLockDark.svg -------------------------------------------------------------------------------- /app/style/icons/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/transparent.png -------------------------------------------------------------------------------- /app/style/icons/trezorActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/trezorActive.svg -------------------------------------------------------------------------------- /app/style/icons/trezorActiveDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/trezorActiveDark.svg -------------------------------------------------------------------------------- /app/style/icons/trezorHeader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/trezorHeader.svg -------------------------------------------------------------------------------- /app/style/icons/trezorHeaderDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/trezorHeaderDark.svg -------------------------------------------------------------------------------- /app/style/icons/tzBackupDevice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/tzBackupDevice.svg -------------------------------------------------------------------------------- /app/style/icons/tzCreateBt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/tzCreateBt.svg -------------------------------------------------------------------------------- /app/style/icons/tzInitDevice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/tzInitDevice.svg -------------------------------------------------------------------------------- /app/style/icons/tzRecoverDevice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/tzRecoverDevice.svg -------------------------------------------------------------------------------- /app/style/icons/tzWipeDevice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/tzWipeDevice.svg -------------------------------------------------------------------------------- /app/style/icons/unmixedAccount.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/unmixedAccount.svg -------------------------------------------------------------------------------- /app/style/icons/vote-time-stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/vote-time-stats.svg -------------------------------------------------------------------------------- /app/style/icons/voteTimeActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/voteTimeActive.svg -------------------------------------------------------------------------------- /app/style/icons/voteTimeDefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/voteTimeDefault.svg -------------------------------------------------------------------------------- /app/style/icons/votedLegend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/votedLegend.svg -------------------------------------------------------------------------------- /app/style/icons/votingGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/votingGrey.svg -------------------------------------------------------------------------------- /app/style/icons/wallet-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/wallet-blue.svg -------------------------------------------------------------------------------- /app/style/icons/wallet-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/wallet-gray.svg -------------------------------------------------------------------------------- /app/style/icons/wallet-smoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/wallet-smoke.svg -------------------------------------------------------------------------------- /app/style/icons/wallet-turquoise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/wallet-turquoise.svg -------------------------------------------------------------------------------- /app/style/icons/walletBlueDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/walletBlueDark.svg -------------------------------------------------------------------------------- /app/style/icons/walletGrayDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/walletGrayDark.svg -------------------------------------------------------------------------------- /app/style/icons/warrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/warrior.png -------------------------------------------------------------------------------- /app/style/icons/watchOnlyNav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/watchOnlyNav.svg -------------------------------------------------------------------------------- /app/style/icons/what-is-staking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/what-is-staking.svg -------------------------------------------------------------------------------- /app/style/icons/x-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/x-grey.svg -------------------------------------------------------------------------------- /app/style/icons/xGreyDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/xGreyDark.svg -------------------------------------------------------------------------------- /app/style/icons/zh-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/icons/zh-flag.svg -------------------------------------------------------------------------------- /app/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/main.css -------------------------------------------------------------------------------- /app/style/themes/darkTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/themes/darkTheme.js -------------------------------------------------------------------------------- /app/style/themes/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/themes/icons.js -------------------------------------------------------------------------------- /app/style/themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/themes/index.js -------------------------------------------------------------------------------- /app/style/themes/lightTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/themes/lightTheme.js -------------------------------------------------------------------------------- /app/style/themes/sharedTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/style/themes/sharedTheme.js -------------------------------------------------------------------------------- /app/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/theme.js -------------------------------------------------------------------------------- /app/trezor-iframe.development.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/trezor-iframe.development.html -------------------------------------------------------------------------------- /app/wallet-preload-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet-preload-shim.js -------------------------------------------------------------------------------- /app/wallet-preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet-preload.js -------------------------------------------------------------------------------- /app/wallet/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/app.js -------------------------------------------------------------------------------- /app/wallet/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/client.js -------------------------------------------------------------------------------- /app/wallet/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/config.js -------------------------------------------------------------------------------- /app/wallet/confirmationDialog/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/confirmationDialog/seed.js -------------------------------------------------------------------------------- /app/wallet/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/control.js -------------------------------------------------------------------------------- /app/wallet/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/crypto.js -------------------------------------------------------------------------------- /app/wallet/daemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/daemon.js -------------------------------------------------------------------------------- /app/wallet/dex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/dex/index.js -------------------------------------------------------------------------------- /app/wallet/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/fs.js -------------------------------------------------------------------------------- /app/wallet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/index.js -------------------------------------------------------------------------------- /app/wallet/ln/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/ln/index.js -------------------------------------------------------------------------------- /app/wallet/ln/watchtower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/ln/watchtower.js -------------------------------------------------------------------------------- /app/wallet/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/loader.js -------------------------------------------------------------------------------- /app/wallet/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/message.js -------------------------------------------------------------------------------- /app/wallet/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/notifications.js -------------------------------------------------------------------------------- /app/wallet/politeia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/politeia.js -------------------------------------------------------------------------------- /app/wallet/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/seed.js -------------------------------------------------------------------------------- /app/wallet/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/service.js -------------------------------------------------------------------------------- /app/wallet/trezord/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/trezord/index.js -------------------------------------------------------------------------------- /app/wallet/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/version.js -------------------------------------------------------------------------------- /app/wallet/vsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/wallet/vsp.js -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/appveyor.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/babel.config.js -------------------------------------------------------------------------------- /certs/cspp.decred.org.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/certs/cspp.decred.org.pem -------------------------------------------------------------------------------- /certs/mix.decred.org.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/certs/mix.decred.org.pem -------------------------------------------------------------------------------- /decrediton.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/decrediton.desktop -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/go.sum -------------------------------------------------------------------------------- /modules/dcrwin32ipc/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dcrwin32ipc/binding.gyp -------------------------------------------------------------------------------- /modules/dcrwin32ipc/module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dcrwin32ipc/module.cc -------------------------------------------------------------------------------- /modules/dcrwin32ipc/moduleTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dcrwin32ipc/moduleTest.js -------------------------------------------------------------------------------- /modules/dcrwin32ipc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dcrwin32ipc/package.json -------------------------------------------------------------------------------- /modules/dcrwin32ipc/pipe_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dcrwin32ipc/pipe_wrapper.cc -------------------------------------------------------------------------------- /modules/dcrwin32ipc/pipe_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dcrwin32ipc/pipe_wrapper.h -------------------------------------------------------------------------------- /modules/dex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dex/.gitignore -------------------------------------------------------------------------------- /modules/dex/cnode/cnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dex/cnode/cnode.cc -------------------------------------------------------------------------------- /modules/dex/libdexc/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dex/libdexc/adapter.go -------------------------------------------------------------------------------- /modules/dex/libdexc/libdexc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dex/libdexc/libdexc.go -------------------------------------------------------------------------------- /modules/dex/libdexc/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dex/libdexc/log.go -------------------------------------------------------------------------------- /modules/dex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dex/package.json -------------------------------------------------------------------------------- /modules/dex/sbffi-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/modules/dex/sbffi-test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/package.json -------------------------------------------------------------------------------- /package_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/package_linux.sh -------------------------------------------------------------------------------- /package_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/package_macos.sh -------------------------------------------------------------------------------- /package_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/package_win.sh -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/postcss.config.js -------------------------------------------------------------------------------- /scripts/aliasDefaultMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/scripts/aliasDefaultMessage.js -------------------------------------------------------------------------------- /scripts/docsTranslationStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/scripts/docsTranslationStatus.js -------------------------------------------------------------------------------- /scripts/generateDepGraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/scripts/generateDepGraphs.js -------------------------------------------------------------------------------- /scripts/prepareUntranslated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/scripts/prepareUntranslated.js -------------------------------------------------------------------------------- /server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/server.mjs -------------------------------------------------------------------------------- /somefile.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/somefile.log -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/README.md -------------------------------------------------------------------------------- /test/data/FullProposalMarkdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/data/FullProposalMarkdown.js -------------------------------------------------------------------------------- /test/data/HexTransactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/data/HexTransactions.js -------------------------------------------------------------------------------- /test/data/decodedTransactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/data/decodedTransactions.js -------------------------------------------------------------------------------- /test/data/rawTransactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/data/rawTransactions.js -------------------------------------------------------------------------------- /test/data/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/data/script.js -------------------------------------------------------------------------------- /test/mocks/dexMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/mocks/dexMock.js -------------------------------------------------------------------------------- /test/mocks/electronMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/mocks/electronMock.js -------------------------------------------------------------------------------- /test/mocks/electronStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/mocks/electronStore.js -------------------------------------------------------------------------------- /test/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default "test-file-stub"; 2 | -------------------------------------------------------------------------------- /test/mocks/fsMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/mocks/fsMock.js -------------------------------------------------------------------------------- /test/mocks/grpcMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/mocks/grpcMock.js -------------------------------------------------------------------------------- /test/mocks/styleMock.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /test/mocks/trezordMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/mocks/trezordMock.js -------------------------------------------------------------------------------- /test/mocks/walletMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/mocks/walletMock.js -------------------------------------------------------------------------------- /test/mocks/walletPreloadShimMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/mocks/walletPreloadShimMock.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/setup.js -------------------------------------------------------------------------------- /test/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/test-utils.js -------------------------------------------------------------------------------- /test/unit/actions/DexActions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/actions/DexActions.spec.js -------------------------------------------------------------------------------- /test/unit/actions/VSPActions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/actions/VSPActions.spec.js -------------------------------------------------------------------------------- /test/unit/actions/accountMocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/actions/accountMocks.js -------------------------------------------------------------------------------- /test/unit/actions/vspMocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/actions/vspMocks.js -------------------------------------------------------------------------------- /test/unit/components/Balance.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/components/Balance.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/addresses.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/helpers/addresses.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/date.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/helpers/date.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/ledger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/helpers/ledger.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/script.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/helpers/script.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/seed.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/helpers/seed.spec.js -------------------------------------------------------------------------------- /test/unit/helpers/tickets.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/helpers/tickets.spec.js -------------------------------------------------------------------------------- /test/unit/wallet/service.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/test/unit/wallet/service.spec.js -------------------------------------------------------------------------------- /webpack/electron.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/webpack/electron.dev.js -------------------------------------------------------------------------------- /webpack/electron.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/webpack/electron.prod.js -------------------------------------------------------------------------------- /webpack/preload.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/webpack/preload.dev.js -------------------------------------------------------------------------------- /webpack/preload.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/webpack/preload.prod.js -------------------------------------------------------------------------------- /webpack/trezor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/webpack/trezor.js -------------------------------------------------------------------------------- /webpack/ui.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/webpack/ui.base.js -------------------------------------------------------------------------------- /webpack/ui.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/webpack/ui.dev.js -------------------------------------------------------------------------------- /webpack/ui.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/webpack/ui.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decred/decrediton/HEAD/yarn.lock --------------------------------------------------------------------------------