chia-blockchain/setup.py

169 lines
5.6 KiB
Python
Raw Normal View History

from __future__ import annotations
import os
import sys
from setuptools import setup
dependencies = [
"aiofiles==23.1.0", # Async IO for files
"anyio==3.6.2",
"boto3==1.26.111", # AWS S3 for DL s3 plugin
"blspy==1.0.16", # Signature library
"chiavdf==1.0.8", # timelord and vdf verification
"chiabip158==1.2", # bip158-style wallet filters
"chiapos==1.0.11", # proof of space
"clvm==0.9.7",
"clvm_tools==0.4.6", # Currying, Program.to, other conveniences
"chia_rs==0.2.6",
"clvm-tools-rs==0.1.30", # Rust implementation of clvm_tools' compiler
"aiohttp==3.8.4", # HTTP server for full node rpc
"aiosqlite==0.19.0", # asyncio wrapper for sqlite, to store blocks
"bitstring==4.0.1", # Binary data management library
"colorama==0.4.6", # Colorizes terminal output
"colorlog==6.7.0", # Adds color to logs
"concurrent-log-handler==0.9.20", # Concurrently log and rotate logs
"cryptography==39.0.1", # Python cryptography library for TLS - keyring conflict
"filelock==3.12.0", # For reading and writing config multiprocess and multithread safely (non-reentrant locks)
"keyring==23.13.1", # Store keys in MacOS Keychain, Windows Credential Locker
"PyYAML==6.0", # Used for config file format
"setproctitle==1.3.2", # Gives the chia processes readable names
"sortedcontainers==2.4.0", # For maintaining sorted mempools
"click==8.1.3", # For the CLI
"dnspython==2.3.0", # Query DNS seeds
"watchdog==2.2.0", # Filesystem event watching - watches keyring.yaml
"dnslib==0.9.23", # dns lib
"typing-extensions==4.5.0", # typing backports like Protocol and TypedDict
"zstd==1.5.4.0",
"packaging==23.0",
"psutil==5.9.4",
]
upnp_dependencies = [
"miniupnpc==2.2.2", # Allows users to open ports on their router
]
2019-11-18 07:50:31 +03:00
dev_dependencies = [
"build",
"coverage",
"diff-cover",
"pre-commit",
"py3createtorrent",
"pylint",
2019-11-18 07:50:31 +03:00
"pytest",
"pytest-asyncio>=0.18.1", # require attribute 'fixture'
"pytest-cov",
"pytest-monitor; sys_platform == 'linux'",
"pytest-xdist",
"twine",
"isort",
2019-11-18 07:50:31 +03:00
"flake8",
"mypy",
"black==23.3.0",
"aiohttp_cors", # For blackd
"ipython", # For asyncio debugging
"pyinstaller==5.10.1",
Peer db new serialization (#9079) * Serialize/deserialize peer data alongside existing sqlite implementation (to be removed) * Simplified AddressManagerStore. No longer uses sqlite and is no longer async. * Removed aiosqlite usage from AddressManagerStore. Added PeerStoreResolver class to determine the appropriate location for "peers.dat" Updated initial-config.yaml to include "peers_file_path" default, replacing "peer_db_path" (similar change for "wallet_peers_path") * Minor comment changes/additions * Added migration from sqlite peer db. Made AddressManagerStore's serialization async as it was right at the edge of blocking for too long. * Minor tweaks to checking for migration * Removed AddressManagerSQLiteStore class scaffolding * makePeerDataSerialization now returns bytes instead of a PeerDataSerialization object * Async file I/O for write_file_async using aiofiles Added more tests * Separate out the synchronous part of move_file * Renamed write_file to files since we're opening up the capabilities a bit * Update references to write_file * Renamed test_write_file to test_files * Tests covering move_file and move_file_async * Minor refinements to behavior and tests * Use aiofiles for reading peers.dat * Added missing mypy typing info for aiofiles. Also added types-PyYAML to dev_dependencies so that `mypy chia tests` doesn't require running with --install-types * Add types-aiofiles to the linting workflow * Directory perms can now be passed into write_file_async. Added an explicit f.flush() followed by os.fsync() after writing the temp file contents.
2021-11-19 22:12:58 +03:00
"types-aiofiles",
"types-cryptography",
"types-pkg_resources",
"types-pyyaml",
"types-setuptools",
2019-11-18 07:50:31 +03:00
]
legacy_keyring_dependencies = [
"keyrings.cryptfile==1.3.9",
]
kwargs = dict(
name="chia-blockchain",
2019-11-18 07:50:31 +03:00
author="Mariano Sorgente",
author_email="mariano@chia.net",
description="Chia blockchain full node, farmer, timelord, and wallet.",
2020-04-19 22:34:15 +03:00
url="https://chia.net/",
2019-11-18 07:50:31 +03:00
license="Apache License",
python_requires=">=3.7, <4",
keywords="chia blockchain node",
2020-03-27 22:17:34 +03:00
install_requires=dependencies,
extras_require=dict(
dev=dev_dependencies,
upnp=upnp_dependencies,
legacy_keyring=legacy_keyring_dependencies,
),
2020-03-28 03:09:19 +03:00
packages=[
Electron react (#226) * clean react * add material ui * add word list * mnemonic v0 * jeepney backup * keychain usage * wallet api * mnemonic ui * mnemonics redux state * handle exceptions correctly * dashboard * wallets * get puzzle hash * tx history * sidebar * start stop wallet node * use existing mnemonics * status info * create cc wallet * theme should be outside of switch * create offer * dbus alternative for linux * key migration * don't autocomplete, don't reset simulator db * reset mnemonics * Refactor keychain, and key migration * Implement UI for changing keys * Removing keys and mnemonic button * Start making farmer and harvester RPCs * start rpx for simulator * Harvester and farmer websocket, and basic UI * Plot display and deletion * launch daemon on start * State changes from full node, harvester, farmer, and full node ui improvements * split balances in react * pending change balance * plotter * dev config * maintain connection / retry * Remove electron-ui, and style fixes * Better farmer and full node control * Remove electron ui references * Uncomment out starting the dameon * Remove timelord tab, and change full node style * Clean up new wallet login * Refactor RPCs * Now that the GH runner uses python 3.7.7 - use for windows installer * add balance split to coloured coin wallet * spendable balance fix * Import private key from UI fix * mac build/installer Co-authored-by: Mariano Sorgente <sorgente711@gmail.com> Co-authored-by: Lipa Long <lipa@chia.net> Co-authored-by: Gene Hoffman <hoffmang@hoffmang.com>
2020-05-20 10:41:10 +03:00
"build_scripts",
2021-03-22 22:36:05 +03:00
"chia",
"chia.cmds",
Pools mainnet (#7047) * added clarifying comments * WIP test * added WIP test * Refine genesis challenge. Remove unnecessary pool_puzzle function * Sign spend. Remove create_member_spend. Rename state transition function to create_travel_spend * Rename create_member_spend to create_travel_spend * Add singleton id logging * Enhance logging for debugging * renaming * rephrase inside the puzzle * fixed signing and added some support functions * Fix issue with announcement * Progress spending the singleton * Fix arguments to pool_state_to_inner_puzzle call * Fix arguments to pool_state_to_inner_puzzle * Improve error message when wallet is not running * Remove misleading message about missing wallet process, when problem is the farmer by making poolnft command error out earlier * Fix parent coin info bug * Multiple state transitions in one block * Lint * Remove assert * Fix incorrect p2_singleton_ph calculation (thanks nil00) * Update waiting room puzzle to accept genesis_challenge * Update calls to create_waiting * Go to waiting state from committed state * Augment debug_spend_bundle * fix 2 bugs in wallet * Fix lint * fix bad_agg_sig bug * Tests and lint * remove breakpoint * fix clvm tests for new hexs and hashs * Fixed a bug in the coin store that was probably from merging. (#6577) * Fixed a bug in the coin store that was probably from merging. * The exception doesn't need to be there * CI Lint fix * Added lifecycle tests for pooling drivers (#6610) * Ms.poolabsorb (#6615) * Support for absorbing rewards in pools (untested) * Style improvements * More work on absorb * Revert default root and remove log * Revert small plots * Use real sub slot iters * Update types * debug1 * Fix bugs * fix output of agg sig log messages * Make fewer calls to pw_status in test * remove old comment * logging and state management * logging * small bug fix & rename for accuracy * format * Fix types for uncurry function * lint * Update test to use exceptions * Change assumptions about self-pooling in lifecycle test * Install types for mypy * Revert "Install types for mypy" This reverts commit a82dcb712a6a97b8789b17c98cac8eafaffe90f5. * install types for mypy * install types for mypy * More keys * Remove flags requiring interactive prompts * Change initial spend to waiting room if self-pooling * lint * lint * linting * Refactor test * Use correct value in log message * update p2_singleton_or_delated_puzhash * initial version of pool wallet with p2_singleton_or_delay * run black formatting * fix rebase wonkiness * fix announcement code in p2_singleton_or_delayed * removed redundant defaulting standardised hexstr handling * lint fixes * Fixed pool lifecycle tests to current standards, but discovered tests are not validating signatures * Signatures validate on this test now although the test still does not check it. * Lint fix * Fixed plotnft show and linting errors * fixed failing farmer/harvester rpc test * lint fix * Commenting out some outdated tests * Updated test coverage * lint fix * Some minor P2singleton improvements (#6325) * Improve some debugging tools. * Tidy pool clvm. * Use `SINGLETON_STRUCT`. Remove unused `and` macro. * Use better name `SINGLETON_MOD_HASH`. * Finish lifecycle test suite. * Fixing for merge with chia-blockchain/pools_delayed_puzzle (#72) Co-authored-by: Matt Hauff <quexington@gmail.com> * Default delay time was being set incorrectly * Extracted get_delayed_puz_info_from_launcher_spend to driver code * Ms.taproot plot2 (#6692) * Start work on adding taproot to new plots * Fix issue in block_tools * new test-cache * Lint * DID fixexs * Fix other tests * Python black * Fix full node store test * Ensure block index <= 128 bits. * fix test_pool_config test * fix comments in pool_config and in chialisp files * self_pool -> pool -> self_pool * Implement leaving pools * Fix conflicts with main via mini-rebase * Fixup rebase mistakes * Bring in Mariano's node discovery chagnes from pools.dev * Fix adapters - Thanks Richard * build tests * Add pools tests * Disable DID tests * farmer|protocol: Some renaming related to the pool protocol * farmer: Use `None` instead of `{}` and add local `pool_state` * protocol|farmer: Introduce and use `PoolErrorCode` * rename: `pool_payout_instructions` -> `payout_instructions` * refactor: `AuthenticationKeyInfo` -> `authentication_key` * refactor: Move `launcher_id` up * rename: Some variable name changes * rename: `points_balance` -> `points` * format: Squash aggregation into one line * farmer: Make `update_pool_state` public * farmer: Print traceback if `update_pool_state` fails * farmer: Periodically call `GET /pool_info`, add `_pool_get_pool_info` * farmer: Add `authentication_token_timeout` to `pool_state` Fetch it from `GET /pool_info` * protocol|farmer: Implement support for `GET|POST|PUT /farmer` * farmer: Make use of `GET|POST /farmer` - To make the farmer known by the pool - To update local balance/difficulty from the pool periodically * farmer|protocol: Adjust `POST /partial` to match the latest spec * farmer: Hash messages before signing * pools: Drop unused code * farmer: Fix aggregation of partial signatures * farmer: support self pooling, don't pool if url=="" * wallet: return uint64 for delay time, instead of bytes * pool: add error code for delay time too short * farmer: cleaner logging when no connection to pool * farmer: add harvester node id to pool protocol * Rename method (test fix) and lint fix * Change errors to warnings (pool communication) * Remove pool callbacks on a reorg * farmer: Continue earlier when no pool URL is provided * farmer: Print method in log * farmer: Handle exceptions for all pool endpoint calls * farmer|protocol: Keep track of failed requests to the pool * farmer: Fix typo which caused issue with pooling * wallet: simplify solution_to_extra_data * tests: Comment out DID tests which are not working yet * Remove DID Wallet test workflows * Return launcher_id when creating Pool Wallet * Name p2_singleton_puzzle_hash correctly * Improve 'test_singleton_lifecycle_fast.py'. * Make test more robust in the face of asynchronous adversity * Add commandline cmds for joining and leaving pools * Fix poolnft leave params * Remove redundant assignment brought in from main * Remove unneeded code * Style and parsimony * pool_puzzles: Check was wrong, and bad naming * format: Fix linting * format: Remove log and rename variable * pool-wallet: Fix self pooling with multiple pool wallets. Don't remove interested puzzle_hash * gui: Use pools branch * format: fix lint * Remove ununsed code, improve initial_pool_state_from_dict * farmer: Instantly update the config, when config file changes * format: Speed up loading of the authentication key * logging: less annoying logging * Test pool NFT creation directly to pool * Test switching pools without self-farming in between * lint * pooling: Use integer for protocol version (#6797) * pooling: Use integer for protocol version * pooling: Fix import * Update GUI commit * Ms.login2 (#6804) * pooling: Login WIP * pooling: add RPC for get_link * dont use timeout * pooling: rename to get_login_link * format: remove logging * Fix SES test * Required cli argument Co-authored-by: almog <almogdepaz@gmail.com> * farmer|protocols: Rename `current_difficulty` for `POST /partial` (#6807) * Fix to farm summary * Use target_puzzlehash param name in RPC call * Pool test coverage (#6782) * Improvement in test coverage and typing * Added an extra absorb to the pool lifecycle test (only works when merged with https://github.com/Chia-Network/chia-blockchain/pull/6733) * Added new drivers for the p2_singleton puzzles * Added new tests and test coverage for singletons * organize pools testing directory * black formatting * black formatting in venv * lint fix * Update CI tests * Fixing tests post rebase * lint fix * Minor readability fix Co-authored-by: matt <matt@chia.net> * farmer: Drop `target_puzzle_hash` from `GET /farmer` and `GET /login` (#6816) * Allow creation of PlotNFTs in self-farming state * gui: Fix install with more RAM (#6821) * Allow implicit payout_address in self-pool state, improve error messages and param ergonomics * print units in non-standard wallets correctly * Fix farmer import * Make syncing message in CLI more intuitive like the GUI * Fix linting and show header hash instead of height * gui: Update to 725071236eff8c81d5b267dc8eb69d7e03f3df8c * Revert "Merge" This reverts commit 23a1e688c5fb4f72983fd896d4933336a365fe38, reversing changes made to a850246c6f4de4d2eb65c4ac1d6023431f3ba7e9. * Revert "Revert "Merge"" This reverts commit 680331859f5dc404cca9c2ff8f4a61df374db125. * Treat tx_record as Dict. Refactor tx submission * Also add passed-in coin spends when processing new blocks in reconsider_peak * Test utilities had moved * Fix import of moved block_tools * Potentially fix yaml * Previously didn't take the right part of this change * Add -y flag, improve commandline plotnft handling * Fix typo * Add -y flag to plotnft create * pool_wallet: Restore from DB properly * wallet: ignore bad pool configs * Reduce memory * pool_wallet: Add claim command * pool_wallet: Set transaction records to confirmed * wallet: Fix bug in transaction cache * Formatting and remove log * pool_wallet: CLI balance and improvements to plotnft_funcs.py * pool_wallet: Simplify, and fix issue with double submission * pool_wallet: Fix tests * pool_wallet: Don't allow switching before relative lock height * update gui * change to 3000 mem * Correct sense of -y flag for self-pooling * cli: Display payout instructions for pool * pool_wallet: Don't create massive transactions * cli: Improvements to plotnft * pool_wallet: Get correct pool state * pool_wallet: Use last transaction block to prevent condition failure * Add block height for current state * Add outstanding unconfirmed transactions to pw_status * Refine command line plotnft show pending transactions * Fix tests by using the correct output from pw_status * Try to fix windows build * Print expected leave height * label pool urls * pool_wallet: Don't include pool 1.75 rewards in total * wallet: Add RPC and CLI for deleting unconfirmed transactions for a wallet * pool_wallet: If farming to a pool, show 0 balance in wallet * pool_wallet: Show error message if invalid state, in CLI * pool_wallet: Don't allow switching if there are pending unconfirmed transactions * tests: Clean up pool test logging * tests: Fix lint * Changed the pool innerpuzzes (#6802) * overload solutions for pool_innerpuz parameters * Fix tests for reduced size puzzles * deleted messy deprecated test * Fix lint. * fix bug where spend types were the wrong way around * merge with richard's lint fix * fix wallet bug remove unnecessary signature add defun-inline for clarity * Swap to defun for absorb case Use cons box for member innerpuz solution * fix if statement for cons box p1 * remove unnecessary solution arg * quick innerpuz fix to make tests pass * Switch to key-value pairs Undo cons box solution in pool_member inner puzzle * fix singleton lifecycle test * added some comments to calrify the meaning on "ps" * lint fix * reduce label size, search for label when reconstructing from solution * no need to keep looping if `p` found * lint fix * Removed unecessary defun-inline and changed hyphens to underscores * Changed created_coin_value_or_0 to an inline function * Changed morph_condition to an inline function * Added a comment for odd_cons_m113 * Rename output_odd and odd_output_found * Add inline functions to document the lineage proof values * Stager two rewrite * Added an ASSER_MY_AMOUNT to p2_singleton_or_delayed * Extract truth functionality to singleton_truths.clib * Fix tree hashes * Changed truths to a struct rather than a list. * fix test_singletons update did_innerpuz * recompile did_innerpuz * fix a log error * Renamed variable and factored out code per @richardkiss * lint fix * switch launcher extra_data to key_value pairs * fix parsing of new format of extra_data in launcher solution * fix broken test for new launcher solution format * remove bare raise Co-authored-by: Richard Kiss <him@richardkiss.com> Co-authored-by: Matt Hauff <quexington@gmail.com> * Also add passed-in coin spends when processing new blocks in reconsider_peak (#6898) Co-authored-by: Adam Kelly <aqk> * Moved debug_spend_bundle and added it to the SpendBundle object (#6840) * Moved debug_spend_bundle and added it to the SpendBundle object * Remove problematic typing * Add testnet config * wallet: Memory would get corrupted if there was an error (#6902) * wallet: Memory would get corrupted if there was an error * wallet: Use block_record * wallet: Add records in a full fork too * wallet: remove unnecessary arguments in CC and DID * add to cache, revert if transaction fails Co-authored-by: Yostra <straya@chia.net> * Improve comment * pool_wallet: Fix driver bug * wallet: Fix memory corruption * gui: Update to latest * Increase memory size * tests: Add test for absorbing from pool * small fix in solution_to_extra_data * Fixed incorrect function name * pooling: Fix EOS handling in full node * [pools.testnet9]add post /partial and /farmer header (#6957) * Update farmer.py add post header * Update farmer_api.py add post header * Update chia/farmer/farmer.py Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> * Update chia/farmer/farmer_api.py Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> Co-authored-by: Mariano Sorgente <3069354+mariano54@users.noreply.github.com> Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> * Fix lint and cleanup farmer.py * farmer: Fix linting issues (#7010) * Handle the case of incorrectly formatted PoolState data returned from inner singleton * wallet: Resubmit transaction if not successful, rename to new_transaction_block_callback (#7008) * Fix lint in pool_puzzles * pooling: Fix owner private key lookup, and remove unnecessary argument * pooling: Clear target state on `delete_unconfirmed_transactions` * Lint * Fix non-deterministic test * Slight cleanup clvm driver code (#7028) * Return None when a deserialized CLVM structure does not fit the expected format of var-value pair for singleton data * lint Co-authored-by: Adam Kelly <aqk> * Revert "Add testnet config" This reverts commit 98124427241b8a268fbab43ac116887c89e9974f. Co-authored-by: matt <matt@chia.net> Co-authored-by: Adam Kelly <aqk@aqk.im> Co-authored-by: Mariano Sorgente <sorgente711@gmail.com> Co-authored-by: Matt Hauff <quexington@gmail.com> Co-authored-by: Mariano Sorgente <3069354+mariano54@users.noreply.github.com> Co-authored-by: Adam <aqk@Adams-MacBook-Pro.local> Co-authored-by: Adam Kelly <aqk> Co-authored-by: Richard Kiss <him@richardkiss.com> Co-authored-by: xdustinface <xdustinfacex@gmail.com> Co-authored-by: almog <almogdepaz@gmail.com> Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> Co-authored-by: Earle Lowe <e.lowe@chia.net> Co-authored-by: arvidn <arvid@libtorrent.org> Co-authored-by: willi123yao <willi123yao@gmail.com> Co-authored-by: arty <art.yerkes@gmail.com> Co-authored-by: William Blanke <wjb98672@gmail.com> Co-authored-by: matt-o-how <48453825+matt-o-how@users.noreply.github.com> Co-authored-by: Chris Marslender <chrismarslender@gmail.com> Co-authored-by: Yostra <straya@chia.net> Co-authored-by: DouCrazy <43004977+lpf763827726@users.noreply.github.com>
2021-06-30 00:21:25 +03:00
"chia.clvm",
2021-03-22 22:36:05 +03:00
"chia.consensus",
"chia.daemon",
"chia.data_layer",
2021-03-22 22:36:05 +03:00
"chia.full_node",
"chia.timelord",
"chia.farmer",
"chia.harvester",
"chia.introducer",
chia|tests|github: Implement, integrate and test plot sync protocol (#9695) * protocols|server: Define new harvester plot refreshing protocol messages * protocols: Bump `protocol_version` to `0.0.34` * tests: Introduce `setup_farmer_multi_harvester` Allows to run a test setup with 1 farmer and mutiple harvesters. * plotting: Add an initial plot loading indication to `PlotManager` * plotting|tests: Don't add removed duplicates to `total_result.removed` `PlotRefreshResult.removed` should only contain plots that were loaded properly before they were removed. It shouldn't contain e.g. removed duplicates or invalid plots since those are synced in an extra sync step and not as diff but as whole list every time. * harvester: Reset `PlotManager` on shutdown * plot_sync: Implement plot sync protocol * farmer|harvester: Integrate and enable plot sync * tests: Implement tests for the plot sync protocol * farmer|tests: Drop obsolete harvester caching code * setup: Add `chia.plot_sync` to packages * plot_sync: Type hints in `DeltaType` * plot_sync: Drop parameters in `super()` calls * plot_sync: Introduce `send_response` helper in `Receiver._process` * plot_sync: Add some parentheses Co-authored-by: Kyle Altendorf <sda@fstab.net> * plot_sync: Additional hint for a `Receiver.process_path_list` parameter * plot_sync: Force named parameters in `Receiver.process_path_list` * test: Fix fixtures after rebase * tests: Fix sorting after rebase * tests: Return type hint for `plot_sync_setup` * tests: Rename `WSChiaConnection` and move it in the outer scope * tests|plot_sync: More type hints * tests: Rework some delta tests * tests: Drop a `range` and iterate over the list directly * tests: Use the proper flags to overwrite * test: More missing duplicates tests * tests: Drop `ExpectedResult.reset` * tests: Reduce some asserts * tests: Add messages to some `assert False` statements * tests: Introduce `ErrorSimulation` enum in `test_sync_simulated.py` * tests: Use `secrects` instead of `Crypto.Random` * Fixes after rebase * Import from `typing_extensions` to support python 3.7 * Drop task name to support python 3.7 * Introduce `Sender.syncing`, `Sender.connected` and a log about the task * Add `tests/plot_sync/config.py` * Align the multi harvester fixture with what we do in other places * Update the workflows Co-authored-by: Kyle Altendorf <sda@fstab.net>
2022-04-08 03:10:44 +03:00
"chia.plot_sync",
Add plotters. (#8497) * Initial commit add plotters. * Lint. * Add progress for bladebit. * Address some review comments. * Oops... * Add install option. * Change chiapos to fit the old standard. * Update chia/plotters/bladebit.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Update chia/plotters/install_plotter.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Lint. * Remove farmerkey as required. * Chia plotters chiapos works with no arguments. * Added get_plotters RPC to support the GUI (#8530) * Added 'get_plotters' daemon RPC. Probes installed/available plotters on behalf of the GUI. * Linter fix * Minor type tweak * Tweaks. * Run with default arguments all plotters. * Fix bug. * Update chia/plotters/bladebit.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Change bladebit repo. * Update chia/plotters/bladebit.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Update chia/plotters/plotters.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Update chia/plotters/plotters.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Update chia/plotters/plotters.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Update chia/plotters/plotters.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Update chia/plotters/plotters.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Update chia/plotters/plotters.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Update chia/plotters/plotters.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Update chia/plotters/plotters.py Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> * Re-added the connect-to-daemon hidden option * Use connect_to_daemon value for madmax and bladebit plot key resolution. * Updated --tmp_dir, --tmp_dir2, --final_dir options to match old options from chia plots create * Add CONNECT_TO_DAEMON as a valid option for madmax/bladebit * Thread multiplier should be an int * Passing params for madmax to start_plotting. Still needs cleanup/refactoring. * Update chia/plotters/bladebit.py Co-authored-by: Kyle Altendorf <sda@fstab.net> * Update chia/plotters/madmax.py Co-authored-by: Kyle Altendorf <sda@fstab.net> * Filename option -z. * Factor out calling the plotter. * First attempt refactor install scripts. * Switch to exec. * Attempt to fix mypy warning. * Remove filename. * Increase RLIMIT_NOFILE for madmax on non-Windows platforms * Add trailing path separator to madmax tmpdir/tmp2dir/finaldir arguments (required by madmax) * Fixes to support madmax plotting from the GUI. Writing output from the plotters now includes a flush to ensure the plotter log (used by the GUI) is updated frequently. * Handle madmax's tmptoggle option internally when plotting with the GUI * Formatting and linter fix * Fixed the -i option for bladebit * Construct BladeBit plotting options * Cleanup code for building plotter command line options * Added a post-processing step after each plotting job completes. Adds the final_dir plot directory as necessary. * Fix plotter root path * Reverting prior checkin. Need to figure out how to handle CHIA_ROOT being overridden * BladeBit support for Windows * BladeBit's --memory-json option is used to check memory requirements * Madmax Windows support * Plotters directory is now under CHIA_ROOT * Madmax version detection * BladeBit will default to 0 threads. BladeBit will max-out available threads with this configuration. * LGTM fixes * Module definition for chia.plotters to resolve mypy issues with chiapos (package vs chiapos.py) * Updated BladeBit build script to account for 1.2.0 changes. Replaced remaining subprocess.run calls with run_command. Use BladeBit's reported memory requirement instead of hardcoded value. * Show a disclaimer when using thirdparty plotter * Test adding mac madmax plotter to the installers * Get latest madmax from the latest GH release * Fix bad var name * m1 madmax * Add linux/linux arm * pip install -e for arm installer, so that its consistent with the other platforms when looking for additional files * madmax + windows * Get madmax with Invoke-WebRequest * Use the correct windows slashes * add madmax to the list of windows binaries * Check if madmax exists on windows install and move it to site packages if it does * Make sure windows has .exe extension for madmax * Update azure to get latest version of madmax from GH releases * Bladebit for linux/linux arm * Fix error with binaries.extend * Bundle bladebit + windows * Fix download url for bladebit * Check for bladebit in windows script. move to correct directory if it exists * Detect and use packaged plotters * Removed unnecessary import * Updating the branch to use chiaplotters_gui for installer verification * Removed a change that was intended for debugging only * Remove disclaimer * Updated for new madmax plotter with k33, k34 support. Updated chia-blockchain-gui submodule * Fixed typo * Package the chia_plot_k34 executable * Boink * Revert "Boink" This reverts commit 8d13c071100e99af8ec05ccb26eb2e9b411a6939. * Additional chia_plot_k34 spots that I missed * pyinstaller.spec fix for chia_plot_k34 * Windows installer fix for chia_plot_k34.exe * Restoring chia-blockchain-gui submodule to 047ce16 (as in main) * Update to chiapos 1.0.6 Co-authored-by: Jeff Cruikshank <paninaro@gmail.com> Co-authored-by: Jeff Cruikshank <jeff@chia.net> Co-authored-by: Kyle Altendorf <sda@fstab.net> Co-authored-by: Chris Marslender <chrismarslender@gmail.com> Co-authored-by: Earle Lowe <30607889+emlowe@users.noreply.github.com>
2021-10-29 01:37:46 +03:00
"chia.plotters",
2021-03-22 22:36:05 +03:00
"chia.plotting",
Pools mainnet (#7047) * added clarifying comments * WIP test * added WIP test * Refine genesis challenge. Remove unnecessary pool_puzzle function * Sign spend. Remove create_member_spend. Rename state transition function to create_travel_spend * Rename create_member_spend to create_travel_spend * Add singleton id logging * Enhance logging for debugging * renaming * rephrase inside the puzzle * fixed signing and added some support functions * Fix issue with announcement * Progress spending the singleton * Fix arguments to pool_state_to_inner_puzzle call * Fix arguments to pool_state_to_inner_puzzle * Improve error message when wallet is not running * Remove misleading message about missing wallet process, when problem is the farmer by making poolnft command error out earlier * Fix parent coin info bug * Multiple state transitions in one block * Lint * Remove assert * Fix incorrect p2_singleton_ph calculation (thanks nil00) * Update waiting room puzzle to accept genesis_challenge * Update calls to create_waiting * Go to waiting state from committed state * Augment debug_spend_bundle * fix 2 bugs in wallet * Fix lint * fix bad_agg_sig bug * Tests and lint * remove breakpoint * fix clvm tests for new hexs and hashs * Fixed a bug in the coin store that was probably from merging. (#6577) * Fixed a bug in the coin store that was probably from merging. * The exception doesn't need to be there * CI Lint fix * Added lifecycle tests for pooling drivers (#6610) * Ms.poolabsorb (#6615) * Support for absorbing rewards in pools (untested) * Style improvements * More work on absorb * Revert default root and remove log * Revert small plots * Use real sub slot iters * Update types * debug1 * Fix bugs * fix output of agg sig log messages * Make fewer calls to pw_status in test * remove old comment * logging and state management * logging * small bug fix & rename for accuracy * format * Fix types for uncurry function * lint * Update test to use exceptions * Change assumptions about self-pooling in lifecycle test * Install types for mypy * Revert "Install types for mypy" This reverts commit a82dcb712a6a97b8789b17c98cac8eafaffe90f5. * install types for mypy * install types for mypy * More keys * Remove flags requiring interactive prompts * Change initial spend to waiting room if self-pooling * lint * lint * linting * Refactor test * Use correct value in log message * update p2_singleton_or_delated_puzhash * initial version of pool wallet with p2_singleton_or_delay * run black formatting * fix rebase wonkiness * fix announcement code in p2_singleton_or_delayed * removed redundant defaulting standardised hexstr handling * lint fixes * Fixed pool lifecycle tests to current standards, but discovered tests are not validating signatures * Signatures validate on this test now although the test still does not check it. * Lint fix * Fixed plotnft show and linting errors * fixed failing farmer/harvester rpc test * lint fix * Commenting out some outdated tests * Updated test coverage * lint fix * Some minor P2singleton improvements (#6325) * Improve some debugging tools. * Tidy pool clvm. * Use `SINGLETON_STRUCT`. Remove unused `and` macro. * Use better name `SINGLETON_MOD_HASH`. * Finish lifecycle test suite. * Fixing for merge with chia-blockchain/pools_delayed_puzzle (#72) Co-authored-by: Matt Hauff <quexington@gmail.com> * Default delay time was being set incorrectly * Extracted get_delayed_puz_info_from_launcher_spend to driver code * Ms.taproot plot2 (#6692) * Start work on adding taproot to new plots * Fix issue in block_tools * new test-cache * Lint * DID fixexs * Fix other tests * Python black * Fix full node store test * Ensure block index <= 128 bits. * fix test_pool_config test * fix comments in pool_config and in chialisp files * self_pool -> pool -> self_pool * Implement leaving pools * Fix conflicts with main via mini-rebase * Fixup rebase mistakes * Bring in Mariano's node discovery chagnes from pools.dev * Fix adapters - Thanks Richard * build tests * Add pools tests * Disable DID tests * farmer|protocol: Some renaming related to the pool protocol * farmer: Use `None` instead of `{}` and add local `pool_state` * protocol|farmer: Introduce and use `PoolErrorCode` * rename: `pool_payout_instructions` -> `payout_instructions` * refactor: `AuthenticationKeyInfo` -> `authentication_key` * refactor: Move `launcher_id` up * rename: Some variable name changes * rename: `points_balance` -> `points` * format: Squash aggregation into one line * farmer: Make `update_pool_state` public * farmer: Print traceback if `update_pool_state` fails * farmer: Periodically call `GET /pool_info`, add `_pool_get_pool_info` * farmer: Add `authentication_token_timeout` to `pool_state` Fetch it from `GET /pool_info` * protocol|farmer: Implement support for `GET|POST|PUT /farmer` * farmer: Make use of `GET|POST /farmer` - To make the farmer known by the pool - To update local balance/difficulty from the pool periodically * farmer|protocol: Adjust `POST /partial` to match the latest spec * farmer: Hash messages before signing * pools: Drop unused code * farmer: Fix aggregation of partial signatures * farmer: support self pooling, don't pool if url=="" * wallet: return uint64 for delay time, instead of bytes * pool: add error code for delay time too short * farmer: cleaner logging when no connection to pool * farmer: add harvester node id to pool protocol * Rename method (test fix) and lint fix * Change errors to warnings (pool communication) * Remove pool callbacks on a reorg * farmer: Continue earlier when no pool URL is provided * farmer: Print method in log * farmer: Handle exceptions for all pool endpoint calls * farmer|protocol: Keep track of failed requests to the pool * farmer: Fix typo which caused issue with pooling * wallet: simplify solution_to_extra_data * tests: Comment out DID tests which are not working yet * Remove DID Wallet test workflows * Return launcher_id when creating Pool Wallet * Name p2_singleton_puzzle_hash correctly * Improve 'test_singleton_lifecycle_fast.py'. * Make test more robust in the face of asynchronous adversity * Add commandline cmds for joining and leaving pools * Fix poolnft leave params * Remove redundant assignment brought in from main * Remove unneeded code * Style and parsimony * pool_puzzles: Check was wrong, and bad naming * format: Fix linting * format: Remove log and rename variable * pool-wallet: Fix self pooling with multiple pool wallets. Don't remove interested puzzle_hash * gui: Use pools branch * format: fix lint * Remove ununsed code, improve initial_pool_state_from_dict * farmer: Instantly update the config, when config file changes * format: Speed up loading of the authentication key * logging: less annoying logging * Test pool NFT creation directly to pool * Test switching pools without self-farming in between * lint * pooling: Use integer for protocol version (#6797) * pooling: Use integer for protocol version * pooling: Fix import * Update GUI commit * Ms.login2 (#6804) * pooling: Login WIP * pooling: add RPC for get_link * dont use timeout * pooling: rename to get_login_link * format: remove logging * Fix SES test * Required cli argument Co-authored-by: almog <almogdepaz@gmail.com> * farmer|protocols: Rename `current_difficulty` for `POST /partial` (#6807) * Fix to farm summary * Use target_puzzlehash param name in RPC call * Pool test coverage (#6782) * Improvement in test coverage and typing * Added an extra absorb to the pool lifecycle test (only works when merged with https://github.com/Chia-Network/chia-blockchain/pull/6733) * Added new drivers for the p2_singleton puzzles * Added new tests and test coverage for singletons * organize pools testing directory * black formatting * black formatting in venv * lint fix * Update CI tests * Fixing tests post rebase * lint fix * Minor readability fix Co-authored-by: matt <matt@chia.net> * farmer: Drop `target_puzzle_hash` from `GET /farmer` and `GET /login` (#6816) * Allow creation of PlotNFTs in self-farming state * gui: Fix install with more RAM (#6821) * Allow implicit payout_address in self-pool state, improve error messages and param ergonomics * print units in non-standard wallets correctly * Fix farmer import * Make syncing message in CLI more intuitive like the GUI * Fix linting and show header hash instead of height * gui: Update to 725071236eff8c81d5b267dc8eb69d7e03f3df8c * Revert "Merge" This reverts commit 23a1e688c5fb4f72983fd896d4933336a365fe38, reversing changes made to a850246c6f4de4d2eb65c4ac1d6023431f3ba7e9. * Revert "Revert "Merge"" This reverts commit 680331859f5dc404cca9c2ff8f4a61df374db125. * Treat tx_record as Dict. Refactor tx submission * Also add passed-in coin spends when processing new blocks in reconsider_peak * Test utilities had moved * Fix import of moved block_tools * Potentially fix yaml * Previously didn't take the right part of this change * Add -y flag, improve commandline plotnft handling * Fix typo * Add -y flag to plotnft create * pool_wallet: Restore from DB properly * wallet: ignore bad pool configs * Reduce memory * pool_wallet: Add claim command * pool_wallet: Set transaction records to confirmed * wallet: Fix bug in transaction cache * Formatting and remove log * pool_wallet: CLI balance and improvements to plotnft_funcs.py * pool_wallet: Simplify, and fix issue with double submission * pool_wallet: Fix tests * pool_wallet: Don't allow switching before relative lock height * update gui * change to 3000 mem * Correct sense of -y flag for self-pooling * cli: Display payout instructions for pool * pool_wallet: Don't create massive transactions * cli: Improvements to plotnft * pool_wallet: Get correct pool state * pool_wallet: Use last transaction block to prevent condition failure * Add block height for current state * Add outstanding unconfirmed transactions to pw_status * Refine command line plotnft show pending transactions * Fix tests by using the correct output from pw_status * Try to fix windows build * Print expected leave height * label pool urls * pool_wallet: Don't include pool 1.75 rewards in total * wallet: Add RPC and CLI for deleting unconfirmed transactions for a wallet * pool_wallet: If farming to a pool, show 0 balance in wallet * pool_wallet: Show error message if invalid state, in CLI * pool_wallet: Don't allow switching if there are pending unconfirmed transactions * tests: Clean up pool test logging * tests: Fix lint * Changed the pool innerpuzzes (#6802) * overload solutions for pool_innerpuz parameters * Fix tests for reduced size puzzles * deleted messy deprecated test * Fix lint. * fix bug where spend types were the wrong way around * merge with richard's lint fix * fix wallet bug remove unnecessary signature add defun-inline for clarity * Swap to defun for absorb case Use cons box for member innerpuz solution * fix if statement for cons box p1 * remove unnecessary solution arg * quick innerpuz fix to make tests pass * Switch to key-value pairs Undo cons box solution in pool_member inner puzzle * fix singleton lifecycle test * added some comments to calrify the meaning on "ps" * lint fix * reduce label size, search for label when reconstructing from solution * no need to keep looping if `p` found * lint fix * Removed unecessary defun-inline and changed hyphens to underscores * Changed created_coin_value_or_0 to an inline function * Changed morph_condition to an inline function * Added a comment for odd_cons_m113 * Rename output_odd and odd_output_found * Add inline functions to document the lineage proof values * Stager two rewrite * Added an ASSER_MY_AMOUNT to p2_singleton_or_delayed * Extract truth functionality to singleton_truths.clib * Fix tree hashes * Changed truths to a struct rather than a list. * fix test_singletons update did_innerpuz * recompile did_innerpuz * fix a log error * Renamed variable and factored out code per @richardkiss * lint fix * switch launcher extra_data to key_value pairs * fix parsing of new format of extra_data in launcher solution * fix broken test for new launcher solution format * remove bare raise Co-authored-by: Richard Kiss <him@richardkiss.com> Co-authored-by: Matt Hauff <quexington@gmail.com> * Also add passed-in coin spends when processing new blocks in reconsider_peak (#6898) Co-authored-by: Adam Kelly <aqk> * Moved debug_spend_bundle and added it to the SpendBundle object (#6840) * Moved debug_spend_bundle and added it to the SpendBundle object * Remove problematic typing * Add testnet config * wallet: Memory would get corrupted if there was an error (#6902) * wallet: Memory would get corrupted if there was an error * wallet: Use block_record * wallet: Add records in a full fork too * wallet: remove unnecessary arguments in CC and DID * add to cache, revert if transaction fails Co-authored-by: Yostra <straya@chia.net> * Improve comment * pool_wallet: Fix driver bug * wallet: Fix memory corruption * gui: Update to latest * Increase memory size * tests: Add test for absorbing from pool * small fix in solution_to_extra_data * Fixed incorrect function name * pooling: Fix EOS handling in full node * [pools.testnet9]add post /partial and /farmer header (#6957) * Update farmer.py add post header * Update farmer_api.py add post header * Update chia/farmer/farmer.py Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> * Update chia/farmer/farmer_api.py Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> Co-authored-by: Mariano Sorgente <3069354+mariano54@users.noreply.github.com> Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> * Fix lint and cleanup farmer.py * farmer: Fix linting issues (#7010) * Handle the case of incorrectly formatted PoolState data returned from inner singleton * wallet: Resubmit transaction if not successful, rename to new_transaction_block_callback (#7008) * Fix lint in pool_puzzles * pooling: Fix owner private key lookup, and remove unnecessary argument * pooling: Clear target state on `delete_unconfirmed_transactions` * Lint * Fix non-deterministic test * Slight cleanup clvm driver code (#7028) * Return None when a deserialized CLVM structure does not fit the expected format of var-value pair for singleton data * lint Co-authored-by: Adam Kelly <aqk> * Revert "Add testnet config" This reverts commit 98124427241b8a268fbab43ac116887c89e9974f. Co-authored-by: matt <matt@chia.net> Co-authored-by: Adam Kelly <aqk@aqk.im> Co-authored-by: Mariano Sorgente <sorgente711@gmail.com> Co-authored-by: Matt Hauff <quexington@gmail.com> Co-authored-by: Mariano Sorgente <3069354+mariano54@users.noreply.github.com> Co-authored-by: Adam <aqk@Adams-MacBook-Pro.local> Co-authored-by: Adam Kelly <aqk> Co-authored-by: Richard Kiss <him@richardkiss.com> Co-authored-by: xdustinface <xdustinfacex@gmail.com> Co-authored-by: almog <almogdepaz@gmail.com> Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> Co-authored-by: Earle Lowe <e.lowe@chia.net> Co-authored-by: arvidn <arvid@libtorrent.org> Co-authored-by: willi123yao <willi123yao@gmail.com> Co-authored-by: arty <art.yerkes@gmail.com> Co-authored-by: William Blanke <wjb98672@gmail.com> Co-authored-by: matt-o-how <48453825+matt-o-how@users.noreply.github.com> Co-authored-by: Chris Marslender <chrismarslender@gmail.com> Co-authored-by: Yostra <straya@chia.net> Co-authored-by: DouCrazy <43004977+lpf763827726@users.noreply.github.com>
2021-06-30 00:21:25 +03:00
"chia.pools",
2021-03-22 22:36:05 +03:00
"chia.protocols",
"chia.rpc",
Chia Seeder (#8991) * initial hack * crawler * add pytz * Checkpoint. * Catch some bugs. * Localhost dig working. * Checkpoint: return only high quality nodes. * Statistics. * Try improving finding reliable nodes. * Bug. * Move db to memory. * Timestamp in the last 5 days. * Increase crawl parameters, 180+ connections per sec. * Bug. * Optimize for DNS traffic. * Prepare for hosting. * Minimum height. * Typo. * Try catch everything. * dnslib. * Add db, format code. * nits. * No connections for the dns server. * Rename src -> chia * Fix some issues with v1.1 * Crawler task pool. * Optimize closing connections. * Split crawler and dns server. * Install instructions. * Catch startup bug. * Try a big timeout for lock aquire. * lint. * Lint. * Initial commit extended stats. * Simplify code. * Config. * Correct stats. * Be more restrictive in crawling. * Attempt to fix stats bug. * Add other peers port to config. * Update README for the config. * Simplify crawl task. * Fix bug on restarts. * Prevent log spamming. * More spam prevention. * Fix bug. * Ipv6 (#1) * Enable ipv6. * Fix bug. * Use numeric codes for QTYPE. * ANY working. * More spam prevention. * Try to improve IPv6 selection. * Log IPv6 available. * Try to crawl more aggresive for v6. * rename dns.py to crawler_dns.py so it doesn't conflict with imported package names * Remove pytz package off dependencies * Tidy-up ws_connection.py * Fix spelling * Reinstate chia-blockchain readme, with additional lines pertaining to the DNS introducer & crawler * More detailed info in the README wrt Chia Seeder * Nit * More memetic naming of Chia Seeder * Nit * Add entry points * Add entry in packages * Patch some methods on the upstream server * Update peer record fields * Standard library imports first * Crawler API check * Reconcile crawl store * Account for crawler_db_path in config * Await crawl store load DB and load reliable peers * Updates to crawler * Rename to dns_server * Crawler-specific overrides for the chia server * Edit comment * Undo changes to ChiaServer in view of crawler-specific overrides introduced in previous commit * Nit * Update service groups * Expand name maps, mostly * Fix the init config * Remove unused import * total_records unused at this stage * Remove ios_reliable in peer_reliability table * Remove row[20] entry * Split overly long line * Fix * Type hint for ns_records * Reconcile mismatch btw type int and uint64 * Type annotations in crawler * Check whether crawl store is set * Remove upnp_list * Lint * Chia Seeder CLI * Lint * Two white spaces * 3rd party package import * Cleaner way to handle overrides for ChiaServer method * Address linter warnings * Rename * Nits * Fix * Change port # * Most chia_seeder commands up and running * Rename * Progress of sorts * Fix * Improve legibility * Fix naming * Fix setup.py * Lint * None -> '' * Remove whitespace * Rename * Log ipv6 better. (#9227) * Log ipv6 better. * Lint. * - * Undo GUI changes * Another attempt * GUI changes Co-authored-by: Yostra <straya@chia.net> Co-authored-by: Florin Chirica <fchirica96@gmail.com> Co-authored-by: Chris Marslender <chrismarslender@gmail.com>
2021-11-28 05:30:25 +03:00
"chia.seeder",
2021-03-22 22:36:05 +03:00
"chia.server",
"chia.simulator",
"chia.types.blockchain_format",
"chia.types",
"chia.util",
"chia.wallet",
2022-02-08 04:28:56 +03:00
"chia.wallet.db_wallet",
2021-03-22 22:36:05 +03:00
"chia.wallet.puzzles",
Merge standalone wallet into main (#9793) * wallet changes from pac * cat changes * pool tests * pooling tests passing * offers * lint * mempool_mode * black * linting * workflow files * flake8 * more cleanup * renamed * remove obsolete test, don't cast announcement * memos are not only bytes32 * trade renames * fix rpcs, block_record * wallet rpc, recompile settlement clvm * key derivation * clvm tests * lgtm issues and wallet peers * stash * rename * mypy linting * flake8 * bad initializer * flaky tests * Make CAT wallets only create on verified hints (#9651) * fix clvm tests * return to log lvl warn * check puzzle unhardened * public key, not bytes. api caching change * precommit changes * remove unused import * mypy ci file, tests * ensure balance before creating a tx * Remove CAT logic from full node test (#9741) * Add confirmations and sleeps for wallet (#9742) * use pool executor * rever merge mistakes/cleanup * Fix trade test flakiness (#9751) * remove precommit * older version of black * lint only in super linter * Make announcements in RPC be objects instead of bytes (#9752) * Make announcements in RPC be objects instead of bytes * Lint * misc hint'ish cleanup (#9753) * misc hint'ish cleanup * unremove some ci bits * Use main cached_bls.py * Fix bad merge in main_pac (#9774) * Fix bad merge at 71da0487b9cd5564453ec24b76f1ac773c272b75 * Remove unused ignores * more unused ignores * Fix bad merge at 3b143e705057d6c14e2fb3e00078aceff0552d7e * One more byte32.from_hexstr * Remove obsolete test * remove commented out * remove duplicate payment object * remove long sync * remove unused test, noise * memos type * bytes32 * make it clear it's a single state at a time * copy over asset ids from pacr * file endl linter * Update chia/server/ws_connection.py Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> Co-authored-by: Matt Hauff <quexington@gmail.com> Co-authored-by: Kyle Altendorf <sda@fstab.net> Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com>
2022-01-13 23:08:32 +03:00
"chia.wallet.cat_wallet",
"chia.wallet.did_wallet",
Bring DID/NFT effort into release/1.4.0 (#11662) * initial commit * assert coin added in test * add support functions * add RPC calls (untestested and surely unworking) also change innerpuz * missing comma * update puzzle clvm hex sha256 * fixes * add load_wallet for nft_wallet * add singleton 1.1 and update innerpuz for it * update wallet for new innerpuz * use singleton 1.1 * swap DID to singleton 1.1 * Fix DID Wallet and DID Innerpuz * list hint * don't push automatically * change to determine_coin_type * stash debug * fix get_hints() * small fix en route to bigger fix later * push for straya * checkpoint * coin discovered in wallet * re-enable push of attests because message spends are different * change a few node calls for rebase and rebase * black and flake8 * flake8 test formatting * Add transfer test and some transfer functions * fix bug where innerpuzzle would not recreate itself properly * fix get_info for received NFT and reovme breakpoint * fix messages * debug commit * receive and send it back! * send it back and remove NFTs after they're sent * fix adding duplicates bug * mint NFT with RPC calls test * save newer coin info over older info * finish RPC tests * update to new version of singleton black * change puzzle to remove need for receive spend when trade_price = 0 * Begin conversion to trade price list * fix test to new trade_price_list system * Move towards goals in chialisp * fix clvm testss * remove unused code * more chialisp changes working towards CAT royalties * much progress on CAT royalties * round down to even on royalties * add delay to fix inconsistent tests * remove unused file * add assertions and fine tune sleep * add richer support for URIs / metadata and add periphery functions * switch to metadata, switch to puzzle announcements * update innerpuz commit hash * add clvm files to recomp list * fix rpc test * flake8 fixes for tests * flake 8 stupid fix * Big change to NFT innerpuz (#11141) * new innerpuz with passing clvm tests * more work on url updating * fix broken add_url tests * fix nft_wallet generate_nft code * more progress * fix wallet and change to auto-send on tradeprice == 0 * flake8 and black * NFTs are always amount 1 removed some unnecessary new_did info detritus from wallet * move trade_price_list into tp_solution * Update chia/wallet/nft_wallet/nft_puzzles.py * Update chia/wallet/nft_wallet/nft_puzzles.py * Update chia/wallet/nft_wallet/nft_puzzles.py * Update chia/wallet/nft_wallet/nft_puzzles.py * Update chia/wallet/nft_wallet/nft_puzzles.py * Update chia/wallet/nft_wallet/nft_puzzles.py * Update chia/wallet/nft_wallet/nft_puzzles.py * Update chia/wallet/nft_wallet/nft_puzzles.py * Update chia/wallet/nft_wallet/nft_puzzles.py * Update chia/wallet/nft_wallet/nft_puzzles.py * typing for create_full_puzzle_with_curry_params * Typing for update_metadata * Typing for get_trade_prices_list_from_inner_solution Co-authored-by: Jeff <jeff@chia.net> * Merge commit with main (9ff3fc993f69b5c59ecf14470284a5b9e799e6cf) (#11137) * Merged with main (9ff3fc993f69b5c59ecf14470284a5b9e799e6cf) * Linter and some test fixes * isort, linting, test fix * Fixes and bumped the GUI to point to nftdev * Couple of fixes * Bumping GUI to 7aa199a4fb49361e6005c1c9cbdc54f269f9220b * Bumping GUI to 155866f6d060944b29b40c147f7f02eaab2e50b7 * DID changes all in one (#10559) * Chialisp draft * Modify python code * Reformat & Fix tests * Chialisp draft * Modify python code * Bug fix & flake8 fix for NFT tests * Handle recovery * Chialisp draft * Modify python code * Reformat & Fix tests * Chialisp draft * Modify python code * Bug fix & flake8 fix for NFT tests * add clvm files to recomp list * fix rpc test * flake8 fixes for tests * flake 8 stupid fix * Bug fix & flake8 fix for NFT tests * Modify python code * Chialisp draft * Modify python code * Bug fix & flake8 fix for NFT tests * Generalize the message puzzle * Add Pubkey as hint * Receive DID * Add DID APIs & Tests * Fix tests * Test fixes. in_transaction is now passed as a param to the various callers that eventually call save_info. * Workflow Fix * Add test config for DID/NFT * Update workflow test yaml * Fix install test script * Fix typo * Resolve comments * Fix tests * Change did_innerpuz and fix wallets for new design (#11196) * correcting the design of did_innerpuz and related wallet changes * remove breakpoint comments * change decimal point accuracy of percentage system * secure new_amount by fixing it to our current amount * rename and update comments for new_amount - now my_amount * rename P2_PUZZLE to simply INNER_PUZZLE * fix variable re-declaration for flake/merge * black and flake8 - inclduing wallet_state_manager bug fix * update RPCs related to add_url added commented out tests too, but DID needs fixing first * Fix bugs in transfer case * Fix pre-commit * Fix install.sh test for bookworm Co-authored-by: matt <matt@chia.net> Co-authored-by: Jeff Cruikshank <jeff@chia.net> Co-authored-by: matt-o-how <48453825+matt-o-how@users.noreply.github.com> Co-authored-by: ytx1991 <t.yu@chia.net> * Merge commit with main 1.3.4 (d154105a6b35f94649f15bca4e3fb8a11a39e70e) (#11276) * slight simplification of interpreting the bytes received by the timelord. avoid redundant round-trips to strings (#10316) * move build and twine to be dev deps rather than workflow installs (#10291) * add db validate function to check consistency of blockchain database (#10398) * streamable: Cache stream functions (#10419) Apply the same pattern as we have for deserialization to serialization. This avoids all those recursive runtime lookups for "how to stream this object" which brings a nice speedup: ``` compare: benchmark mode | µs/iteration old | µs/iteration new | diff % to_bytes | 447.57 | 193.56 | -56.75 compare: full_block mode | µs/iteration old | µs/iteration new | diff % to_bytes | 110.32 | 61.09 | -44.62 ``` * Stop assuming `True == 1` (#10396) * Stop assuming `True == 1` * Removed unnecessary lines which confuses code readers * simplify self_hostname. It doesn't need to depend on initial-config.yaml -> create_block_tools() -> global variable bt (#10371) * Fix balance calculation so it works with future unconfirmed tx (#10447) * Only update height if we have processed everything before that height. (#10415) * Only update height if we have processed everything before that height. * Remove debug return * Forgot this file * Better sorting of coin states, and disconnect peer if we are connected to trusted * Fix disconnect, and don't mutate arguments * Fix comment * Update chia/wallet/wallet_node.py Co-authored-by: Kyle Altendorf <sda@fstab.net> * Update chia/wallet/wallet_state_manager.py Co-authored-by: Kyle Altendorf <sda@fstab.net> * Address comments Co-authored-by: Kyle Altendorf <sda@fstab.net> * GC connections in wallet (#10450) * Fix the year from 2021 to 2022 (#10462) * Ms.unused code (#10453) * Remove old backup stuff * Remove references to CC (couloured coins) which is deprecated terminology * removed no longer used import Co-authored-by: Kyle Altendorf <sda@fstab.net> * Don't load initial data older than 5 days (#10481) * When loading initial data, don't include IPs older than 5 days in the best timestamp dict * Don't load version data for hosts older than 5 days * Update the DMG background image (#10289) * Update the DMG background image * Updated with latest design. * Updated background.tiff with latest design * Fancier DMG customization support via build_dmg.js * npm_macos -> npm_macos_m1 * Pass in the app path to build_dmg.js * Peppering with __init__.py files to satisfy the precommit hook * Return the fees of an offer via RPC (#10480) * farmer: Cleanup request retry and some logs (#10484) * farmer: Bump next update times regardless of the request results * farmer: Drop additional "success/failure" log logic We already print the PUT response in `_pool_put_farmer` the other parts just lead to confusion if the pool didn't implement the PUT correct. * farmer: Print error responses from the pool with `WARNING` log level * Fix method name (#10500) * updated gui to e2202874e1cb922a57370a47b2aec7bcf152b57d * reverted to gui 800a0f6556b89e928b1cf027c996b5ed010a7799 * updated gui to 672cf2a74ade67a868df232772bd6358bce8dedf * Only rewrite config when there is a difference (#10522) * Only rewrite config when there is a difference * Use variable * Preserve existing pool payout_instructions when creating a PoolWallet (#10507) * Preserve existing pool payout_instructions when creating a PoolWallet * Updated the logged string when payout_instructions needs to be generated. * Tests for update_pool_config * isort * Logging change, linter fixes, and more comments. * Abort trusted sync if a state update fails (#10523) * Abort trusted sync if a state update fails * Fix lint * fix updating of sub-epoch-summary map (part of BlockHeightMap) when the entirey change, including genesis changes (#10486) * Fix propagation of errors when adding a key with an invalid mnemonic (#10274) * Fix propagation of error messages originating from the keychain server * Test that adding key with an invalid mnemonic returns the expected error * Added daemon tests for the add_private_key RPC. Reverted wallet_rpc_client test as the daemon test is better suited for GUI testing. * Reformatting updates * Formatting change as requested by the pre-commit gods. * catch up test_add_private_key() with dynamic ports (#10530) * Updated background and icon positions. (#10531) * improve the picking of free ports for tests (#10491) * Hide balances until we are synced (#10501) * make multiprocessing start method configurable (#10528) * make multiprocessing start method configurable * forkserver * corrections * fixup * optional * more optional * stop attempting anchors in the yaml * rework config handling * comment * Update URL for direct download of windows whl for upnp (#10540) * Add incoming tx records when cancelling an offer (#10538) * Add incoming tx records when cancelling an offer * show fee on all txs * wallet: Reduce log level for `Pulled from queue` message (#10529) * pools: Drop redundant `PoolWalletInfo.from_json_dict` (#10524) It exists the same way in its base class `Streamable`. * correct multiprocessing start method logging, add python_default (#10547) * correct multiprocessing start method logging, add python_default * todo -> regular comment * correct some comments to refer to CATs (#10548) * correct some comments to refer to CATs * one more * and in a test * Detect hints correctly in the TX (#10543) * Detect hints correctly in the TX * Only support list hints * Allow CAT autodiscovery, refactor CAT default naming (#10308) * Allow CAT autodiscovery * Add wallet autodiscovery test * Use dict get for automatically_add_unknown_cats with default false * Refactor name generation for new CATs into one place * Remove hardcoded default cat wallet name from wallet rpc test * initial-config.yaml comment nit * Wallet consistancy (#10532) * use db transaction, -1 in synced up to height, delete unused funcitons * use transaction info in key-val-store/pool-store * cat stores * db lock * remove unused lock, set synced not always in transaction * fix store tests Co-authored-by: wjblanke <wjb98672@gmail.com> * benchmarks: Implement streamable data comparison (#10433) * Resubmit peak to timelord for failure. (#10551) * Initial commit resubmit peak to timelord. * Change how toandle exception. * Add some logging. (#10556) * Fix `install-gui.sh` (#10460) * Fixed an issue where running with gui git branch specified failed * Fixed an issue where install-gui.sh failed if npm>=7 and NodeJS < 16 were installed * Fixed inconsistent npm path issue * Fixed typo * Add fee to changing pool, and more PlotNFT syncing fixes (#10545) * Add fee to changing pool, and more aggressive disconnect of untrusted * Don't publish fee TX * Lint * Small plotnft related fixes * More plotnft fixes * Apply quexington suggestion * correct param for in_transaction * Support get_transaction and get_transactions in plotnft * Re-add publish_transaction and add comment * Don't rerun additions * adding 1.3.0 release notes to changelog (#10578) * adding 1.3.0 release notes to changelog * Typos. thx @paninaro * Adding requested adjustments to changelog * Require pytest-asyncio>=0.17.0 for @fixture() (#10560) * Convert tests/core/util/test_streamable.py to use pytest. Remove unneeded class. (#10577) * make sync fixtures not use async def (#10504) This is particularly relevant in cases where the scope is not function as that forces use of a wider scoped event loop fixture as well. * Fixup some hidden test errors (#10442) * Touching up changelog (#10584) * removing known issue that was only applicable to a beta release * Adding additional fixes to the changelog * Adding Unreleased section to track upcoming changes * context manager for socket in find_available_listen_port(), catch OSError (#10567) * Bump CAT wallet test timeout to 40 minutes (#10605) * Remove block tools and keychain globals (#10358) * Use bt fixture * rebase * Use local_hostname * Fix test_json (inheritance from unittest.TestCase) * Use correct BlockTools fixture for test_simulation * Pass bt fixture into cost calculation tests * flake8 * Add missing parameters to test functions * Fix from rebase issues * Remove set_shared_instance * Update comment * Remove unneeded comments * Remove unused code * Remove unused code, run `multiprocessing.set_start_method("spawn")` at correct time. * Revert unrelated change * Set daemon_port. Teardown services in correct order. BIG thanks to Mariano Sorgente for debugging help. * Add back type signature - rebase issue * Apply review fixes from Jeff * Document why we need a later pytest-asyncio version * Correct type for _configure_legacy_backend * See what's going on during CI mypy run * github workflows * mypy typing * Remove legacy Keyring create method * Start daemon first * Shutdown daemon coroutine properly * Remove un-needed daemon_port argument * Set chia-blockchain-gui to hash in main * Remove connect_to_daemon_port * Remove code that set "daemon_port" before calling `setup_daemon` * Remove self_hostname fixture and extra self_hostname global * Fix two test files that were not importing self_hostname * self_hostname fixture * Remove more unused test code * Simplify fixture * a problem with using random.randint() to pick a port is that all processes (running in parallel) are seeded the same, and so pick the same ports at the same time, causing conflicts. This uses proper entropy instead. (#10621) * `chia keys show` will default to displaying the first observer-derived wallet address. With the addition of the `-d` option, the non-observer derived wallet address can be displayed. (#10615) * pools: Fix `plotnft claim` command's output (#10609) If you currently claim rewards `claim_cmd` fails to print the txhash with the lookup hint in `submit_tx_with_confirmation` ``` Error performing operation on Plot NFT -f 172057028 wallet id: 12: 'dict' object has no attribute 'name' ``` Because `submit_tx_with_confirmation` expects a `TransactionRecord` as result from its callable parameter `func` but `pw_absorb_rewards` returns a dict which includes the `TransactionRecord` as value for the key `transaction`. This PR makes sure all other methods used as `func` callable have the same return behaviour as `pw_absorb_rewards`. We could have adjusted it the other way around (only return `TransactionRecord` in `pw_absorb_rewards`) but then we would drop information in the RPC client. With this PR you get: ``` Do chia wallet get_transaction -f 172057028 -tx 0x34f74a1ffd9da9a493b78463e635996fd03d4f805ade583acb9764df73355f9c to get status ``` * fix initial-config typo - log_maxbytesrotation (#10598) * Fix invalid DB commit (#10594) * Fix invalid DB commit * More fixes * Add raise * Fix test * correct spelling of genrated (#10653) * fix [Bug] #10569 (#10571) * Version control (#10479) * Added version control enforcement to macOS m1 * Added enforced version control * Added enforce version compliance * Added enforced version compliance * Added enforced versioning * Updating this to include DRY internal action. * Removed some unintended whitespace. * Removed some unintended whitespace. * CI re-run * Trying to figure out why it's failing one test. * Trying to figure out why it's failing one test. * Trying to figure out why it's failing one test. * plotting: Only lock while actually accessing `PlotManager.plots` (#10675) * Fix exception when `chia keys migrate` is run without needing migration (#10655) * Fix exception when `chia keys migrate` is run without needing migration * Linter fixes * Slightly different query for V2 DBs for getting compact/uncompact block counts, to ensure the available index is used / avoid a table scan (#10661) * Check prefix on send_transaction before sending (#10566) * Check prefix on send_transaction * Fix failing RPC tests - xch -> txch since tests are a testnet and we enforce valid prefixes with this PR * Ak.convert fixtures (#10612) * Use bt fixture * rebase * Use local_hostname * flake8 * Remove set_shared_instance * Remove unneeded comments * Revert unrelated change * Add back type signature - rebase issue * Correct type for _configure_legacy_backend * See what's going on during CI mypy run * github workflows * mypy typing * Remove legacy Keyring create method * Start daemon first * Set chia-blockchain-gui to hash in main * Fix two test files that were not importing self_hostname * self_hostname fixture * Convert all class fixtures to top level functions * updated gui to cdfa2b98217fa8755c0da4f7409e6f90032c4c4c * Better management of KeyringWrapper's keys_root_path when using TempKeyring for tests (#10636) * Better management of KeyringWrapper's keys_root_path when using TempKeyring for tests. * Move keys_root_path restoration code into `cleanup()` Added an assert to detect if an unexpected shared KeyringWrapper is injected during a test. * Conditionally restore keys_root_path for testing * better TLS1.3 check (#10552) * better TLS1.3 check * catch ValueError instead of Exception * Code simplification and cleanup * a few nits in comments * Add configuration locking (#10680) * Add configuration locking Extracted from https://github.com/Chia-Network/chia-blockchain/pull/10631 * note that fasteners will likely be replaced by filelock * Fix test_multiple_writers on macOS * create_all_ssl() doesn't need to be inside the config access lock * add warnings about not using async within get_config_lock() get lock contexts * no need to pre-touch the lock file * .yaml.lock instead of just .lock * test_multiple_writers() is sync * Revert "add warnings about not using async within get_config_lock() get lock contexts" This reverts commit 681af3835bbc8ab0ff6e1cca286d8b23fcbd0983. * reduce lock context size in chia_init() * use an exit stack in load_config() * avoid config existence precheck * only lock around the read in load_config() * do not raise e, just raise * tidy new imports * fix queue empty check in test_config.py * remove commented out code in test_config.py * remove unused import Co-authored-by: Jeff Cruikshank <jeff@chia.net> * fix usage of the bt fixture in conftest fixtures (#10688) * bump pre-commit mypy to 0.940 (#10672) * remove some event_loop() fixtures (#10420) * remove event_loop() fixtures * flake8 * flake8 * remove sys.exit() from daemon shutdown * bump full node test timeout. a lot... to see. * fixup some tests * back to module scope event loop fixture for test_full_node.py * Update test_full_node.py * Iterator... * for the whole directory * some fixtures back to module scope for reduced runtime * back to 40 minute workflow timeouts * these are being addressed separately * updated gui to c992d07c956501f92e84ead80127c6b1e882fc21 * tests: Add `_PYTEST_RAISE` to fix exception breakpoints with pytest (#10487) It's currently not possible to have the debuger stop on an uncaucht exception when debugging tests. With this patch, adding `_PYTEST_RAISE=1` to the environment variables in the pytest configuration template fixes this. * Fixed test failures on Windows. (#10740) * Convert helper method do_spend from a class method to a function (#10613) * Remove unused test code (#10614) * Ak.setup nodes (#10619) * Remove unused test code * Centralize fixture uses of setup_n_nodes * Centralize fixure uses of setup_two_nodes * Break up setup_nodes into setup_services, for individial services, and setup_nodes, for initializing different simulator configurations * Sort imports * more entropy in random listen ports (#10743) * update chia-blockchain-gui one commit for npm build fix (#10776) * Updating Changelog for point release (#10781) * Updating Changelog for point release * Adding missing changelog items * run benchmarks separately (#10754) * run benchmarks separately * only run benchmarks once, with the most recent python version we support * Change name to order of returned values. Enforce mandatory naming and inclusion of start_services parameter (#10769) * cmds: Implement `chia rpc` command (#10763) * cmds: Implement `chia rpc` command * Enable "timelord" client + some refactoring to enable "crawler" client * wallet: Fix `STANDARD_WALLET` creation for `wallet_info.id != 1` (#10757) * wallet: Optional wallet type parameter for `get_wallets` and `wallet show` (#10739) * wallet: Add optional `type` parameter to `get_wallets` and `wallet show` * tests: Use the `type` parameter for `get_wallets` in pool rpc tests * cmds: Ask for the name of the wallet type in CLI * harvester: Reuse legacy refresh interval if new params aren't available (#10729) * mypy 0.941 for pre-commit (#10728) * Add maker fee to remaining offer RPCs (#10726) * Add healthcheck endpoint to rpc services (#10718) * Add healthcheck endpoint to rpc services * Trailing whitespace ding * Fix typos lastest > latest (#10720) * fix typo in command line argument parsing for chia db validate (#10716) * New RPC get_coin_records_by_hint - Get coins for a given hint (#10715) * RPC endpoint to retrieve coins by hint * RPC client update for get_coin_records_by_hint * start writing tests for get_coin_records_by_hint * Address linting concerns. * Address flake8. Fix the get_coin_ids() call. * convert hint to bytes32 * tests for get_coin_records_by_hint Co-authored-by: Amine Khaldi <amine.khaldi@reactos.org> * require test-cache repo is found in CI (#10711) * Issues found in RPC API review (#10702) * Removed unnecessary substitution * Recovered property which was accidentally removed in full node RPC API * Added backward compatibility to `get_additions_and_removals` full_node RPC API * Fixed full_node rpc client * minor followup to config locking (#10696) * minor lock scope reduction * use the lock in tests * Use the passed root_path in configure CLI command (#10694) * Improve the CI runs w.r.t. timelord installation (#10673) * Superficial analysis showed that only two test groups require (for now) installing the timelord. This change aims to save us hours of CI running time by simply running the install timelord script only for those test groups, with everything else having it omitted. Dedicated to @hoffmang9 * We don't need these anymore. * less optional around ssl (#10558) * less optional * clean up cruft * more * more * just a little less optional * cmds: Fix trusted peer hint in `chia wallet show` (#10695) `config` is the root config here. * Enable clvm_tools_rs by default (#10554) * Enable clvm_tools_rs by default * Re-add clvm_tools dep for now as it provides python idioms for interacting with clvm data * Take lint formatting * Adam: Try making this non-parallel * Try fix for threading issue in tests * Test whether turning off parallel runs causes things to work (temp) * Test use of temp files in clvm_tools_rs as a candidate solution for atomic replacement of hex output * Use proper git+https url scheme (oops) * Update to candidate 0.1.6 so we can test * Revert version bump to re-test * Test whether we can re-enable parallelism * Attempt to mitigate concurrent test running: return own conception of the compiled output. This will work if the failing path is downstream of recompilation * fix path to hex file * Probe for source of 0-length data * Further exploration: more assertions, hopefully to trigger in the test on ci * Do an even more paranoid check to verify that we observe a file whose filesystem reported size is much smaller than expected * Try a heavier handed approach, using heavyweight lockfiles on the filesystem * Import a simple lockfile implementation and use it to enforce mutual exclusion. Simplify it and remove the unwanted os traffic * Take lint, precommit advice, bump to clvm_tools_rs 0.1.6 now that it's released * Fix lint * While i was working on this, -n auto was on the command line so i think this didn't actually do anything, but reverting my change just in case * Lint * label the hashes re: pr * Add a lock.py for spot exclusivity using the filesystem (re: adam in the pr) and a convenience wrapper that hides the details * Formatting warning * Ensure type info is present and do the obvious return of the inner function's result * Use double quotes (lint) * Properly balance blank lines * Lint: alphabetize imports * One line is required here (lint) * Remove unnecessary assignment * when creating a new blockchain database implicitly, make it v2 (#10498) * when creating a new blockchain database implicitly, make it v2 * fix config deadlock * add select_coins RPC method (#10495) * add select_coins RPC method * typing fix * fix typing, casts * add RPC coin selection tests * black formatting * fix select_coins tests * improve error messages from chia db upgrade, specifically to help users if the disk is full (#10494) * more set -o errexit (#10468) * more set -o errexit -o pipefail * no pipefail, too fancy for dash at least... * Bump clvm_tools_rs to fix a problem running as daemon caused by old log message that is now eliminated (#10788) * when running multiple services in the same process (in tests), don't initialize logging for all of them, and don't set the proctitle of the test (#10686) * stop helping mkdir() do what it already does (#10802) * stop helping mkdir() do what it already does * flake8 * Capitalize display of Rpc -> RPC in `chia show -s` (#10797) * Remove accidental parameters from calls to setup_simulators_and_wallets and prevent future mistakes (#10770) * stop using deadsnakes, unless we need it (#10752) * stop using deadsnakes. and see... * only install dead snakes stuff if building the timelord on linux * small change to fix branch in contributing (#10805) * small change to fix branch in contributing * Update CONTRIBUTING.md * Rename confusing fixtures, especially ones with the same name but dif… (#10772) * Rename confusing fixtures, especially ones with the same name but different implementation * rename test_environment to test_plot_environment * Make it so setup_two_nodes is no longer the name of a fixture and a utility function * revert premature fixture rename: two_wallet_nodes_start_height_1 * atomic rollback for wallet (#10799) * atomic rollback for wallet * Handle cases where one node doesn't have the coin we are looking for (#10829) * Continue if one node doesn't have the coin * Pass in coin_state list * Pass in the single coinstate instead of list * more simplifications * run tests in parallel in CI (#10499) * Fix timelord installation for Debian. (#10841) * add optional persistence to SpendSim (#10780) * add optional persistence to SpendSim * Accidental rename * remove duplicate event_loop (#10768) * Adding check for python3.9 alongside python3.10 on Arch (#10363) * Adding check for python3.9 alongside python3.10 on Arch * Adjusting install.sh instructions for Arch * Disabling prescribed python install for Arch * Setting Arch install script to exit 0 to pass tests * Adding workflow step for functional Arch install testing * Adding noconfirm to pacman install command * Relocating Arch support message for install.sh * use DEFAULT_ROOT_PATH in tests (#10801) * Disable the pytest-monitor plugin in CI if not checking results (#10837) * disable the pytest-monitor plugin if not reporting results pytest-monitor uses multiprocessing and has caused multiple confusing issues. Perhaps it can be adjusted to not use multiprocessing, but for now lets just isolate the oddities to where we actually use it. * use a template for resource usage check, similar to timelord install * hint testconfig.custom_vars * Check for requesting items when creating an offer (#10864) * updated gui to 054d7b342e7c8284c9b58a775f87d393a1008bfe * Added `-n`/`--new-address` option to `chia wallet get_address` (#10861) * Added `-n`/`--new-address` option to `chia wallet get_address` * Formatting fix * Complemented --new-address with --latest-address per feedback * Minor output formatting/enhancements for `chia wallet show` (#10863) * Minor output formatting/enhancements for `chia wallet show` * Updated format based on internal poll results * Linter fix and row rearrangement. * Hardcoded SSL test certs/keys (#10828) * Hardcoded SSL test certs/keys * Added a second set of certs/keys. Cert/key sets are infinitely cycled-through using get_next_private_ca_cert_and_key() and get_next_nodes_certs_and_keys() * More cert/key sets and a tool to generate them * Updated SSL generator to sign with the appropriate root CA. Fixed linter issues. * Linter fixes * Updated generate_ssl_for_nodes() based on feedback * reduce indentation in a few functions in blockchain.py by negating early-exit checks and loop continues (#10872) * fix typo and index issues in wallet database (#10273) * fix typo in wallet_puzzle_store * check some SQL statements * deduplicate name SQL index * deduplicate wallet_type index * deduplicate wallet_id index * Update appdmg to 0.6.4 to work with macos 12.3 (#10886) * fixup and enable condition checking tests (#10888) * fixup and enable tests for the edge cases of absolute timestamp and absolute height conditions in mempool_manager * Update chia/full_node/full_node_api.py Co-authored-by: Adam Kelly <338792+aqk@users.noreply.github.com> Co-authored-by: Adam Kelly <338792+aqk@users.noreply.github.com> * Bump colorlog from 5.0.1 to 6.6.0 (#9207) Bumps [colorlog](https://github.com/borntyping/python-colorlog) from 5.0.1 to 6.6.0. - [Release notes](https://github.com/borntyping/python-colorlog/releases) - [Commits](https://github.com/borntyping/python-colorlog/compare/v5.0.1...v6.6.0) --- updated-dependencies: - dependency-name: colorlog dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/checkout from 2 to 3 (#10505) * Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update actions in templates too Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gene Hoffman <hoffmang@hoffmang.com> * Bump github/super-linter from 4.8.1 to 4.9.1 (#10894) * Bump github/super-linter from 4.8.1 to 4.9.1 Bumps [github/super-linter](https://github.com/github/super-linter) from 4.8.1 to 4.9.1. - [Release notes](https://github.com/github/super-linter/releases) - [Changelog](https://github.com/github/super-linter/blob/main/docs/release-process.md) - [Commits](https://github.com/github/super-linter/compare/v4.8.1...v4.9.1) --- updated-dependencies: - dependency-name: github/super-linter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Ignore too-many-function-args in test_type_checking.py * black Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gene Hoffman <hoffmang@hoffmang.com> * fix type annotations for get_block_generator() (#10907) * fix type annotations for FullBlock.header_hash and FullBlock.prev_header_hash (#10909) * new DBWrapper supporting concurrent readers (#10166) * new DBWrapper supporting concurrent readers * adress review comments * fixup default database version, when file doesn't exist * remove unused argument * use rust clvm in Program.run() (#10878) * remove Program.from_serialized_program * run the rust clvm implementation (instead of python) even for wallet programs * Fix flaky trade test (#10921) * single thread executor (#10919) * add inline executor and an option to run single-threaded * add option to run test_full_sync in single-thread mode, to include block validation in profiles. Also attempt to speed it up by disabling db_sync * await the db commit in the async version of set_db_version (#10906) * bump pre-commit mypy to v0.942 (#10902) * bump clvm_tools dependency to make every chia-blockchain installation get the new brun that reports cost accurately (#10880) * wallet: Drop unused `WalletStateManager.load_wallets` (#10756) * Switch to integrated lock_and_load_config() context manager (#10698) * minor lock scope reduction * use the lock in tests * Use the passed root_path in configure CLI command * switch to lock_and_load_config() * oops * cleanup * make _load_config_maybe_locked() private * black * Remove future improvement opportunity TODO comment * move pytest.ini to the root directory (#10892) * move pytest.ini to the root directory * pytest.ini: testpaths = tests https://docs.pytest.org/en/7.1.x/reference/reference.html?highlight=testpaths#confval-testpaths * set CHIA_ROOT in tests instead of symlinking (#10682) * attempt to checkout test-cache directly to desired location * rebuild workflows * maybe we can use CHIA_ROOT * use CHIA_ROOT to find blocks and plots for tests * oops * more informational printing * oops * --capture no for debugging * flake8 * import os * undo some unrelated changes now covered elsewhere * undo some debug changes * rebuild workflows * Remove sys.exit() from chia daemon /exit endpoint (#10454) * asyncio.get_event_loop() is deprecated in 3.10, stop using it (mostly) (#10418) * asyncio.get_event_loop() is deprecated in 3.10, stop using it https://docs.python.org/3.10/library/asyncio-eventloop.html#asyncio.get_event_loop > Deprecated since version 3.10: Deprecation warning is emitted if there is no running event loop. In future Python releases, this function will be an alias of get_running_loop(). * black * run tests in CI via coverage (#9704) * Add coverage (without collection) * Separate test_block_compression() to avoid coverage-related hangs * Revert "Separate test_block_compression() to avoid coverage-related hangs" This reverts commit ebad3d001778b2344f0d2a651be0206d7f6dc847. * multiprocessing.set_start_method("spawn") * multiprocessing.set_start_method() in conftest.py * hand hold cc wallet tests * lint * spawn for running chia as well * handle already set start method case * a bit more timeout for test_multiple_writers * more timeout for test_writer_lock_blocked_by_readers * 45 minute tieout for tests/pools/ * 45 minute tieout for tests/pools/ * some more hand holding sleeps * report coverage in each workflow only really useful to make sure it is capturing something * oops * complete the job name and the JOB_NAME * better coverage result file names * reset worker process titles * rebuild workflows * rebuild workflows * black * black * rebuild workflows * push timeouts * actually include the updated workflows... * push more workflow timeouts * parallel=True * rebuild workflows * restrict click to < 8.1 for black (#10923) https://github.com/pallets/click/issues/2225 Doing this instead of updating since updating black will change several files due to some formatting change. I would like to take that on separately from unbreaking CI. * fixup workflow template merge env duplication (#10925) * ignore lack of hinting on clvm_tools.binutils.assemble() (#10926) * Contextualize some store test db names. (#10942) * Type check values in RL Wallet (#10935) * Use uint128 for wallet balances (#10936) * Add more type checks to CAT Wallet (#10934) * Bump actions/github-script from 4 to 6 (#10246) * Bump actions/github-script from 4 to 6 Bumps [actions/github-script](https://github.com/actions/github-script) from 4 to 6. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update to github.rest.* for calls to API for compat w/ github-script@v5+ Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chris Marslender <chrismarslender@gmail.com> * Bump actions/setup-node from 2.4.1 to 3 (#10506) Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2.4.1 to 3. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2.4.1...v3) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump actions/cache from 2.1.6 to 3 (#10846) * Bump actions/cache from 2.1.6 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.6...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update actions in templates also Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gene Hoffman <hoffmang@hoffmang.com> * Fix trailing bytes shown in CAT asset ID row when using `chia wallet show` (#10924) * Truncate CAT asset_id output to 32 bytes. A wallet RPC change is needed to properly separate out the asset ID from the TAIL program returned by `get_all_wallet_info_entries()` * Move the truncation to the assignment location * Consolidate test fixtures (#10778) * Rename confusing fixtures, especially ones with the same name but different implementation * revert premature fixture rename: two_wallet_nodes_start_height_1 * Consolidate test fixtures * Quick fix for improper v2 DB initialization when targeting testnet (#10952) * bump timing threashold for mempool performance test (#10953) * Ms.parallel pool t (#10966) * Try parallel pool tests * Also change workflow files * Run less combinations * Todo for bad test * Try lower n * run more tests in parallel on CI (#10960) * run more tests in parallel on CI * fix test_farmer_get_harvesters to wait for plots to be loaded before asking about them * improve error message when a block is missing from the blockchain database (#10958) * improve error message when a block is missing from the blockchain database * Update chia/full_node/block_height_map.py Co-authored-by: Kyle Altendorf <sda@fstab.net> Co-authored-by: Kyle Altendorf <sda@fstab.net> * Also throw DB error on double spending a coin (#10947) * Throw error on double spending a coin * Throw error on double spending a coin * Improve test * reorg fixes (#10943) * when going through a reorg, maintain all chain state until the very end, when the new fork has been fully validated and added * when rolling back the chain, also rollback the height-to-hash map * add tests * Fix the issues in main (failing tests) (#10977) * Fix one of the issues in test_blockchain * Only rollback after all async operations are finished * back to a single option for workflow parallel config (#10979) * limit test output on CI by dropping -s and -v. Also, only print the 10 slowest tests, instead of all (#10959) * Ms.flaky gen speed (#10965) * Flaky test sometimes goes slower than 1 second * Add sleep to reduce flakiness * Increase timeout instead of sleeping to hopefully reduce flakiness * fix test_full_sync.py to only feed the blocks in the main chain to the node (#10974) * Bump peter-evans/create-pull-request from 3 to 4 (#10950) Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 3 to 4. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v3...v4) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * normalized_to_identity_cc_ip from get_consecutive_blocks was being passed in as overflow_cc_challenge in get_full_block_and_block_record (#10941) * fix performance tests (#10983) * Check for vulnerable openssl (#10988) * Check for vulnerable openssl * Update OpenSSL on MacOS * First attempt - openssl Ubuntu 18.04 and 20.04 * place local/bin ahead in PATH * specify install openssl * correct path * run ldconfig * stop building and check for patched openssl * spell sudo right by removing it * Remove openssl building - 1st attempt RHs * Test Windows OpenSSL version HT @AmineKhaldi * Non Hobo patch the winstaller for CVE-2022-0778 (#10995) * apt show not needed (#10997) * install/upgrade openssl on Arch Linux also (#10999) * Compile python 3.9.11 which is aware of the openssl issue (#11001) * install.sh is not upgrading OpenSSL on MacOS (#11003) * MacOS isn't updating OpenSSL in install.sh * Exit if no brew on MacOS * Code the if tree like a pro instead. Co-authored-by: Kyle Altendorf <sda@fstab.net> Co-authored-by: Kyle Altendorf <sda@fstab.net> * force index in get_coin_records_by_names (#10987) * force index in get_coin_records_by_names * fix lint * Fix remaining linting issues (#10962) * FIx remaining linting issues * Revert type:ignore * Revert token_bytes change * streamable|pools: Fix `Optional` parsing in `dataclass_from_dict` (#10573) * Test more `Optional` parsing in `dataclass_from_dict` * Fix optional parsing in `dataclass_from_dict` * Fix pool wallet / tests * run_generator2 rust call and compact conditions data structure (#8862) * use run_generator2 rust call and compact spend bundle conditions data structure pervasively. * address review comments * Faster full node tests (#10986) * Start fast full node tests * Perf improvement on send_transaction * Major performance improvement for mempool test * Speed up another test * Speed up mempool tests startup * Lint * Debug tests * Try function scope for wallet_nodes * Update comment * Force apt to install the things we asked it to (#11047) * Force apt to install the things we asked it to * Update .github/workflows/benchmarks.yml Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> * github: Drop unused `BUILD_VDF_CLIENT` variables (#11050) From my understanding this is only used by `chiavdf` source builds which happen only if `install-timelord.sh` gets called but it doesn't in the addressed cases. * bump up to 2.1.7 to fix inotify issue resolved by 848 (#11042) * fix memory leak in test_full_sync (#11004) * full_node: Drop unused `MempoolManager.constants_json` (#11046) * simplify some header hash getting and assertions (#11007) * Remove websockets dependency & do some refactoring (#10611) * remove old ws * Prepare test blocks and plots only for tests that need them. This saves us a couple more hours of CI running time. (#10975) * Adding clean-workspace step to benchmarks (#11063) * Checkout test blocks and plots for benchmarks workflow (#11068) * Improve handling of unknown pending balances (likely change from addi… (#10984) * Improve handling of unknown pending balances (likely change from adding a maker fee). Minor improvement for fingerprint selection -- enter/return selects the logged-in fingerprint. * Minor output formatting improvements when showing offer summaries. Minor wallet key selection improvements. Added tests for print_offer_summary * Linter fixes * isort fix * Coroutine -> Awaitable * Removed problematic fee calculation from get_pending_amounts per feedback. * print average block rate at different block height windows (#11064) * add -d for Install.ps1 (#11062) * Set keychain_proxy to None in await_closed() to support reinitialization (#11075) * Set keychain_proxy to None in await_closed() to support reinitialization. * Added `shutting_down` param to _await_closed() to control whether the keychain_proxy is closed. * Significantly speedup preparing test blocks and plots by opting for a release download instead of a shallow git clone, and also by putting a caching layer on top of that. (#11065) * Bump github/super-linter from 4.9.1 to 4.9.2 (#11067) Bumps [github/super-linter](https://github.com/github/super-linter) from 4.9.1 to 4.9.2. - [Release notes](https://github.com/github/super-linter/releases) - [Changelog](https://github.com/github/super-linter/blob/main/docs/release-process.md) - [Commits](https://github.com/github/super-linter/compare/v4.9.1...v4.9.2) --- updated-dependencies: - dependency-name: github/super-linter dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Remove dead snakes usage from benchmark tests (#11053) * Handle INSTALL_PYTHON_VERSION in Install.ps1, otherwise search 3.9/3.8/3.7 (#11034) * Handle INSTALL_PYTHON_VERSION in Install.ps1, otherwise search 3.9/3.8/3.7 * fix python availability check in Install.ps1 * when Install.ps1 does not find an acceptable python, list supported versions in order * Update Install.ps1 Co-authored-by: Matt Hauff <quexington@gmail.com> Co-authored-by: Matt Hauff <quexington@gmail.com> * wallet: Drop `puzzles/genesis_checkers.py` and related puzzles (#10790) Its all duplicated code and puzzles as far as i can tell, see `chia/wallet/puzzles/tails.py`. * Bump cryptography from 3.4.7 to 36.0.2 (#10787) Bumps [cryptography](https://github.com/pyca/cryptography) from 3.4.7 to 36.0.2. - [Release notes](https://github.com/pyca/cryptography/releases) - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pyca/cryptography/compare/3.4.7...36.0.2) --- updated-dependencies: - dependency-name: cryptography dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * wallet: Improve logging in `create_more_puzzle_hashes` (#10761) * wallet: Improve logging in `create_more_puzzle_hashes` It's pretty spammy currently when scanning puzzle hashes. * scan -> create, Scanning -> Creating * `scanning_msg` -> `creating_msg` * Add /cat_get_unacknowledged API for accessing unknown CATs (#10382) * Add /cat_get_unacknowledged API for accessing unknown CATs * Reformat & fix cast issue * Integration tested & add unit test * Handle optional uint32 * Reformat * Reformat * Reformat * Merge PR 10308 * Reformat * Fix concurrent issue * Add state change notification * rename API * Fix failing tests * Updated state_change name Co-authored-by: Jeff Cruikshank <jeff@chia.net> * Increases the probability of connecting to local trusted node (#10633) * extend tests in test_blockchain to include more conditions, as well as ensuring consensus rules allow unknown condition parameters (#11079) * chia|tests|github: Implement, integrate and test plot sync protocol (#9695) * protocols|server: Define new harvester plot refreshing protocol messages * protocols: Bump `protocol_version` to `0.0.34` * tests: Introduce `setup_farmer_multi_harvester` Allows to run a test setup with 1 farmer and mutiple harvesters. * plotting: Add an initial plot loading indication to `PlotManager` * plotting|tests: Don't add removed duplicates to `total_result.removed` `PlotRefreshResult.removed` should only contain plots that were loaded properly before they were removed. It shouldn't contain e.g. removed duplicates or invalid plots since those are synced in an extra sync step and not as diff but as whole list every time. * harvester: Reset `PlotManager` on shutdown * plot_sync: Implement plot sync protocol * farmer|harvester: Integrate and enable plot sync * tests: Implement tests for the plot sync protocol * farmer|tests: Drop obsolete harvester caching code * setup: Add `chia.plot_sync` to packages * plot_sync: Type hints in `DeltaType` * plot_sync: Drop parameters in `super()` calls * plot_sync: Introduce `send_response` helper in `Receiver._process` * plot_sync: Add some parentheses Co-authored-by: Kyle Altendorf <sda@fstab.net> * plot_sync: Additional hint for a `Receiver.process_path_list` parameter * plot_sync: Force named parameters in `Receiver.process_path_list` * test: Fix fixtures after rebase * tests: Fix sorting after rebase * tests: Return type hint for `plot_sync_setup` * tests: Rename `WSChiaConnection` and move it in the outer scope * tests|plot_sync: More type hints * tests: Rework some delta tests * tests: Drop a `range` and iterate over the list directly * tests: Use the proper flags to overwrite * test: More missing duplicates tests * tests: Drop `ExpectedResult.reset` * tests: Reduce some asserts * tests: Add messages to some `assert False` statements * tests: Introduce `ErrorSimulation` enum in `test_sync_simulated.py` * tests: Use `secrects` instead of `Crypto.Random` * Fixes after rebase * Import from `typing_extensions` to support python 3.7 * Drop task name to support python 3.7 * Introduce `Sender.syncing`, `Sender.connected` and a log about the task * Add `tests/plot_sync/config.py` * Align the multi harvester fixture with what we do in other places * Update the workflows Co-authored-by: Kyle Altendorf <sda@fstab.net> * Add wallentx as additional assignee on mozilla CA update PRs (#11089) * rebuild workflows (#11092) * transition to using chia_rs module (#11094) * Fix the case of claiming a large number of coins (#11038) * Fix the case of claiming a large number of coins with a fee from a pool wallet * Revert change to unrelated test * Set PoolWallet.DEFAULT_MAX_CLAIM_SPENDS to 300 * A few review improvements * Ms.fast test blockchain (#11051) * more work on test blockchain * Optimize test_blockchain.py * Fix weight proof bug * Rename variable * first rc_sub_slot hash bug * New plots * try with a new ID * Run without cache * Address test blocks and plots preparation. * Update constant in test_compact_protocol(). * Update this constant too. * Revert accidental altering of the gui submodule in ae7e3295f280a591e76c4dffdea75fb74ea5de6f. * Fix benchmark test * Revert mozilla-ca change * Rebase on main Co-authored-by: almog <almogdepaz@gmail.com> Co-authored-by: Amine Khaldi <amine.khaldi@reactos.org> * can we get by without dead snakes? (#11070) * can we get by without dead snakes? * Update install-timelord.sh * Revert "Update install-timelord.sh" This reverts commit cba3250b095efbac5459c430102a7914243bfa96. * do not install python dev package for timelords build in ci it is already there... * more quotes for sh * Changelog from 1.3.3 (#11081) * Updating changelog * Update appdmg to 0.6.4 to work with macos 12.3 (#10886) * restrict click to < 8.1 for black https://github.com/pallets/click/issues/2225 Doing this instead of updating since updating black will change several files due to some formatting change. I would like to take that on separately from unbreaking CI. * Check for vulnerable openssl (#10988) * Check for vulnerable openssl * Update OpenSSL on MacOS * First attempt - openssl Ubuntu 18.04 and 20.04 * place local/bin ahead in PATH * specify install openssl * correct path * run ldconfig * stop building and check for patched openssl * spell sudo right by removing it * Remove openssl building - 1st attempt RHs * Test Windows OpenSSL version HT @AmineKhaldi * Get updated openssl version (#10991) * Get updated openssl version * Update pyinstaller * Fix typo * lets try this * Let's try this * Try this Co-authored-by: Earle Lowe <e.lowe@chia.net> * Gh 1.3.3v2 (#11011) * Non Hobo patch the winstaller for CVE-2022-0778 (#10995) * install.sh is not upgrading OpenSSL on MacOS (#11003) * MacOS isn't updating OpenSSL in install.sh * Exit if no brew on MacOS * Code the if tree like a pro instead. Co-authored-by: Kyle Altendorf <sda@fstab.net> Co-authored-by: Kyle Altendorf <sda@fstab.net> * Remove hobo patch * apt show not needed (#10997) * install/upgrade openssl on Arch Linux also * Update CHANGELOG * revert Arch change backport Co-authored-by: Kyle Altendorf <sda@fstab.net> Co-authored-by: wallentx <william.allentx@gmail.com> Co-authored-by: Chris Marslender <chrismarslender@gmail.com> Co-authored-by: Gene Hoffman <30377676+hoffmang9@users.noreply.github.com> Co-authored-by: William Allen <wallentx@users.noreply.github.com> Co-authored-by: Earle Lowe <e.lowe@chia.net> * consistently name installer github actions artifact zips (#11096) * git -C and consistent activation in installer builds (#11098) * updated gui to d714c21b4ee3ebbc7d18b5f819772cd9868d0bf5 * only check the version once in installer build workflows (#11099) * updated gui to 5f8b23fc7deb0b07f665c075ed491059f4d8b95c * updated gui to fccbd3e10d27673e39c01f0f89e47b5455b8331a * streamable: Simplify and force correct usage (#10509) * streamable: Merge `strictdataclass` into `Streamable` class * tests: Test not supported streamable types * streamable: Reorder decorators * streamable: Simplify streamable decorator and force correct usage/syntax * streamable: Just move some stuff around in the file * streamable: Improve syntax error messages * mypy: Drop `type_checking.py` and `test_type_checking.py` from exclusion * streamable: Use cached fields instead of `__annotations__` This is now possible after merging `__post_init__` into `Streamable` * Introduce `DefinitionError` as `StreamableError` * `/t` -> ` ` * Expose farm_block RPC for simulator (#10830) * expose farm block api to RPC for simulator * lint * pre-commit lint * Ms.plot load perf2 (#10978) * 2.7 seconds -> 0.45 seconds * Merge * Work on create_plots refactor * Try to fix tests * Try to fix tests * Use new functions * Fix block_tools by adding dir * Extra argument * Try to fix cyclic import * isort * Drop warning * Some cleanups around `exclude_final_dir` and directory adding * Cleanup `min_mainnet_k_size` checks * Drop unrelated changes * Fixes after rebase * Fix cyclic import * Update tests/block_tools.py Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> * Update tests/block_tools.py Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> Co-authored-by: xdustinface <xdustinfacex@gmail.com> Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> * rebase and more fixes (#10885) * derivation from just a master public key (#11140) * Add dependencies macos rhel chiavdf (#11142) * Added steps, when building the chiavdf wheel for macos and rhel-based systems, to install cmake and/or gmp. * updated gui to d5b75bcf7a0fe1ef76775e7f1d5e12d169069676 * Revert "derivation from just a master public key (#11140)" (#11143) This reverts commit db536c615a0c7226ea8319fb98ec545eded23670. * Mark the github workspace as safe (#11159) * Mark the github workspace as safe * Move the git config step after git is installed in the test containers * updated gui to 81303fb962f4a627a2e1c55098e187a9057745da * optimize wallet tool by not caching the puzzle_hash -> derivation index, but caching puzzle_hash -> secret key (which is the lookup we're actually interested in). This avoids duplicating the actual derivation (#11154) * make listen port colissions in CI less likely (#11164) * Use get latest release endpoint for plotters, so that we ignore any pre-releases that could be returned by listReleases (#11165) * Build cli only version of debs (#11166) * Build cli only version of debs * Export the vars needed by j2 * Fix paths * Add symlink to chia in /usr/local/bin/ * Upload the cli only debs to s3 * Add init.py * Ensure SHA is on the dev build for amd64 * add tool to generate a blockchain with full blocks, as a benchmark (#11146) * Simplify how the chia symlink is created in the CLI .deb (#11188) * fix block_tools feature when specifying a list of block references. Also add feature keep_going_until_tx_block. (#11185) * Fix filename of latest intel dev installer (#11203) * Add start_crawler and start_seeder to pyinstaller config (#11205) * Pin mac intel installer to 10.15 (#11209) * Revert "Pin mac intel installer to 10.15 (#11209)" (#11210) This reverts commit 93a61eece1ab537f40cf3daf76be69dfce405762. * Adding changelog (#11223) * Adding changelog (#11223) Co-authored-by: Arvid Norberg <arvid@libtorrent.org> Co-authored-by: Kyle Altendorf <sda@fstab.net> Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> Co-authored-by: ChiaMineJP <admin@chiamine.jp> Co-authored-by: Mariano Sorgente <3069354+mariano54@users.noreply.github.com> Co-authored-by: David Barratt <davidbarratt@users.noreply.github.com> Co-authored-by: Chris Marslender <chrismarslender@gmail.com> Co-authored-by: Matt Hauff <quexington@gmail.com> Co-authored-by: William Blanke <wjb98672@gmail.com> Co-authored-by: Juraj Oršulić <juraj.orsulic@fer.hr> Co-authored-by: Yostra <straya@chia.net> Co-authored-by: Florin Chirica <fchirica96@gmail.com> Co-authored-by: Richard Kiss <him@richardkiss.com> Co-authored-by: William Allen <wallentx@users.noreply.github.com> Co-authored-by: Adam Kelly <338792+aqk@users.noreply.github.com> Co-authored-by: Johannes Tysiak <vinyl@users.sf.net> Co-authored-by: Don Kackman <dkackman@gmail.com> Co-authored-by: austinsirkin <a.sirkin@chia.net> Co-authored-by: Earle Lowe <30607889+emlowe@users.noreply.github.com> Co-authored-by: Brandon Butler <b.butler@chia.net> Co-authored-by: Dave <72020697+daverof@users.noreply.github.com> Co-authored-by: Freddie Coleman <f.coleman@hotmail.co.uk> Co-authored-by: Amine Khaldi <amine.khaldi@reactos.org> Co-authored-by: arty <art.yerkes@gmail.com> Co-authored-by: Francesco Truzzi <ftruzzi@users.noreply.github.com> Co-authored-by: hugepants <hugepants@users.noreply.github.com> Co-authored-by: Jack Nelson <jack@jacknelson.xyz> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gene Hoffman <hoffmang@hoffmang.com> Co-authored-by: Gene Hoffman <30377676+hoffmang9@users.noreply.github.com> Co-authored-by: roseiliend <90035993+roseiliend@users.noreply.github.com> Co-authored-by: Kronus91 <ytx1991@gmail.com> Co-authored-by: almog <almogdepaz@gmail.com> Co-authored-by: wallentx <william.allentx@gmail.com> Co-authored-by: Earle Lowe <e.lowe@chia.net> Co-authored-by: xdustinface <xdustinfacex@gmail.com> Co-authored-by: Patrick Maslana <79757486+pmaslana@users.noreply.github.com> * WIP commit for the new NFT spec * Update to optimized singleton * flesh out ownership layer * nft_transfer_nft: (#11181) * Introduce some error handling. * The new_did_inner_hash and trade_price params should be optional for now. * Add get_confirmed_balance(), get_unconfirmed_balance(), get_spendable_balance(), get_pending_change_balance() and get_max_send_amount() to NFTWallet. This fixes chia wallet show when NFTs are involved. (#11256) * Needed for DID CLI: (#11268) * RPC: Add /did_set_wallet_name and /did_get_wallet_name. * DIDWallet: Add set_name() and get_name(). * Generalize the Offer class to more than CATs * Remove CAT dependencies from trade_manager * Fix offer RPC * isort * Further generalize the Offer drivers * Update trade manager with new generalizations * Fix offer RPC again * Move outer_puzzles.py * pivot from string to clvm for dict entries * add test coverage for driver dict in RPC * Remove some CAT specific stuff from tm * Add comments explaining the changes * Minor fixes * isort and flake8 * More linting * Include drivers in offer summary * Better autodetection of drivers on offer creation * Forgot to update rpc test * checkpoint * fix test and optimise state_layer puz * rebuild workflows * Pass Recovery Info in the Transfer case (#11249) * Chialisp draft * Modify python code * Reformat & Fix tests * Chialisp draft * Modify python code * Bug fix & flake8 fix for NFT tests * Handle recovery * Chialisp draft * Modify python code * Reformat & Fix tests * Chialisp draft * Modify python code * Bug fix & flake8 fix for NFT tests * add clvm files to recomp list * fix rpc test * flake8 fixes for tests * flake 8 stupid fix * Bug fix & flake8 fix for NFT tests * Modify python code * Chialisp draft * Modify python code * Bug fix & flake8 fix for NFT tests * Generalize the message puzzle * Add Pubkey as hint * Receive DID * Add DID APIs & Tests * Fix tests * Test fixes. in_transaction is now passed as a param to the various callers that eventually call save_info. * Workflow Fix * Add test config for DID/NFT * Update workflow test yaml * Fix install test script * Fix typo * Resolve comments * Fix tests * Change did_innerpuz and fix wallets for new design (#11196) * correcting the design of did_innerpuz and related wallet changes * remove breakpoint comments * change decimal point accuracy of percentage system * secure new_amount by fixing it to our current amount * rename and update comments for new_amount - now my_amount * rename P2_PUZZLE to simply INNER_PUZZLE * fix variable re-declaration for flake/merge * black and flake8 - inclduing wallet_state_manager bug fix * update RPCs related to add_url added commented out tests too, but DID needs fixing first * Fix bugs in transfer case * Fix pre-commit * Fix install.sh test for bookworm * Pass recovery info in the transfer case * add clvm files to recomp list * flake8 fixes for tests * flake 8 stupid fix * Modify python code * Bug fix & flake8 fix for NFT tests * Pass recovery info in the transfer case * Fix tests * Fix security issue of the recovery empty list * Revert test code * Allow assign fee when creating the wallet * reformat * Add option for pass recovery list * DID wallet name generation & deduplication * Fix test * Remove file reading code * Fix tests Co-authored-by: matt <matt@chia.net> Co-authored-by: Jeff Cruikshank <jeff@chia.net> Co-authored-by: matt-o-how <48453825+matt-o-how@users.noreply.github.com> Co-authored-by: ytx1991 <t.yu@chia.net> * Bumping GUI to 447ac34942facbd1db64755144363268539ecf25 * metadata checkpoint * fix state layer for metadata updater * add test for metadata updating * removed second param for create_ann condition * forgot to compile clvm * compiled updated clvm sha256 * * Add fees support to DID wallet creation RPC client. (#11363) * Initial iteration of the chia wallet did create command. (#11237) * Add nft_get_nft_info API (#11351) * Add nft_get_nft_info API * Refine NFT uncurry code * Resolve comments * Resolve comments Co-authored-by: ytx1991 <t.yu@chia.net> * almost generates a new nft * generating nfts * rpc fix * DID set wallet name RPC API: Ensure that the wallet type is a DID wallet before proceeding. (#11391) * Initial iteration of the chia wallet did set_name command. (#11334) * make NFTWallet a dataclass (#11139) * make NFTWallet a dataclass * isort * flake8 * mypy * Optional * Implement nft transfer program * Resolve comment * transfer wip * checkpoint * basic rpc api working * Fix data hash issue * pre commit hooks passing, tests pass * removed old NFT tests * workflow files? * Attempt to fix workflows. * Workflows? * Prepare test blocks and plots for NFT wallet tests. * Reflect the previous commit into workflows. * clvm compilation fix * future proof create_coin in nft state layer * Add RPC client support for the create_new_wallet API. (#11430) * nft_get_nfts returns a nicer response * get nfts rpc should now conform to old format * checkpoint * Fix tests * Remove impossible case * metadata updater working with latest puzzles * removed unused method * mypy fix * Bumping GUI to df86eca99aee33a484570f06588e9fdd6506c661 * added state change events in nft wallet (#11469) * added state change events in nft wallet * Attempt to fix workflows. Co-authored-by: Amine Khaldi <amine.khaldi@reactos.org> * Bumping GUI to b4d3eebfe33345728a2314031ffad160865019da * fix for clvm compilation fail * made nft state layer more future proof * Add `chia.wallet.nft_wallet` to packages in setup.py * Initial iteration of the NFT0 chia wallet nft create command. (#11476) * Add wallet RPC client support for the NFT0 nft_mint_nft API. (#11477) * Automatically create NFT wallet (#11482) * Create NFT Wallet if there is not a NFT wallet * Fix pre-commit * Remove unnecessary log * fix to merge into main_dids * Initial iteration of the NFT0 chia nft mint command. * Initial iteration of the NFT0 chia wallet nft add_uri command. * Initial iteration of the NFT0 chia wallet nft transfer command. * Initial iteration of the NFT0 chia wallet nft list command. * NFT0: Make the wallet ID required for adding a URI. * Bumping GUI to 725d77abbae77463fea725396e169f4148b810b6 * NFT0: Make the wallet ID required for transferring an NFT. * Add fee option for NFT & limit NFT wallet creation (#11492) * Add fee option for NFT & limit NFT wallet creation * Fix pre-commit * Add fee for update metadata * Add the ability to set fees for minting NFTs, transferring NFTs and adding URIs to NFTs. * Fix handling fees on the RPC API side. * fix for missing minted coins * updating metadata with multiple uris fix * Consolidate test_did_rpc.py into test_wallet_rpc.py and make the tests use the wallet RPC client. (#4) * Update workflows and minor formatting. * faster tests, other fixes * potentially fixes the did test failure Co-authored-by: matt <matt@chia.net> Co-authored-by: Yostra <straya@chia.net> Co-authored-by: matt-o-how <48453825+matt-o-how@users.noreply.github.com> Co-authored-by: Jeff <jeff@chia.net> Co-authored-by: Kronus91 <ytx1991@gmail.com> Co-authored-by: ytx1991 <t.yu@chia.net> Co-authored-by: Arvid Norberg <arvid@libtorrent.org> Co-authored-by: Kyle Altendorf <sda@fstab.net> Co-authored-by: dustinface <35775977+xdustinface@users.noreply.github.com> Co-authored-by: ChiaMineJP <admin@chiamine.jp> Co-authored-by: Mariano Sorgente <3069354+mariano54@users.noreply.github.com> Co-authored-by: David Barratt <davidbarratt@users.noreply.github.com> Co-authored-by: Chris Marslender <chrismarslender@gmail.com> Co-authored-by: Matt Hauff <quexington@gmail.com> Co-authored-by: William Blanke <wjb98672@gmail.com> Co-authored-by: Juraj Oršulić <juraj.orsulic@fer.hr> Co-authored-by: Florin Chirica <fchirica96@gmail.com> Co-authored-by: Richard Kiss <him@richardkiss.com> Co-authored-by: William Allen <wallentx@users.noreply.github.com> Co-authored-by: Adam Kelly <338792+aqk@users.noreply.github.com> Co-authored-by: Johannes Tysiak <vinyl@users.sf.net> Co-authored-by: Don Kackman <dkackman@gmail.com> Co-authored-by: austinsirkin <a.sirkin@chia.net> Co-authored-by: Earle Lowe <30607889+emlowe@users.noreply.github.com> Co-authored-by: Brandon Butler <b.butler@chia.net> Co-authored-by: Dave <72020697+daverof@users.noreply.github.com> Co-authored-by: Freddie Coleman <f.coleman@hotmail.co.uk> Co-authored-by: arty <art.yerkes@gmail.com> Co-authored-by: Francesco Truzzi <ftruzzi@users.noreply.github.com> Co-authored-by: hugepants <hugepants@users.noreply.github.com> Co-authored-by: Jack Nelson <jack@jacknelson.xyz> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gene Hoffman <hoffmang@hoffmang.com> Co-authored-by: Gene Hoffman <30377676+hoffmang9@users.noreply.github.com> Co-authored-by: roseiliend <90035993+roseiliend@users.noreply.github.com> Co-authored-by: almog <almogdepaz@gmail.com> Co-authored-by: wallentx <william.allentx@gmail.com> Co-authored-by: Earle Lowe <e.lowe@chia.net> Co-authored-by: xdustinface <xdustinfacex@gmail.com> Co-authored-by: Patrick Maslana <79757486+pmaslana@users.noreply.github.com> Co-authored-by: Sebastjan <trepca@gmail.com> Co-authored-by: Andreas Greimel <andreas@mintgarden.io>
2022-05-27 21:47:08 +03:00
"chia.wallet.nft_wallet",
2021-03-22 22:36:05 +03:00
"chia.wallet.trading",
"chia.wallet.util",
"chia.ssl",
"mozilla-ca",
2020-03-28 03:09:19 +03:00
],
2020-03-27 22:17:34 +03:00
entry_points={
"console_scripts": [
2021-03-22 22:36:05 +03:00
"chia = chia.cmds.chia:main",
"chia_daemon = chia.daemon.server:main",
2021-03-22 22:36:05 +03:00
"chia_wallet = chia.server.start_wallet:main",
"chia_full_node = chia.server.start_full_node:main",
"chia_harvester = chia.server.start_harvester:main",
"chia_farmer = chia.server.start_farmer:main",
"chia_introducer = chia.server.start_introducer:main",
"chia_crawler = chia.seeder.start_crawler:main",
"chia_seeder = chia.seeder.dns_server:main",
2021-03-22 22:36:05 +03:00
"chia_timelord = chia.server.start_timelord:main",
"chia_timelord_launcher = chia.timelord.timelord_launcher:main",
"chia_full_node_simulator = chia.simulator.start_simulator:main",
2021-09-29 02:37:50 +03:00
"chia_data_layer = chia.server.start_data_layer:main",
"chia_data_layer_http = chia.data_layer.data_layer_server:main",
"chia_data_layer_s3_plugin = chia.data_layer.s3_plugin_service:run_server",
2020-03-27 22:17:34 +03:00
]
},
package_data={
2021-03-22 22:36:05 +03:00
"chia": ["pyinstaller.spec"],
"": ["*.clsp", "*.clsp.hex", "*.clvm", "*.clib", "py.typed"],
2021-03-22 22:36:05 +03:00
"chia.util": ["initial-*.yaml", "english.txt"],
"chia.ssl": ["chia_ca.crt", "chia_ca.key", "dst_root_ca.pem"],
"mozilla-ca": ["cacert.pem"],
},
2019-11-13 10:25:42 +03:00
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
project_urls={
"Source": "https://github.com/Chia-Network/chia-blockchain/",
"Changelog": "https://github.com/Chia-Network/chia-blockchain/blob/main/CHANGELOG.md",
},
)
if "setup_file" in sys.modules:
# include dev deps in regular deps when run in snyk
dependencies.extend(dev_dependencies)
if len(os.environ.get("CHIA_SKIP_SETUP", "")) < 1:
setup(**kwargs) # type: ignore