├── .commitlintrc ├── .crowdin.yml ├── .devcontainer ├── Dockerfile-headless ├── Dockerfile-ui ├── README.md └── devcontainer.json ├── .editorconfig ├── .electronbuildrc ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .i18next-scanner.js ├── .lintstagedrc ├── .prettierignore ├── .prettierrc ├── .renovaterc ├── .rescriptsrc.js ├── .stylelintrc ├── .testcafe-electron-rc ├── .versionrc ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── TODO.md ├── assets ├── icon.icns ├── icon.ico ├── icon.png ├── icons │ ├── 1024x1024.png │ ├── 128x128.png │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 512x512.png │ ├── 64x64.png │ ├── 96x96.png │ └── tray │ │ ├── 1024x1024-dark.png │ │ ├── 1024x1024-light.png │ │ ├── 16x16Template.png │ │ ├── minimize │ │ ├── 16x16Template.png │ │ ├── 16x16icon-dark.png │ │ ├── 16x16icon-light.png │ │ ├── 96x96icon-dark.png │ │ └── 96x96icon-light.png │ │ ├── quit │ │ ├── 16x16Template.png │ │ ├── 16x16icon-dark.png │ │ ├── 16x16icon-light.png │ │ ├── 96x96icon-dark.png │ │ └── 96x96icon-light.png │ │ └── show │ │ ├── 16x16Template.png │ │ ├── 16x16icon-dark.png │ │ ├── 16x16icon-light.png │ │ ├── 96x96icon-dark.png │ │ └── 96x96icon-light.png └── screen.png ├── docker ├── README.md ├── bitcoind │ ├── Dockerfile │ ├── bashrc │ └── docker-entrypoint.sh ├── clightning │ ├── Dockerfile │ ├── bashrc │ └── docker-entrypoint.sh ├── eclair │ ├── Dockerfile │ ├── bashrc │ └── docker-entrypoint.sh ├── litd │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── src.Dockerfile ├── lnd │ ├── Dockerfile │ ├── bashrc │ └── docker-entrypoint.sh ├── nodes.json ├── simln │ ├── Dockerfile │ └── docker-entrypoint.sh └── tapd │ ├── Dockerfile │ ├── docker-entrypoint.sh │ └── src.Dockerfile ├── docs └── custom-nodes.md ├── e2e ├── App.e2e.ts ├── Home.e2e.ts ├── Import.e2e.ts ├── Network.e2e.ts ├── helpers │ └── index.ts └── pages │ ├── App.ts │ ├── Home.ts │ ├── NetworkView.ts │ ├── NewNetwork.ts │ └── index.ts ├── electron ├── appIpcListener.ts ├── appMenu.ts ├── constants.ts ├── hacks │ └── windows.ts ├── httpProxy.ts ├── index.ts ├── litd │ └── litdProxyServer.ts ├── lnd │ └── lndProxyServer.ts ├── tapd │ └── tapdProxyServer.ts ├── trayManager.ts ├── tsconfig.json ├── utils │ └── zip.ts └── windowManager.ts ├── examples └── typescript │ └── lnd │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ ├── config.ts │ ├── index.ts │ ├── nodeHandler.ts │ └── utils.ts │ ├── tsconfig.json │ └── yarn.lock ├── package.json ├── patches └── protobufjs+7.3.0.patch ├── public ├── dev.js ├── favicon.ico ├── index.html └── manifest.json ├── src ├── __mocks__ │ ├── archiver.js │ ├── copy-to-clipboard.js │ ├── detect-port.js │ ├── docker-compose.js │ ├── electron-log.js │ ├── electron.js │ ├── fs-extra.js │ ├── react-router-transition.js │ └── unzipper.js ├── components │ ├── App.spec.tsx │ ├── App.tsx │ ├── common │ │ ├── AdvancedOptionsButton.tsx │ │ ├── AdvancedOptionsModal.spec.tsx │ │ ├── AdvancedOptionsModal.tsx │ │ ├── AssetAmount.tsx │ │ ├── BalanceChannelsButton.spec.tsx │ │ ├── BalanceChannelsButton.tsx │ │ ├── BalanceChannelsModal.spec.tsx │ │ ├── BalanceChannelsModal.tsx │ │ ├── CopyIcon.spec.tsx │ │ ├── CopyIcon.tsx │ │ ├── DetailsList.spec.tsx │ │ ├── DetailsList.tsx │ │ ├── DockerContainerShutdown.spec.tsx │ │ ├── DockerContainerShutdown.tsx │ │ ├── ImageUpdatesModal.spec.tsx │ │ ├── ImageUpdatesModal.tsx │ │ ├── Loader.spec.tsx │ │ ├── Loader.tsx │ │ ├── NavMenu.spec.tsx │ │ ├── NavMenu.tsx │ │ ├── RemoveNode.spec.tsx │ │ ├── RemoveNode.tsx │ │ ├── RenameNodeButton.tsx │ │ ├── RenameNodeModal.spec.tsx │ │ ├── RenameNodeModal.tsx │ │ ├── RestartNode.spec.tsx │ │ ├── RestartNode.tsx │ │ ├── StatusBadge.spec.tsx │ │ ├── StatusBadge.tsx │ │ ├── StatusButton.spec.tsx │ │ ├── StatusButton.tsx │ │ ├── StatusTag.spec.tsx │ │ ├── StatusTag.tsx │ │ ├── form │ │ │ ├── CopyableInput.spec.tsx │ │ │ ├── CopyableInput.tsx │ │ │ ├── DockerCommandInput.spec.tsx │ │ │ ├── DockerCommandInput.tsx │ │ │ ├── DockerImageInput.spec.tsx │ │ │ ├── DockerImageInput.tsx │ │ │ ├── LightningNodeSelect.spec.tsx │ │ │ ├── LightningNodeSelect.tsx │ │ │ ├── TapAssetSelect.tsx │ │ │ ├── TapDataSelect.spec.tsx │ │ │ ├── TapDataSelect.tsx │ │ │ ├── TapNodeSelect.spec.tsx │ │ │ └── TapNodeSelect.tsx │ │ └── index.ts │ ├── designer │ │ ├── AutoMineButton.spec.tsx │ │ ├── AutoMineButton.tsx │ │ ├── LinkContextMenu.spec.tsx │ │ ├── LinkContextMenu.tsx │ │ ├── NetworkDesigner.spec.tsx │ │ ├── NetworkDesigner.tsx │ │ ├── NodeContextMenu.spec.tsx │ │ ├── NodeContextMenu.tsx │ │ ├── Sidebar.spec.tsx │ │ ├── Sidebar.tsx │ │ ├── SidebarCard.tsx │ │ ├── SyncButton.tsx │ │ ├── bitcoin │ │ │ ├── ActionsTab.tsx │ │ │ ├── BitcoinDetails.spec.tsx │ │ │ ├── BitcoinDetails.tsx │ │ │ ├── ConnectTab.tsx │ │ │ ├── InfoTab.tsx │ │ │ └── actions │ │ │ │ ├── MineBlocksInput.spec.tsx │ │ │ │ ├── MineBlocksInput.tsx │ │ │ │ ├── SendOnChainButton.tsx │ │ │ │ ├── SendOnChainModal.spec.tsx │ │ │ │ └── SendOnChainModal.tsx │ │ ├── custom │ │ │ ├── CanvasOuter.tsx │ │ │ ├── Link.tsx │ │ │ ├── NodeInner.tsx │ │ │ ├── Port.tsx │ │ │ ├── Ports.tsx │ │ │ ├── PortsGroup.tsx │ │ │ └── index.ts │ │ ├── default │ │ │ ├── AddSimulationModal.spec.tsx │ │ │ ├── AddSimulationModal.tsx │ │ │ ├── DefaultSidebar.spec.tsx │ │ │ ├── DefaultSidebar.tsx │ │ │ ├── DraggableNode.tsx │ │ │ ├── NetworkDesignerTab.tsx │ │ │ ├── SimulationDesignerTab.spec.tsx │ │ │ └── SimulationDesignerTab.tsx │ │ ├── lightning │ │ │ ├── ActionsTab.tsx │ │ │ ├── ConnectTab.tsx │ │ │ ├── InfoTab.tsx │ │ │ ├── LightningDetails.spec.tsx │ │ │ ├── LightningDetails.tsx │ │ │ ├── actions │ │ │ │ ├── ChangeBackendModal.spec.tsx │ │ │ │ ├── ChangeBackendModal.tsx │ │ │ │ ├── CreateInvoiceModal.spec.tsx │ │ │ │ ├── CreateInvoiceModal.tsx │ │ │ │ ├── Deposit.spec.tsx │ │ │ │ ├── Deposit.tsx │ │ │ │ ├── OpenChannelButtons.tsx │ │ │ │ ├── OpenChannelModal.spec.tsx │ │ │ │ ├── OpenChannelModal.tsx │ │ │ │ ├── PayInvoiceModal.spec.tsx │ │ │ │ ├── PayInvoiceModal.tsx │ │ │ │ ├── PaymentButtons.tsx │ │ │ │ └── index.ts │ │ │ └── connect │ │ │ │ ├── BasicAuth.tsx │ │ │ │ ├── EncodedStrings.spec.tsx │ │ │ │ ├── EncodedStrings.tsx │ │ │ │ ├── FilePaths.tsx │ │ │ │ ├── LncAddSessionModal.spec.tsx │ │ │ │ ├── LncAddSessionModal.tsx │ │ │ │ ├── LncRevokeButton.tsx │ │ │ │ ├── LncSessionDrawer.spec.tsx │ │ │ │ ├── LncSessionDrawer.tsx │ │ │ │ ├── LncSessionsList.tsx │ │ │ │ ├── LndConnect.tsx │ │ │ │ └── index.ts │ │ ├── link │ │ │ ├── Backend.spec.tsx │ │ │ ├── Backend.tsx │ │ │ ├── ChangeBackendButton.tsx │ │ │ ├── ChangeTapBackendButton.tsx │ │ │ ├── Channel.spec.tsx │ │ │ ├── Channel.tsx │ │ │ ├── CloseChannelButton.tsx │ │ │ ├── LinkDetails.spec.tsx │ │ │ ├── LinkDetails.tsx │ │ │ ├── Peer.spec.tsx │ │ │ ├── Peer.tsx │ │ │ ├── TapBackend.spec.tsx │ │ │ └── TapBackend.tsx │ │ └── tap │ │ │ ├── ActionsTab.tsx │ │ │ ├── ConnectTab.tsx │ │ │ ├── InfoTab.tsx │ │ │ ├── TapDetails.tsx │ │ │ ├── TapNodeDetails.spec.tsx │ │ │ ├── actions │ │ │ ├── ChangeTapBackendModal.spec.tsx │ │ │ ├── ChangeTapBackendModal.tsx │ │ │ ├── MintAssetButton.tsx │ │ │ ├── MintAssetModal.spec.tsx │ │ │ ├── MintAssetModal.tsx │ │ │ ├── NewAddressButton.tsx │ │ │ ├── NewAddressModal.spec.tsx │ │ │ ├── NewAddressModal.tsx │ │ │ ├── SendAssetButton.tsx │ │ │ ├── SendAssetModal.spec.tsx │ │ │ ├── SendAssetModal.tsx │ │ │ └── index.ts │ │ │ └── info │ │ │ ├── AssetInfoDrawer.tsx │ │ │ └── AssetsList.tsx │ ├── dockerLogs │ │ ├── DockerLogs.tsx │ │ ├── ViewLogsButton.spec.tsx │ │ ├── ViewLogsButton.tsx │ │ └── index.ts │ ├── home │ │ ├── DetectDockerModal.spec.tsx │ │ ├── DetectDockerModal.tsx │ │ ├── GetStarted.tsx │ │ ├── Home.spec.tsx │ │ ├── Home.tsx │ │ ├── NetworkCard.spec.tsx │ │ ├── NetworkCard.tsx │ │ └── index.ts │ ├── layouts │ │ ├── AppLayout.spec.tsx │ │ ├── AppLayout.tsx │ │ ├── CheckForUpdatesButton.tsx │ │ ├── DockerStatus.spec.tsx │ │ ├── DockerStatus.tsx │ │ ├── LocaleSwitch.tsx │ │ ├── ThemeSwitch.tsx │ │ └── index.ts │ ├── network │ │ ├── ImportNetwork.spec.tsx │ │ ├── ImportNetwork.tsx │ │ ├── NetworkActions.spec.tsx │ │ ├── NetworkActions.tsx │ │ ├── NetworkSetting.spec.tsx │ │ ├── NetworkSetting.tsx │ │ ├── NetworkView.spec.tsx │ │ ├── NetworkView.tsx │ │ ├── NewNetwork.spec.tsx │ │ ├── NewNetwork.tsx │ │ └── index.ts │ ├── nodeImages │ │ ├── CommandVariables.tsx │ │ ├── CustomImageModal.spec.tsx │ │ ├── CustomImageModal.tsx │ │ ├── CustomImagesTable.spec.tsx │ │ ├── CustomImagesTable.tsx │ │ ├── ManagedImageModal.spec.tsx │ │ ├── ManagedImageModal.tsx │ │ ├── ManagedImagesTable.spec.tsx │ │ ├── ManagedImagesTable.tsx │ │ ├── NodeImagesView.spec.tsx │ │ ├── NodeImagesView.tsx │ │ └── index.ts │ ├── routing │ │ ├── Routes.spec.tsx │ │ ├── Routes.tsx │ │ ├── Switch.tsx │ │ └── index.ts │ └── terminal │ │ ├── DockerTerminal.tsx │ │ ├── OpenTerminalButton.spec.tsx │ │ ├── OpenTerminalButton.tsx │ │ ├── index.ts │ │ └── themes │ │ ├── index.ts │ │ └── nord.ts ├── hooks │ ├── index.ts │ ├── useDebounce.ts │ ├── useMiningAsync.ts │ ├── usePrefixedTranslation.ts │ └── useTheme.ts ├── i18n │ ├── index.ts │ └── locales │ │ ├── de-DE.json │ │ ├── en-US.json │ │ ├── es-ES.json │ │ ├── fr-FR.json │ │ ├── it-IT.json │ │ ├── ja-JP.json │ │ ├── ko-KR.json │ │ ├── pt-BR.json │ │ ├── ru-RU.json │ │ └── zh-CN.json ├── index.tsx ├── lib │ ├── bitcoin │ │ ├── bitcoinFactory.ts │ │ ├── bitcoind │ │ │ ├── bitcoindService.spec.ts │ │ │ ├── bitcoindService.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── notImplementedService.spec.ts │ │ └── notImplementedService.ts │ ├── docker │ │ ├── composeFile.spec.ts │ │ ├── composeFile.ts │ │ ├── dockerService.spec.ts │ │ ├── dockerService.ts │ │ ├── index.ts │ │ ├── nodeTemplates.spec.ts │ │ ├── nodeTemplates.ts │ │ ├── repoService.spec.ts │ │ └── repoService.ts │ ├── ipc │ │ ├── ipcService.spec.ts │ │ └── ipcService.ts │ ├── lightning │ │ ├── clightning │ │ │ ├── clightningApi.spec.ts │ │ │ ├── clightningApi.ts │ │ │ ├── clightningService.spec.ts │ │ │ ├── clightningService.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── eclair │ │ │ ├── eclairApi.spec.ts │ │ │ ├── eclairApi.ts │ │ │ ├── eclairService.spec.ts │ │ │ ├── eclairService.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── lightningFactory.spec.ts │ │ ├── lightningFactory.ts │ │ ├── lnd │ │ │ ├── index.ts │ │ │ ├── lndProxyClient.spec.ts │ │ │ ├── lndProxyClient.ts │ │ │ ├── lndService.spec.ts │ │ │ ├── lndService.ts │ │ │ └── mappers.ts │ │ ├── notImplementedService.spec.ts │ │ ├── notImplementedService.ts │ │ └── types.ts │ ├── litd │ │ ├── index.ts │ │ ├── litdProxyClient.spec.ts │ │ ├── litdProxyClient.ts │ │ ├── litdService.spec.ts │ │ ├── litdService.ts │ │ └── types.ts │ ├── settings │ │ ├── index.ts │ │ ├── settingsService.spec.ts │ │ └── settingsService.ts │ └── tap │ │ ├── index.ts │ │ ├── tapFactory.spec.ts │ │ ├── tapFactory.ts │ │ ├── tapd │ │ ├── index.ts │ │ ├── tapProxyClient.spec.ts │ │ ├── tapdProxyClient.ts │ │ ├── tapdService.spec.ts │ │ └── tapdService.ts │ │ └── types.ts ├── react-app-env.d.ts ├── resources │ ├── bitcoin.svg │ ├── clightning.png │ ├── eclair.png │ ├── litd.svg │ ├── lnd.png │ ├── logo.png │ ├── logo_bw.png │ └── tap.svg ├── setupTests.js ├── shared │ ├── index.ts │ ├── ipcChannels.ts │ ├── litdDefaults.ts │ ├── lndDefaults.ts │ ├── tapdDefaults.ts │ ├── types.ts │ └── utils.ts ├── store │ ├── index.ts │ └── models │ │ ├── app.spec.ts │ │ ├── app.ts │ │ ├── bitcoin.ts │ │ ├── designer.spec.ts │ │ ├── designer.ts │ │ ├── index.ts │ │ ├── lightning.spec.ts │ │ ├── lightning.ts │ │ ├── lit.spec.ts │ │ ├── lit.ts │ │ ├── modals.ts │ │ ├── network.spec.ts │ │ ├── network.ts │ │ ├── tap.spec.ts │ │ └── tap.ts ├── theme │ ├── README.md │ ├── colors.ts │ ├── dark.less │ └── light.less ├── types │ ├── bitcoin-core.d.ts │ └── index.ts └── utils │ ├── async.spec.ts │ ├── async.ts │ ├── chart.spec.ts │ ├── chart.ts │ ├── config.spec.ts │ ├── config.ts │ ├── constants.ts │ ├── files.spec.ts │ ├── files.ts │ ├── migrations.ts │ ├── names.ts │ ├── network.spec.ts │ ├── network.ts │ ├── numbers.spec.ts │ ├── numbers.ts │ ├── objects.spec.ts │ ├── objects.ts │ ├── strings.spec.ts │ ├── strings.ts │ ├── system.spec.ts │ ├── system.ts │ ├── tests │ ├── helpers.ts │ ├── index.ts │ ├── renderWithProviders.tsx │ └── testStateDefaults.ts │ ├── theme.spec.ts │ ├── theme.ts │ ├── translate.ts │ ├── units.spec.ts │ └── units.ts ├── tsconfig.json ├── wallaby.js └── yarn.lock /.commitlintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.crowdin.yml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile-headless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.devcontainer/Dockerfile-headless -------------------------------------------------------------------------------- /.devcontainer/Dockerfile-ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.devcontainer/Dockerfile-ui -------------------------------------------------------------------------------- /.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.devcontainer/README.md -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.electronbuildrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.electronbuildrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [jamaljsr] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | yarn commitlint --edit $1 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | yarn lint-staged 2 | -------------------------------------------------------------------------------- /.i18next-scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.i18next-scanner.js -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .github -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.prettierrc -------------------------------------------------------------------------------- /.renovaterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.renovaterc -------------------------------------------------------------------------------- /.rescriptsrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.rescriptsrc.js -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.testcafe-electron-rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.testcafe-electron-rc -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.versionrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/RELEASE.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/TODO.md -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/1024x1024.png -------------------------------------------------------------------------------- /assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/128x128.png -------------------------------------------------------------------------------- /assets/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/16x16.png -------------------------------------------------------------------------------- /assets/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/24x24.png -------------------------------------------------------------------------------- /assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/256x256.png -------------------------------------------------------------------------------- /assets/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/32x32.png -------------------------------------------------------------------------------- /assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/48x48.png -------------------------------------------------------------------------------- /assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/512x512.png -------------------------------------------------------------------------------- /assets/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/64x64.png -------------------------------------------------------------------------------- /assets/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/96x96.png -------------------------------------------------------------------------------- /assets/icons/tray/1024x1024-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/1024x1024-dark.png -------------------------------------------------------------------------------- /assets/icons/tray/1024x1024-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/1024x1024-light.png -------------------------------------------------------------------------------- /assets/icons/tray/16x16Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/16x16Template.png -------------------------------------------------------------------------------- /assets/icons/tray/minimize/16x16Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/minimize/16x16Template.png -------------------------------------------------------------------------------- /assets/icons/tray/minimize/16x16icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/minimize/16x16icon-dark.png -------------------------------------------------------------------------------- /assets/icons/tray/minimize/16x16icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/minimize/16x16icon-light.png -------------------------------------------------------------------------------- /assets/icons/tray/minimize/96x96icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/minimize/96x96icon-dark.png -------------------------------------------------------------------------------- /assets/icons/tray/minimize/96x96icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/minimize/96x96icon-light.png -------------------------------------------------------------------------------- /assets/icons/tray/quit/16x16Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/quit/16x16Template.png -------------------------------------------------------------------------------- /assets/icons/tray/quit/16x16icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/quit/16x16icon-dark.png -------------------------------------------------------------------------------- /assets/icons/tray/quit/16x16icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/quit/16x16icon-light.png -------------------------------------------------------------------------------- /assets/icons/tray/quit/96x96icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/quit/96x96icon-dark.png -------------------------------------------------------------------------------- /assets/icons/tray/quit/96x96icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/quit/96x96icon-light.png -------------------------------------------------------------------------------- /assets/icons/tray/show/16x16Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/show/16x16Template.png -------------------------------------------------------------------------------- /assets/icons/tray/show/16x16icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/show/16x16icon-dark.png -------------------------------------------------------------------------------- /assets/icons/tray/show/16x16icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/show/16x16icon-light.png -------------------------------------------------------------------------------- /assets/icons/tray/show/96x96icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/show/96x96icon-dark.png -------------------------------------------------------------------------------- /assets/icons/tray/show/96x96icon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/icons/tray/show/96x96icon-light.png -------------------------------------------------------------------------------- /assets/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/assets/screen.png -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/bitcoind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/bitcoind/Dockerfile -------------------------------------------------------------------------------- /docker/bitcoind/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/bitcoind/bashrc -------------------------------------------------------------------------------- /docker/bitcoind/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/bitcoind/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/clightning/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/clightning/Dockerfile -------------------------------------------------------------------------------- /docker/clightning/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/clightning/bashrc -------------------------------------------------------------------------------- /docker/clightning/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/clightning/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/eclair/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/eclair/Dockerfile -------------------------------------------------------------------------------- /docker/eclair/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/eclair/bashrc -------------------------------------------------------------------------------- /docker/eclair/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/eclair/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/litd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/litd/Dockerfile -------------------------------------------------------------------------------- /docker/litd/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/litd/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/litd/src.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/litd/src.Dockerfile -------------------------------------------------------------------------------- /docker/lnd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/lnd/Dockerfile -------------------------------------------------------------------------------- /docker/lnd/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/lnd/bashrc -------------------------------------------------------------------------------- /docker/lnd/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/lnd/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/nodes.json -------------------------------------------------------------------------------- /docker/simln/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/simln/Dockerfile -------------------------------------------------------------------------------- /docker/simln/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/simln/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/tapd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/tapd/Dockerfile -------------------------------------------------------------------------------- /docker/tapd/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/tapd/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/tapd/src.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docker/tapd/src.Dockerfile -------------------------------------------------------------------------------- /docs/custom-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/docs/custom-nodes.md -------------------------------------------------------------------------------- /e2e/App.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/e2e/App.e2e.ts -------------------------------------------------------------------------------- /e2e/Home.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/e2e/Home.e2e.ts -------------------------------------------------------------------------------- /e2e/Import.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/e2e/Import.e2e.ts -------------------------------------------------------------------------------- /e2e/Network.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/e2e/Network.e2e.ts -------------------------------------------------------------------------------- /e2e/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/e2e/helpers/index.ts -------------------------------------------------------------------------------- /e2e/pages/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/e2e/pages/App.ts -------------------------------------------------------------------------------- /e2e/pages/Home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/e2e/pages/Home.ts -------------------------------------------------------------------------------- /e2e/pages/NetworkView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/e2e/pages/NetworkView.ts -------------------------------------------------------------------------------- /e2e/pages/NewNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/e2e/pages/NewNetwork.ts -------------------------------------------------------------------------------- /e2e/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/e2e/pages/index.ts -------------------------------------------------------------------------------- /electron/appIpcListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/appIpcListener.ts -------------------------------------------------------------------------------- /electron/appMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/appMenu.ts -------------------------------------------------------------------------------- /electron/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/constants.ts -------------------------------------------------------------------------------- /electron/hacks/windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/hacks/windows.ts -------------------------------------------------------------------------------- /electron/httpProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/httpProxy.ts -------------------------------------------------------------------------------- /electron/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/index.ts -------------------------------------------------------------------------------- /electron/litd/litdProxyServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/litd/litdProxyServer.ts -------------------------------------------------------------------------------- /electron/lnd/lndProxyServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/lnd/lndProxyServer.ts -------------------------------------------------------------------------------- /electron/tapd/tapdProxyServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/tapd/tapdProxyServer.ts -------------------------------------------------------------------------------- /electron/trayManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/trayManager.ts -------------------------------------------------------------------------------- /electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/tsconfig.json -------------------------------------------------------------------------------- /electron/utils/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/utils/zip.ts -------------------------------------------------------------------------------- /electron/windowManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/electron/windowManager.ts -------------------------------------------------------------------------------- /examples/typescript/lnd/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/examples/typescript/lnd/.env.example -------------------------------------------------------------------------------- /examples/typescript/lnd/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | .env -------------------------------------------------------------------------------- /examples/typescript/lnd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/examples/typescript/lnd/README.md -------------------------------------------------------------------------------- /examples/typescript/lnd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/examples/typescript/lnd/package.json -------------------------------------------------------------------------------- /examples/typescript/lnd/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/examples/typescript/lnd/src/config.ts -------------------------------------------------------------------------------- /examples/typescript/lnd/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/examples/typescript/lnd/src/index.ts -------------------------------------------------------------------------------- /examples/typescript/lnd/src/nodeHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/examples/typescript/lnd/src/nodeHandler.ts -------------------------------------------------------------------------------- /examples/typescript/lnd/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/examples/typescript/lnd/src/utils.ts -------------------------------------------------------------------------------- /examples/typescript/lnd/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/examples/typescript/lnd/tsconfig.json -------------------------------------------------------------------------------- /examples/typescript/lnd/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/examples/typescript/lnd/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/package.json -------------------------------------------------------------------------------- /patches/protobufjs+7.3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/patches/protobufjs+7.3.0.patch -------------------------------------------------------------------------------- /public/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/public/dev.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/__mocks__/archiver.js: -------------------------------------------------------------------------------- 1 | module.exports = jest.fn(); 2 | -------------------------------------------------------------------------------- /src/__mocks__/copy-to-clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/__mocks__/copy-to-clipboard.js -------------------------------------------------------------------------------- /src/__mocks__/detect-port.js: -------------------------------------------------------------------------------- 1 | export default jest.fn(); 2 | -------------------------------------------------------------------------------- /src/__mocks__/docker-compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/__mocks__/docker-compose.js -------------------------------------------------------------------------------- /src/__mocks__/electron-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/__mocks__/electron-log.js -------------------------------------------------------------------------------- /src/__mocks__/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/__mocks__/electron.js -------------------------------------------------------------------------------- /src/__mocks__/fs-extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/__mocks__/fs-extra.js -------------------------------------------------------------------------------- /src/__mocks__/react-router-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/__mocks__/react-router-transition.js -------------------------------------------------------------------------------- /src/__mocks__/unzipper.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | Extract: jest.fn(), 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/App.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/App.spec.tsx -------------------------------------------------------------------------------- /src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/App.tsx -------------------------------------------------------------------------------- /src/components/common/AdvancedOptionsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/AdvancedOptionsButton.tsx -------------------------------------------------------------------------------- /src/components/common/AdvancedOptionsModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/AdvancedOptionsModal.spec.tsx -------------------------------------------------------------------------------- /src/components/common/AdvancedOptionsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/AdvancedOptionsModal.tsx -------------------------------------------------------------------------------- /src/components/common/AssetAmount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/AssetAmount.tsx -------------------------------------------------------------------------------- /src/components/common/BalanceChannelsButton.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/BalanceChannelsButton.spec.tsx -------------------------------------------------------------------------------- /src/components/common/BalanceChannelsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/BalanceChannelsButton.tsx -------------------------------------------------------------------------------- /src/components/common/BalanceChannelsModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/BalanceChannelsModal.spec.tsx -------------------------------------------------------------------------------- /src/components/common/BalanceChannelsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/BalanceChannelsModal.tsx -------------------------------------------------------------------------------- /src/components/common/CopyIcon.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/CopyIcon.spec.tsx -------------------------------------------------------------------------------- /src/components/common/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/CopyIcon.tsx -------------------------------------------------------------------------------- /src/components/common/DetailsList.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/DetailsList.spec.tsx -------------------------------------------------------------------------------- /src/components/common/DetailsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/DetailsList.tsx -------------------------------------------------------------------------------- /src/components/common/DockerContainerShutdown.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/DockerContainerShutdown.spec.tsx -------------------------------------------------------------------------------- /src/components/common/DockerContainerShutdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/DockerContainerShutdown.tsx -------------------------------------------------------------------------------- /src/components/common/ImageUpdatesModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/ImageUpdatesModal.spec.tsx -------------------------------------------------------------------------------- /src/components/common/ImageUpdatesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/ImageUpdatesModal.tsx -------------------------------------------------------------------------------- /src/components/common/Loader.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/Loader.spec.tsx -------------------------------------------------------------------------------- /src/components/common/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/Loader.tsx -------------------------------------------------------------------------------- /src/components/common/NavMenu.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/NavMenu.spec.tsx -------------------------------------------------------------------------------- /src/components/common/NavMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/NavMenu.tsx -------------------------------------------------------------------------------- /src/components/common/RemoveNode.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/RemoveNode.spec.tsx -------------------------------------------------------------------------------- /src/components/common/RemoveNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/RemoveNode.tsx -------------------------------------------------------------------------------- /src/components/common/RenameNodeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/RenameNodeButton.tsx -------------------------------------------------------------------------------- /src/components/common/RenameNodeModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/RenameNodeModal.spec.tsx -------------------------------------------------------------------------------- /src/components/common/RenameNodeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/RenameNodeModal.tsx -------------------------------------------------------------------------------- /src/components/common/RestartNode.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/RestartNode.spec.tsx -------------------------------------------------------------------------------- /src/components/common/RestartNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/RestartNode.tsx -------------------------------------------------------------------------------- /src/components/common/StatusBadge.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/StatusBadge.spec.tsx -------------------------------------------------------------------------------- /src/components/common/StatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/StatusBadge.tsx -------------------------------------------------------------------------------- /src/components/common/StatusButton.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/StatusButton.spec.tsx -------------------------------------------------------------------------------- /src/components/common/StatusButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/StatusButton.tsx -------------------------------------------------------------------------------- /src/components/common/StatusTag.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/StatusTag.spec.tsx -------------------------------------------------------------------------------- /src/components/common/StatusTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/StatusTag.tsx -------------------------------------------------------------------------------- /src/components/common/form/CopyableInput.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/CopyableInput.spec.tsx -------------------------------------------------------------------------------- /src/components/common/form/CopyableInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/CopyableInput.tsx -------------------------------------------------------------------------------- /src/components/common/form/DockerCommandInput.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/DockerCommandInput.spec.tsx -------------------------------------------------------------------------------- /src/components/common/form/DockerCommandInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/DockerCommandInput.tsx -------------------------------------------------------------------------------- /src/components/common/form/DockerImageInput.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/DockerImageInput.spec.tsx -------------------------------------------------------------------------------- /src/components/common/form/DockerImageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/DockerImageInput.tsx -------------------------------------------------------------------------------- /src/components/common/form/LightningNodeSelect.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/LightningNodeSelect.spec.tsx -------------------------------------------------------------------------------- /src/components/common/form/LightningNodeSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/LightningNodeSelect.tsx -------------------------------------------------------------------------------- /src/components/common/form/TapAssetSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/TapAssetSelect.tsx -------------------------------------------------------------------------------- /src/components/common/form/TapDataSelect.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/TapDataSelect.spec.tsx -------------------------------------------------------------------------------- /src/components/common/form/TapDataSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/TapDataSelect.tsx -------------------------------------------------------------------------------- /src/components/common/form/TapNodeSelect.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/TapNodeSelect.spec.tsx -------------------------------------------------------------------------------- /src/components/common/form/TapNodeSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/form/TapNodeSelect.tsx -------------------------------------------------------------------------------- /src/components/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/common/index.ts -------------------------------------------------------------------------------- /src/components/designer/AutoMineButton.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/AutoMineButton.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/AutoMineButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/AutoMineButton.tsx -------------------------------------------------------------------------------- /src/components/designer/LinkContextMenu.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/LinkContextMenu.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/LinkContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/LinkContextMenu.tsx -------------------------------------------------------------------------------- /src/components/designer/NetworkDesigner.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/NetworkDesigner.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/NetworkDesigner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/NetworkDesigner.tsx -------------------------------------------------------------------------------- /src/components/designer/NodeContextMenu.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/NodeContextMenu.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/NodeContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/NodeContextMenu.tsx -------------------------------------------------------------------------------- /src/components/designer/Sidebar.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/Sidebar.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/designer/SidebarCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/SidebarCard.tsx -------------------------------------------------------------------------------- /src/components/designer/SyncButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/SyncButton.tsx -------------------------------------------------------------------------------- /src/components/designer/bitcoin/ActionsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/bitcoin/ActionsTab.tsx -------------------------------------------------------------------------------- /src/components/designer/bitcoin/BitcoinDetails.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/bitcoin/BitcoinDetails.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/bitcoin/BitcoinDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/bitcoin/BitcoinDetails.tsx -------------------------------------------------------------------------------- /src/components/designer/bitcoin/ConnectTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/bitcoin/ConnectTab.tsx -------------------------------------------------------------------------------- /src/components/designer/bitcoin/InfoTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/bitcoin/InfoTab.tsx -------------------------------------------------------------------------------- /src/components/designer/bitcoin/actions/MineBlocksInput.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/bitcoin/actions/MineBlocksInput.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/bitcoin/actions/MineBlocksInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/bitcoin/actions/MineBlocksInput.tsx -------------------------------------------------------------------------------- /src/components/designer/bitcoin/actions/SendOnChainButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/bitcoin/actions/SendOnChainButton.tsx -------------------------------------------------------------------------------- /src/components/designer/bitcoin/actions/SendOnChainModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/bitcoin/actions/SendOnChainModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/bitcoin/actions/SendOnChainModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/bitcoin/actions/SendOnChainModal.tsx -------------------------------------------------------------------------------- /src/components/designer/custom/CanvasOuter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/custom/CanvasOuter.tsx -------------------------------------------------------------------------------- /src/components/designer/custom/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/custom/Link.tsx -------------------------------------------------------------------------------- /src/components/designer/custom/NodeInner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/custom/NodeInner.tsx -------------------------------------------------------------------------------- /src/components/designer/custom/Port.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/custom/Port.tsx -------------------------------------------------------------------------------- /src/components/designer/custom/Ports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/custom/Ports.tsx -------------------------------------------------------------------------------- /src/components/designer/custom/PortsGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/custom/PortsGroup.tsx -------------------------------------------------------------------------------- /src/components/designer/custom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/custom/index.ts -------------------------------------------------------------------------------- /src/components/designer/default/AddSimulationModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/default/AddSimulationModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/default/AddSimulationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/default/AddSimulationModal.tsx -------------------------------------------------------------------------------- /src/components/designer/default/DefaultSidebar.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/default/DefaultSidebar.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/default/DefaultSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/default/DefaultSidebar.tsx -------------------------------------------------------------------------------- /src/components/designer/default/DraggableNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/default/DraggableNode.tsx -------------------------------------------------------------------------------- /src/components/designer/default/NetworkDesignerTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/default/NetworkDesignerTab.tsx -------------------------------------------------------------------------------- /src/components/designer/default/SimulationDesignerTab.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/default/SimulationDesignerTab.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/default/SimulationDesignerTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/default/SimulationDesignerTab.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/ActionsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/ActionsTab.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/ConnectTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/ConnectTab.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/InfoTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/InfoTab.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/LightningDetails.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/LightningDetails.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/LightningDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/LightningDetails.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/ChangeBackendModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/ChangeBackendModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/ChangeBackendModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/ChangeBackendModal.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/CreateInvoiceModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/CreateInvoiceModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/CreateInvoiceModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/CreateInvoiceModal.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/Deposit.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/Deposit.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/Deposit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/Deposit.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/OpenChannelButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/OpenChannelButtons.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/OpenChannelModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/OpenChannelModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/OpenChannelModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/OpenChannelModal.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/PayInvoiceModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/PayInvoiceModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/PayInvoiceModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/PayInvoiceModal.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/PaymentButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/PaymentButtons.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/actions/index.ts -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/BasicAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/BasicAuth.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/EncodedStrings.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/EncodedStrings.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/EncodedStrings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/EncodedStrings.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/FilePaths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/FilePaths.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/LncAddSessionModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/LncAddSessionModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/LncAddSessionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/LncAddSessionModal.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/LncRevokeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/LncRevokeButton.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/LncSessionDrawer.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/LncSessionDrawer.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/LncSessionDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/LncSessionDrawer.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/LncSessionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/LncSessionsList.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/LndConnect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/LndConnect.tsx -------------------------------------------------------------------------------- /src/components/designer/lightning/connect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/lightning/connect/index.ts -------------------------------------------------------------------------------- /src/components/designer/link/Backend.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/Backend.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/link/Backend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/Backend.tsx -------------------------------------------------------------------------------- /src/components/designer/link/ChangeBackendButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/ChangeBackendButton.tsx -------------------------------------------------------------------------------- /src/components/designer/link/ChangeTapBackendButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/ChangeTapBackendButton.tsx -------------------------------------------------------------------------------- /src/components/designer/link/Channel.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/Channel.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/link/Channel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/Channel.tsx -------------------------------------------------------------------------------- /src/components/designer/link/CloseChannelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/CloseChannelButton.tsx -------------------------------------------------------------------------------- /src/components/designer/link/LinkDetails.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/LinkDetails.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/link/LinkDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/LinkDetails.tsx -------------------------------------------------------------------------------- /src/components/designer/link/Peer.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/Peer.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/link/Peer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/Peer.tsx -------------------------------------------------------------------------------- /src/components/designer/link/TapBackend.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/TapBackend.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/link/TapBackend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/link/TapBackend.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/ActionsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/ActionsTab.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/ConnectTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/ConnectTab.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/InfoTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/InfoTab.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/TapDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/TapDetails.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/TapNodeDetails.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/TapNodeDetails.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/ChangeTapBackendModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/ChangeTapBackendModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/ChangeTapBackendModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/ChangeTapBackendModal.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/MintAssetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/MintAssetButton.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/MintAssetModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/MintAssetModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/MintAssetModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/MintAssetModal.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/NewAddressButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/NewAddressButton.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/NewAddressModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/NewAddressModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/NewAddressModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/NewAddressModal.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/SendAssetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/SendAssetButton.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/SendAssetModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/SendAssetModal.spec.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/SendAssetModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/SendAssetModal.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/actions/index.ts -------------------------------------------------------------------------------- /src/components/designer/tap/info/AssetInfoDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/info/AssetInfoDrawer.tsx -------------------------------------------------------------------------------- /src/components/designer/tap/info/AssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/designer/tap/info/AssetsList.tsx -------------------------------------------------------------------------------- /src/components/dockerLogs/DockerLogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/dockerLogs/DockerLogs.tsx -------------------------------------------------------------------------------- /src/components/dockerLogs/ViewLogsButton.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/dockerLogs/ViewLogsButton.spec.tsx -------------------------------------------------------------------------------- /src/components/dockerLogs/ViewLogsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/dockerLogs/ViewLogsButton.tsx -------------------------------------------------------------------------------- /src/components/dockerLogs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/dockerLogs/index.ts -------------------------------------------------------------------------------- /src/components/home/DetectDockerModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/home/DetectDockerModal.spec.tsx -------------------------------------------------------------------------------- /src/components/home/DetectDockerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/home/DetectDockerModal.tsx -------------------------------------------------------------------------------- /src/components/home/GetStarted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/home/GetStarted.tsx -------------------------------------------------------------------------------- /src/components/home/Home.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/home/Home.spec.tsx -------------------------------------------------------------------------------- /src/components/home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/home/Home.tsx -------------------------------------------------------------------------------- /src/components/home/NetworkCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/home/NetworkCard.spec.tsx -------------------------------------------------------------------------------- /src/components/home/NetworkCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/home/NetworkCard.tsx -------------------------------------------------------------------------------- /src/components/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/home/index.ts -------------------------------------------------------------------------------- /src/components/layouts/AppLayout.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/layouts/AppLayout.spec.tsx -------------------------------------------------------------------------------- /src/components/layouts/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/layouts/AppLayout.tsx -------------------------------------------------------------------------------- /src/components/layouts/CheckForUpdatesButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/layouts/CheckForUpdatesButton.tsx -------------------------------------------------------------------------------- /src/components/layouts/DockerStatus.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/layouts/DockerStatus.spec.tsx -------------------------------------------------------------------------------- /src/components/layouts/DockerStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/layouts/DockerStatus.tsx -------------------------------------------------------------------------------- /src/components/layouts/LocaleSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/layouts/LocaleSwitch.tsx -------------------------------------------------------------------------------- /src/components/layouts/ThemeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/layouts/ThemeSwitch.tsx -------------------------------------------------------------------------------- /src/components/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/layouts/index.ts -------------------------------------------------------------------------------- /src/components/network/ImportNetwork.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/ImportNetwork.spec.tsx -------------------------------------------------------------------------------- /src/components/network/ImportNetwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/ImportNetwork.tsx -------------------------------------------------------------------------------- /src/components/network/NetworkActions.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/NetworkActions.spec.tsx -------------------------------------------------------------------------------- /src/components/network/NetworkActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/NetworkActions.tsx -------------------------------------------------------------------------------- /src/components/network/NetworkSetting.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/NetworkSetting.spec.tsx -------------------------------------------------------------------------------- /src/components/network/NetworkSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/NetworkSetting.tsx -------------------------------------------------------------------------------- /src/components/network/NetworkView.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/NetworkView.spec.tsx -------------------------------------------------------------------------------- /src/components/network/NetworkView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/NetworkView.tsx -------------------------------------------------------------------------------- /src/components/network/NewNetwork.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/NewNetwork.spec.tsx -------------------------------------------------------------------------------- /src/components/network/NewNetwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/NewNetwork.tsx -------------------------------------------------------------------------------- /src/components/network/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/network/index.ts -------------------------------------------------------------------------------- /src/components/nodeImages/CommandVariables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/CommandVariables.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/CustomImageModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/CustomImageModal.spec.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/CustomImageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/CustomImageModal.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/CustomImagesTable.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/CustomImagesTable.spec.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/CustomImagesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/CustomImagesTable.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/ManagedImageModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/ManagedImageModal.spec.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/ManagedImageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/ManagedImageModal.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/ManagedImagesTable.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/ManagedImagesTable.spec.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/ManagedImagesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/ManagedImagesTable.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/NodeImagesView.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/NodeImagesView.spec.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/NodeImagesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/NodeImagesView.tsx -------------------------------------------------------------------------------- /src/components/nodeImages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/nodeImages/index.ts -------------------------------------------------------------------------------- /src/components/routing/Routes.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/routing/Routes.spec.tsx -------------------------------------------------------------------------------- /src/components/routing/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/routing/Routes.tsx -------------------------------------------------------------------------------- /src/components/routing/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/routing/Switch.tsx -------------------------------------------------------------------------------- /src/components/routing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/routing/index.ts -------------------------------------------------------------------------------- /src/components/terminal/DockerTerminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/terminal/DockerTerminal.tsx -------------------------------------------------------------------------------- /src/components/terminal/OpenTerminalButton.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/terminal/OpenTerminalButton.spec.tsx -------------------------------------------------------------------------------- /src/components/terminal/OpenTerminalButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/terminal/OpenTerminalButton.tsx -------------------------------------------------------------------------------- /src/components/terminal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/terminal/index.ts -------------------------------------------------------------------------------- /src/components/terminal/themes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/terminal/themes/index.ts -------------------------------------------------------------------------------- /src/components/terminal/themes/nord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/components/terminal/themes/nord.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/hooks/useMiningAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/hooks/useMiningAsync.ts -------------------------------------------------------------------------------- /src/hooks/usePrefixedTranslation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/hooks/usePrefixedTranslation.ts -------------------------------------------------------------------------------- /src/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/hooks/useTheme.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/locales/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/locales/de-DE.json -------------------------------------------------------------------------------- /src/i18n/locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/locales/en-US.json -------------------------------------------------------------------------------- /src/i18n/locales/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/locales/es-ES.json -------------------------------------------------------------------------------- /src/i18n/locales/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/locales/fr-FR.json -------------------------------------------------------------------------------- /src/i18n/locales/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/locales/it-IT.json -------------------------------------------------------------------------------- /src/i18n/locales/ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/locales/ja-JP.json -------------------------------------------------------------------------------- /src/i18n/locales/ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/locales/ko-KR.json -------------------------------------------------------------------------------- /src/i18n/locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/locales/pt-BR.json -------------------------------------------------------------------------------- /src/i18n/locales/ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/locales/ru-RU.json -------------------------------------------------------------------------------- /src/i18n/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/i18n/locales/zh-CN.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/lib/bitcoin/bitcoinFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/bitcoin/bitcoinFactory.ts -------------------------------------------------------------------------------- /src/lib/bitcoin/bitcoind/bitcoindService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/bitcoin/bitcoind/bitcoindService.spec.ts -------------------------------------------------------------------------------- /src/lib/bitcoin/bitcoind/bitcoindService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/bitcoin/bitcoind/bitcoindService.ts -------------------------------------------------------------------------------- /src/lib/bitcoin/bitcoind/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/bitcoin/bitcoind/index.ts -------------------------------------------------------------------------------- /src/lib/bitcoin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/bitcoin/index.ts -------------------------------------------------------------------------------- /src/lib/bitcoin/notImplementedService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/bitcoin/notImplementedService.spec.ts -------------------------------------------------------------------------------- /src/lib/bitcoin/notImplementedService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/bitcoin/notImplementedService.ts -------------------------------------------------------------------------------- /src/lib/docker/composeFile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/docker/composeFile.spec.ts -------------------------------------------------------------------------------- /src/lib/docker/composeFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/docker/composeFile.ts -------------------------------------------------------------------------------- /src/lib/docker/dockerService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/docker/dockerService.spec.ts -------------------------------------------------------------------------------- /src/lib/docker/dockerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/docker/dockerService.ts -------------------------------------------------------------------------------- /src/lib/docker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/docker/index.ts -------------------------------------------------------------------------------- /src/lib/docker/nodeTemplates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/docker/nodeTemplates.spec.ts -------------------------------------------------------------------------------- /src/lib/docker/nodeTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/docker/nodeTemplates.ts -------------------------------------------------------------------------------- /src/lib/docker/repoService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/docker/repoService.spec.ts -------------------------------------------------------------------------------- /src/lib/docker/repoService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/docker/repoService.ts -------------------------------------------------------------------------------- /src/lib/ipc/ipcService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/ipc/ipcService.spec.ts -------------------------------------------------------------------------------- /src/lib/ipc/ipcService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/ipc/ipcService.ts -------------------------------------------------------------------------------- /src/lib/lightning/clightning/clightningApi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/clightning/clightningApi.spec.ts -------------------------------------------------------------------------------- /src/lib/lightning/clightning/clightningApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/clightning/clightningApi.ts -------------------------------------------------------------------------------- /src/lib/lightning/clightning/clightningService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/clightning/clightningService.spec.ts -------------------------------------------------------------------------------- /src/lib/lightning/clightning/clightningService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/clightning/clightningService.ts -------------------------------------------------------------------------------- /src/lib/lightning/clightning/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/clightning/index.ts -------------------------------------------------------------------------------- /src/lib/lightning/clightning/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/clightning/types.ts -------------------------------------------------------------------------------- /src/lib/lightning/eclair/eclairApi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/eclair/eclairApi.spec.ts -------------------------------------------------------------------------------- /src/lib/lightning/eclair/eclairApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/eclair/eclairApi.ts -------------------------------------------------------------------------------- /src/lib/lightning/eclair/eclairService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/eclair/eclairService.spec.ts -------------------------------------------------------------------------------- /src/lib/lightning/eclair/eclairService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/eclair/eclairService.ts -------------------------------------------------------------------------------- /src/lib/lightning/eclair/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/eclair/index.ts -------------------------------------------------------------------------------- /src/lib/lightning/eclair/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/eclair/types.ts -------------------------------------------------------------------------------- /src/lib/lightning/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/index.ts -------------------------------------------------------------------------------- /src/lib/lightning/lightningFactory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/lightningFactory.spec.ts -------------------------------------------------------------------------------- /src/lib/lightning/lightningFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/lightningFactory.ts -------------------------------------------------------------------------------- /src/lib/lightning/lnd/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/lnd/index.ts -------------------------------------------------------------------------------- /src/lib/lightning/lnd/lndProxyClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/lnd/lndProxyClient.spec.ts -------------------------------------------------------------------------------- /src/lib/lightning/lnd/lndProxyClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/lnd/lndProxyClient.ts -------------------------------------------------------------------------------- /src/lib/lightning/lnd/lndService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/lnd/lndService.spec.ts -------------------------------------------------------------------------------- /src/lib/lightning/lnd/lndService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/lnd/lndService.ts -------------------------------------------------------------------------------- /src/lib/lightning/lnd/mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/lnd/mappers.ts -------------------------------------------------------------------------------- /src/lib/lightning/notImplementedService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/notImplementedService.spec.ts -------------------------------------------------------------------------------- /src/lib/lightning/notImplementedService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/notImplementedService.ts -------------------------------------------------------------------------------- /src/lib/lightning/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/lightning/types.ts -------------------------------------------------------------------------------- /src/lib/litd/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/litd/index.ts -------------------------------------------------------------------------------- /src/lib/litd/litdProxyClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/litd/litdProxyClient.spec.ts -------------------------------------------------------------------------------- /src/lib/litd/litdProxyClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/litd/litdProxyClient.ts -------------------------------------------------------------------------------- /src/lib/litd/litdService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/litd/litdService.spec.ts -------------------------------------------------------------------------------- /src/lib/litd/litdService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/litd/litdService.ts -------------------------------------------------------------------------------- /src/lib/litd/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/litd/types.ts -------------------------------------------------------------------------------- /src/lib/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/settings/index.ts -------------------------------------------------------------------------------- /src/lib/settings/settingsService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/settings/settingsService.spec.ts -------------------------------------------------------------------------------- /src/lib/settings/settingsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/settings/settingsService.ts -------------------------------------------------------------------------------- /src/lib/tap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/tap/index.ts -------------------------------------------------------------------------------- /src/lib/tap/tapFactory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/tap/tapFactory.spec.ts -------------------------------------------------------------------------------- /src/lib/tap/tapFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/tap/tapFactory.ts -------------------------------------------------------------------------------- /src/lib/tap/tapd/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/tap/tapd/index.ts -------------------------------------------------------------------------------- /src/lib/tap/tapd/tapProxyClient.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/tap/tapd/tapProxyClient.spec.ts -------------------------------------------------------------------------------- /src/lib/tap/tapd/tapdProxyClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/tap/tapd/tapdProxyClient.ts -------------------------------------------------------------------------------- /src/lib/tap/tapd/tapdService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/tap/tapd/tapdService.spec.ts -------------------------------------------------------------------------------- /src/lib/tap/tapd/tapdService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/tap/tapd/tapdService.ts -------------------------------------------------------------------------------- /src/lib/tap/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/lib/tap/types.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/resources/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/resources/bitcoin.svg -------------------------------------------------------------------------------- /src/resources/clightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/resources/clightning.png -------------------------------------------------------------------------------- /src/resources/eclair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/resources/eclair.png -------------------------------------------------------------------------------- /src/resources/litd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/resources/litd.svg -------------------------------------------------------------------------------- /src/resources/lnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/resources/lnd.png -------------------------------------------------------------------------------- /src/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/resources/logo.png -------------------------------------------------------------------------------- /src/resources/logo_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/resources/logo_bw.png -------------------------------------------------------------------------------- /src/resources/tap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/resources/tap.svg -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/shared/index.ts -------------------------------------------------------------------------------- /src/shared/ipcChannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/shared/ipcChannels.ts -------------------------------------------------------------------------------- /src/shared/litdDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/shared/litdDefaults.ts -------------------------------------------------------------------------------- /src/shared/lndDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/shared/lndDefaults.ts -------------------------------------------------------------------------------- /src/shared/tapdDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/shared/tapdDefaults.ts -------------------------------------------------------------------------------- /src/shared/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/shared/types.ts -------------------------------------------------------------------------------- /src/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/shared/utils.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/models/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/app.spec.ts -------------------------------------------------------------------------------- /src/store/models/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/app.ts -------------------------------------------------------------------------------- /src/store/models/bitcoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/bitcoin.ts -------------------------------------------------------------------------------- /src/store/models/designer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/designer.spec.ts -------------------------------------------------------------------------------- /src/store/models/designer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/designer.ts -------------------------------------------------------------------------------- /src/store/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/index.ts -------------------------------------------------------------------------------- /src/store/models/lightning.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/lightning.spec.ts -------------------------------------------------------------------------------- /src/store/models/lightning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/lightning.ts -------------------------------------------------------------------------------- /src/store/models/lit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/lit.spec.ts -------------------------------------------------------------------------------- /src/store/models/lit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/lit.ts -------------------------------------------------------------------------------- /src/store/models/modals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/modals.ts -------------------------------------------------------------------------------- /src/store/models/network.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/network.spec.ts -------------------------------------------------------------------------------- /src/store/models/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/network.ts -------------------------------------------------------------------------------- /src/store/models/tap.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/tap.spec.ts -------------------------------------------------------------------------------- /src/store/models/tap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/store/models/tap.ts -------------------------------------------------------------------------------- /src/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/theme/README.md -------------------------------------------------------------------------------- /src/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/theme/colors.ts -------------------------------------------------------------------------------- /src/theme/dark.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/theme/dark.less -------------------------------------------------------------------------------- /src/theme/light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/theme/light.less -------------------------------------------------------------------------------- /src/types/bitcoin-core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/types/bitcoin-core.d.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/async.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/async.spec.ts -------------------------------------------------------------------------------- /src/utils/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/async.ts -------------------------------------------------------------------------------- /src/utils/chart.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/chart.spec.ts -------------------------------------------------------------------------------- /src/utils/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/chart.ts -------------------------------------------------------------------------------- /src/utils/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/config.spec.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/files.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/files.spec.ts -------------------------------------------------------------------------------- /src/utils/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/files.ts -------------------------------------------------------------------------------- /src/utils/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/migrations.ts -------------------------------------------------------------------------------- /src/utils/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/names.ts -------------------------------------------------------------------------------- /src/utils/network.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/network.spec.ts -------------------------------------------------------------------------------- /src/utils/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/network.ts -------------------------------------------------------------------------------- /src/utils/numbers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/numbers.spec.ts -------------------------------------------------------------------------------- /src/utils/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/numbers.ts -------------------------------------------------------------------------------- /src/utils/objects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/objects.spec.ts -------------------------------------------------------------------------------- /src/utils/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/objects.ts -------------------------------------------------------------------------------- /src/utils/strings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/strings.spec.ts -------------------------------------------------------------------------------- /src/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/strings.ts -------------------------------------------------------------------------------- /src/utils/system.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/system.spec.ts -------------------------------------------------------------------------------- /src/utils/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/system.ts -------------------------------------------------------------------------------- /src/utils/tests/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/tests/helpers.ts -------------------------------------------------------------------------------- /src/utils/tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/tests/index.ts -------------------------------------------------------------------------------- /src/utils/tests/renderWithProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/tests/renderWithProviders.tsx -------------------------------------------------------------------------------- /src/utils/tests/testStateDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/tests/testStateDefaults.ts -------------------------------------------------------------------------------- /src/utils/theme.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/theme.spec.ts -------------------------------------------------------------------------------- /src/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/theme.ts -------------------------------------------------------------------------------- /src/utils/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/translate.ts -------------------------------------------------------------------------------- /src/utils/units.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/units.spec.ts -------------------------------------------------------------------------------- /src/utils/units.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/src/utils/units.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/wallaby.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamaljsr/polar/HEAD/yarn.lock --------------------------------------------------------------------------------