├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── bug_report.yml │ ├── feature_request.md │ └── feature_request.yml ├── dependabot.yml ├── pull_request_template.md ├── stale.yml └── workflows │ ├── lint.yml │ ├── linux.yml │ ├── macos.yml │ ├── release.yml │ └── windows.yml ├── .gitignore ├── .node-version ├── .npmrc ├── .vscode ├── launch.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── HOW_TO.md ├── LICENSE.md ├── README.md ├── _config.yml ├── angular.json ├── angular.webpack.js ├── app ├── auto-launch │ ├── index.ts │ └── library │ │ ├── autoLaunchAPI │ │ ├── autoLaunchAPI.ts │ │ ├── autoLaunchAPILinux.ts │ │ ├── autoLaunchAPIMac.ts │ │ ├── autoLaunchAPIWindows.ts │ │ └── autoLaunchInit.ts │ │ ├── autoLaunchHandler.ts │ │ └── fileBasedUtilities.ts ├── electron-sudo-universal-4.0.12.tgz ├── main.ts ├── package-lock.json ├── package.json ├── preload.js ├── process │ ├── AppChildProcess.ts │ ├── AppMainProcess.ts │ ├── I2pdConf.ts │ ├── I2pdInstallationInfo.ts │ ├── I2pdProcess.ts │ ├── InstallationInfo.ts │ ├── MonerodInstallationInfo.ts │ ├── MonerodProcess.ts │ ├── P2PoolProcess.ts │ ├── PrivateTestnet.ts │ ├── ProcessStats.ts │ ├── TorControlClient.ts │ ├── TorProcess.ts │ ├── XmrigProcess.ts │ └── index.ts └── utils │ ├── BatteryUtils.ts │ ├── FileUtils.ts │ ├── NetworkUtils.ts │ └── index.ts ├── donate.png ├── e2e ├── main.spec.ts ├── playwright.config.ts └── tsconfig.e2e.json ├── electron-builder.json ├── electron-installer-debian.json ├── electron-installer-redhat.json ├── electron-installer-windows.json ├── jest.config.js ├── monerod-gui-demo.mp4 ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── core │ │ ├── core.module.ts │ │ ├── services │ │ │ ├── daemon │ │ │ │ ├── daemon-data.service.spec.ts │ │ │ │ ├── daemon-data.service.ts │ │ │ │ ├── daemon-tray.service.spec.ts │ │ │ │ ├── daemon-tray.service.ts │ │ │ │ ├── daemon.service.spec.ts │ │ │ │ └── daemon.service.ts │ │ │ ├── electron │ │ │ │ ├── electron.service.spec.ts │ │ │ │ └── electron.service.ts │ │ │ ├── i2p │ │ │ │ ├── i2p-daemon.service.spec.ts │ │ │ │ └── i2p-daemon.service.ts │ │ │ ├── index.ts │ │ │ ├── monero-installer │ │ │ │ ├── monero-installer.service.spec.ts │ │ │ │ └── monero-installer.service.ts │ │ │ ├── p2pool │ │ │ │ ├── p2pool.service.spec.ts │ │ │ │ └── p2pool.service.ts │ │ │ ├── tor │ │ │ │ ├── tor-daemon.service.spec.ts │ │ │ │ └── tor-daemon.service.ts │ │ │ └── xmrig │ │ │ │ ├── xmrig.service.spec.ts │ │ │ │ └── xmrig.service.ts │ │ └── utils │ │ │ ├── StringUtils.ts │ │ │ └── index.ts │ ├── pages │ │ ├── about │ │ │ ├── about-routing.module.ts │ │ │ ├── about.component.html │ │ │ ├── about.component.scss │ │ │ ├── about.component.spec.ts │ │ │ ├── about.component.ts │ │ │ └── about.module.ts │ │ ├── base-page │ │ │ ├── base-page.component.html │ │ │ ├── base-page.component.scss │ │ │ ├── base-page.component.spec.ts │ │ │ └── base-page.component.ts │ │ ├── blockchain │ │ │ ├── blockchain-routing.module.ts │ │ │ ├── blockchain.component.html │ │ │ ├── blockchain.component.scss │ │ │ ├── blockchain.component.spec.ts │ │ │ ├── blockchain.component.ts │ │ │ └── blockchain.module.ts │ │ ├── detail │ │ │ ├── detail-routing.module.ts │ │ │ ├── detail.component.html │ │ │ ├── detail.component.scss │ │ │ ├── detail.component.spec.ts │ │ │ ├── detail.component.ts │ │ │ └── detail.module.ts │ │ ├── home │ │ │ ├── home-routing.module.ts │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ ├── home.component.ts │ │ │ └── home.module.ts │ │ ├── logs │ │ │ ├── logs-routing.module.ts │ │ │ ├── logs.component.html │ │ │ ├── logs.component.scss │ │ │ ├── logs.component.spec.ts │ │ │ ├── logs.component.ts │ │ │ ├── logs.module.ts │ │ │ ├── logs.service.spec.ts │ │ │ └── logs.service.ts │ │ ├── mining │ │ │ ├── mining-routing.module.ts │ │ │ ├── mining.component.html │ │ │ ├── mining.component.scss │ │ │ ├── mining.component.spec.ts │ │ │ ├── mining.component.ts │ │ │ └── mining.module.ts │ │ ├── network │ │ │ ├── network-routing.module.ts │ │ │ ├── network.component.html │ │ │ ├── network.component.scss │ │ │ ├── network.component.spec.ts │ │ │ ├── network.component.ts │ │ │ └── network.module.ts │ │ ├── settings │ │ │ ├── settings-routing.module.ts │ │ │ ├── settings.component.html │ │ │ ├── settings.component.scss │ │ │ ├── settings.component.spec.ts │ │ │ ├── settings.component.ts │ │ │ └── settings.module.ts │ │ └── version │ │ │ ├── version-routing.module.ts │ │ │ ├── version.component.html │ │ │ ├── version.component.scss │ │ │ ├── version.component.spec.ts │ │ │ ├── version.component.ts │ │ │ └── version.module.ts │ └── shared │ │ ├── components │ │ ├── daemon-not-running │ │ │ ├── daemon-not-running.component.html │ │ │ ├── daemon-not-running.component.scss │ │ │ ├── daemon-not-running.component.spec.ts │ │ │ ├── daemon-not-running.component.ts │ │ │ ├── daemon-status.service.spec.ts │ │ │ └── daemon-status.service.ts │ │ ├── index.ts │ │ ├── load │ │ │ ├── load.component.html │ │ │ ├── load.component.scss │ │ │ ├── load.component.spec.ts │ │ │ └── load.component.ts │ │ ├── navbar │ │ │ ├── navbar.component.html │ │ │ ├── navbar.component.scss │ │ │ ├── navbar.component.spec.ts │ │ │ ├── navbar.component.ts │ │ │ ├── navbar.model.ts │ │ │ ├── navbar.service.spec.ts │ │ │ └── navbar.service.ts │ │ ├── page-not-found │ │ │ ├── page-not-found.component.html │ │ │ ├── page-not-found.component.scss │ │ │ ├── page-not-found.component.spec.ts │ │ │ └── page-not-found.component.ts │ │ └── sidebar │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.spec.ts │ │ │ └── sidebar.component.ts │ │ ├── directives │ │ ├── index.ts │ │ └── webview │ │ │ ├── webview.directive.spec.ts │ │ │ └── webview.directive.ts │ │ ├── shared.module.ts │ │ └── utils │ │ ├── MoneroUtils.ts │ │ ├── SimpleBootstrapCard.ts │ │ └── index.ts ├── assets │ ├── .gitkeep │ ├── background.jpg │ ├── donations │ │ └── xmr.png │ ├── i18n │ │ └── en.json │ └── icons │ │ ├── electron.bmp │ │ ├── favicon.256x256.png │ │ ├── favicon.512x512.png │ │ ├── favicon.icns │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── icon_1024x1024.png │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_32x32.png │ │ ├── icon_64x64.png │ │ └── monero-symbol-on-white-480.png ├── common │ ├── AddedAuxPow.ts │ ├── AuxPoW.ts │ ├── Ban.ts │ ├── Block.ts │ ├── BlockCount.ts │ ├── BlockDetails.ts │ ├── BlockHeader.ts │ ├── BlockTemplate.ts │ ├── BlockchainPruneInfo.ts │ ├── Chain.ts │ ├── CoinbaseTxSum.ts │ ├── Comparable.ts │ ├── Connection.ts │ ├── DaemonInfo.ts │ ├── DaemonSettings.ts │ ├── DaemonVersion.ts │ ├── DefaultPrivnetNode1Settings.ts │ ├── DefaultPrivnetNode2Settings.ts │ ├── FeeEstimate.ts │ ├── GeneratedBlocks.ts │ ├── HardForkInfo.ts │ ├── HistogramEntry.ts │ ├── I2pDaemonSettings.ts │ ├── LogCategories.ts │ ├── MineableTxBacklog.ts │ ├── MinerData.ts │ ├── MinerTx.ts │ ├── MiningStatus.ts │ ├── NetHashRateHistory.ts │ ├── NetStats.ts │ ├── NetStatsHistory.ts │ ├── OutKey.ts │ ├── Output.ts │ ├── OutputDistribution.ts │ ├── P2PoolSettings.ts │ ├── Peer.ts │ ├── PeerInfo.ts │ ├── PrivnetDaemonSettings.ts │ ├── ProcessStats.ts │ ├── PublicNode.ts │ ├── Span.ts │ ├── SpentKeyImage.ts │ ├── SyncInfo.ts │ ├── TorDaemonSettings.ts │ ├── Transaction.ts │ ├── TxBacklogEntry.ts │ ├── TxInfo.ts │ ├── TxPool.ts │ ├── TxPoolStats.ts │ ├── UnconfirmedTx.ts │ ├── UpdateInfo.ts │ ├── XmrigSettings.ts │ ├── error │ │ ├── CoreIsBusyError.ts │ │ ├── DaemonSettingsDuplicateExclusiveNodeError.ts │ │ ├── DaemonSettingsDuplicateNodeError.ts │ │ ├── DaemonSettingsDuplicatePriorityNodeError.ts │ │ ├── DaemonSettingsError.ts │ │ ├── DaemonSettingsInvalidNetworkError.ts │ │ ├── DaemonSettingsInvalidValueError.ts │ │ ├── DaemonSettingsUnknownKeyError.ts │ │ ├── MethodNotFoundError.ts │ │ ├── RpcError.ts │ │ └── index.ts │ ├── i2p │ │ ├── I2PData.ts │ │ ├── LocalDestinationsData.ts │ │ ├── MainData.ts │ │ ├── RouterCommandResultData.ts │ │ ├── TokenData.ts │ │ ├── TunnelsData.ts │ │ └── index.ts │ ├── index.ts │ ├── request │ │ ├── AddAuxPoWRequest.ts │ │ ├── BannedRequest.ts │ │ ├── CalculatePoWHashRequest.ts │ │ ├── CheckUpdateRequest.ts │ │ ├── DownloadUpdateRequest.ts │ │ ├── EmptyRpcRequest.ts │ │ ├── FlushCacheRequest.ts │ │ ├── FlushTxPoolRequest.ts │ │ ├── GenerateBlocksRequest.ts │ │ ├── GetAltBlockHashesRequest.ts │ │ ├── GetAlternateChainsRequest.ts │ │ ├── GetBansRequest.ts │ │ ├── GetBlockCountRequest.ts │ │ ├── GetBlockHashRequest.ts │ │ ├── GetBlockHeaderByHashRequest.ts │ │ ├── GetBlockHeaderByHeightRequest.ts │ │ ├── GetBlockHeadersRangeRequest.ts │ │ ├── GetBlockRequest.ts │ │ ├── GetBlockTemplateRequest.ts │ │ ├── GetCoinbaseTxSumRequest.ts │ │ ├── GetConnectionsRequest.ts │ │ ├── GetFeeEstimateRequest.ts │ │ ├── GetInfoRequest.ts │ │ ├── GetLastBlockHeaderRequest.ts │ │ ├── GetMinerDataRequest.ts │ │ ├── GetNetStatsRequest.ts │ │ ├── GetOutputDistributionRequest.ts │ │ ├── GetOutputHistogramRequest.ts │ │ ├── GetOutsRequest.ts │ │ ├── GetPeerListRequest.ts │ │ ├── GetPublicNodesRequest.ts │ │ ├── GetTransactionPoolHashesBinaryRequest.ts │ │ ├── GetTransactionPoolHashesRequest.ts │ │ ├── GetTransactionPoolRequest.ts │ │ ├── GetTransactionPoolStatsRequest.ts │ │ ├── GetTransactionsRequest.ts │ │ ├── GetTxPoolBacklogRequest.ts │ │ ├── GetVersionRequest.ts │ │ ├── HardForkInfoRequest.ts │ │ ├── InPeersRequest.ts │ │ ├── IsKeyImageSpentRequest.ts │ │ ├── JsonRPCRequest.ts │ │ ├── MiningStatusRequest.ts │ │ ├── OutPeersRequest.ts │ │ ├── PopBlocksRequest.ts │ │ ├── PruneBlockchainRequest.ts │ │ ├── RPCBinaryRequest.ts │ │ ├── RPCRequest.ts │ │ ├── RelayTxRequest.ts │ │ ├── SaveBcRequest.ts │ │ ├── SendRawTransactionRequest.ts │ │ ├── SetBansRequest.ts │ │ ├── SetBootstrapDaemonRequest.ts │ │ ├── SetLimitRequest.ts │ │ ├── SetLogCategoriesRequest.ts │ │ ├── SetLogHashRateRequest.ts │ │ ├── SetLogLevelRequest.ts │ │ ├── StartMiningRequest.ts │ │ ├── StopDaemonRequest.ts │ │ ├── StopMiningRequest.ts │ │ ├── SubmitBlockRequest.ts │ │ ├── SyncInfoRequest.ts │ │ ├── UpdateRequest.ts │ │ └── index.ts │ └── utils │ │ ├── TimeUtils.ts │ │ └── index.ts ├── environments │ ├── environment.dev.ts │ ├── environment.prod.ts │ ├── environment.ts │ ├── environment.web.prod.ts │ └── environment.web.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills-test.ts ├── polyfills.ts ├── splash.html ├── styles.scss ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json └── tsconfig.serve.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/environments/* 2 | e2e/playwright.config.ts 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /HOW_TO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/HOW_TO.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/_config.yml -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/angular.json -------------------------------------------------------------------------------- /angular.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/angular.webpack.js -------------------------------------------------------------------------------- /app/auto-launch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/auto-launch/index.ts -------------------------------------------------------------------------------- /app/auto-launch/library/autoLaunchAPI/autoLaunchAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/auto-launch/library/autoLaunchAPI/autoLaunchAPI.ts -------------------------------------------------------------------------------- /app/auto-launch/library/autoLaunchAPI/autoLaunchAPILinux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/auto-launch/library/autoLaunchAPI/autoLaunchAPILinux.ts -------------------------------------------------------------------------------- /app/auto-launch/library/autoLaunchAPI/autoLaunchAPIMac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/auto-launch/library/autoLaunchAPI/autoLaunchAPIMac.ts -------------------------------------------------------------------------------- /app/auto-launch/library/autoLaunchAPI/autoLaunchAPIWindows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/auto-launch/library/autoLaunchAPI/autoLaunchAPIWindows.ts -------------------------------------------------------------------------------- /app/auto-launch/library/autoLaunchAPI/autoLaunchInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/auto-launch/library/autoLaunchAPI/autoLaunchInit.ts -------------------------------------------------------------------------------- /app/auto-launch/library/autoLaunchHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/auto-launch/library/autoLaunchHandler.ts -------------------------------------------------------------------------------- /app/auto-launch/library/fileBasedUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/auto-launch/library/fileBasedUtilities.ts -------------------------------------------------------------------------------- /app/electron-sudo-universal-4.0.12.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/electron-sudo-universal-4.0.12.tgz -------------------------------------------------------------------------------- /app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/main.ts -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/package.json -------------------------------------------------------------------------------- /app/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/preload.js -------------------------------------------------------------------------------- /app/process/AppChildProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/AppChildProcess.ts -------------------------------------------------------------------------------- /app/process/AppMainProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/AppMainProcess.ts -------------------------------------------------------------------------------- /app/process/I2pdConf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/I2pdConf.ts -------------------------------------------------------------------------------- /app/process/I2pdInstallationInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/I2pdInstallationInfo.ts -------------------------------------------------------------------------------- /app/process/I2pdProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/I2pdProcess.ts -------------------------------------------------------------------------------- /app/process/InstallationInfo.ts: -------------------------------------------------------------------------------- 1 | export interface InstallationInfo { path: string }; 2 | -------------------------------------------------------------------------------- /app/process/MonerodInstallationInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/MonerodInstallationInfo.ts -------------------------------------------------------------------------------- /app/process/MonerodProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/MonerodProcess.ts -------------------------------------------------------------------------------- /app/process/P2PoolProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/P2PoolProcess.ts -------------------------------------------------------------------------------- /app/process/PrivateTestnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/PrivateTestnet.ts -------------------------------------------------------------------------------- /app/process/ProcessStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/ProcessStats.ts -------------------------------------------------------------------------------- /app/process/TorControlClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/TorControlClient.ts -------------------------------------------------------------------------------- /app/process/TorProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/TorProcess.ts -------------------------------------------------------------------------------- /app/process/XmrigProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/XmrigProcess.ts -------------------------------------------------------------------------------- /app/process/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/process/index.ts -------------------------------------------------------------------------------- /app/utils/BatteryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/utils/BatteryUtils.ts -------------------------------------------------------------------------------- /app/utils/FileUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/utils/FileUtils.ts -------------------------------------------------------------------------------- /app/utils/NetworkUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/utils/NetworkUtils.ts -------------------------------------------------------------------------------- /app/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/app/utils/index.ts -------------------------------------------------------------------------------- /donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/donate.png -------------------------------------------------------------------------------- /e2e/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/e2e/main.spec.ts -------------------------------------------------------------------------------- /e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/e2e/playwright.config.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/electron-builder.json -------------------------------------------------------------------------------- /electron-installer-debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/electron-installer-debian.json -------------------------------------------------------------------------------- /electron-installer-redhat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/electron-installer-redhat.json -------------------------------------------------------------------------------- /electron-installer-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/electron-installer-windows.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/jest.config.js -------------------------------------------------------------------------------- /monerod-gui-demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/monerod-gui-demo.mp4 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/core/services/daemon/daemon-data.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/daemon/daemon-data.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/daemon/daemon-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/daemon/daemon-data.service.ts -------------------------------------------------------------------------------- /src/app/core/services/daemon/daemon-tray.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/daemon/daemon-tray.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/daemon/daemon-tray.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/daemon/daemon-tray.service.ts -------------------------------------------------------------------------------- /src/app/core/services/daemon/daemon.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/daemon/daemon.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/daemon/daemon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/daemon/daemon.service.ts -------------------------------------------------------------------------------- /src/app/core/services/electron/electron.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/electron/electron.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/electron/electron.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/electron/electron.service.ts -------------------------------------------------------------------------------- /src/app/core/services/i2p/i2p-daemon.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/i2p/i2p-daemon.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/i2p/i2p-daemon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/i2p/i2p-daemon.service.ts -------------------------------------------------------------------------------- /src/app/core/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/index.ts -------------------------------------------------------------------------------- /src/app/core/services/monero-installer/monero-installer.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/monero-installer/monero-installer.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/monero-installer/monero-installer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/monero-installer/monero-installer.service.ts -------------------------------------------------------------------------------- /src/app/core/services/p2pool/p2pool.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/p2pool/p2pool.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/p2pool/p2pool.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/p2pool/p2pool.service.ts -------------------------------------------------------------------------------- /src/app/core/services/tor/tor-daemon.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/tor/tor-daemon.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/tor/tor-daemon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/tor/tor-daemon.service.ts -------------------------------------------------------------------------------- /src/app/core/services/xmrig/xmrig.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/xmrig/xmrig.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/xmrig/xmrig.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/services/xmrig/xmrig.service.ts -------------------------------------------------------------------------------- /src/app/core/utils/StringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/utils/StringUtils.ts -------------------------------------------------------------------------------- /src/app/core/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/core/utils/index.ts -------------------------------------------------------------------------------- /src/app/pages/about/about-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/about/about-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/about/about.component.html -------------------------------------------------------------------------------- /src/app/pages/about/about.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/about/about.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/about/about.component.ts -------------------------------------------------------------------------------- /src/app/pages/about/about.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/about/about.module.ts -------------------------------------------------------------------------------- /src/app/pages/base-page/base-page.component.html: -------------------------------------------------------------------------------- 1 |

base-page works!

2 | -------------------------------------------------------------------------------- /src/app/pages/base-page/base-page.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/base-page/base-page.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/base-page/base-page.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/base-page/base-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/base-page/base-page.component.ts -------------------------------------------------------------------------------- /src/app/pages/blockchain/blockchain-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/blockchain/blockchain-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/blockchain/blockchain.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/blockchain/blockchain.component.html -------------------------------------------------------------------------------- /src/app/pages/blockchain/blockchain.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/blockchain/blockchain.component.scss -------------------------------------------------------------------------------- /src/app/pages/blockchain/blockchain.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/blockchain/blockchain.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/blockchain/blockchain.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/blockchain/blockchain.component.ts -------------------------------------------------------------------------------- /src/app/pages/blockchain/blockchain.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/blockchain/blockchain.module.ts -------------------------------------------------------------------------------- /src/app/pages/detail/detail-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/detail/detail-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/detail/detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/detail/detail.component.html -------------------------------------------------------------------------------- /src/app/pages/detail/detail.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | 3 | } -------------------------------------------------------------------------------- /src/app/pages/detail/detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/detail/detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/detail/detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/detail/detail.component.ts -------------------------------------------------------------------------------- /src/app/pages/detail/detail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/detail/detail.module.ts -------------------------------------------------------------------------------- /src/app/pages/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /src/app/pages/home/home.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | 3 | } -------------------------------------------------------------------------------- /src/app/pages/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/home/home.module.ts -------------------------------------------------------------------------------- /src/app/pages/logs/logs-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/logs/logs-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/logs/logs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/logs/logs.component.html -------------------------------------------------------------------------------- /src/app/pages/logs/logs.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/logs/logs.component.scss -------------------------------------------------------------------------------- /src/app/pages/logs/logs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/logs/logs.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/logs/logs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/logs/logs.component.ts -------------------------------------------------------------------------------- /src/app/pages/logs/logs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/logs/logs.module.ts -------------------------------------------------------------------------------- /src/app/pages/logs/logs.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/logs/logs.service.spec.ts -------------------------------------------------------------------------------- /src/app/pages/logs/logs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/logs/logs.service.ts -------------------------------------------------------------------------------- /src/app/pages/mining/mining-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/mining/mining-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/mining/mining.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/mining/mining.component.html -------------------------------------------------------------------------------- /src/app/pages/mining/mining.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/mining/mining.component.scss -------------------------------------------------------------------------------- /src/app/pages/mining/mining.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/mining/mining.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/mining/mining.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/mining/mining.component.ts -------------------------------------------------------------------------------- /src/app/pages/mining/mining.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/mining/mining.module.ts -------------------------------------------------------------------------------- /src/app/pages/network/network-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/network/network-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/network/network.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/network/network.component.html -------------------------------------------------------------------------------- /src/app/pages/network/network.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/network/network.component.scss -------------------------------------------------------------------------------- /src/app/pages/network/network.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/network/network.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/network/network.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/network/network.component.ts -------------------------------------------------------------------------------- /src/app/pages/network/network.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/network/network.module.ts -------------------------------------------------------------------------------- /src/app/pages/settings/settings-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/settings/settings-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/settings/settings.component.html -------------------------------------------------------------------------------- /src/app/pages/settings/settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/settings/settings.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/settings/settings.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/settings/settings.component.ts -------------------------------------------------------------------------------- /src/app/pages/settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/settings/settings.module.ts -------------------------------------------------------------------------------- /src/app/pages/version/version-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/version/version-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/version/version.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/version/version.component.html -------------------------------------------------------------------------------- /src/app/pages/version/version.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/version/version.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/version/version.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/version/version.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/version/version.component.ts -------------------------------------------------------------------------------- /src/app/pages/version/version.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/pages/version/version.module.ts -------------------------------------------------------------------------------- /src/app/shared/components/daemon-not-running/daemon-not-running.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/daemon-not-running/daemon-not-running.component.html -------------------------------------------------------------------------------- /src/app/shared/components/daemon-not-running/daemon-not-running.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/components/daemon-not-running/daemon-not-running.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/daemon-not-running/daemon-not-running.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/daemon-not-running/daemon-not-running.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/daemon-not-running/daemon-not-running.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/daemon-not-running/daemon-status.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/daemon-not-running/daemon-status.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/daemon-not-running/daemon-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/daemon-not-running/daemon-status.service.ts -------------------------------------------------------------------------------- /src/app/shared/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/index.ts -------------------------------------------------------------------------------- /src/app/shared/components/load/load.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/load/load.component.html -------------------------------------------------------------------------------- /src/app/shared/components/load/load.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/components/load/load.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/load/load.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/load/load.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/load/load.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/navbar/navbar.component.html -------------------------------------------------------------------------------- /src/app/shared/components/navbar/navbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/components/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/navbar/navbar.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/navbar/navbar.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/navbar/navbar.model.ts -------------------------------------------------------------------------------- /src/app/shared/components/navbar/navbar.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/navbar/navbar.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/navbar/navbar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/navbar/navbar.service.ts -------------------------------------------------------------------------------- /src/app/shared/components/page-not-found/page-not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/page-not-found/page-not-found.component.html -------------------------------------------------------------------------------- /src/app/shared/components/page-not-found/page-not-found.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/components/page-not-found/page-not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/page-not-found/page-not-found.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/page-not-found/page-not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/page-not-found/page-not-found.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/sidebar/sidebar.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/components/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /src/app/shared/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/directives/index.ts -------------------------------------------------------------------------------- /src/app/shared/directives/webview/webview.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/directives/webview/webview.directive.spec.ts -------------------------------------------------------------------------------- /src/app/shared/directives/webview/webview.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/directives/webview/webview.directive.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/shared/utils/MoneroUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/utils/MoneroUtils.ts -------------------------------------------------------------------------------- /src/app/shared/utils/SimpleBootstrapCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/utils/SimpleBootstrapCard.ts -------------------------------------------------------------------------------- /src/app/shared/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/app/shared/utils/index.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/background.jpg -------------------------------------------------------------------------------- /src/assets/donations/xmr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/donations/xmr.png -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/assets/icons/electron.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/electron.bmp -------------------------------------------------------------------------------- /src/assets/icons/favicon.256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/favicon.256x256.png -------------------------------------------------------------------------------- /src/assets/icons/favicon.512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/favicon.512x512.png -------------------------------------------------------------------------------- /src/assets/icons/favicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/favicon.icns -------------------------------------------------------------------------------- /src/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/favicon.ico -------------------------------------------------------------------------------- /src/assets/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/favicon.png -------------------------------------------------------------------------------- /src/assets/icons/icon_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/icon_1024x1024.png -------------------------------------------------------------------------------- /src/assets/icons/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/icon_128x128.png -------------------------------------------------------------------------------- /src/assets/icons/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/icon_16x16.png -------------------------------------------------------------------------------- /src/assets/icons/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/icon_32x32.png -------------------------------------------------------------------------------- /src/assets/icons/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/icon_64x64.png -------------------------------------------------------------------------------- /src/assets/icons/monero-symbol-on-white-480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/assets/icons/monero-symbol-on-white-480.png -------------------------------------------------------------------------------- /src/common/AddedAuxPow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/AddedAuxPow.ts -------------------------------------------------------------------------------- /src/common/AuxPoW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/AuxPoW.ts -------------------------------------------------------------------------------- /src/common/Ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/Ban.ts -------------------------------------------------------------------------------- /src/common/Block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/Block.ts -------------------------------------------------------------------------------- /src/common/BlockCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/BlockCount.ts -------------------------------------------------------------------------------- /src/common/BlockDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/BlockDetails.ts -------------------------------------------------------------------------------- /src/common/BlockHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/BlockHeader.ts -------------------------------------------------------------------------------- /src/common/BlockTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/BlockTemplate.ts -------------------------------------------------------------------------------- /src/common/BlockchainPruneInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/BlockchainPruneInfo.ts -------------------------------------------------------------------------------- /src/common/Chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/Chain.ts -------------------------------------------------------------------------------- /src/common/CoinbaseTxSum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/CoinbaseTxSum.ts -------------------------------------------------------------------------------- /src/common/Comparable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/Comparable.ts -------------------------------------------------------------------------------- /src/common/Connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/Connection.ts -------------------------------------------------------------------------------- /src/common/DaemonInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/DaemonInfo.ts -------------------------------------------------------------------------------- /src/common/DaemonSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/DaemonSettings.ts -------------------------------------------------------------------------------- /src/common/DaemonVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/DaemonVersion.ts -------------------------------------------------------------------------------- /src/common/DefaultPrivnetNode1Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/DefaultPrivnetNode1Settings.ts -------------------------------------------------------------------------------- /src/common/DefaultPrivnetNode2Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/DefaultPrivnetNode2Settings.ts -------------------------------------------------------------------------------- /src/common/FeeEstimate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/FeeEstimate.ts -------------------------------------------------------------------------------- /src/common/GeneratedBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/GeneratedBlocks.ts -------------------------------------------------------------------------------- /src/common/HardForkInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/HardForkInfo.ts -------------------------------------------------------------------------------- /src/common/HistogramEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/HistogramEntry.ts -------------------------------------------------------------------------------- /src/common/I2pDaemonSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/I2pDaemonSettings.ts -------------------------------------------------------------------------------- /src/common/LogCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/LogCategories.ts -------------------------------------------------------------------------------- /src/common/MineableTxBacklog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/MineableTxBacklog.ts -------------------------------------------------------------------------------- /src/common/MinerData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/MinerData.ts -------------------------------------------------------------------------------- /src/common/MinerTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/MinerTx.ts -------------------------------------------------------------------------------- /src/common/MiningStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/MiningStatus.ts -------------------------------------------------------------------------------- /src/common/NetHashRateHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/NetHashRateHistory.ts -------------------------------------------------------------------------------- /src/common/NetStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/NetStats.ts -------------------------------------------------------------------------------- /src/common/NetStatsHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/NetStatsHistory.ts -------------------------------------------------------------------------------- /src/common/OutKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/OutKey.ts -------------------------------------------------------------------------------- /src/common/Output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/Output.ts -------------------------------------------------------------------------------- /src/common/OutputDistribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/OutputDistribution.ts -------------------------------------------------------------------------------- /src/common/P2PoolSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/P2PoolSettings.ts -------------------------------------------------------------------------------- /src/common/Peer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/Peer.ts -------------------------------------------------------------------------------- /src/common/PeerInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/PeerInfo.ts -------------------------------------------------------------------------------- /src/common/PrivnetDaemonSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/PrivnetDaemonSettings.ts -------------------------------------------------------------------------------- /src/common/ProcessStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/ProcessStats.ts -------------------------------------------------------------------------------- /src/common/PublicNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/PublicNode.ts -------------------------------------------------------------------------------- /src/common/Span.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/Span.ts -------------------------------------------------------------------------------- /src/common/SpentKeyImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/SpentKeyImage.ts -------------------------------------------------------------------------------- /src/common/SyncInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/SyncInfo.ts -------------------------------------------------------------------------------- /src/common/TorDaemonSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/TorDaemonSettings.ts -------------------------------------------------------------------------------- /src/common/Transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/Transaction.ts -------------------------------------------------------------------------------- /src/common/TxBacklogEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/TxBacklogEntry.ts -------------------------------------------------------------------------------- /src/common/TxInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/TxInfo.ts -------------------------------------------------------------------------------- /src/common/TxPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/TxPool.ts -------------------------------------------------------------------------------- /src/common/TxPoolStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/TxPoolStats.ts -------------------------------------------------------------------------------- /src/common/UnconfirmedTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/UnconfirmedTx.ts -------------------------------------------------------------------------------- /src/common/UpdateInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/UpdateInfo.ts -------------------------------------------------------------------------------- /src/common/XmrigSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/XmrigSettings.ts -------------------------------------------------------------------------------- /src/common/error/CoreIsBusyError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/CoreIsBusyError.ts -------------------------------------------------------------------------------- /src/common/error/DaemonSettingsDuplicateExclusiveNodeError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/DaemonSettingsDuplicateExclusiveNodeError.ts -------------------------------------------------------------------------------- /src/common/error/DaemonSettingsDuplicateNodeError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/DaemonSettingsDuplicateNodeError.ts -------------------------------------------------------------------------------- /src/common/error/DaemonSettingsDuplicatePriorityNodeError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/DaemonSettingsDuplicatePriorityNodeError.ts -------------------------------------------------------------------------------- /src/common/error/DaemonSettingsError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/DaemonSettingsError.ts -------------------------------------------------------------------------------- /src/common/error/DaemonSettingsInvalidNetworkError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/DaemonSettingsInvalidNetworkError.ts -------------------------------------------------------------------------------- /src/common/error/DaemonSettingsInvalidValueError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/DaemonSettingsInvalidValueError.ts -------------------------------------------------------------------------------- /src/common/error/DaemonSettingsUnknownKeyError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/DaemonSettingsUnknownKeyError.ts -------------------------------------------------------------------------------- /src/common/error/MethodNotFoundError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/MethodNotFoundError.ts -------------------------------------------------------------------------------- /src/common/error/RpcError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/RpcError.ts -------------------------------------------------------------------------------- /src/common/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/error/index.ts -------------------------------------------------------------------------------- /src/common/i2p/I2PData.ts: -------------------------------------------------------------------------------- 1 | export abstract class I2PData { 2 | 3 | } -------------------------------------------------------------------------------- /src/common/i2p/LocalDestinationsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/i2p/LocalDestinationsData.ts -------------------------------------------------------------------------------- /src/common/i2p/MainData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/i2p/MainData.ts -------------------------------------------------------------------------------- /src/common/i2p/RouterCommandResultData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/i2p/RouterCommandResultData.ts -------------------------------------------------------------------------------- /src/common/i2p/TokenData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/i2p/TokenData.ts -------------------------------------------------------------------------------- /src/common/i2p/TunnelsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/i2p/TunnelsData.ts -------------------------------------------------------------------------------- /src/common/i2p/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/i2p/index.ts -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/index.ts -------------------------------------------------------------------------------- /src/common/request/AddAuxPoWRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/AddAuxPoWRequest.ts -------------------------------------------------------------------------------- /src/common/request/BannedRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/BannedRequest.ts -------------------------------------------------------------------------------- /src/common/request/CalculatePoWHashRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/CalculatePoWHashRequest.ts -------------------------------------------------------------------------------- /src/common/request/CheckUpdateRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/CheckUpdateRequest.ts -------------------------------------------------------------------------------- /src/common/request/DownloadUpdateRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/DownloadUpdateRequest.ts -------------------------------------------------------------------------------- /src/common/request/EmptyRpcRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/EmptyRpcRequest.ts -------------------------------------------------------------------------------- /src/common/request/FlushCacheRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/FlushCacheRequest.ts -------------------------------------------------------------------------------- /src/common/request/FlushTxPoolRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/FlushTxPoolRequest.ts -------------------------------------------------------------------------------- /src/common/request/GenerateBlocksRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GenerateBlocksRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetAltBlockHashesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetAltBlockHashesRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetAlternateChainsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetAlternateChainsRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetBansRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetBansRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetBlockCountRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetBlockCountRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetBlockHashRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetBlockHashRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetBlockHeaderByHashRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetBlockHeaderByHashRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetBlockHeaderByHeightRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetBlockHeaderByHeightRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetBlockHeadersRangeRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetBlockHeadersRangeRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetBlockRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetBlockRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetBlockTemplateRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetBlockTemplateRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetCoinbaseTxSumRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetCoinbaseTxSumRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetConnectionsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetConnectionsRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetFeeEstimateRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetFeeEstimateRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetInfoRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetInfoRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetLastBlockHeaderRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetLastBlockHeaderRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetMinerDataRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetMinerDataRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetNetStatsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetNetStatsRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetOutputDistributionRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetOutputDistributionRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetOutputHistogramRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetOutputHistogramRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetOutsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetOutsRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetPeerListRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetPeerListRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetPublicNodesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetPublicNodesRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetTransactionPoolHashesBinaryRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetTransactionPoolHashesBinaryRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetTransactionPoolHashesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetTransactionPoolHashesRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetTransactionPoolRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetTransactionPoolRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetTransactionPoolStatsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetTransactionPoolStatsRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetTransactionsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetTransactionsRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetTxPoolBacklogRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetTxPoolBacklogRequest.ts -------------------------------------------------------------------------------- /src/common/request/GetVersionRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/GetVersionRequest.ts -------------------------------------------------------------------------------- /src/common/request/HardForkInfoRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/HardForkInfoRequest.ts -------------------------------------------------------------------------------- /src/common/request/InPeersRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/InPeersRequest.ts -------------------------------------------------------------------------------- /src/common/request/IsKeyImageSpentRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/IsKeyImageSpentRequest.ts -------------------------------------------------------------------------------- /src/common/request/JsonRPCRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/JsonRPCRequest.ts -------------------------------------------------------------------------------- /src/common/request/MiningStatusRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/MiningStatusRequest.ts -------------------------------------------------------------------------------- /src/common/request/OutPeersRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/OutPeersRequest.ts -------------------------------------------------------------------------------- /src/common/request/PopBlocksRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/PopBlocksRequest.ts -------------------------------------------------------------------------------- /src/common/request/PruneBlockchainRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/PruneBlockchainRequest.ts -------------------------------------------------------------------------------- /src/common/request/RPCBinaryRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/RPCBinaryRequest.ts -------------------------------------------------------------------------------- /src/common/request/RPCRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/RPCRequest.ts -------------------------------------------------------------------------------- /src/common/request/RelayTxRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/RelayTxRequest.ts -------------------------------------------------------------------------------- /src/common/request/SaveBcRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/SaveBcRequest.ts -------------------------------------------------------------------------------- /src/common/request/SendRawTransactionRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/SendRawTransactionRequest.ts -------------------------------------------------------------------------------- /src/common/request/SetBansRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/SetBansRequest.ts -------------------------------------------------------------------------------- /src/common/request/SetBootstrapDaemonRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/SetBootstrapDaemonRequest.ts -------------------------------------------------------------------------------- /src/common/request/SetLimitRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/SetLimitRequest.ts -------------------------------------------------------------------------------- /src/common/request/SetLogCategoriesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/SetLogCategoriesRequest.ts -------------------------------------------------------------------------------- /src/common/request/SetLogHashRateRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/SetLogHashRateRequest.ts -------------------------------------------------------------------------------- /src/common/request/SetLogLevelRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/SetLogLevelRequest.ts -------------------------------------------------------------------------------- /src/common/request/StartMiningRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/StartMiningRequest.ts -------------------------------------------------------------------------------- /src/common/request/StopDaemonRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/StopDaemonRequest.ts -------------------------------------------------------------------------------- /src/common/request/StopMiningRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/StopMiningRequest.ts -------------------------------------------------------------------------------- /src/common/request/SubmitBlockRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/SubmitBlockRequest.ts -------------------------------------------------------------------------------- /src/common/request/SyncInfoRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/SyncInfoRequest.ts -------------------------------------------------------------------------------- /src/common/request/UpdateRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/UpdateRequest.ts -------------------------------------------------------------------------------- /src/common/request/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/request/index.ts -------------------------------------------------------------------------------- /src/common/utils/TimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/utils/TimeUtils.ts -------------------------------------------------------------------------------- /src/common/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/common/utils/index.ts -------------------------------------------------------------------------------- /src/environments/environment.dev.ts: -------------------------------------------------------------------------------- 1 | export const APP_CONFIG = { 2 | production: false, 3 | environment: 'DEV' 4 | }; 5 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const APP_CONFIG = { 2 | production: true, 3 | environment: 'PROD' 4 | }; 5 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const APP_CONFIG = { 2 | production: false, 3 | environment: 'LOCAL' 4 | }; 5 | -------------------------------------------------------------------------------- /src/environments/environment.web.prod.ts: -------------------------------------------------------------------------------- 1 | export const APP_CONFIG = { 2 | production: true, 3 | environment: 'WEB-PROD' 4 | }; 5 | -------------------------------------------------------------------------------- /src/environments/environment.web.ts: -------------------------------------------------------------------------------- 1 | export const APP_CONFIG = { 2 | production: false, 3 | environment: 'WEB' 4 | }; 5 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills-test.ts: -------------------------------------------------------------------------------- 1 | import 'zone.js'; 2 | -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/splash.html -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everoddandeven/monerod-gui/HEAD/tsconfig.serve.json --------------------------------------------------------------------------------