├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Dockerfile ├── LICENSE.txt ├── README.md ├── craco.config.js ├── package.json ├── public ├── favicon.ico ├── img │ ├── firefox.svg │ ├── flags_responsive.png │ ├── google-chrome.svg │ └── tmpim.svg ├── index.html ├── locales │ ├── de.json │ ├── en.json │ ├── fr.json │ ├── it.json │ ├── nl.json │ ├── pl.json │ ├── pt.json │ ├── tr.json │ └── vi.json ├── logo.svg ├── logo192.png ├── logo512.png ├── manifest.json ├── maskable512.png └── robots.txt ├── src ├── App.less ├── App.tsx ├── __data__ │ ├── languages.json │ └── verified-addresses.json ├── __tests__ │ └── App.tsx ├── components │ ├── CheeseburgerIcon.tsx │ ├── ConditionalLink.tsx │ ├── CopyInputButton.tsx │ ├── DateTime.tsx │ ├── Flag.tsx │ ├── HelpIcon.tsx │ ├── OptionalField.tsx │ ├── SmallCopyable.tsx │ ├── Statistic.tsx │ ├── addresses │ │ ├── ContextualAddress.less │ │ ├── ContextualAddress.tsx │ │ ├── VerifiedAddress.tsx │ │ ├── VerifiedCheck.tsx │ │ └── picker │ │ │ ├── AddressHint.tsx │ │ │ ├── AddressPicker.less │ │ │ ├── AddressPicker.tsx │ │ │ ├── Header.tsx │ │ │ ├── Item.tsx │ │ │ ├── NameHint.tsx │ │ │ ├── PickerHints.tsx │ │ │ ├── VerifiedHint.tsx │ │ │ ├── WalletHint.tsx │ │ │ └── options.ts │ ├── auth │ │ ├── AuthContext.tsx │ │ ├── AuthForm.tsx │ │ ├── AuthMasterPasswordModal.tsx │ │ ├── AuthorisedAction.tsx │ │ ├── FakeUsernameInput.tsx │ │ ├── MasterPasswordInput.tsx │ │ ├── SetMasterPasswordModal.tsx │ │ └── index.ts │ ├── krist │ │ ├── KristSymbol.tsx │ │ ├── KristValue.less │ │ ├── KristValue.tsx │ │ └── MarkdownLink.tsx │ ├── names │ │ ├── KristNameLink.tsx │ │ ├── NameARecordLink.less │ │ └── NameARecordLink.tsx │ ├── results │ │ ├── APIErrorResult.tsx │ │ ├── NoWalletsResult.tsx │ │ └── SmallResult.tsx │ ├── styles │ │ ├── ConditionalLink.less │ │ ├── DateTime.less │ │ ├── Flag.css │ │ ├── HelpIcon.less │ │ ├── OptionalField.less │ │ ├── SmallCopyable.less │ │ └── Statistic.less │ ├── transactions │ │ ├── AmountInput.tsx │ │ ├── SendTransactionModalLink.tsx │ │ ├── TransactionConciseMetadata.less │ │ ├── TransactionConciseMetadata.tsx │ │ ├── TransactionItem.tsx │ │ ├── TransactionItemParts.tsx │ │ ├── TransactionSummary.less │ │ ├── TransactionSummary.tsx │ │ ├── TransactionType.less │ │ └── TransactionType.tsx │ ├── types.ts │ └── wallets │ │ ├── SelectWalletCategory.tsx │ │ ├── SelectWalletFormat.tsx │ │ └── SyncWallets.tsx ├── global │ ├── AppHotkeys.tsx │ ├── AppLoading.tsx │ ├── AppRouter.tsx │ ├── AppServices.tsx │ ├── ErrorBoundary.tsx │ ├── ForcedAuth.tsx │ ├── LocaleContext.tsx │ ├── PurchaseKrist.tsx │ ├── StorageBroadcast.tsx │ ├── compat │ │ ├── CompatCheckModal.less │ │ ├── CompatCheckModal.tsx │ │ ├── index.ts │ │ └── localStorage.ts │ ├── legacy │ │ ├── LegacyMigration.tsx │ │ ├── LegacyMigrationForm.tsx │ │ └── LegacyMigrationModal.tsx │ └── ws │ │ ├── SyncDetailedWork.tsx │ │ ├── SyncMOTD.tsx │ │ ├── WebsocketConnection.ts │ │ ├── WebsocketProvider.tsx │ │ ├── WebsocketService.tsx │ │ └── WebsocketSubscription.ts ├── index.css ├── index.tsx ├── krist │ ├── api │ │ ├── AuthFailed.tsx │ │ ├── index.ts │ │ ├── login.ts │ │ ├── lookup.ts │ │ ├── names.ts │ │ ├── search.ts │ │ ├── transactions.ts │ │ └── types.ts │ ├── contacts │ │ ├── Contact.ts │ │ ├── contactStorage.ts │ │ ├── functions │ │ │ ├── addContact.ts │ │ │ └── editContact.ts │ │ ├── index.ts │ │ └── utils.ts │ └── wallets │ │ ├── Wallet.ts │ │ ├── functions │ │ ├── addWallet.ts │ │ ├── decryptWallet.ts │ │ ├── editWallet.ts │ │ ├── recalculateWallets.ts │ │ ├── resetMasterPassword.ts │ │ └── syncWallets.ts │ │ ├── index.ts │ │ ├── masterPassword.ts │ │ ├── utils.ts │ │ ├── walletFormats.ts │ │ └── walletStorage.ts ├── layout │ ├── AppLayout.less │ ├── AppLayout.tsx │ ├── PageLayout.less │ ├── PageLayout.tsx │ ├── nav │ │ ├── AppHeader.less │ │ ├── AppHeader.tsx │ │ ├── Brand.tsx │ │ ├── ConnectionIndicator.less │ │ ├── ConnectionIndicator.tsx │ │ ├── CymbalIndicator.tsx │ │ ├── Search.tsx │ │ ├── SearchResults.less │ │ ├── SearchResults.tsx │ │ └── TopMenu.tsx │ └── sidebar │ │ ├── ServiceWorkerCheck.tsx │ │ ├── Sidebar.less │ │ ├── Sidebar.tsx │ │ ├── SidebarFooter.tsx │ │ └── SidebarTotalBalance.tsx ├── pages │ ├── NotFoundPage.tsx │ ├── addresses │ │ ├── AddressButtonRow.tsx │ │ ├── AddressNamesCard.tsx │ │ ├── AddressPage.less │ │ ├── AddressPage.tsx │ │ ├── AddressTransactionsCard.tsx │ │ └── NameItem.tsx │ ├── backup │ │ ├── BackupResultsSummary.less │ │ ├── BackupResultsSummary.tsx │ │ ├── BackupResultsTree.less │ │ ├── BackupResultsTree.tsx │ │ ├── ExportBackupModal.tsx │ │ ├── ImportBackupForm.tsx │ │ ├── ImportBackupModal.tsx │ │ ├── ImportDetectFormat.tsx │ │ ├── ImportFileButton.tsx │ │ ├── ImportProgress.tsx │ │ ├── backupExport.ts │ │ ├── backupFormats.ts │ │ ├── backupImport.ts │ │ ├── backupImportUtils.ts │ │ ├── backupImportV1.ts │ │ ├── backupImportV2.ts │ │ ├── backupParser.ts │ │ └── backupResults.ts │ ├── blocks │ │ ├── BlockHash.less │ │ ├── BlockHash.tsx │ │ ├── BlockMobileItem.tsx │ │ ├── BlockPage.less │ │ ├── BlockPage.tsx │ │ ├── BlocksPage.less │ │ ├── BlocksPage.tsx │ │ └── BlocksTable.tsx │ ├── contacts │ │ ├── AddContactModal.tsx │ │ ├── ContactActions.tsx │ │ ├── ContactEditButton.tsx │ │ ├── ContactMobileItem.tsx │ │ ├── ContactsMobileItemActions.tsx │ │ ├── ContactsPage.less │ │ ├── ContactsPage.tsx │ │ ├── ContactsPageActions.tsx │ │ └── ContactsTable.tsx │ ├── credits │ │ ├── CreditsPage.less │ │ ├── CreditsPage.tsx │ │ ├── Privacy.tsx │ │ ├── Supporters.tsx │ │ └── Translators.tsx │ ├── dashboard │ │ ├── BlockDifficultyCard.tsx │ │ ├── BlockValueCard.tsx │ │ ├── DashboardPage.less │ │ ├── DashboardPage.tsx │ │ ├── InDevBanner.tsx │ │ ├── MOTDCard.tsx │ │ ├── TipsCard.tsx │ │ ├── TransactionsCard.tsx │ │ ├── WalletItem.tsx │ │ ├── WalletOverviewCard.tsx │ │ └── WhatsNewCard.tsx │ ├── dev │ │ └── DevPage.tsx │ ├── names │ │ ├── NameButtonRow.tsx │ │ ├── NameMobileItem.tsx │ │ ├── NameMobileItemActions.tsx │ │ ├── NamePage.less │ │ ├── NamePage.tsx │ │ ├── NameTransactionsCard.tsx │ │ ├── NamesPage.less │ │ ├── NamesPage.tsx │ │ ├── NamesTable.tsx │ │ ├── mgmt │ │ │ ├── ConfirmModal.tsx │ │ │ ├── EditProgress.tsx │ │ │ ├── NameActions.tsx │ │ │ ├── NameDataInput.tsx │ │ │ ├── NameEditForm.tsx │ │ │ ├── NameEditModal.tsx │ │ │ ├── NameEditModalLink.tsx │ │ │ ├── NamePicker.tsx │ │ │ ├── NamePurchaseModal.tsx │ │ │ ├── NamePurchaseModalLink.tsx │ │ │ ├── NoNamesModal.tsx │ │ │ ├── SuccessNotifContent.tsx │ │ │ ├── checkName.ts │ │ │ ├── handleErrors.ts │ │ │ └── lookupNames.ts │ │ └── tableLock.ts │ ├── settings │ │ ├── SettingBoolean.tsx │ │ ├── SettingDescription.tsx │ │ ├── SettingInteger.tsx │ │ ├── SettingLink.tsx │ │ ├── SettingsGroup.tsx │ │ ├── SettingsPage.less │ │ ├── SettingsPage.tsx │ │ ├── manage │ │ │ ├── ResetMasterPassword.tsx │ │ │ └── SettingsManage.tsx │ │ └── translations │ │ │ ├── LanguageItem.tsx │ │ │ ├── LanguagesTable.tsx │ │ │ ├── MissingKeysTable.tsx │ │ │ ├── SettingsTranslations.tsx │ │ │ ├── analyseLangs.ts │ │ │ ├── exportCSV.ts │ │ │ └── importJSON.ts │ ├── transactions │ │ ├── TransactionMetadataCard.tsx │ │ ├── TransactionPage.less │ │ ├── TransactionPage.tsx │ │ ├── TransactionRawDataCard.tsx │ │ ├── TransactionsPage.less │ │ ├── TransactionsPage.tsx │ │ ├── TransactionsTable.tsx │ │ ├── request │ │ │ ├── RequestForm.tsx │ │ │ ├── RequestPage.less │ │ │ └── RequestPage.tsx │ │ └── send │ │ │ ├── QueryParamsHook.tsx │ │ │ ├── SendTransactionConfirmModal.tsx │ │ │ ├── SendTransactionForm.tsx │ │ │ ├── SendTransactionModal.tsx │ │ │ ├── SendTransactionPage.less │ │ │ ├── SendTransactionPage.tsx │ │ │ ├── Success.tsx │ │ │ └── handleErrors.ts │ ├── wallets │ │ ├── AddWalletModal.tsx │ │ ├── ManageBackupsDropdown.tsx │ │ ├── NoWalletsMobileResult.tsx │ │ ├── WalletActions.tsx │ │ ├── WalletEditButton.tsx │ │ ├── WalletMobileItem.tsx │ │ ├── WalletMobileItemActions.tsx │ │ ├── WalletsPage.less │ │ ├── WalletsPage.tsx │ │ ├── WalletsPageActions.tsx │ │ ├── WalletsTable.tsx │ │ └── info │ │ │ ├── BooleanText.tsx │ │ │ ├── DecryptReveal.tsx │ │ │ ├── WalletDescAdvancedInfo.tsx │ │ │ ├── WalletDescBasicInfo.tsx │ │ │ ├── WalletDescSyncedInfo.tsx │ │ │ ├── WalletInfoModal.less │ │ │ └── WalletInfoModal.tsx │ └── whatsnew │ │ ├── CommitsCard.tsx │ │ ├── WhatsNewCard.tsx │ │ ├── WhatsNewPage.less │ │ ├── WhatsNewPage.tsx │ │ └── types.ts ├── react-app-env.d.ts ├── reportWebVitals.ts ├── service-worker.ts ├── setupTests.ts ├── store │ ├── actions │ │ ├── ContactsActions.ts │ │ ├── MasterPasswordActions.ts │ │ ├── MiscActions.ts │ │ ├── NodeActions.ts │ │ ├── SettingsActions.ts │ │ ├── WalletsActions.ts │ │ ├── WebsocketActions.ts │ │ └── index.ts │ ├── constants.ts │ ├── index.ts │ ├── init.ts │ ├── reducers │ │ ├── ContactsReducer.ts │ │ ├── MasterPasswordReducer.ts │ │ ├── MiscReducer.ts │ │ ├── NodeReducer.ts │ │ ├── RootReducer.ts │ │ ├── SettingsReducer.ts │ │ ├── WalletsReducer.ts │ │ └── WebsocketReducer.ts │ └── types.d.ts ├── style │ ├── card.less │ ├── components.less │ ├── table.less │ └── theme.less └── utils │ ├── consoleWarning.ts │ ├── crypto │ ├── CryptoJS.ts │ ├── crypto.ts │ ├── generatePassword.ts │ └── index.ts │ ├── errors.ts │ ├── hooks │ ├── index.ts │ ├── useBreakpoint.ts │ ├── useHistoryState.ts │ └── useMountEffect.ts │ ├── i18n │ ├── errors.ts │ ├── fns.ts │ ├── index.ts │ ├── init.ts │ └── languages.ts │ ├── index.ts │ ├── krist │ ├── addressAlgo.ts │ ├── commonmeta.ts │ ├── currency.ts │ └── index.ts │ ├── misc │ ├── credits.ts │ ├── devState.ts │ ├── math.ts │ ├── promiseThrottle.ts │ └── sort.ts │ ├── serviceWorkerRegistration.ts │ ├── settings.ts │ ├── setup.ts │ └── table │ ├── SortModal.tsx │ ├── mobileList.tsx │ └── table.tsx ├── tools ├── addLanguages.js └── commitLog.js ├── tsconfig.extend.json ├── tsconfig.json ├── typings └── react-timeago │ └── lib │ └── formatters │ └── index.d.ts └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://donate.lemmmy.pw"] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/README.md -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/craco.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/img/firefox.svg -------------------------------------------------------------------------------- /public/img/flags_responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/img/flags_responsive.png -------------------------------------------------------------------------------- /public/img/google-chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/img/google-chrome.svg -------------------------------------------------------------------------------- /public/img/tmpim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/img/tmpim.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/index.html -------------------------------------------------------------------------------- /public/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/locales/de.json -------------------------------------------------------------------------------- /public/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/locales/en.json -------------------------------------------------------------------------------- /public/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/locales/fr.json -------------------------------------------------------------------------------- /public/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/locales/it.json -------------------------------------------------------------------------------- /public/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/locales/nl.json -------------------------------------------------------------------------------- /public/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/locales/pl.json -------------------------------------------------------------------------------- /public/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/locales/pt.json -------------------------------------------------------------------------------- /public/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/locales/tr.json -------------------------------------------------------------------------------- /public/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/locales/vi.json -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/maskable512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/maskable512.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/App.less -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/__data__/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/__data__/languages.json -------------------------------------------------------------------------------- /src/__data__/verified-addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/__data__/verified-addresses.json -------------------------------------------------------------------------------- /src/__tests__/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/__tests__/App.tsx -------------------------------------------------------------------------------- /src/components/CheeseburgerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/CheeseburgerIcon.tsx -------------------------------------------------------------------------------- /src/components/ConditionalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/ConditionalLink.tsx -------------------------------------------------------------------------------- /src/components/CopyInputButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/CopyInputButton.tsx -------------------------------------------------------------------------------- /src/components/DateTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/DateTime.tsx -------------------------------------------------------------------------------- /src/components/Flag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/Flag.tsx -------------------------------------------------------------------------------- /src/components/HelpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/HelpIcon.tsx -------------------------------------------------------------------------------- /src/components/OptionalField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/OptionalField.tsx -------------------------------------------------------------------------------- /src/components/SmallCopyable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/SmallCopyable.tsx -------------------------------------------------------------------------------- /src/components/Statistic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/Statistic.tsx -------------------------------------------------------------------------------- /src/components/addresses/ContextualAddress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/ContextualAddress.less -------------------------------------------------------------------------------- /src/components/addresses/ContextualAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/ContextualAddress.tsx -------------------------------------------------------------------------------- /src/components/addresses/VerifiedAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/VerifiedAddress.tsx -------------------------------------------------------------------------------- /src/components/addresses/VerifiedCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/VerifiedCheck.tsx -------------------------------------------------------------------------------- /src/components/addresses/picker/AddressHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/picker/AddressHint.tsx -------------------------------------------------------------------------------- /src/components/addresses/picker/AddressPicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/picker/AddressPicker.less -------------------------------------------------------------------------------- /src/components/addresses/picker/AddressPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/picker/AddressPicker.tsx -------------------------------------------------------------------------------- /src/components/addresses/picker/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/picker/Header.tsx -------------------------------------------------------------------------------- /src/components/addresses/picker/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/picker/Item.tsx -------------------------------------------------------------------------------- /src/components/addresses/picker/NameHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/picker/NameHint.tsx -------------------------------------------------------------------------------- /src/components/addresses/picker/PickerHints.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/picker/PickerHints.tsx -------------------------------------------------------------------------------- /src/components/addresses/picker/VerifiedHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/picker/VerifiedHint.tsx -------------------------------------------------------------------------------- /src/components/addresses/picker/WalletHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/picker/WalletHint.tsx -------------------------------------------------------------------------------- /src/components/addresses/picker/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/addresses/picker/options.ts -------------------------------------------------------------------------------- /src/components/auth/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/auth/AuthContext.tsx -------------------------------------------------------------------------------- /src/components/auth/AuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/auth/AuthForm.tsx -------------------------------------------------------------------------------- /src/components/auth/AuthMasterPasswordModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/auth/AuthMasterPasswordModal.tsx -------------------------------------------------------------------------------- /src/components/auth/AuthorisedAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/auth/AuthorisedAction.tsx -------------------------------------------------------------------------------- /src/components/auth/FakeUsernameInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/auth/FakeUsernameInput.tsx -------------------------------------------------------------------------------- /src/components/auth/MasterPasswordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/auth/MasterPasswordInput.tsx -------------------------------------------------------------------------------- /src/components/auth/SetMasterPasswordModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/auth/SetMasterPasswordModal.tsx -------------------------------------------------------------------------------- /src/components/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/auth/index.ts -------------------------------------------------------------------------------- /src/components/krist/KristSymbol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/krist/KristSymbol.tsx -------------------------------------------------------------------------------- /src/components/krist/KristValue.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/krist/KristValue.less -------------------------------------------------------------------------------- /src/components/krist/KristValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/krist/KristValue.tsx -------------------------------------------------------------------------------- /src/components/krist/MarkdownLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/krist/MarkdownLink.tsx -------------------------------------------------------------------------------- /src/components/names/KristNameLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/names/KristNameLink.tsx -------------------------------------------------------------------------------- /src/components/names/NameARecordLink.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/names/NameARecordLink.less -------------------------------------------------------------------------------- /src/components/names/NameARecordLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/names/NameARecordLink.tsx -------------------------------------------------------------------------------- /src/components/results/APIErrorResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/results/APIErrorResult.tsx -------------------------------------------------------------------------------- /src/components/results/NoWalletsResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/results/NoWalletsResult.tsx -------------------------------------------------------------------------------- /src/components/results/SmallResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/results/SmallResult.tsx -------------------------------------------------------------------------------- /src/components/styles/ConditionalLink.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/styles/ConditionalLink.less -------------------------------------------------------------------------------- /src/components/styles/DateTime.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/styles/DateTime.less -------------------------------------------------------------------------------- /src/components/styles/Flag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/styles/Flag.css -------------------------------------------------------------------------------- /src/components/styles/HelpIcon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/styles/HelpIcon.less -------------------------------------------------------------------------------- /src/components/styles/OptionalField.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/styles/OptionalField.less -------------------------------------------------------------------------------- /src/components/styles/SmallCopyable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/styles/SmallCopyable.less -------------------------------------------------------------------------------- /src/components/styles/Statistic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/styles/Statistic.less -------------------------------------------------------------------------------- /src/components/transactions/AmountInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/transactions/AmountInput.tsx -------------------------------------------------------------------------------- /src/components/transactions/SendTransactionModalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/transactions/SendTransactionModalLink.tsx -------------------------------------------------------------------------------- /src/components/transactions/TransactionConciseMetadata.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/transactions/TransactionConciseMetadata.less -------------------------------------------------------------------------------- /src/components/transactions/TransactionConciseMetadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/transactions/TransactionConciseMetadata.tsx -------------------------------------------------------------------------------- /src/components/transactions/TransactionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/transactions/TransactionItem.tsx -------------------------------------------------------------------------------- /src/components/transactions/TransactionItemParts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/transactions/TransactionItemParts.tsx -------------------------------------------------------------------------------- /src/components/transactions/TransactionSummary.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/transactions/TransactionSummary.less -------------------------------------------------------------------------------- /src/components/transactions/TransactionSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/transactions/TransactionSummary.tsx -------------------------------------------------------------------------------- /src/components/transactions/TransactionType.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/transactions/TransactionType.less -------------------------------------------------------------------------------- /src/components/transactions/TransactionType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/transactions/TransactionType.tsx -------------------------------------------------------------------------------- /src/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/types.ts -------------------------------------------------------------------------------- /src/components/wallets/SelectWalletCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/wallets/SelectWalletCategory.tsx -------------------------------------------------------------------------------- /src/components/wallets/SelectWalletFormat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/wallets/SelectWalletFormat.tsx -------------------------------------------------------------------------------- /src/components/wallets/SyncWallets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/components/wallets/SyncWallets.tsx -------------------------------------------------------------------------------- /src/global/AppHotkeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/AppHotkeys.tsx -------------------------------------------------------------------------------- /src/global/AppLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/AppLoading.tsx -------------------------------------------------------------------------------- /src/global/AppRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/AppRouter.tsx -------------------------------------------------------------------------------- /src/global/AppServices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/AppServices.tsx -------------------------------------------------------------------------------- /src/global/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/global/ForcedAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/ForcedAuth.tsx -------------------------------------------------------------------------------- /src/global/LocaleContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/LocaleContext.tsx -------------------------------------------------------------------------------- /src/global/PurchaseKrist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/PurchaseKrist.tsx -------------------------------------------------------------------------------- /src/global/StorageBroadcast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/StorageBroadcast.tsx -------------------------------------------------------------------------------- /src/global/compat/CompatCheckModal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/compat/CompatCheckModal.less -------------------------------------------------------------------------------- /src/global/compat/CompatCheckModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/compat/CompatCheckModal.tsx -------------------------------------------------------------------------------- /src/global/compat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/compat/index.ts -------------------------------------------------------------------------------- /src/global/compat/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/compat/localStorage.ts -------------------------------------------------------------------------------- /src/global/legacy/LegacyMigration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/legacy/LegacyMigration.tsx -------------------------------------------------------------------------------- /src/global/legacy/LegacyMigrationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/legacy/LegacyMigrationForm.tsx -------------------------------------------------------------------------------- /src/global/legacy/LegacyMigrationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/legacy/LegacyMigrationModal.tsx -------------------------------------------------------------------------------- /src/global/ws/SyncDetailedWork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/ws/SyncDetailedWork.tsx -------------------------------------------------------------------------------- /src/global/ws/SyncMOTD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/ws/SyncMOTD.tsx -------------------------------------------------------------------------------- /src/global/ws/WebsocketConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/ws/WebsocketConnection.ts -------------------------------------------------------------------------------- /src/global/ws/WebsocketProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/ws/WebsocketProvider.tsx -------------------------------------------------------------------------------- /src/global/ws/WebsocketService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/ws/WebsocketService.tsx -------------------------------------------------------------------------------- /src/global/ws/WebsocketSubscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/global/ws/WebsocketSubscription.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/krist/api/AuthFailed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/api/AuthFailed.tsx -------------------------------------------------------------------------------- /src/krist/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/api/index.ts -------------------------------------------------------------------------------- /src/krist/api/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/api/login.ts -------------------------------------------------------------------------------- /src/krist/api/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/api/lookup.ts -------------------------------------------------------------------------------- /src/krist/api/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/api/names.ts -------------------------------------------------------------------------------- /src/krist/api/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/api/search.ts -------------------------------------------------------------------------------- /src/krist/api/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/api/transactions.ts -------------------------------------------------------------------------------- /src/krist/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/api/types.ts -------------------------------------------------------------------------------- /src/krist/contacts/Contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/contacts/Contact.ts -------------------------------------------------------------------------------- /src/krist/contacts/contactStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/contacts/contactStorage.ts -------------------------------------------------------------------------------- /src/krist/contacts/functions/addContact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/contacts/functions/addContact.ts -------------------------------------------------------------------------------- /src/krist/contacts/functions/editContact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/contacts/functions/editContact.ts -------------------------------------------------------------------------------- /src/krist/contacts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/contacts/index.ts -------------------------------------------------------------------------------- /src/krist/contacts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/contacts/utils.ts -------------------------------------------------------------------------------- /src/krist/wallets/Wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/Wallet.ts -------------------------------------------------------------------------------- /src/krist/wallets/functions/addWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/functions/addWallet.ts -------------------------------------------------------------------------------- /src/krist/wallets/functions/decryptWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/functions/decryptWallet.ts -------------------------------------------------------------------------------- /src/krist/wallets/functions/editWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/functions/editWallet.ts -------------------------------------------------------------------------------- /src/krist/wallets/functions/recalculateWallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/functions/recalculateWallets.ts -------------------------------------------------------------------------------- /src/krist/wallets/functions/resetMasterPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/functions/resetMasterPassword.ts -------------------------------------------------------------------------------- /src/krist/wallets/functions/syncWallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/functions/syncWallets.ts -------------------------------------------------------------------------------- /src/krist/wallets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/index.ts -------------------------------------------------------------------------------- /src/krist/wallets/masterPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/masterPassword.ts -------------------------------------------------------------------------------- /src/krist/wallets/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/utils.ts -------------------------------------------------------------------------------- /src/krist/wallets/walletFormats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/walletFormats.ts -------------------------------------------------------------------------------- /src/krist/wallets/walletStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/krist/wallets/walletStorage.ts -------------------------------------------------------------------------------- /src/layout/AppLayout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/AppLayout.less -------------------------------------------------------------------------------- /src/layout/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/AppLayout.tsx -------------------------------------------------------------------------------- /src/layout/PageLayout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/PageLayout.less -------------------------------------------------------------------------------- /src/layout/PageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/PageLayout.tsx -------------------------------------------------------------------------------- /src/layout/nav/AppHeader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/nav/AppHeader.less -------------------------------------------------------------------------------- /src/layout/nav/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/nav/AppHeader.tsx -------------------------------------------------------------------------------- /src/layout/nav/Brand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/nav/Brand.tsx -------------------------------------------------------------------------------- /src/layout/nav/ConnectionIndicator.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/nav/ConnectionIndicator.less -------------------------------------------------------------------------------- /src/layout/nav/ConnectionIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/nav/ConnectionIndicator.tsx -------------------------------------------------------------------------------- /src/layout/nav/CymbalIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/nav/CymbalIndicator.tsx -------------------------------------------------------------------------------- /src/layout/nav/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/nav/Search.tsx -------------------------------------------------------------------------------- /src/layout/nav/SearchResults.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/nav/SearchResults.less -------------------------------------------------------------------------------- /src/layout/nav/SearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/nav/SearchResults.tsx -------------------------------------------------------------------------------- /src/layout/nav/TopMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/nav/TopMenu.tsx -------------------------------------------------------------------------------- /src/layout/sidebar/ServiceWorkerCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/sidebar/ServiceWorkerCheck.tsx -------------------------------------------------------------------------------- /src/layout/sidebar/Sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/sidebar/Sidebar.less -------------------------------------------------------------------------------- /src/layout/sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/layout/sidebar/SidebarFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/sidebar/SidebarFooter.tsx -------------------------------------------------------------------------------- /src/layout/sidebar/SidebarTotalBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/layout/sidebar/SidebarTotalBalance.tsx -------------------------------------------------------------------------------- /src/pages/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/NotFoundPage.tsx -------------------------------------------------------------------------------- /src/pages/addresses/AddressButtonRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/addresses/AddressButtonRow.tsx -------------------------------------------------------------------------------- /src/pages/addresses/AddressNamesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/addresses/AddressNamesCard.tsx -------------------------------------------------------------------------------- /src/pages/addresses/AddressPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/addresses/AddressPage.less -------------------------------------------------------------------------------- /src/pages/addresses/AddressPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/addresses/AddressPage.tsx -------------------------------------------------------------------------------- /src/pages/addresses/AddressTransactionsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/addresses/AddressTransactionsCard.tsx -------------------------------------------------------------------------------- /src/pages/addresses/NameItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/addresses/NameItem.tsx -------------------------------------------------------------------------------- /src/pages/backup/BackupResultsSummary.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/BackupResultsSummary.less -------------------------------------------------------------------------------- /src/pages/backup/BackupResultsSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/BackupResultsSummary.tsx -------------------------------------------------------------------------------- /src/pages/backup/BackupResultsTree.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/BackupResultsTree.less -------------------------------------------------------------------------------- /src/pages/backup/BackupResultsTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/BackupResultsTree.tsx -------------------------------------------------------------------------------- /src/pages/backup/ExportBackupModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/ExportBackupModal.tsx -------------------------------------------------------------------------------- /src/pages/backup/ImportBackupForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/ImportBackupForm.tsx -------------------------------------------------------------------------------- /src/pages/backup/ImportBackupModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/ImportBackupModal.tsx -------------------------------------------------------------------------------- /src/pages/backup/ImportDetectFormat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/ImportDetectFormat.tsx -------------------------------------------------------------------------------- /src/pages/backup/ImportFileButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/ImportFileButton.tsx -------------------------------------------------------------------------------- /src/pages/backup/ImportProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/ImportProgress.tsx -------------------------------------------------------------------------------- /src/pages/backup/backupExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/backupExport.ts -------------------------------------------------------------------------------- /src/pages/backup/backupFormats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/backupFormats.ts -------------------------------------------------------------------------------- /src/pages/backup/backupImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/backupImport.ts -------------------------------------------------------------------------------- /src/pages/backup/backupImportUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/backupImportUtils.ts -------------------------------------------------------------------------------- /src/pages/backup/backupImportV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/backupImportV1.ts -------------------------------------------------------------------------------- /src/pages/backup/backupImportV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/backupImportV2.ts -------------------------------------------------------------------------------- /src/pages/backup/backupParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/backupParser.ts -------------------------------------------------------------------------------- /src/pages/backup/backupResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/backup/backupResults.ts -------------------------------------------------------------------------------- /src/pages/blocks/BlockHash.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/blocks/BlockHash.less -------------------------------------------------------------------------------- /src/pages/blocks/BlockHash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/blocks/BlockHash.tsx -------------------------------------------------------------------------------- /src/pages/blocks/BlockMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/blocks/BlockMobileItem.tsx -------------------------------------------------------------------------------- /src/pages/blocks/BlockPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/blocks/BlockPage.less -------------------------------------------------------------------------------- /src/pages/blocks/BlockPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/blocks/BlockPage.tsx -------------------------------------------------------------------------------- /src/pages/blocks/BlocksPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/blocks/BlocksPage.less -------------------------------------------------------------------------------- /src/pages/blocks/BlocksPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/blocks/BlocksPage.tsx -------------------------------------------------------------------------------- /src/pages/blocks/BlocksTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/blocks/BlocksTable.tsx -------------------------------------------------------------------------------- /src/pages/contacts/AddContactModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/contacts/AddContactModal.tsx -------------------------------------------------------------------------------- /src/pages/contacts/ContactActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/contacts/ContactActions.tsx -------------------------------------------------------------------------------- /src/pages/contacts/ContactEditButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/contacts/ContactEditButton.tsx -------------------------------------------------------------------------------- /src/pages/contacts/ContactMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/contacts/ContactMobileItem.tsx -------------------------------------------------------------------------------- /src/pages/contacts/ContactsMobileItemActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/contacts/ContactsMobileItemActions.tsx -------------------------------------------------------------------------------- /src/pages/contacts/ContactsPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/contacts/ContactsPage.less -------------------------------------------------------------------------------- /src/pages/contacts/ContactsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/contacts/ContactsPage.tsx -------------------------------------------------------------------------------- /src/pages/contacts/ContactsPageActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/contacts/ContactsPageActions.tsx -------------------------------------------------------------------------------- /src/pages/contacts/ContactsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/contacts/ContactsTable.tsx -------------------------------------------------------------------------------- /src/pages/credits/CreditsPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/credits/CreditsPage.less -------------------------------------------------------------------------------- /src/pages/credits/CreditsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/credits/CreditsPage.tsx -------------------------------------------------------------------------------- /src/pages/credits/Privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/credits/Privacy.tsx -------------------------------------------------------------------------------- /src/pages/credits/Supporters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/credits/Supporters.tsx -------------------------------------------------------------------------------- /src/pages/credits/Translators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/credits/Translators.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/BlockDifficultyCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/BlockDifficultyCard.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/BlockValueCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/BlockValueCard.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/DashboardPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/DashboardPage.less -------------------------------------------------------------------------------- /src/pages/dashboard/DashboardPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/DashboardPage.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/InDevBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/InDevBanner.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/MOTDCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/MOTDCard.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/TipsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/TipsCard.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/TransactionsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/TransactionsCard.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/WalletItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/WalletItem.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/WalletOverviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/WalletOverviewCard.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/WhatsNewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dashboard/WhatsNewCard.tsx -------------------------------------------------------------------------------- /src/pages/dev/DevPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/dev/DevPage.tsx -------------------------------------------------------------------------------- /src/pages/names/NameButtonRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/NameButtonRow.tsx -------------------------------------------------------------------------------- /src/pages/names/NameMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/NameMobileItem.tsx -------------------------------------------------------------------------------- /src/pages/names/NameMobileItemActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/NameMobileItemActions.tsx -------------------------------------------------------------------------------- /src/pages/names/NamePage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/NamePage.less -------------------------------------------------------------------------------- /src/pages/names/NamePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/NamePage.tsx -------------------------------------------------------------------------------- /src/pages/names/NameTransactionsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/NameTransactionsCard.tsx -------------------------------------------------------------------------------- /src/pages/names/NamesPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/NamesPage.less -------------------------------------------------------------------------------- /src/pages/names/NamesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/NamesPage.tsx -------------------------------------------------------------------------------- /src/pages/names/NamesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/NamesTable.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/ConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/ConfirmModal.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/EditProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/EditProgress.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/NameActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/NameActions.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/NameDataInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/NameDataInput.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/NameEditForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/NameEditForm.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/NameEditModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/NameEditModal.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/NameEditModalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/NameEditModalLink.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/NamePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/NamePicker.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/NamePurchaseModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/NamePurchaseModal.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/NamePurchaseModalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/NamePurchaseModalLink.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/NoNamesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/NoNamesModal.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/SuccessNotifContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/SuccessNotifContent.tsx -------------------------------------------------------------------------------- /src/pages/names/mgmt/checkName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/checkName.ts -------------------------------------------------------------------------------- /src/pages/names/mgmt/handleErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/handleErrors.ts -------------------------------------------------------------------------------- /src/pages/names/mgmt/lookupNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/mgmt/lookupNames.ts -------------------------------------------------------------------------------- /src/pages/names/tableLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/names/tableLock.ts -------------------------------------------------------------------------------- /src/pages/settings/SettingBoolean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/SettingBoolean.tsx -------------------------------------------------------------------------------- /src/pages/settings/SettingDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/SettingDescription.tsx -------------------------------------------------------------------------------- /src/pages/settings/SettingInteger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/SettingInteger.tsx -------------------------------------------------------------------------------- /src/pages/settings/SettingLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/SettingLink.tsx -------------------------------------------------------------------------------- /src/pages/settings/SettingsGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/SettingsGroup.tsx -------------------------------------------------------------------------------- /src/pages/settings/SettingsPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/SettingsPage.less -------------------------------------------------------------------------------- /src/pages/settings/SettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/SettingsPage.tsx -------------------------------------------------------------------------------- /src/pages/settings/manage/ResetMasterPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/manage/ResetMasterPassword.tsx -------------------------------------------------------------------------------- /src/pages/settings/manage/SettingsManage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/manage/SettingsManage.tsx -------------------------------------------------------------------------------- /src/pages/settings/translations/LanguageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/translations/LanguageItem.tsx -------------------------------------------------------------------------------- /src/pages/settings/translations/LanguagesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/translations/LanguagesTable.tsx -------------------------------------------------------------------------------- /src/pages/settings/translations/MissingKeysTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/translations/MissingKeysTable.tsx -------------------------------------------------------------------------------- /src/pages/settings/translations/SettingsTranslations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/translations/SettingsTranslations.tsx -------------------------------------------------------------------------------- /src/pages/settings/translations/analyseLangs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/translations/analyseLangs.ts -------------------------------------------------------------------------------- /src/pages/settings/translations/exportCSV.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/translations/exportCSV.ts -------------------------------------------------------------------------------- /src/pages/settings/translations/importJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/settings/translations/importJSON.ts -------------------------------------------------------------------------------- /src/pages/transactions/TransactionMetadataCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/TransactionMetadataCard.tsx -------------------------------------------------------------------------------- /src/pages/transactions/TransactionPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/TransactionPage.less -------------------------------------------------------------------------------- /src/pages/transactions/TransactionPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/TransactionPage.tsx -------------------------------------------------------------------------------- /src/pages/transactions/TransactionRawDataCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/TransactionRawDataCard.tsx -------------------------------------------------------------------------------- /src/pages/transactions/TransactionsPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/TransactionsPage.less -------------------------------------------------------------------------------- /src/pages/transactions/TransactionsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/TransactionsPage.tsx -------------------------------------------------------------------------------- /src/pages/transactions/TransactionsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/TransactionsTable.tsx -------------------------------------------------------------------------------- /src/pages/transactions/request/RequestForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/request/RequestForm.tsx -------------------------------------------------------------------------------- /src/pages/transactions/request/RequestPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/request/RequestPage.less -------------------------------------------------------------------------------- /src/pages/transactions/request/RequestPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/request/RequestPage.tsx -------------------------------------------------------------------------------- /src/pages/transactions/send/QueryParamsHook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/send/QueryParamsHook.tsx -------------------------------------------------------------------------------- /src/pages/transactions/send/SendTransactionConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/send/SendTransactionConfirmModal.tsx -------------------------------------------------------------------------------- /src/pages/transactions/send/SendTransactionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/send/SendTransactionForm.tsx -------------------------------------------------------------------------------- /src/pages/transactions/send/SendTransactionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/send/SendTransactionModal.tsx -------------------------------------------------------------------------------- /src/pages/transactions/send/SendTransactionPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/send/SendTransactionPage.less -------------------------------------------------------------------------------- /src/pages/transactions/send/SendTransactionPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/send/SendTransactionPage.tsx -------------------------------------------------------------------------------- /src/pages/transactions/send/Success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/send/Success.tsx -------------------------------------------------------------------------------- /src/pages/transactions/send/handleErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/transactions/send/handleErrors.ts -------------------------------------------------------------------------------- /src/pages/wallets/AddWalletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/AddWalletModal.tsx -------------------------------------------------------------------------------- /src/pages/wallets/ManageBackupsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/ManageBackupsDropdown.tsx -------------------------------------------------------------------------------- /src/pages/wallets/NoWalletsMobileResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/NoWalletsMobileResult.tsx -------------------------------------------------------------------------------- /src/pages/wallets/WalletActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/WalletActions.tsx -------------------------------------------------------------------------------- /src/pages/wallets/WalletEditButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/WalletEditButton.tsx -------------------------------------------------------------------------------- /src/pages/wallets/WalletMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/WalletMobileItem.tsx -------------------------------------------------------------------------------- /src/pages/wallets/WalletMobileItemActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/WalletMobileItemActions.tsx -------------------------------------------------------------------------------- /src/pages/wallets/WalletsPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/WalletsPage.less -------------------------------------------------------------------------------- /src/pages/wallets/WalletsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/WalletsPage.tsx -------------------------------------------------------------------------------- /src/pages/wallets/WalletsPageActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/WalletsPageActions.tsx -------------------------------------------------------------------------------- /src/pages/wallets/WalletsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/WalletsTable.tsx -------------------------------------------------------------------------------- /src/pages/wallets/info/BooleanText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/info/BooleanText.tsx -------------------------------------------------------------------------------- /src/pages/wallets/info/DecryptReveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/info/DecryptReveal.tsx -------------------------------------------------------------------------------- /src/pages/wallets/info/WalletDescAdvancedInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/info/WalletDescAdvancedInfo.tsx -------------------------------------------------------------------------------- /src/pages/wallets/info/WalletDescBasicInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/info/WalletDescBasicInfo.tsx -------------------------------------------------------------------------------- /src/pages/wallets/info/WalletDescSyncedInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/info/WalletDescSyncedInfo.tsx -------------------------------------------------------------------------------- /src/pages/wallets/info/WalletInfoModal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/info/WalletInfoModal.less -------------------------------------------------------------------------------- /src/pages/wallets/info/WalletInfoModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/wallets/info/WalletInfoModal.tsx -------------------------------------------------------------------------------- /src/pages/whatsnew/CommitsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/whatsnew/CommitsCard.tsx -------------------------------------------------------------------------------- /src/pages/whatsnew/WhatsNewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/whatsnew/WhatsNewCard.tsx -------------------------------------------------------------------------------- /src/pages/whatsnew/WhatsNewPage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/whatsnew/WhatsNewPage.less -------------------------------------------------------------------------------- /src/pages/whatsnew/WhatsNewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/whatsnew/WhatsNewPage.tsx -------------------------------------------------------------------------------- /src/pages/whatsnew/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/pages/whatsnew/types.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/service-worker.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/store/actions/ContactsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/actions/ContactsActions.ts -------------------------------------------------------------------------------- /src/store/actions/MasterPasswordActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/actions/MasterPasswordActions.ts -------------------------------------------------------------------------------- /src/store/actions/MiscActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/actions/MiscActions.ts -------------------------------------------------------------------------------- /src/store/actions/NodeActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/actions/NodeActions.ts -------------------------------------------------------------------------------- /src/store/actions/SettingsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/actions/SettingsActions.ts -------------------------------------------------------------------------------- /src/store/actions/WalletsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/actions/WalletsActions.ts -------------------------------------------------------------------------------- /src/store/actions/WebsocketActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/actions/WebsocketActions.ts -------------------------------------------------------------------------------- /src/store/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/actions/index.ts -------------------------------------------------------------------------------- /src/store/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/constants.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/init.ts -------------------------------------------------------------------------------- /src/store/reducers/ContactsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/reducers/ContactsReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/MasterPasswordReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/reducers/MasterPasswordReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/MiscReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/reducers/MiscReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/NodeReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/reducers/NodeReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/RootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/reducers/RootReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/SettingsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/reducers/SettingsReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/WalletsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/reducers/WalletsReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/WebsocketReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/reducers/WebsocketReducer.ts -------------------------------------------------------------------------------- /src/store/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/store/types.d.ts -------------------------------------------------------------------------------- /src/style/card.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/style/card.less -------------------------------------------------------------------------------- /src/style/components.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/style/components.less -------------------------------------------------------------------------------- /src/style/table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/style/table.less -------------------------------------------------------------------------------- /src/style/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/style/theme.less -------------------------------------------------------------------------------- /src/utils/consoleWarning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/consoleWarning.ts -------------------------------------------------------------------------------- /src/utils/crypto/CryptoJS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/crypto/CryptoJS.ts -------------------------------------------------------------------------------- /src/utils/crypto/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/crypto/crypto.ts -------------------------------------------------------------------------------- /src/utils/crypto/generatePassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/crypto/generatePassword.ts -------------------------------------------------------------------------------- /src/utils/crypto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/crypto/index.ts -------------------------------------------------------------------------------- /src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/errors.ts -------------------------------------------------------------------------------- /src/utils/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/hooks/index.ts -------------------------------------------------------------------------------- /src/utils/hooks/useBreakpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/hooks/useBreakpoint.ts -------------------------------------------------------------------------------- /src/utils/hooks/useHistoryState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/hooks/useHistoryState.ts -------------------------------------------------------------------------------- /src/utils/hooks/useMountEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/hooks/useMountEffect.ts -------------------------------------------------------------------------------- /src/utils/i18n/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/i18n/errors.ts -------------------------------------------------------------------------------- /src/utils/i18n/fns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/i18n/fns.ts -------------------------------------------------------------------------------- /src/utils/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/i18n/index.ts -------------------------------------------------------------------------------- /src/utils/i18n/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/i18n/init.ts -------------------------------------------------------------------------------- /src/utils/i18n/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/i18n/languages.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/krist/addressAlgo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/krist/addressAlgo.ts -------------------------------------------------------------------------------- /src/utils/krist/commonmeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/krist/commonmeta.ts -------------------------------------------------------------------------------- /src/utils/krist/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/krist/currency.ts -------------------------------------------------------------------------------- /src/utils/krist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/krist/index.ts -------------------------------------------------------------------------------- /src/utils/misc/credits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/misc/credits.ts -------------------------------------------------------------------------------- /src/utils/misc/devState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/misc/devState.ts -------------------------------------------------------------------------------- /src/utils/misc/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/misc/math.ts -------------------------------------------------------------------------------- /src/utils/misc/promiseThrottle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/misc/promiseThrottle.ts -------------------------------------------------------------------------------- /src/utils/misc/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/misc/sort.ts -------------------------------------------------------------------------------- /src/utils/serviceWorkerRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/serviceWorkerRegistration.ts -------------------------------------------------------------------------------- /src/utils/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/settings.ts -------------------------------------------------------------------------------- /src/utils/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/setup.ts -------------------------------------------------------------------------------- /src/utils/table/SortModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/table/SortModal.tsx -------------------------------------------------------------------------------- /src/utils/table/mobileList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/table/mobileList.tsx -------------------------------------------------------------------------------- /src/utils/table/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/src/utils/table/table.tsx -------------------------------------------------------------------------------- /tools/addLanguages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/tools/addLanguages.js -------------------------------------------------------------------------------- /tools/commitLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/tools/commitLog.js -------------------------------------------------------------------------------- /tsconfig.extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/tsconfig.extend.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/react-timeago/lib/formatters/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/typings/react-timeago/lib/formatters/index.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpim/KristWeb2/HEAD/yarn.lock --------------------------------------------------------------------------------