├── .flake8 ├── .gitignore ├── .gitmodules ├── .isort.cfg ├── BUILD_TIMELORD.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INSTALL.md ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── delete_oldbuild.bat ├── install-gui.sh ├── install-timelord.sh ├── install.sh ├── kale-blockchain-gui ├── .editorconfig ├── .env ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github │ ├── dependabot.yml │ └── workflows │ │ ├── audit-locales.yml │ │ └── super-linter.yml ├── .gitignore ├── .linguirc ├── .prettierrc.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── crowdin.yml ├── entitlements.mac.plist ├── kaleblockchain.provisionprofile ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── remote.md ├── src │ ├── StyleguidistMuiWrapper.js │ ├── assets │ │ ├── fonts │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ ├── ionicons.woff │ │ │ └── ionicons.woff2 │ │ └── img │ │ │ ├── circle-cropped.png │ │ │ ├── farm_sidebar.svg │ │ │ ├── help_sidebar.svg │ │ │ ├── home_sidebar.svg │ │ │ ├── kale.icns │ │ │ ├── kale.ico │ │ │ ├── kale.png │ │ │ ├── kale_circle.png │ │ │ ├── kale_circle.svg │ │ │ ├── kale_logo.svg │ │ │ ├── noun_Farm.svg │ │ │ ├── plot_sidebar.svg │ │ │ ├── pool_sidebar.svg │ │ │ └── wallet_sidebar.svg │ ├── components │ │ ├── about │ │ │ └── About.tsx │ │ ├── app │ │ │ ├── App.tsx │ │ │ ├── AppLoading.tsx │ │ │ ├── AppModalDialogs.tsx │ │ │ ├── AppRouter.tsx │ │ │ ├── AppTimeBomb.tsx │ │ │ ├── AppTimeBombAlert.tsx │ │ │ └── fonts │ │ │ │ ├── Fonts.tsx │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.svg │ │ │ │ ├── ionicons.ttf │ │ │ │ ├── ionicons.woff │ │ │ │ └── ionicons.woff2 │ │ ├── backup │ │ │ ├── BackupCreate.tsx │ │ │ └── BackupRestore.tsx │ │ ├── block │ │ │ ├── Block.jsx │ │ │ └── BlockTitle.tsx │ │ ├── core │ │ │ ├── components │ │ │ │ ├── Accordion │ │ │ │ │ ├── Accordion.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Address │ │ │ │ │ ├── Address.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── AdvancedOptions │ │ │ │ │ ├── AdvancedOptions.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── AlertDialog │ │ │ │ │ ├── AlertDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Amount │ │ │ │ │ ├── Amount.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── AspectRatio │ │ │ │ │ ├── AspectRatio.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Autocomplete │ │ │ │ │ ├── Autocomplete.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Button │ │ │ │ │ ├── Button.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ButtonLoading │ │ │ │ │ ├── ButtonLoading.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ButtonSelected │ │ │ │ │ ├── ButtonSelected.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Card │ │ │ │ │ ├── Card.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── CardHero │ │ │ │ │ ├── CardHero.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── CardKeyValue │ │ │ │ │ ├── CardKeyValue.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── CardStep │ │ │ │ │ ├── CardStep.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Checkbox │ │ │ │ │ ├── Checkbox.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ConfirmDialog │ │ │ │ │ ├── ConfirmDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── CopyToClipboard │ │ │ │ │ ├── CopyToClipboard.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── DarkModeToggle │ │ │ │ │ ├── DarkModeToggle.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── DialogActions │ │ │ │ │ ├── DialogActions.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Dropzone │ │ │ │ │ ├── Dropzone.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Fee │ │ │ │ │ ├── Fee.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Flex │ │ │ │ │ ├── Flex.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Form │ │ │ │ │ ├── Form.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FormBackButton │ │ │ │ │ ├── FormBackButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FormatBytes │ │ │ │ │ ├── FormatBytes.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FormatConnectionStatus │ │ │ │ │ ├── FormatConnectionStatus.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── FormatLargeNumber │ │ │ │ │ ├── FormatLargeNumber.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── GuestRoute │ │ │ │ │ ├── GuestRoute.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── IconButton │ │ │ │ │ ├── IconButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Indicator │ │ │ │ │ ├── Indicator.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── InputBase │ │ │ │ │ ├── InputBase.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Link │ │ │ │ │ ├── Link.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Loading │ │ │ │ │ ├── Loading.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── LocaleToggle │ │ │ │ │ ├── LocaleToggle.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Log │ │ │ │ │ ├── Log.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Logo │ │ │ │ │ ├── Logo.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ModalDialogs │ │ │ │ │ ├── ModalDialogs.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── More │ │ │ │ │ ├── More.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── PrivateRoute │ │ │ │ │ ├── PrivateRoute.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── RadioGroup │ │ │ │ │ ├── RadioGroup.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Select │ │ │ │ │ ├── Select.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SideBarItem │ │ │ │ │ ├── SideBarItem.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Spinner │ │ │ │ │ ├── Spinner.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── StateIndicator │ │ │ │ │ ├── StateIndicator.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── StateTypography │ │ │ │ │ ├── StateTypography.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Table │ │ │ │ │ ├── Table.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TextField │ │ │ │ │ ├── TextField.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ThemeProvider │ │ │ │ │ ├── ThemeProvider.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ToolbarSpacing │ │ │ │ │ ├── ToolbarSpacing.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Tooltip │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TooltipIcon │ │ │ │ │ ├── TooltipIcon.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TooltipTypography │ │ │ │ │ ├── TooltipTypography.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── UnitFormat │ │ │ │ │ ├── UnitFormat.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── constants │ │ │ │ ├── CurrencyCode.ts │ │ │ │ ├── State.ts │ │ │ │ ├── StateColor.ts │ │ │ │ ├── Unit.ts │ │ │ │ ├── constants.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── utils │ │ │ │ ├── index.ts │ │ │ │ └── unitFormat.ts │ │ ├── dashboard │ │ │ ├── Dashboard.tsx │ │ │ ├── DashboardSideBar.tsx │ │ │ └── DashboardTitle.tsx │ │ ├── farm │ │ │ ├── Farm.tsx │ │ │ ├── FarmCloseConnection.tsx │ │ │ ├── FarmFullNodeConnections.tsx │ │ │ ├── FarmLastAttemptedProof.tsx │ │ │ ├── FarmLatestBlockChallenges.tsx │ │ │ ├── FarmManageFarmingRewards.tsx │ │ │ ├── FarmYourHarvesterNetwork.tsx │ │ │ ├── FarmerStatus.tsx │ │ │ ├── card │ │ │ │ ├── FarmCard.tsx │ │ │ │ ├── FarmCardBlockRewards.tsx │ │ │ │ ├── FarmCardExpectedTimeToWin.tsx │ │ │ │ ├── FarmCardLastHeightFarmed.tsx │ │ │ │ ├── FarmCardNotAvailable.tsx │ │ │ │ ├── FarmCardPlotCount.tsx │ │ │ │ ├── FarmCardStatus.tsx │ │ │ │ ├── FarmCardTotalKaleFarmed.tsx │ │ │ │ ├── FarmCardTotalNetworkSpace.tsx │ │ │ │ ├── FarmCardTotalSizeOfPlots.tsx │ │ │ │ └── FarmCardUserFees.tsx │ │ │ └── overview │ │ │ │ ├── FarmOverview.tsx │ │ │ │ ├── FarmOverviewCards.tsx │ │ │ │ ├── FarmOverviewHero.tsx │ │ │ │ └── images │ │ │ │ └── hero.svg │ │ ├── fullNode │ │ │ ├── FullNode.jsx │ │ │ ├── FullNodeAddConnection.tsx │ │ │ ├── FullNodeBlockSearch.tsx │ │ │ ├── FullNodeCloseConnection.tsx │ │ │ ├── FullNodeConnections.tsx │ │ │ └── card │ │ │ │ ├── FullNodeCardConnectionStatus.tsx │ │ │ │ ├── FullNodeCardDifficulty.tsx │ │ │ │ ├── FullNodeCardNetworkName.tsx │ │ │ │ ├── FullNodeCardPeakHeight.tsx │ │ │ │ ├── FullNodeCardPeakTime.tsx │ │ │ │ ├── FullNodeCardStatus.tsx │ │ │ │ ├── FullNodeCardTotalIterations.tsx │ │ │ │ ├── FullNodeCardVDFSubSlotIterations.tsx │ │ │ │ ├── FullNodeCards.tsx │ │ │ │ └── FullNodeEstimatedNetworkSpace.tsx │ │ ├── icons │ │ │ ├── Farm.tsx │ │ │ ├── Home.tsx │ │ │ ├── Kale.tsx │ │ │ ├── Keys.tsx │ │ │ ├── Plot.tsx │ │ │ ├── PlotHero.tsx │ │ │ ├── Pool.tsx │ │ │ ├── Status.tsx │ │ │ ├── Trade.tsx │ │ │ ├── Wallet.tsx │ │ │ ├── images │ │ │ │ ├── PlotHero.svg │ │ │ │ ├── farm.svg │ │ │ │ ├── home.svg │ │ │ │ ├── kale.svg │ │ │ │ ├── keys.svg │ │ │ │ ├── plot.svg │ │ │ │ ├── pool.svg │ │ │ │ ├── trade.svg │ │ │ │ └── wallet.svg │ │ │ └── index.ts │ │ ├── layout │ │ │ ├── LayoutHero.tsx │ │ │ ├── LayoutLoading.tsx │ │ │ ├── LayoutMain.tsx │ │ │ └── LayoutSidebar.tsx │ │ ├── plot │ │ │ ├── Plot.tsx │ │ │ ├── PlotAction.tsx │ │ │ ├── PlotAddDirectoryDialog.tsx │ │ │ ├── PlotHeader.tsx │ │ │ ├── PlotStatus.tsx │ │ │ ├── PlotsFailed.tsx │ │ │ ├── PlotsNotFound.tsx │ │ │ ├── add │ │ │ │ ├── PlotAdd.tsx │ │ │ │ ├── PlotAddChooseSize.tsx │ │ │ │ ├── PlotAddNFT.tsx │ │ │ │ ├── PlotAddNumberOfPlots.tsx │ │ │ │ ├── PlotAddSelectFinalDirectory.tsx │ │ │ │ └── PlotAddSelectTemporaryDirectory.tsx │ │ │ ├── overview │ │ │ │ ├── PlotOverview.tsx │ │ │ │ ├── PlotOverviewHero.tsx │ │ │ │ └── PlotOverviewPlots.tsx │ │ │ └── queue │ │ │ │ ├── PlotQueueActions.tsx │ │ │ │ ├── PlotQueueIndicator.tsx │ │ │ │ ├── PlotQueueLogDialog.tsx │ │ │ │ └── PlotQueueSize.tsx │ │ ├── plotNFT │ │ │ ├── PlotExternalNFTCard.tsx │ │ │ ├── PlotNFTAbsorbRewards.tsx │ │ │ ├── PlotNFTAdd.tsx │ │ │ ├── PlotNFTCard.tsx │ │ │ ├── PlotNFTChangePool.tsx │ │ │ ├── PlotNFTExternalState.tsx │ │ │ ├── PlotNFTGetPoolLoginLinkDialog.tsx │ │ │ ├── PlotNFTGraph.tsx │ │ │ ├── PlotNFTName.tsx │ │ │ ├── PlotNFTPayoutInstructionsDialog.tsx │ │ │ ├── PlotNFTState.tsx │ │ │ ├── PlotNFTUnconfirmedCard.tsx │ │ │ └── select │ │ │ │ ├── PlotNFTSelectBase.tsx │ │ │ │ ├── PlotNFTSelectFaucet.tsx │ │ │ │ └── PlotNFTSelectPool.tsx │ │ ├── pool │ │ │ ├── Pool.tsx │ │ │ ├── PoolAbsorbRewards.tsx │ │ │ ├── PoolHeader.tsx │ │ │ ├── PoolHero.tsx │ │ │ ├── PoolInfo.tsx │ │ │ ├── PoolJoin.tsx │ │ │ └── PoolOverview.tsx │ │ ├── selectKey │ │ │ └── SelectKey.tsx │ │ ├── trading │ │ │ ├── CreateOffer.jsx │ │ │ ├── TradeManager.tsx │ │ │ ├── TradesTable.tsx │ │ │ ├── TradingOverview.jsx │ │ │ └── ViewOffer.jsx │ │ └── wallet │ │ │ ├── WalletAdd.tsx │ │ │ ├── WalletGraph.tsx │ │ │ ├── WalletHistory.tsx │ │ │ ├── WalletImport.tsx │ │ │ ├── WalletStatus.tsx │ │ │ ├── WalletStatusCard.tsx │ │ │ ├── WalletStatusHeight.tsx │ │ │ ├── Wallets.tsx │ │ │ ├── card │ │ │ ├── WalletCardPendingBalance.tsx │ │ │ ├── WalletCardPendingChange.tsx │ │ │ ├── WalletCardPendingTotalBalance.tsx │ │ │ ├── WalletCardSpendableBalance.tsx │ │ │ └── WalletCardTotalBalance.tsx │ │ │ ├── coloured │ │ │ └── WalletColoured.tsx │ │ │ ├── create │ │ │ ├── WalletCreate.jsx │ │ │ ├── createDIDWallet.js │ │ │ ├── createExistingColouredCoin.jsx │ │ │ ├── createNewColouredCoin.jsx │ │ │ ├── createRLAdmin.jsx │ │ │ ├── createRLUser.jsx │ │ │ └── recoverDIDWallet.js │ │ │ ├── did │ │ │ └── DIDWallet.js │ │ │ ├── rateLimited │ │ │ └── WalletRateLimited.jsx │ │ │ └── standard │ │ │ ├── WalletCards.tsx │ │ │ └── WalletStandard.tsx │ ├── config │ │ ├── config.js │ │ ├── env.ts │ │ └── locales.ts │ ├── constants │ │ ├── FarmerStatus.ts │ │ ├── FullNodeState.ts │ │ ├── PlotNFTState.ts │ │ ├── PlotStatus.ts │ │ ├── SyncingStatus.ts │ │ ├── TransactionType.ts │ │ ├── WalletType.ts │ │ ├── plotSizes.ts │ │ └── style.ts │ ├── dev_config.js │ ├── electron │ │ ├── handleSquirrelEvent.ts │ │ ├── main.tsx │ │ └── preload.js │ ├── fonts.d.ts │ ├── hocs │ │ └── WebsocketConnection.js │ ├── hooks │ │ ├── useAbsorbRewards.tsx │ │ ├── useCurrencyCode.ts │ │ ├── useFarmerStatus.ts │ │ ├── useFullNodeState.ts │ │ ├── useIsMainnet.tsx │ │ ├── useJoinPool.tsx │ │ ├── useLocale.ts │ │ ├── useOpenDialog.ts │ │ ├── useOpenExternal.ts │ │ ├── usePayoutAddress.ts │ │ ├── usePeak.ts │ │ ├── usePlotNFTDetails.ts │ │ ├── usePlotNFTExternalDetails.ts │ │ ├── usePlotNFTName.ts │ │ ├── usePlotNFTs.ts │ │ ├── usePlots.ts │ │ ├── usePoolInfo.ts │ │ ├── useSelectDirectory.tsx │ │ ├── useSelectFile.tsx │ │ ├── useStandardWallet.ts │ │ ├── useThrottleSelector.ts │ │ ├── useTransaction.ts │ │ ├── useUnconfirmedPlotNFTs.ts │ │ └── useWallet.ts │ ├── index.html │ ├── index.tsx │ ├── locales │ │ ├── README.md │ │ ├── af-ZA │ │ │ └── messages.po │ │ ├── ak-GH │ │ │ └── messages.po │ │ ├── ar-SA │ │ │ └── messages.po │ │ ├── be-BY │ │ │ └── messages.po │ │ ├── bg-BG │ │ │ └── messages.po │ │ ├── bn-BD │ │ │ └── messages.po │ │ ├── bn-IN │ │ │ └── messages.po │ │ ├── bs-BA │ │ │ └── messages.po │ │ ├── ca-ES │ │ │ └── messages.po │ │ ├── cs-CZ │ │ │ └── messages.po │ │ ├── cy-GB │ │ │ └── messages.po │ │ ├── da-DK │ │ │ └── messages.po │ │ ├── de-DE │ │ │ └── messages.po │ │ ├── el-GR │ │ │ └── messages.po │ │ ├── en-AU │ │ │ └── messages.po │ │ ├── en-NZ │ │ │ └── messages.po │ │ ├── en-PT │ │ │ └── messages.po │ │ ├── en-US │ │ │ └── messages.po │ │ ├── eo-UY │ │ │ └── messages.po │ │ ├── es-AR │ │ │ └── messages.po │ │ ├── es-ES │ │ │ └── messages.po │ │ ├── es-MX │ │ │ └── messages.po │ │ ├── fa-IR │ │ │ └── messages.po │ │ ├── fi-FI │ │ │ └── messages.po │ │ ├── fr-FR │ │ │ └── messages.po │ │ ├── he-IL │ │ │ └── messages.po │ │ ├── hi-IN │ │ │ └── messages.po │ │ ├── hr-HR │ │ │ └── messages.po │ │ ├── hu-HU │ │ │ └── messages.po │ │ ├── id-ID │ │ │ └── messages.po │ │ ├── is-IS │ │ │ └── messages.po │ │ ├── it-IT │ │ │ └── messages.po │ │ ├── ja-JP │ │ │ └── messages.po │ │ ├── km-KH │ │ │ └── messages.po │ │ ├── ko-KR │ │ │ └── messages.po │ │ ├── lol-US │ │ │ └── messages.po │ │ ├── lt-LT │ │ │ └── messages.po │ │ ├── lv-LV │ │ │ └── messages.po │ │ ├── mk-MK │ │ │ └── messages.po │ │ ├── mn-MN │ │ │ └── messages.po │ │ ├── nl-NL │ │ │ └── messages.po │ │ ├── no-NO │ │ │ └── messages.po │ │ ├── pa-IN │ │ │ └── messages.po │ │ ├── pl-PL │ │ │ └── messages.po │ │ ├── pt-BR │ │ │ └── messages.po │ │ ├── pt-PT │ │ │ └── messages.po │ │ ├── ro-RO │ │ │ └── messages.po │ │ ├── ru-RU │ │ │ └── messages.po │ │ ├── sk-SK │ │ │ └── messages.po │ │ ├── sl-SI │ │ │ └── messages.po │ │ ├── sq-AL │ │ │ └── messages.po │ │ ├── sr-SP │ │ │ └── messages.po │ │ ├── sv-SE │ │ │ └── messages.po │ │ ├── th-TH │ │ │ └── messages.po │ │ ├── tlh-AA │ │ │ └── messages.po │ │ ├── tr-TR │ │ │ └── messages.po │ │ ├── uk-UA │ │ │ └── messages.po │ │ ├── vi-VN │ │ │ └── messages.po │ │ ├── zh-CN │ │ │ └── messages.po │ │ └── zh-TW │ │ │ └── messages.po │ ├── logo.svg │ ├── middleware │ │ ├── middleware.js │ │ └── middleware_api.jsx │ ├── modules │ │ ├── backup.ts │ │ ├── createWallet.ts │ │ ├── daemon.ts │ │ ├── daemon_messages.js │ │ ├── dialog.tsx │ │ ├── entranceMenu.js │ │ ├── farmerMessages.js │ │ ├── farming.ts │ │ ├── fullNode.ts │ │ ├── fullnodeMessages.js │ │ ├── harvesterMessages.js │ │ ├── incoming.ts │ │ ├── localStorage.ts │ │ ├── message.js │ │ ├── mnemonic.ts │ │ ├── plotNFT.ts │ │ ├── plotQueue.ts │ │ ├── plotterControl.ts │ │ ├── plotter_messages.js │ │ ├── progress.ts │ │ ├── rootReducer.ts │ │ ├── store.js │ │ ├── trade.ts │ │ ├── trade_messages.js │ │ ├── walletMenu.ts │ │ └── websocket.ts │ ├── polyfill.ts │ ├── react-app-env.d.ts │ ├── readme.md │ ├── tests │ │ └── util │ │ │ ├── header.test.js │ │ │ ├── kale.test.js │ │ │ ├── units.test.js │ │ │ └── utils.test.js │ ├── theme │ │ ├── dark.ts │ │ ├── default.ts │ │ └── light.ts │ ├── types │ │ ├── Block.ts │ │ ├── Challenge.ts │ │ ├── Coin.ts │ │ ├── CoinSolution.ts │ │ ├── Connection.ts │ │ ├── FarmingInfo.ts │ │ ├── Fingerprint.ts │ │ ├── Foliage.ts │ │ ├── FoliageTransactionBlock.ts │ │ ├── G2Element.ts │ │ ├── Header.ts │ │ ├── InitialTargetState.ts │ │ ├── Peak.ts │ │ ├── Plot.ts │ │ ├── PlotAdd.ts │ │ ├── PlotNFT.ts │ │ ├── PlotNFTExternal.ts │ │ ├── PlotQueueItem.ts │ │ ├── Point.ts │ │ ├── PoolInfo.ts │ │ ├── PoolState.ts │ │ ├── PoolWalletStatus.ts │ │ ├── Program.ts │ │ ├── ProofsOfSpace.ts │ │ ├── SignagePoint.ts │ │ ├── SpendBundle.ts │ │ ├── SubBlock.ts │ │ ├── Transaction.ts │ │ ├── UnconfirmedPlotNFT.ts │ │ ├── Wallet.ts │ │ └── WalletBalance.ts │ └── util │ │ ├── blockHeightToTimestamp.ts │ │ ├── blockRewards.ts │ │ ├── computeStatistics.ts │ │ ├── config.js │ │ ├── createTransaction.ts │ │ ├── createWallet.ts │ │ ├── english.js │ │ ├── getDescriptiveError.ts │ │ ├── getPercentPointsSuccessfull.ts │ │ ├── getPoolInfo.ts │ │ ├── getWalletSyncingStatus.ts │ │ ├── header.js │ │ ├── isWindows.ts │ │ ├── kale.js │ │ ├── kaleEnvironment.js │ │ ├── mergeArrayItem.ts │ │ ├── mergeArrays.ts │ │ ├── normalizePoolState.ts │ │ ├── normalizeUrl.ts │ │ ├── plot_sizes.js │ │ ├── removeOldPoints.ts │ │ ├── service_names.js │ │ ├── toBech32m.ts │ │ ├── transaction_result.js │ │ ├── trie.js │ │ ├── units.js │ │ ├── utils.js │ │ └── wallet_types.js ├── styleguide.config.js ├── tsconfig.json ├── webpack.electron.babel.ts ├── webpack.react.babel.ts ├── windows.json └── winstaller.js ├── kale ├── __init__.py ├── clvm │ ├── singleton.py │ └── spend_sim.py ├── cmds │ ├── __init__.py │ ├── configure.py │ ├── farm.py │ ├── farm_funcs.py │ ├── init.py │ ├── init_funcs.py │ ├── kale.py │ ├── keys.py │ ├── keys_funcs.py │ ├── netspace.py │ ├── netspace_funcs.py │ ├── plotnft.py │ ├── plotnft_funcs.py │ ├── plots.py │ ├── show.py │ ├── start.py │ ├── start_funcs.py │ ├── stop.py │ ├── units.py │ ├── wallet.py │ └── wallet_funcs.py ├── consensus │ ├── __init__.py │ ├── block_body_validation.py │ ├── block_creation.py │ ├── block_header_validation.py │ ├── block_record.py │ ├── block_rewards.py │ ├── block_root_validation.py │ ├── blockchain.py │ ├── blockchain_interface.py │ ├── coinbase.py │ ├── condition_costs.py │ ├── constants.py │ ├── cost_calculator.py │ ├── default_constants.py │ ├── deficit.py │ ├── difficulty_adjustment.py │ ├── find_fork_point.py │ ├── full_block_to_block_record.py │ ├── get_block_challenge.py │ ├── make_sub_epoch_summary.py │ ├── multiprocess_validation.py │ ├── network_type.py │ ├── pos_quality.py │ ├── pot_iterations.py │ └── vdf_info_computation.py ├── daemon │ ├── __init__.py │ ├── client.py │ ├── server.py │ └── windows_signal.py ├── farmer │ ├── __init__.py │ ├── farmer.py │ └── farmer_api.py ├── full_node │ ├── __init__.py │ ├── block_store.py │ ├── bundle_tools.py │ ├── coin_store.py │ ├── full_node.py │ ├── full_node_api.py │ ├── full_node_store.py │ ├── generator.py │ ├── mempool.py │ ├── mempool_check_conditions.py │ ├── mempool_manager.py │ ├── signage_point.py │ ├── sync_store.py │ └── weight_proof.py ├── harvester │ ├── __init__.py │ ├── harvester.py │ └── harvester_api.py ├── introducer │ ├── __init__.py │ ├── introducer.py │ └── introducer_api.py ├── plotting │ ├── check_plots.py │ ├── create_plots.py │ └── plot_tools.py ├── pools │ ├── __init__.py │ ├── pool_config.py │ ├── pool_puzzles.py │ ├── pool_wallet.py │ └── pool_wallet_info.py ├── protocols │ ├── __init__.py │ ├── farmer_protocol.py │ ├── full_node_protocol.py │ ├── harvester_protocol.py │ ├── introducer_protocol.py │ ├── pool_protocol.py │ ├── protocol_message_types.py │ ├── shared_protocol.py │ ├── timelord_protocol.py │ └── wallet_protocol.py ├── pyinstaller.spec ├── rpc │ ├── __init__.py │ ├── farmer_rpc_api.py │ ├── farmer_rpc_client.py │ ├── full_node_rpc_api.py │ ├── full_node_rpc_client.py │ ├── harvester_rpc_api.py │ ├── harvester_rpc_client.py │ ├── rpc_client.py │ ├── rpc_server.py │ ├── wallet_rpc_api.py │ └── wallet_rpc_client.py ├── server │ ├── __init__.py │ ├── address_manager.py │ ├── address_manager_store.py │ ├── connection_utils.py │ ├── introducer_peers.py │ ├── node_discovery.py │ ├── outbound_message.py │ ├── rate_limits.py │ ├── reconnect_task.py │ ├── server.py │ ├── ssl_context.py │ ├── start_farmer.py │ ├── start_full_node.py │ ├── start_harvester.py │ ├── start_introducer.py │ ├── start_service.py │ ├── start_timelord.py │ ├── start_wallet.py │ ├── upnp.py │ └── ws_connection.py ├── simulator │ ├── __init__.py │ ├── full_node_simulator.py │ ├── simulator_constants.py │ ├── simulator_protocol.py │ └── start_simulator.py ├── ssl │ ├── create_ssl.py │ ├── dst_root_ca.pem │ ├── kale_ca.crt │ └── kale_ca.key ├── timelord │ ├── __init__.py │ ├── iters_from_block.py │ ├── timelord.py │ ├── timelord_api.py │ ├── timelord_launcher.py │ ├── timelord_state.py │ └── types.py ├── types │ ├── __init__.py │ ├── announcement.py │ ├── blockchain_format │ │ ├── __init__.py │ │ ├── classgroup.py │ │ ├── coin.py │ │ ├── foliage.py │ │ ├── pool_target.py │ │ ├── program.py │ │ ├── proof_of_space.py │ │ ├── reward_chain_block.py │ │ ├── sized_bytes.py │ │ ├── slots.py │ │ ├── sub_epoch_summary.py │ │ ├── tree_hash.py │ │ └── vdf.py │ ├── coin_record.py │ ├── coin_solution.py │ ├── coin_spend.py │ ├── condition_opcodes.py │ ├── condition_with_args.py │ ├── end_of_slot_bundle.py │ ├── full_block.py │ ├── generator_types.py │ ├── header_block.py │ ├── mempool_inclusion_status.py │ ├── mempool_item.py │ ├── name_puzzle_condition.py │ ├── peer_info.py │ ├── spend_bundle.py │ ├── unfinished_block.py │ ├── unfinished_header_block.py │ └── weight_proof.py ├── util │ ├── __init__.py │ ├── api_decorators.py │ ├── bech32m.py │ ├── block_cache.py │ ├── block_tools.py │ ├── byte_types.py │ ├── chain_utils.py │ ├── chia_logging.py │ ├── clvm.py │ ├── condition_tools.py │ ├── config.py │ ├── create_alert_file.py │ ├── db_wrapper.py │ ├── default_root.py │ ├── english.txt │ ├── errors.py │ ├── generator_tools.py │ ├── hash.py │ ├── initial-config.yaml │ ├── ints.py │ ├── json_util.py │ ├── kale_logging.py │ ├── keychain.py │ ├── lru_cache.py │ ├── make_test_constants.py │ ├── merkle_set.py │ ├── misc.py │ ├── network.py │ ├── partial_func.py │ ├── path.py │ ├── pip_import.py │ ├── prev_transaction_block.py │ ├── profiler.py │ ├── recursive_replace.py │ ├── safe_cancel_task.py │ ├── service_groups.py │ ├── setproctitle.py │ ├── significant_bits.py │ ├── streamable.py │ ├── struct_stream.py │ ├── type_checking.py │ ├── validate_alert.py │ ├── vdf_prover.py │ ├── wallet_tools.py │ └── ws_message.py └── wallet │ ├── __init__.py │ ├── block_record.py │ ├── cc_wallet │ ├── __init__.py │ ├── cc_info.py │ ├── cc_utils.py │ ├── cc_wallet.py │ ├── ccparent.py │ └── debug_spend_bundle.py │ ├── chialisp.py │ ├── derivation_record.py │ ├── derive_keys.py │ ├── did_wallet │ ├── __init__.py │ ├── did_info.py │ ├── did_wallet.py │ └── did_wallet_puzzles.py │ ├── kalelisp.py │ ├── key_val_store.py │ ├── lineage_proof.py │ ├── puzzles │ ├── __init__.py │ ├── block_program_zero.clvm │ ├── block_program_zero.clvm.hex │ ├── block_program_zero.clvm.hex.sha256tree │ ├── calculate_synthetic_public_key.clvm │ ├── calculate_synthetic_public_key.clvm.hex │ ├── calculate_synthetic_public_key.clvm.hex.sha256tree │ ├── cc.clvm │ ├── cc.clvm.hex │ ├── cc.clvm.hex.sha256tree │ ├── cc_loader.py │ ├── condition_codes.clvm │ ├── create-lock-puzzlehash.clvm │ ├── create-lock-puzzlehash.clvm.hex.sha256tree │ ├── curry-and-treehash.clinc │ ├── decompress_coin_spend_entry.clvm │ ├── decompress_coin_spend_entry.clvm.hex │ ├── decompress_coin_spend_entry.clvm.hex.sha256tree │ ├── decompress_coin_spend_entry_with_prefix.clvm │ ├── decompress_coin_spend_entry_with_prefix.clvm.hex │ ├── decompress_coin_spend_entry_with_prefix.clvm.hex.sha256tree │ ├── decompress_puzzle.clvm │ ├── decompress_puzzle.clvm.hex │ ├── decompress_puzzle.clvm.hex.sha256tree │ ├── did_innerpuz.clvm │ ├── did_innerpuz.clvm.hex │ ├── did_innerpuz.clvm.hex.sha256tree │ ├── generator_for_single_coin.clvm │ ├── generator_for_single_coin.clvm.hex │ ├── generator_for_single_coin.clvm.hex.sha256tree │ ├── generator_loader.py │ ├── genesis-by-coin-id-with-0.clvm │ ├── genesis-by-coin-id-with-0.clvm.hex │ ├── genesis-by-coin-id-with-0.clvm.hex.sha256tree │ ├── genesis-by-puzzle-hash-with-0.clvm │ ├── genesis-by-puzzle-hash-with-0.clvm.hex │ ├── genesis-by-puzzle-hash-with-0.clvm.hex.sha256tree │ ├── genesis_by_coin_id_with_0.py │ ├── genesis_by_puzzle_hash_with_0.py │ ├── kalelisp_deserialisation.clvm │ ├── kalelisp_deserialisation.clvm.hex │ ├── kalelisp_deserialisation.clvm.hex.sha256tree │ ├── load_clvm.py │ ├── lock.inner.puzzle.clvm │ ├── lock.inner.puzzle.clvm.hex │ ├── lock.inner.puzzle.clvm.hex.sha256tree │ ├── p2_conditions.clvm │ ├── p2_conditions.clvm.hex │ ├── p2_conditions.clvm.hex.sha256tree │ ├── p2_conditions.py │ ├── p2_delegated_conditions.clvm │ ├── p2_delegated_conditions.clvm.hex │ ├── p2_delegated_conditions.clvm.hex.sha256tree │ ├── p2_delegated_conditions.py │ ├── p2_delegated_puzzle.clvm │ ├── p2_delegated_puzzle.clvm.hex │ ├── p2_delegated_puzzle.clvm.hex.sha256tree │ ├── p2_delegated_puzzle.py │ ├── p2_delegated_puzzle_or_hidden_puzzle.clvm │ ├── p2_delegated_puzzle_or_hidden_puzzle.clvm.hex │ ├── p2_delegated_puzzle_or_hidden_puzzle.clvm.hex.sha256tree │ ├── p2_delegated_puzzle_or_hidden_puzzle.py │ ├── p2_m_of_n_delegate_direct.clvm │ ├── p2_m_of_n_delegate_direct.clvm.hex │ ├── p2_m_of_n_delegate_direct.clvm.hex.sha256tree │ ├── p2_m_of_n_delegate_direct.py │ ├── p2_puzzle_hash.clvm │ ├── p2_puzzle_hash.clvm.hex │ ├── p2_puzzle_hash.clvm.hex.sha256tree │ ├── p2_puzzle_hash.py │ ├── p2_singleton.clvm │ ├── p2_singleton.clvm.hex │ ├── p2_singleton.clvm.hex.sha256tree │ ├── p2_singleton_or_delayed_puzhash.clvm │ ├── p2_singleton_or_delayed_puzhash.clvm.hex │ ├── p2_singleton_or_delayed_puzhash.clvm.hex.sha256tree │ ├── pool_member_innerpuz.clvm │ ├── pool_member_innerpuz.clvm.hex │ ├── pool_member_innerpuz.clvm.hex.sha256tree │ ├── pool_waitingroom_innerpuz.clvm │ ├── pool_waitingroom_innerpuz.clvm.hex │ ├── pool_waitingroom_innerpuz.clvm.hex.sha256tree │ ├── prefarm │ │ ├── make_prefarm_ph.py │ │ └── spend_prefarm.py │ ├── puzzle_utils.py │ ├── recompile-all.sh │ ├── rl.clvm │ ├── rl.clvm.hex │ ├── rl.clvm.hex.sha256tree │ ├── rl_aggregation.clvm │ ├── rl_aggregation.clvm.hex │ ├── rl_aggregation.clvm.hex.sha256tree │ ├── rom_bootstrap_generator.clvm │ ├── rom_bootstrap_generator.clvm.hex │ ├── rom_bootstrap_generator.clvm.hex.sha256tree │ ├── rom_bootstrap_generator.py │ ├── sha256tree_module.clvm │ ├── sha256tree_module.clvm.hex │ ├── sha256tree_module.clvm.hex.sha256tree │ ├── singleton_launcher.clvm │ ├── singleton_launcher.clvm.hex │ ├── singleton_launcher.clvm.hex.sha256tree │ ├── singleton_top_layer.clvm │ ├── singleton_top_layer.clvm.hex │ ├── singleton_top_layer.clvm.hex.sha256tree │ ├── singleton_top_layer.py │ ├── singleton_truths.clib │ ├── test_cc.py │ ├── test_generator_deserialize.clvm │ ├── test_generator_deserialize.clvm.hex │ ├── test_generator_deserialize.clvm.hex.sha256tree │ ├── test_multiple_generator_input_arguments.clvm │ ├── test_multiple_generator_input_arguments.clvm.hex │ └── test_multiple_generator_input_arguments.clvm.hex.sha256tree │ ├── rl_wallet │ ├── __init__.py │ ├── rl_wallet.py │ └── rl_wallet_puzzles.py │ ├── secret_key_store.py │ ├── settings │ ├── default_settings.py │ ├── settings_objects.py │ └── user_settings.py │ ├── sign_coin_solutions.py │ ├── sign_coin_spends.py │ ├── trade_manager.py │ ├── trade_record.py │ ├── trading │ ├── __init__.py │ ├── trade_status.py │ └── trade_store.py │ ├── transaction_record.py │ ├── util │ ├── __init__.py │ ├── backup_utils.py │ ├── debug_spend_bundle.py │ ├── trade_utils.py │ ├── transaction_type.py │ └── wallet_types.py │ ├── wallet.py │ ├── wallet_action.py │ ├── wallet_action_store.py │ ├── wallet_block_store.py │ ├── wallet_blockchain.py │ ├── wallet_coin_record.py │ ├── wallet_coin_store.py │ ├── wallet_info.py │ ├── wallet_interested_store.py │ ├── wallet_node.py │ ├── wallet_node_api.py │ ├── wallet_pool_store.py │ ├── wallet_puzzle_store.py │ ├── wallet_state_manager.py │ ├── wallet_sync_store.py │ ├── wallet_transaction_store.py │ └── wallet_user_store.py ├── mozilla-ca ├── .github │ └── workflows │ │ └── update-cert.yaml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py └── cacert.pem ├── mypy.ini ├── pyproject.toml ├── run-py-tests.sh ├── setup.py └── tests ├── README.md ├── __init__.py ├── block_tools.py ├── blockchain ├── __init__.py ├── config.py ├── test_blockchain.py └── test_blockchain_transactions.py ├── build-workflows.py ├── check_pytest_monitor_output.py ├── chia-start-sim ├── clvm ├── __init__.py ├── coin_store.py ├── config.py ├── test_chialisp_deserialization.py ├── test_clvm_compilation.py ├── test_puzzles.py ├── test_serialized_program.py ├── test_singletons.py └── test_spend_sim.py ├── connection_utils.py ├── core ├── __init__.py ├── consensus │ ├── __init__.py │ └── test_pot_iterations.py ├── daemon │ └── test_daemon.py ├── fixtures.py ├── full_node │ ├── __init__.py │ ├── config.py │ ├── dos │ │ ├── __init__.py │ │ └── config.py │ ├── full_sync │ │ ├── __init__.py │ │ ├── config.py │ │ └── test_full_sync.py │ ├── ram_db.py │ ├── test_address_manager.py │ ├── test_block_store.py │ ├── test_coin_store.py │ ├── test_conditions.py │ ├── test_full_node.py │ ├── test_full_node_store.py │ ├── test_initial_freeze.py │ ├── test_mempool.py │ ├── test_mempool_performance.py │ ├── test_node_load.py │ ├── test_performance.py │ ├── test_sync_store.py │ └── test_transactions.py ├── make_block_generator.py ├── node_height.py ├── server │ ├── test_dos.py │ └── test_rate_limits.py ├── ssl │ └── test_ssl.py ├── test_cost_calculation.py ├── test_farmer_harvester_rpc.py ├── test_filter.py ├── test_full_node_rpc.py ├── test_merkle_set.py ├── test_setproctitle.py ├── types │ ├── __init__.py │ ├── test_coin.py │ ├── test_proof_of_space.py │ └── test_spend_bundle.py └── util │ ├── __init__.py │ ├── test_keychain.py │ ├── test_lru_cache.py │ ├── test_significant_bits.py │ ├── test_streamable.py │ └── test_type_checking.py ├── generator ├── test_compression.py ├── test_generator_types.py ├── test_rom.py └── test_scan.py ├── kale-start-sim ├── pools ├── __init__.py ├── test_pool_config.py ├── test_pool_puzzles_lifecycle.py ├── test_pool_rpc.py ├── test_pool_wallet.py └── test_wallet_pool_store.py ├── pytest.ini ├── runner-templates ├── build-test-macos ├── build-test-ubuntu ├── checkout-test-plots.include.yml └── install-timelord.include.yml ├── setup_nodes.py ├── simulation ├── __init__.py ├── config.py └── test_simulation.py ├── testconfig.py ├── time_out_assert.py ├── util ├── __init__.py ├── alert_server.py ├── benchmark_cost.py ├── bip39_test_vectors.json ├── config.py ├── generator_tools_testing.py ├── key_tool.py ├── misc.py └── test_struct_stream.py ├── wallet ├── __init__.py ├── cc_wallet │ ├── __init__.py │ ├── test_cc_wallet.py │ └── test_trades.py ├── did_wallet │ └── test_did.py ├── rl_wallet │ ├── __init__.py │ ├── test_rl_rpc.py │ └── test_rl_wallet.py ├── rpc │ ├── __init__.py │ └── test_wallet_rpc.py ├── sync │ ├── __init__.py │ ├── config.py │ └── test_wallet_sync.py ├── test_backup.py ├── test_bech32m.py ├── test_chialisp.py ├── test_puzzle_store.py ├── test_singleton.py ├── test_singleton_lifecycle.py ├── test_singleton_lifecycle_fast.py ├── test_taproot.py ├── test_wallet.py ├── test_wallet_interested_store.py └── test_wallet_store.py ├── wallet_tools.py └── weight_proof └── test_weight_proof.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/.gitmodules -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/.isort.cfg -------------------------------------------------------------------------------- /BUILD_TIMELORD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/BUILD_TIMELORD.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /delete_oldbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/delete_oldbuild.bat -------------------------------------------------------------------------------- /install-gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/install-gui.sh -------------------------------------------------------------------------------- /install-timelord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/install-timelord.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/install.sh -------------------------------------------------------------------------------- /kale-blockchain-gui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/.editorconfig -------------------------------------------------------------------------------- /kale-blockchain-gui/.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale-blockchain-gui/.env.example: -------------------------------------------------------------------------------- 1 | LOCAL_TEST=true -------------------------------------------------------------------------------- /kale-blockchain-gui/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/.eslintignore -------------------------------------------------------------------------------- /kale-blockchain-gui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/.eslintrc.js -------------------------------------------------------------------------------- /kale-blockchain-gui/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/.github/dependabot.yml -------------------------------------------------------------------------------- /kale-blockchain-gui/.github/workflows/super-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/.github/workflows/super-linter.yml -------------------------------------------------------------------------------- /kale-blockchain-gui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/.gitignore -------------------------------------------------------------------------------- /kale-blockchain-gui/.linguirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/.linguirc -------------------------------------------------------------------------------- /kale-blockchain-gui/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/.prettierrc.js -------------------------------------------------------------------------------- /kale-blockchain-gui/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /kale-blockchain-gui/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/CONTRIBUTING.md -------------------------------------------------------------------------------- /kale-blockchain-gui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/LICENSE -------------------------------------------------------------------------------- /kale-blockchain-gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/README.md -------------------------------------------------------------------------------- /kale-blockchain-gui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/babel.config.js -------------------------------------------------------------------------------- /kale-blockchain-gui/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/crowdin.yml -------------------------------------------------------------------------------- /kale-blockchain-gui/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/entitlements.mac.plist -------------------------------------------------------------------------------- /kale-blockchain-gui/kaleblockchain.provisionprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/kaleblockchain.provisionprofile -------------------------------------------------------------------------------- /kale-blockchain-gui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/package-lock.json -------------------------------------------------------------------------------- /kale-blockchain-gui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/package.json -------------------------------------------------------------------------------- /kale-blockchain-gui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/public/favicon.ico -------------------------------------------------------------------------------- /kale-blockchain-gui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/public/index.html -------------------------------------------------------------------------------- /kale-blockchain-gui/remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/remote.md -------------------------------------------------------------------------------- /kale-blockchain-gui/src/StyleguidistMuiWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/StyleguidistMuiWrapper.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/fonts/ionicons.eot -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/fonts/ionicons.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/fonts/ionicons.ttf -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/fonts/ionicons.woff -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/fonts/ionicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/fonts/ionicons.woff2 -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/circle-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/circle-cropped.png -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/farm_sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/farm_sidebar.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/help_sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/help_sidebar.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/home_sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/home_sidebar.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/kale.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/kale.icns -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/kale.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/kale.ico -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/kale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/kale.png -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/kale_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/kale_circle.png -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/kale_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/kale_circle.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/kale_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/kale_logo.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/noun_Farm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/noun_Farm.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/plot_sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/plot_sidebar.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/pool_sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/pool_sidebar.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/assets/img/wallet_sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/assets/img/wallet_sidebar.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/about/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/about/About.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/app/App.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/app/AppLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/app/AppLoading.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/app/AppRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/app/AppRouter.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/app/AppTimeBomb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/app/AppTimeBomb.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/app/fonts/Fonts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/app/fonts/Fonts.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/block/Block.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/block/Block.jsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Accordion/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Accordion'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Address/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Address'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/AdvancedOptions/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AdvancedOptions'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/AlertDialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AlertDialog'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/AspectRatio/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AspectRatio'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Autocomplete/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Autocomplete'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/ButtonLoading/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ButtonLoading'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/ButtonSelected/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ButtonSelected'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Card/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Card'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/CardHero/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CardHero'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/CardKeyValue/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CardKeyValue'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/CardStep/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CardStep'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Checkbox'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/ConfirmDialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ConfirmDialog'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/CopyToClipboard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CopyToClipboard'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/DarkModeToggle/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DarkModeToggle'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/DialogActions/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DialogActions'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Dropzone/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Dropzone'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Fee/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Fee'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Flex/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Flex'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Form/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Form'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/FormBackButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FormBackButton'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/FormatBytes/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FormatBytes'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/FormatConnectionStatus/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FormatConnectionStatus'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/FormatLargeNumber/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FormatLargeNumber'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/GuestRoute/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GuestRoute'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/IconButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './IconButton'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Indicator/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Indicator'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/InputBase/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './InputBase'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Link/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Link'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Loading/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Loading'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/LocaleToggle/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LocaleToggle'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Log/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Log'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Logo/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Logo'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/ModalDialogs/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ModalDialogs'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/More/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './More'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/PrivateRoute/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PrivateRoute'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/RadioGroup/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RadioGroup'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Select/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Select'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/SideBarItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SideBarItem'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Spinner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Spinner'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/StateIndicator/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './StateIndicator'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/StateTypography/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './StateTypography'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Table/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Table'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/ThemeProvider/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ThemeProvider'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/ToolbarSpacing/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ToolbarSpacing'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/Tooltip/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Tooltip'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/TooltipIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TooltipIcon'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/TooltipTypography/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TooltipTypography'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/components/UnitFormat/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UnitFormat'; 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/core/index.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/core/utils/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/farm/Farm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/farm/Farm.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/Farm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/Farm.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/Home.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/Kale.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/Kale.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/Keys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/Keys.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/Plot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/Plot.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/PlotHero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/PlotHero.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/Pool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/Pool.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/Status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/Status.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/Trade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/Trade.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/Wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/Wallet.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/icons/index.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/plot/Plot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/plot/Plot.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/plot/PlotAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/plot/PlotAction.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/plot/PlotHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/plot/PlotHeader.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/plot/PlotStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/plot/PlotStatus.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/pool/Pool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/pool/Pool.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/pool/PoolHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/pool/PoolHeader.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/pool/PoolHero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/pool/PoolHero.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/pool/PoolInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/pool/PoolInfo.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/pool/PoolJoin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/pool/PoolJoin.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/components/wallet/Wallets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/components/wallet/Wallets.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/config/config.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/config/env.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/config/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/config/locales.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/constants/FarmerStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/constants/FarmerStatus.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/constants/FullNodeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/constants/FullNodeState.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/constants/PlotNFTState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/constants/PlotNFTState.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/constants/PlotStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/constants/PlotStatus.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/constants/SyncingStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/constants/SyncingStatus.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/constants/TransactionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/constants/TransactionType.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/constants/WalletType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/constants/WalletType.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/constants/plotSizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/constants/plotSizes.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/constants/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/constants/style.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/dev_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/dev_config.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/electron/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/electron/main.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/electron/preload.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/fonts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/fonts.d.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hocs/WebsocketConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hocs/WebsocketConnection.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useAbsorbRewards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useAbsorbRewards.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useCurrencyCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useCurrencyCode.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useFarmerStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useFarmerStatus.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useFullNodeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useFullNodeState.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useIsMainnet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useIsMainnet.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useJoinPool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useJoinPool.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useLocale.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useOpenDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useOpenDialog.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useOpenExternal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useOpenExternal.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/usePayoutAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/usePayoutAddress.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/usePeak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/usePeak.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/usePlotNFTDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/usePlotNFTDetails.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/usePlotNFTName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/usePlotNFTName.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/usePlotNFTs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/usePlotNFTs.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/usePlots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/usePlots.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/usePoolInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/usePoolInfo.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useSelectDirectory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useSelectDirectory.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useSelectFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useSelectFile.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useStandardWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useStandardWallet.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useThrottleSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useThrottleSelector.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useTransaction.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/hooks/useWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/hooks/useWallet.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/index.html -------------------------------------------------------------------------------- /kale-blockchain-gui/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/index.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/README.md -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/af-ZA/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/af-ZA/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/ak-GH/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/ak-GH/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/ar-SA/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/ar-SA/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/be-BY/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/be-BY/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/bg-BG/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/bg-BG/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/bn-BD/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/bn-BD/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/bn-IN/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/bn-IN/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/bs-BA/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/bs-BA/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/ca-ES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/ca-ES/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/cs-CZ/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/cs-CZ/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/cy-GB/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/cy-GB/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/da-DK/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/da-DK/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/de-DE/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/de-DE/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/el-GR/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/el-GR/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/en-AU/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/en-AU/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/en-NZ/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/en-NZ/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/en-PT/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/en-PT/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/en-US/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/en-US/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/eo-UY/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/eo-UY/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/es-AR/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/es-AR/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/es-ES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/es-ES/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/es-MX/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/es-MX/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/fa-IR/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/fa-IR/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/fi-FI/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/fi-FI/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/fr-FR/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/fr-FR/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/he-IL/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/he-IL/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/hi-IN/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/hi-IN/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/hr-HR/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/hr-HR/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/hu-HU/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/hu-HU/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/id-ID/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/id-ID/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/is-IS/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/is-IS/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/it-IT/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/it-IT/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/ja-JP/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/ja-JP/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/km-KH/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/km-KH/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/ko-KR/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/ko-KR/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/lol-US/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/lol-US/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/lt-LT/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/lt-LT/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/lv-LV/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/lv-LV/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/mk-MK/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/mk-MK/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/mn-MN/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/mn-MN/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/nl-NL/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/nl-NL/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/no-NO/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/no-NO/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/pa-IN/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/pa-IN/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/pl-PL/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/pl-PL/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/pt-BR/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/pt-BR/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/pt-PT/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/pt-PT/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/ro-RO/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/ro-RO/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/ru-RU/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/ru-RU/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/sk-SK/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/sk-SK/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/sl-SI/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/sl-SI/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/sq-AL/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/sq-AL/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/sr-SP/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/sr-SP/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/sv-SE/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/sv-SE/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/th-TH/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/th-TH/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/tlh-AA/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/tlh-AA/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/tr-TR/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/tr-TR/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/uk-UA/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/uk-UA/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/vi-VN/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/vi-VN/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/zh-CN/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/zh-CN/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/locales/zh-TW/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/locales/zh-TW/messages.po -------------------------------------------------------------------------------- /kale-blockchain-gui/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/logo.svg -------------------------------------------------------------------------------- /kale-blockchain-gui/src/middleware/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/middleware/middleware.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/middleware/middleware_api.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/middleware/middleware_api.jsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/backup.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/createWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/createWallet.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/daemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/daemon.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/daemon_messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/daemon_messages.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/dialog.tsx -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/entranceMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/entranceMenu.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/farmerMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/farmerMessages.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/farming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/farming.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/fullNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/fullNode.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/fullnodeMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/fullnodeMessages.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/harvesterMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/harvesterMessages.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/incoming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/incoming.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/localStorage.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/message.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/mnemonic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/mnemonic.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/plotNFT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/plotNFT.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/plotQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/plotQueue.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/plotterControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/plotterControl.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/plotter_messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/plotter_messages.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/progress.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/rootReducer.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/store.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/trade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/trade.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/trade_messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/trade_messages.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/walletMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/walletMenu.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/modules/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/modules/websocket.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/polyfill.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /kale-blockchain-gui/src/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/readme.md -------------------------------------------------------------------------------- /kale-blockchain-gui/src/tests/util/header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/tests/util/header.test.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/tests/util/kale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/tests/util/kale.test.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/tests/util/units.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/tests/util/units.test.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/tests/util/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/tests/util/utils.test.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/theme/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/theme/dark.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/theme/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/theme/default.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/theme/light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/theme/light.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Block.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Challenge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Challenge.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Coin.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/CoinSolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/CoinSolution.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Connection.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/FarmingInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/FarmingInfo.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Fingerprint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Fingerprint.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Foliage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Foliage.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/G2Element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/G2Element.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Header.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/InitialTargetState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/InitialTargetState.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Peak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Peak.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Plot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Plot.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/PlotAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/PlotAdd.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/PlotNFT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/PlotNFT.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/PlotNFTExternal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/PlotNFTExternal.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/PlotQueueItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/PlotQueueItem.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Point.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/PoolInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/PoolInfo.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/PoolState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/PoolState.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/PoolWalletStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/PoolWalletStatus.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Program.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Program.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/ProofsOfSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/ProofsOfSpace.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/SignagePoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/SignagePoint.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/SpendBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/SpendBundle.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/SubBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/SubBlock.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Transaction.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/UnconfirmedPlotNFT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/UnconfirmedPlotNFT.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/Wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/Wallet.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/types/WalletBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/types/WalletBalance.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/blockHeightToTimestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/blockHeightToTimestamp.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/blockRewards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/blockRewards.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/computeStatistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/computeStatistics.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/config.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/createTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/createTransaction.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/createWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/createWallet.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/english.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/english.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/getDescriptiveError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/getDescriptiveError.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/getPoolInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/getPoolInfo.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/getWalletSyncingStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/getWalletSyncingStatus.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/header.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/isWindows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/isWindows.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/kale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/kale.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/kaleEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/kaleEnvironment.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/mergeArrayItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/mergeArrayItem.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/mergeArrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/mergeArrays.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/normalizePoolState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/normalizePoolState.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/normalizeUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/normalizeUrl.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/plot_sizes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/plot_sizes.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/removeOldPoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/removeOldPoints.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/service_names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/service_names.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/toBech32m.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/toBech32m.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/transaction_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/transaction_result.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/trie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/trie.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/units.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/utils.js -------------------------------------------------------------------------------- /kale-blockchain-gui/src/util/wallet_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/src/util/wallet_types.js -------------------------------------------------------------------------------- /kale-blockchain-gui/styleguide.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/styleguide.config.js -------------------------------------------------------------------------------- /kale-blockchain-gui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/tsconfig.json -------------------------------------------------------------------------------- /kale-blockchain-gui/webpack.electron.babel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/webpack.electron.babel.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/webpack.react.babel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/webpack.react.babel.ts -------------------------------------------------------------------------------- /kale-blockchain-gui/windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/windows.json -------------------------------------------------------------------------------- /kale-blockchain-gui/winstaller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale-blockchain-gui/winstaller.js -------------------------------------------------------------------------------- /kale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/__init__.py -------------------------------------------------------------------------------- /kale/clvm/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/clvm/singleton.py -------------------------------------------------------------------------------- /kale/clvm/spend_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/clvm/spend_sim.py -------------------------------------------------------------------------------- /kale/cmds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/cmds/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/configure.py -------------------------------------------------------------------------------- /kale/cmds/farm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/farm.py -------------------------------------------------------------------------------- /kale/cmds/farm_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/farm_funcs.py -------------------------------------------------------------------------------- /kale/cmds/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/init.py -------------------------------------------------------------------------------- /kale/cmds/init_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/init_funcs.py -------------------------------------------------------------------------------- /kale/cmds/kale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/kale.py -------------------------------------------------------------------------------- /kale/cmds/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/keys.py -------------------------------------------------------------------------------- /kale/cmds/keys_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/keys_funcs.py -------------------------------------------------------------------------------- /kale/cmds/netspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/netspace.py -------------------------------------------------------------------------------- /kale/cmds/netspace_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/netspace_funcs.py -------------------------------------------------------------------------------- /kale/cmds/plotnft.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/cmds/plotnft_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/plotnft_funcs.py -------------------------------------------------------------------------------- /kale/cmds/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/plots.py -------------------------------------------------------------------------------- /kale/cmds/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/show.py -------------------------------------------------------------------------------- /kale/cmds/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/start.py -------------------------------------------------------------------------------- /kale/cmds/start_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/start_funcs.py -------------------------------------------------------------------------------- /kale/cmds/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/stop.py -------------------------------------------------------------------------------- /kale/cmds/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/units.py -------------------------------------------------------------------------------- /kale/cmds/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/wallet.py -------------------------------------------------------------------------------- /kale/cmds/wallet_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/cmds/wallet_funcs.py -------------------------------------------------------------------------------- /kale/consensus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/consensus/block_body_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/block_body_validation.py -------------------------------------------------------------------------------- /kale/consensus/block_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/block_creation.py -------------------------------------------------------------------------------- /kale/consensus/block_header_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/block_header_validation.py -------------------------------------------------------------------------------- /kale/consensus/block_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/block_record.py -------------------------------------------------------------------------------- /kale/consensus/block_rewards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/block_rewards.py -------------------------------------------------------------------------------- /kale/consensus/block_root_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/block_root_validation.py -------------------------------------------------------------------------------- /kale/consensus/blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/blockchain.py -------------------------------------------------------------------------------- /kale/consensus/blockchain_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/blockchain_interface.py -------------------------------------------------------------------------------- /kale/consensus/coinbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/coinbase.py -------------------------------------------------------------------------------- /kale/consensus/condition_costs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/condition_costs.py -------------------------------------------------------------------------------- /kale/consensus/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/constants.py -------------------------------------------------------------------------------- /kale/consensus/cost_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/cost_calculator.py -------------------------------------------------------------------------------- /kale/consensus/default_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/default_constants.py -------------------------------------------------------------------------------- /kale/consensus/deficit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/deficit.py -------------------------------------------------------------------------------- /kale/consensus/difficulty_adjustment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/difficulty_adjustment.py -------------------------------------------------------------------------------- /kale/consensus/find_fork_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/find_fork_point.py -------------------------------------------------------------------------------- /kale/consensus/full_block_to_block_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/full_block_to_block_record.py -------------------------------------------------------------------------------- /kale/consensus/get_block_challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/get_block_challenge.py -------------------------------------------------------------------------------- /kale/consensus/make_sub_epoch_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/make_sub_epoch_summary.py -------------------------------------------------------------------------------- /kale/consensus/multiprocess_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/multiprocess_validation.py -------------------------------------------------------------------------------- /kale/consensus/network_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/network_type.py -------------------------------------------------------------------------------- /kale/consensus/pos_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/pos_quality.py -------------------------------------------------------------------------------- /kale/consensus/pot_iterations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/pot_iterations.py -------------------------------------------------------------------------------- /kale/consensus/vdf_info_computation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/consensus/vdf_info_computation.py -------------------------------------------------------------------------------- /kale/daemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/daemon/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/daemon/client.py -------------------------------------------------------------------------------- /kale/daemon/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/daemon/server.py -------------------------------------------------------------------------------- /kale/daemon/windows_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/daemon/windows_signal.py -------------------------------------------------------------------------------- /kale/farmer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/farmer/farmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/farmer/farmer.py -------------------------------------------------------------------------------- /kale/farmer/farmer_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/farmer/farmer_api.py -------------------------------------------------------------------------------- /kale/full_node/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/full_node/block_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/block_store.py -------------------------------------------------------------------------------- /kale/full_node/bundle_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/bundle_tools.py -------------------------------------------------------------------------------- /kale/full_node/coin_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/coin_store.py -------------------------------------------------------------------------------- /kale/full_node/full_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/full_node.py -------------------------------------------------------------------------------- /kale/full_node/full_node_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/full_node_api.py -------------------------------------------------------------------------------- /kale/full_node/full_node_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/full_node_store.py -------------------------------------------------------------------------------- /kale/full_node/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/generator.py -------------------------------------------------------------------------------- /kale/full_node/mempool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/mempool.py -------------------------------------------------------------------------------- /kale/full_node/mempool_check_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/mempool_check_conditions.py -------------------------------------------------------------------------------- /kale/full_node/mempool_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/mempool_manager.py -------------------------------------------------------------------------------- /kale/full_node/signage_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/signage_point.py -------------------------------------------------------------------------------- /kale/full_node/sync_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/sync_store.py -------------------------------------------------------------------------------- /kale/full_node/weight_proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/full_node/weight_proof.py -------------------------------------------------------------------------------- /kale/harvester/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/harvester/harvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/harvester/harvester.py -------------------------------------------------------------------------------- /kale/harvester/harvester_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/harvester/harvester_api.py -------------------------------------------------------------------------------- /kale/introducer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/introducer/introducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/introducer/introducer.py -------------------------------------------------------------------------------- /kale/introducer/introducer_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/introducer/introducer_api.py -------------------------------------------------------------------------------- /kale/plotting/check_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/plotting/check_plots.py -------------------------------------------------------------------------------- /kale/plotting/create_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/plotting/create_plots.py -------------------------------------------------------------------------------- /kale/plotting/plot_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/plotting/plot_tools.py -------------------------------------------------------------------------------- /kale/pools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/pools/pool_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/pools/pool_config.py -------------------------------------------------------------------------------- /kale/pools/pool_puzzles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/pools/pool_puzzles.py -------------------------------------------------------------------------------- /kale/pools/pool_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/pools/pool_wallet.py -------------------------------------------------------------------------------- /kale/pools/pool_wallet_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/pools/pool_wallet_info.py -------------------------------------------------------------------------------- /kale/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/protocols/farmer_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/protocols/farmer_protocol.py -------------------------------------------------------------------------------- /kale/protocols/full_node_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/protocols/full_node_protocol.py -------------------------------------------------------------------------------- /kale/protocols/harvester_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/protocols/harvester_protocol.py -------------------------------------------------------------------------------- /kale/protocols/introducer_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/protocols/introducer_protocol.py -------------------------------------------------------------------------------- /kale/protocols/pool_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/protocols/pool_protocol.py -------------------------------------------------------------------------------- /kale/protocols/protocol_message_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/protocols/protocol_message_types.py -------------------------------------------------------------------------------- /kale/protocols/shared_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/protocols/shared_protocol.py -------------------------------------------------------------------------------- /kale/protocols/timelord_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/protocols/timelord_protocol.py -------------------------------------------------------------------------------- /kale/protocols/wallet_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/protocols/wallet_protocol.py -------------------------------------------------------------------------------- /kale/pyinstaller.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/pyinstaller.spec -------------------------------------------------------------------------------- /kale/rpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/rpc/farmer_rpc_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/rpc/farmer_rpc_api.py -------------------------------------------------------------------------------- /kale/rpc/farmer_rpc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/rpc/farmer_rpc_client.py -------------------------------------------------------------------------------- /kale/rpc/full_node_rpc_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/rpc/full_node_rpc_api.py -------------------------------------------------------------------------------- /kale/rpc/full_node_rpc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/rpc/full_node_rpc_client.py -------------------------------------------------------------------------------- /kale/rpc/harvester_rpc_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/rpc/harvester_rpc_api.py -------------------------------------------------------------------------------- /kale/rpc/harvester_rpc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/rpc/harvester_rpc_client.py -------------------------------------------------------------------------------- /kale/rpc/rpc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/rpc/rpc_client.py -------------------------------------------------------------------------------- /kale/rpc/rpc_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/rpc/rpc_server.py -------------------------------------------------------------------------------- /kale/rpc/wallet_rpc_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/rpc/wallet_rpc_api.py -------------------------------------------------------------------------------- /kale/rpc/wallet_rpc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/rpc/wallet_rpc_client.py -------------------------------------------------------------------------------- /kale/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/server/address_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/address_manager.py -------------------------------------------------------------------------------- /kale/server/address_manager_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/address_manager_store.py -------------------------------------------------------------------------------- /kale/server/connection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/connection_utils.py -------------------------------------------------------------------------------- /kale/server/introducer_peers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/introducer_peers.py -------------------------------------------------------------------------------- /kale/server/node_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/node_discovery.py -------------------------------------------------------------------------------- /kale/server/outbound_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/outbound_message.py -------------------------------------------------------------------------------- /kale/server/rate_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/rate_limits.py -------------------------------------------------------------------------------- /kale/server/reconnect_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/reconnect_task.py -------------------------------------------------------------------------------- /kale/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/server.py -------------------------------------------------------------------------------- /kale/server/ssl_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/ssl_context.py -------------------------------------------------------------------------------- /kale/server/start_farmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/start_farmer.py -------------------------------------------------------------------------------- /kale/server/start_full_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/start_full_node.py -------------------------------------------------------------------------------- /kale/server/start_harvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/start_harvester.py -------------------------------------------------------------------------------- /kale/server/start_introducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/start_introducer.py -------------------------------------------------------------------------------- /kale/server/start_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/start_service.py -------------------------------------------------------------------------------- /kale/server/start_timelord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/start_timelord.py -------------------------------------------------------------------------------- /kale/server/start_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/start_wallet.py -------------------------------------------------------------------------------- /kale/server/upnp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/upnp.py -------------------------------------------------------------------------------- /kale/server/ws_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/server/ws_connection.py -------------------------------------------------------------------------------- /kale/simulator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/simulator/full_node_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/simulator/full_node_simulator.py -------------------------------------------------------------------------------- /kale/simulator/simulator_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/simulator/simulator_constants.py -------------------------------------------------------------------------------- /kale/simulator/simulator_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/simulator/simulator_protocol.py -------------------------------------------------------------------------------- /kale/simulator/start_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/simulator/start_simulator.py -------------------------------------------------------------------------------- /kale/ssl/create_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/ssl/create_ssl.py -------------------------------------------------------------------------------- /kale/ssl/dst_root_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/ssl/dst_root_ca.pem -------------------------------------------------------------------------------- /kale/ssl/kale_ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/ssl/kale_ca.crt -------------------------------------------------------------------------------- /kale/ssl/kale_ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/ssl/kale_ca.key -------------------------------------------------------------------------------- /kale/timelord/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/timelord/iters_from_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/timelord/iters_from_block.py -------------------------------------------------------------------------------- /kale/timelord/timelord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/timelord/timelord.py -------------------------------------------------------------------------------- /kale/timelord/timelord_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/timelord/timelord_api.py -------------------------------------------------------------------------------- /kale/timelord/timelord_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/timelord/timelord_launcher.py -------------------------------------------------------------------------------- /kale/timelord/timelord_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/timelord/timelord_state.py -------------------------------------------------------------------------------- /kale/timelord/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/timelord/types.py -------------------------------------------------------------------------------- /kale/types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/types/announcement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/announcement.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/types/blockchain_format/classgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/classgroup.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/coin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/coin.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/foliage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/foliage.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/pool_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/pool_target.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/program.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/proof_of_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/proof_of_space.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/reward_chain_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/reward_chain_block.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/sized_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/sized_bytes.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/slots.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/sub_epoch_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/sub_epoch_summary.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/tree_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/tree_hash.py -------------------------------------------------------------------------------- /kale/types/blockchain_format/vdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/blockchain_format/vdf.py -------------------------------------------------------------------------------- /kale/types/coin_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/coin_record.py -------------------------------------------------------------------------------- /kale/types/coin_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/coin_solution.py -------------------------------------------------------------------------------- /kale/types/coin_spend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/coin_spend.py -------------------------------------------------------------------------------- /kale/types/condition_opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/condition_opcodes.py -------------------------------------------------------------------------------- /kale/types/condition_with_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/condition_with_args.py -------------------------------------------------------------------------------- /kale/types/end_of_slot_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/end_of_slot_bundle.py -------------------------------------------------------------------------------- /kale/types/full_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/full_block.py -------------------------------------------------------------------------------- /kale/types/generator_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/generator_types.py -------------------------------------------------------------------------------- /kale/types/header_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/header_block.py -------------------------------------------------------------------------------- /kale/types/mempool_inclusion_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/mempool_inclusion_status.py -------------------------------------------------------------------------------- /kale/types/mempool_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/mempool_item.py -------------------------------------------------------------------------------- /kale/types/name_puzzle_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/name_puzzle_condition.py -------------------------------------------------------------------------------- /kale/types/peer_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/peer_info.py -------------------------------------------------------------------------------- /kale/types/spend_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/spend_bundle.py -------------------------------------------------------------------------------- /kale/types/unfinished_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/unfinished_block.py -------------------------------------------------------------------------------- /kale/types/unfinished_header_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/unfinished_header_block.py -------------------------------------------------------------------------------- /kale/types/weight_proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/types/weight_proof.py -------------------------------------------------------------------------------- /kale/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/util/api_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/api_decorators.py -------------------------------------------------------------------------------- /kale/util/bech32m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/bech32m.py -------------------------------------------------------------------------------- /kale/util/block_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/block_cache.py -------------------------------------------------------------------------------- /kale/util/block_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/block_tools.py -------------------------------------------------------------------------------- /kale/util/byte_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/byte_types.py -------------------------------------------------------------------------------- /kale/util/chain_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/chain_utils.py -------------------------------------------------------------------------------- /kale/util/chia_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/chia_logging.py -------------------------------------------------------------------------------- /kale/util/clvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/clvm.py -------------------------------------------------------------------------------- /kale/util/condition_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/condition_tools.py -------------------------------------------------------------------------------- /kale/util/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/config.py -------------------------------------------------------------------------------- /kale/util/create_alert_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/create_alert_file.py -------------------------------------------------------------------------------- /kale/util/db_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/db_wrapper.py -------------------------------------------------------------------------------- /kale/util/default_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/default_root.py -------------------------------------------------------------------------------- /kale/util/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/english.txt -------------------------------------------------------------------------------- /kale/util/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/errors.py -------------------------------------------------------------------------------- /kale/util/generator_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/generator_tools.py -------------------------------------------------------------------------------- /kale/util/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/hash.py -------------------------------------------------------------------------------- /kale/util/initial-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/initial-config.yaml -------------------------------------------------------------------------------- /kale/util/ints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/ints.py -------------------------------------------------------------------------------- /kale/util/json_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/json_util.py -------------------------------------------------------------------------------- /kale/util/kale_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/kale_logging.py -------------------------------------------------------------------------------- /kale/util/keychain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/keychain.py -------------------------------------------------------------------------------- /kale/util/lru_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/lru_cache.py -------------------------------------------------------------------------------- /kale/util/make_test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/make_test_constants.py -------------------------------------------------------------------------------- /kale/util/merkle_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/merkle_set.py -------------------------------------------------------------------------------- /kale/util/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/misc.py -------------------------------------------------------------------------------- /kale/util/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/network.py -------------------------------------------------------------------------------- /kale/util/partial_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/partial_func.py -------------------------------------------------------------------------------- /kale/util/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/path.py -------------------------------------------------------------------------------- /kale/util/pip_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/pip_import.py -------------------------------------------------------------------------------- /kale/util/prev_transaction_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/prev_transaction_block.py -------------------------------------------------------------------------------- /kale/util/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/profiler.py -------------------------------------------------------------------------------- /kale/util/recursive_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/recursive_replace.py -------------------------------------------------------------------------------- /kale/util/safe_cancel_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/safe_cancel_task.py -------------------------------------------------------------------------------- /kale/util/service_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/service_groups.py -------------------------------------------------------------------------------- /kale/util/setproctitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/setproctitle.py -------------------------------------------------------------------------------- /kale/util/significant_bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/significant_bits.py -------------------------------------------------------------------------------- /kale/util/streamable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/streamable.py -------------------------------------------------------------------------------- /kale/util/struct_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/struct_stream.py -------------------------------------------------------------------------------- /kale/util/type_checking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/type_checking.py -------------------------------------------------------------------------------- /kale/util/validate_alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/validate_alert.py -------------------------------------------------------------------------------- /kale/util/vdf_prover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/vdf_prover.py -------------------------------------------------------------------------------- /kale/util/wallet_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/wallet_tools.py -------------------------------------------------------------------------------- /kale/util/ws_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/util/ws_message.py -------------------------------------------------------------------------------- /kale/wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/wallet/block_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/block_record.py -------------------------------------------------------------------------------- /kale/wallet/cc_wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/wallet/cc_wallet/cc_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/cc_wallet/cc_info.py -------------------------------------------------------------------------------- /kale/wallet/cc_wallet/cc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/cc_wallet/cc_utils.py -------------------------------------------------------------------------------- /kale/wallet/cc_wallet/cc_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/cc_wallet/cc_wallet.py -------------------------------------------------------------------------------- /kale/wallet/cc_wallet/ccparent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/cc_wallet/ccparent.py -------------------------------------------------------------------------------- /kale/wallet/cc_wallet/debug_spend_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/cc_wallet/debug_spend_bundle.py -------------------------------------------------------------------------------- /kale/wallet/chialisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/chialisp.py -------------------------------------------------------------------------------- /kale/wallet/derivation_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/derivation_record.py -------------------------------------------------------------------------------- /kale/wallet/derive_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/derive_keys.py -------------------------------------------------------------------------------- /kale/wallet/did_wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/wallet/did_wallet/did_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/did_wallet/did_info.py -------------------------------------------------------------------------------- /kale/wallet/did_wallet/did_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/did_wallet/did_wallet.py -------------------------------------------------------------------------------- /kale/wallet/did_wallet/did_wallet_puzzles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/did_wallet/did_wallet_puzzles.py -------------------------------------------------------------------------------- /kale/wallet/kalelisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/kalelisp.py -------------------------------------------------------------------------------- /kale/wallet/key_val_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/key_val_store.py -------------------------------------------------------------------------------- /kale/wallet/lineage_proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/lineage_proof.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/wallet/puzzles/block_program_zero.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/block_program_zero.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/block_program_zero.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/block_program_zero.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/cc.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/cc.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/cc.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/cc.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/cc.clvm.hex.sha256tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/cc.clvm.hex.sha256tree -------------------------------------------------------------------------------- /kale/wallet/puzzles/cc_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/cc_loader.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/condition_codes.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/condition_codes.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/create-lock-puzzlehash.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/create-lock-puzzlehash.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/create-lock-puzzlehash.clvm.hex.sha256tree: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/wallet/puzzles/curry-and-treehash.clinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/curry-and-treehash.clinc -------------------------------------------------------------------------------- /kale/wallet/puzzles/decompress_coin_spend_entry.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/decompress_coin_spend_entry.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/decompress_puzzle.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/decompress_puzzle.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/decompress_puzzle.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/decompress_puzzle.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/did_innerpuz.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/did_innerpuz.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/did_innerpuz.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/did_innerpuz.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/did_innerpuz.clvm.hex.sha256tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/did_innerpuz.clvm.hex.sha256tree -------------------------------------------------------------------------------- /kale/wallet/puzzles/generator_for_single_coin.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/generator_for_single_coin.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/generator_for_single_coin.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/generator_for_single_coin.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/generator_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/generator_loader.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/genesis-by-coin-id-with-0.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/genesis-by-coin-id-with-0.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/genesis-by-coin-id-with-0.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/genesis-by-coin-id-with-0.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/genesis-by-puzzle-hash-with-0.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/genesis-by-puzzle-hash-with-0.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/genesis_by_coin_id_with_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/genesis_by_coin_id_with_0.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/genesis_by_puzzle_hash_with_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/genesis_by_puzzle_hash_with_0.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/kalelisp_deserialisation.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/kalelisp_deserialisation.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/load_clvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/load_clvm.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/lock.inner.puzzle.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/lock.inner.puzzle.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/lock.inner.puzzle.clvm.hex: -------------------------------------------------------------------------------- 1 | ff01ff8080 -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_conditions.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_conditions.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_conditions.clvm.hex: -------------------------------------------------------------------------------- 1 | KK30ICC ida -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_conditions.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_delegated_conditions.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_delegated_conditions.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_delegated_conditions.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_delegated_conditions.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_delegated_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_delegated_conditions.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_delegated_puzzle.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_delegated_puzzle.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_delegated_puzzle.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_delegated_puzzle.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_delegated_puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_delegated_puzzle.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_m_of_n_delegate_direct.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_m_of_n_delegate_direct.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_m_of_n_delegate_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_m_of_n_delegate_direct.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_puzzle_hash.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_puzzle_hash.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_puzzle_hash.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_puzzle_hash.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_puzzle_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_puzzle_hash.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_singleton.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_singleton.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_singleton.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_singleton.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/p2_singleton.clvm.hex.sha256tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/p2_singleton.clvm.hex.sha256tree -------------------------------------------------------------------------------- /kale/wallet/puzzles/pool_member_innerpuz.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/pool_member_innerpuz.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/pool_member_innerpuz.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/pool_member_innerpuz.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/pool_waitingroom_innerpuz.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/pool_waitingroom_innerpuz.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/prefarm/make_prefarm_ph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/prefarm/make_prefarm_ph.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/prefarm/spend_prefarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/prefarm/spend_prefarm.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/puzzle_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/puzzle_utils.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/recompile-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/recompile-all.sh -------------------------------------------------------------------------------- /kale/wallet/puzzles/rl.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/rl.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/rl.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/rl.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/rl.clvm.hex.sha256tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/rl.clvm.hex.sha256tree -------------------------------------------------------------------------------- /kale/wallet/puzzles/rl_aggregation.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/rl_aggregation.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/rl_aggregation.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/rl_aggregation.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/rom_bootstrap_generator.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/rom_bootstrap_generator.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/rom_bootstrap_generator.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/rom_bootstrap_generator.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/rom_bootstrap_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/rom_bootstrap_generator.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/sha256tree_module.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/sha256tree_module.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/sha256tree_module.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/sha256tree_module.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/singleton_launcher.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/singleton_launcher.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/singleton_launcher.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/singleton_launcher.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/singleton_top_layer.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/singleton_top_layer.clvm -------------------------------------------------------------------------------- /kale/wallet/puzzles/singleton_top_layer.clvm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/singleton_top_layer.clvm.hex -------------------------------------------------------------------------------- /kale/wallet/puzzles/singleton_top_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/singleton_top_layer.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/singleton_truths.clib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/singleton_truths.clib -------------------------------------------------------------------------------- /kale/wallet/puzzles/test_cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/test_cc.py -------------------------------------------------------------------------------- /kale/wallet/puzzles/test_generator_deserialize.clvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/puzzles/test_generator_deserialize.clvm -------------------------------------------------------------------------------- /kale/wallet/rl_wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/wallet/rl_wallet/rl_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/rl_wallet/rl_wallet.py -------------------------------------------------------------------------------- /kale/wallet/rl_wallet/rl_wallet_puzzles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/rl_wallet/rl_wallet_puzzles.py -------------------------------------------------------------------------------- /kale/wallet/secret_key_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/secret_key_store.py -------------------------------------------------------------------------------- /kale/wallet/settings/default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/settings/default_settings.py -------------------------------------------------------------------------------- /kale/wallet/settings/settings_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/settings/settings_objects.py -------------------------------------------------------------------------------- /kale/wallet/settings/user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/settings/user_settings.py -------------------------------------------------------------------------------- /kale/wallet/sign_coin_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/sign_coin_solutions.py -------------------------------------------------------------------------------- /kale/wallet/sign_coin_spends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/sign_coin_spends.py -------------------------------------------------------------------------------- /kale/wallet/trade_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/trade_manager.py -------------------------------------------------------------------------------- /kale/wallet/trade_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/trade_record.py -------------------------------------------------------------------------------- /kale/wallet/trading/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/wallet/trading/trade_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/trading/trade_status.py -------------------------------------------------------------------------------- /kale/wallet/trading/trade_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/trading/trade_store.py -------------------------------------------------------------------------------- /kale/wallet/transaction_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/transaction_record.py -------------------------------------------------------------------------------- /kale/wallet/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kale/wallet/util/backup_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/util/backup_utils.py -------------------------------------------------------------------------------- /kale/wallet/util/debug_spend_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/util/debug_spend_bundle.py -------------------------------------------------------------------------------- /kale/wallet/util/trade_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/util/trade_utils.py -------------------------------------------------------------------------------- /kale/wallet/util/transaction_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/util/transaction_type.py -------------------------------------------------------------------------------- /kale/wallet/util/wallet_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/util/wallet_types.py -------------------------------------------------------------------------------- /kale/wallet/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet.py -------------------------------------------------------------------------------- /kale/wallet/wallet_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_action.py -------------------------------------------------------------------------------- /kale/wallet/wallet_action_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_action_store.py -------------------------------------------------------------------------------- /kale/wallet/wallet_block_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_block_store.py -------------------------------------------------------------------------------- /kale/wallet/wallet_blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_blockchain.py -------------------------------------------------------------------------------- /kale/wallet/wallet_coin_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_coin_record.py -------------------------------------------------------------------------------- /kale/wallet/wallet_coin_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_coin_store.py -------------------------------------------------------------------------------- /kale/wallet/wallet_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_info.py -------------------------------------------------------------------------------- /kale/wallet/wallet_interested_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_interested_store.py -------------------------------------------------------------------------------- /kale/wallet/wallet_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_node.py -------------------------------------------------------------------------------- /kale/wallet/wallet_node_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_node_api.py -------------------------------------------------------------------------------- /kale/wallet/wallet_pool_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_pool_store.py -------------------------------------------------------------------------------- /kale/wallet/wallet_puzzle_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_puzzle_store.py -------------------------------------------------------------------------------- /kale/wallet/wallet_state_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_state_manager.py -------------------------------------------------------------------------------- /kale/wallet/wallet_sync_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_sync_store.py -------------------------------------------------------------------------------- /kale/wallet/wallet_transaction_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_transaction_store.py -------------------------------------------------------------------------------- /kale/wallet/wallet_user_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/kale/wallet/wallet_user_store.py -------------------------------------------------------------------------------- /mozilla-ca/.github/workflows/update-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/mozilla-ca/.github/workflows/update-cert.yaml -------------------------------------------------------------------------------- /mozilla-ca/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/mozilla-ca/.gitignore -------------------------------------------------------------------------------- /mozilla-ca/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/mozilla-ca/LICENSE -------------------------------------------------------------------------------- /mozilla-ca/README.md: -------------------------------------------------------------------------------- 1 | # mozilla-ca 2 | -------------------------------------------------------------------------------- /mozilla-ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mozilla-ca/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/mozilla-ca/cacert.pem -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run-py-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/run-py-tests.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/block_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/block_tools.py -------------------------------------------------------------------------------- /tests/blockchain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/blockchain/config.py: -------------------------------------------------------------------------------- 1 | job_timeout = 60 2 | -------------------------------------------------------------------------------- /tests/blockchain/test_blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/blockchain/test_blockchain.py -------------------------------------------------------------------------------- /tests/blockchain/test_blockchain_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/blockchain/test_blockchain_transactions.py -------------------------------------------------------------------------------- /tests/build-workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/build-workflows.py -------------------------------------------------------------------------------- /tests/check_pytest_monitor_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/check_pytest_monitor_output.py -------------------------------------------------------------------------------- /tests/chia-start-sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/chia-start-sim -------------------------------------------------------------------------------- /tests/clvm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/clvm/coin_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/clvm/coin_store.py -------------------------------------------------------------------------------- /tests/clvm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/clvm/config.py -------------------------------------------------------------------------------- /tests/clvm/test_chialisp_deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/clvm/test_chialisp_deserialization.py -------------------------------------------------------------------------------- /tests/clvm/test_clvm_compilation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/clvm/test_clvm_compilation.py -------------------------------------------------------------------------------- /tests/clvm/test_puzzles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/clvm/test_puzzles.py -------------------------------------------------------------------------------- /tests/clvm/test_serialized_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/clvm/test_serialized_program.py -------------------------------------------------------------------------------- /tests/clvm/test_singletons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/clvm/test_singletons.py -------------------------------------------------------------------------------- /tests/clvm/test_spend_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/clvm/test_spend_sim.py -------------------------------------------------------------------------------- /tests/connection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/connection_utils.py -------------------------------------------------------------------------------- /tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/consensus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/consensus/test_pot_iterations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/consensus/test_pot_iterations.py -------------------------------------------------------------------------------- /tests/core/daemon/test_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/daemon/test_daemon.py -------------------------------------------------------------------------------- /tests/core/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/fixtures.py -------------------------------------------------------------------------------- /tests/core/full_node/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/full_node/config.py: -------------------------------------------------------------------------------- 1 | job_timeout = 60 2 | -------------------------------------------------------------------------------- /tests/core/full_node/dos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/full_node/dos/config.py: -------------------------------------------------------------------------------- 1 | job_timeout = 60 2 | -------------------------------------------------------------------------------- /tests/core/full_node/full_sync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/full_node/full_sync/config.py: -------------------------------------------------------------------------------- 1 | job_timeout = 60 2 | -------------------------------------------------------------------------------- /tests/core/full_node/full_sync/test_full_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/full_sync/test_full_sync.py -------------------------------------------------------------------------------- /tests/core/full_node/ram_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/ram_db.py -------------------------------------------------------------------------------- /tests/core/full_node/test_address_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_address_manager.py -------------------------------------------------------------------------------- /tests/core/full_node/test_block_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_block_store.py -------------------------------------------------------------------------------- /tests/core/full_node/test_coin_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_coin_store.py -------------------------------------------------------------------------------- /tests/core/full_node/test_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_conditions.py -------------------------------------------------------------------------------- /tests/core/full_node/test_full_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_full_node.py -------------------------------------------------------------------------------- /tests/core/full_node/test_full_node_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_full_node_store.py -------------------------------------------------------------------------------- /tests/core/full_node/test_initial_freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_initial_freeze.py -------------------------------------------------------------------------------- /tests/core/full_node/test_mempool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_mempool.py -------------------------------------------------------------------------------- /tests/core/full_node/test_mempool_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_mempool_performance.py -------------------------------------------------------------------------------- /tests/core/full_node/test_node_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_node_load.py -------------------------------------------------------------------------------- /tests/core/full_node/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_performance.py -------------------------------------------------------------------------------- /tests/core/full_node/test_sync_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_sync_store.py -------------------------------------------------------------------------------- /tests/core/full_node/test_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/full_node/test_transactions.py -------------------------------------------------------------------------------- /tests/core/make_block_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/make_block_generator.py -------------------------------------------------------------------------------- /tests/core/node_height.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/node_height.py -------------------------------------------------------------------------------- /tests/core/server/test_dos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/server/test_dos.py -------------------------------------------------------------------------------- /tests/core/server/test_rate_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/server/test_rate_limits.py -------------------------------------------------------------------------------- /tests/core/ssl/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/ssl/test_ssl.py -------------------------------------------------------------------------------- /tests/core/test_cost_calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/test_cost_calculation.py -------------------------------------------------------------------------------- /tests/core/test_farmer_harvester_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/test_farmer_harvester_rpc.py -------------------------------------------------------------------------------- /tests/core/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/test_filter.py -------------------------------------------------------------------------------- /tests/core/test_full_node_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/test_full_node_rpc.py -------------------------------------------------------------------------------- /tests/core/test_merkle_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/test_merkle_set.py -------------------------------------------------------------------------------- /tests/core/test_setproctitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/test_setproctitle.py -------------------------------------------------------------------------------- /tests/core/types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/types/test_coin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/types/test_coin.py -------------------------------------------------------------------------------- /tests/core/types/test_proof_of_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/types/test_proof_of_space.py -------------------------------------------------------------------------------- /tests/core/types/test_spend_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/types/test_spend_bundle.py -------------------------------------------------------------------------------- /tests/core/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/util/test_keychain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/util/test_keychain.py -------------------------------------------------------------------------------- /tests/core/util/test_lru_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/util/test_lru_cache.py -------------------------------------------------------------------------------- /tests/core/util/test_significant_bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/util/test_significant_bits.py -------------------------------------------------------------------------------- /tests/core/util/test_streamable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/util/test_streamable.py -------------------------------------------------------------------------------- /tests/core/util/test_type_checking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/core/util/test_type_checking.py -------------------------------------------------------------------------------- /tests/generator/test_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/generator/test_compression.py -------------------------------------------------------------------------------- /tests/generator/test_generator_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/generator/test_generator_types.py -------------------------------------------------------------------------------- /tests/generator/test_rom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/generator/test_rom.py -------------------------------------------------------------------------------- /tests/generator/test_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/generator/test_scan.py -------------------------------------------------------------------------------- /tests/kale-start-sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/kale-start-sim -------------------------------------------------------------------------------- /tests/pools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pools/test_pool_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/pools/test_pool_config.py -------------------------------------------------------------------------------- /tests/pools/test_pool_puzzles_lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/pools/test_pool_puzzles_lifecycle.py -------------------------------------------------------------------------------- /tests/pools/test_pool_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/pools/test_pool_rpc.py -------------------------------------------------------------------------------- /tests/pools/test_pool_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/pools/test_pool_wallet.py -------------------------------------------------------------------------------- /tests/pools/test_wallet_pool_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/pools/test_wallet_pool_store.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/runner-templates/build-test-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/runner-templates/build-test-macos -------------------------------------------------------------------------------- /tests/runner-templates/build-test-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/runner-templates/build-test-ubuntu -------------------------------------------------------------------------------- /tests/runner-templates/install-timelord.include.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/runner-templates/install-timelord.include.yml -------------------------------------------------------------------------------- /tests/setup_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/setup_nodes.py -------------------------------------------------------------------------------- /tests/simulation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/simulation/config.py: -------------------------------------------------------------------------------- 1 | job_timeout = 60 2 | -------------------------------------------------------------------------------- /tests/simulation/test_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/simulation/test_simulation.py -------------------------------------------------------------------------------- /tests/testconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/testconfig.py -------------------------------------------------------------------------------- /tests/time_out_assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/time_out_assert.py -------------------------------------------------------------------------------- /tests/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/util/alert_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/util/alert_server.py -------------------------------------------------------------------------------- /tests/util/benchmark_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/util/benchmark_cost.py -------------------------------------------------------------------------------- /tests/util/bip39_test_vectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/util/bip39_test_vectors.json -------------------------------------------------------------------------------- /tests/util/config.py: -------------------------------------------------------------------------------- 1 | job_timeout = 60 2 | -------------------------------------------------------------------------------- /tests/util/generator_tools_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/util/generator_tools_testing.py -------------------------------------------------------------------------------- /tests/util/key_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/util/key_tool.py -------------------------------------------------------------------------------- /tests/util/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/util/misc.py -------------------------------------------------------------------------------- /tests/util/test_struct_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/util/test_struct_stream.py -------------------------------------------------------------------------------- /tests/wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wallet/cc_wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wallet/cc_wallet/test_cc_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/cc_wallet/test_cc_wallet.py -------------------------------------------------------------------------------- /tests/wallet/cc_wallet/test_trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/cc_wallet/test_trades.py -------------------------------------------------------------------------------- /tests/wallet/did_wallet/test_did.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/did_wallet/test_did.py -------------------------------------------------------------------------------- /tests/wallet/rl_wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wallet/rl_wallet/test_rl_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/rl_wallet/test_rl_rpc.py -------------------------------------------------------------------------------- /tests/wallet/rl_wallet/test_rl_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/rl_wallet/test_rl_wallet.py -------------------------------------------------------------------------------- /tests/wallet/rpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wallet/rpc/test_wallet_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/rpc/test_wallet_rpc.py -------------------------------------------------------------------------------- /tests/wallet/sync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wallet/sync/config.py: -------------------------------------------------------------------------------- 1 | job_timeout = 60 2 | -------------------------------------------------------------------------------- /tests/wallet/sync/test_wallet_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/sync/test_wallet_sync.py -------------------------------------------------------------------------------- /tests/wallet/test_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_backup.py -------------------------------------------------------------------------------- /tests/wallet/test_bech32m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_bech32m.py -------------------------------------------------------------------------------- /tests/wallet/test_chialisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_chialisp.py -------------------------------------------------------------------------------- /tests/wallet/test_puzzle_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_puzzle_store.py -------------------------------------------------------------------------------- /tests/wallet/test_singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_singleton.py -------------------------------------------------------------------------------- /tests/wallet/test_singleton_lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_singleton_lifecycle.py -------------------------------------------------------------------------------- /tests/wallet/test_singleton_lifecycle_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_singleton_lifecycle_fast.py -------------------------------------------------------------------------------- /tests/wallet/test_taproot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_taproot.py -------------------------------------------------------------------------------- /tests/wallet/test_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_wallet.py -------------------------------------------------------------------------------- /tests/wallet/test_wallet_interested_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_wallet_interested_store.py -------------------------------------------------------------------------------- /tests/wallet/test_wallet_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet/test_wallet_store.py -------------------------------------------------------------------------------- /tests/wallet_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/wallet_tools.py -------------------------------------------------------------------------------- /tests/weight_proof/test_weight_proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kale-Network/kale-blockchain/HEAD/tests/weight_proof/test_weight_proof.py --------------------------------------------------------------------------------