Skip to main content

Chia proof of space plotting, proving, and verifying (wraps C++)

Project description

Chia Proof of Space

Build Wheels PyPI PyPI - Format GitHub Coverage Status

Chia's proof of space is written in C++. Includes a plotter, prover, and verifier. It exclusively runs on 64 bit architectures. Read the Proof of Space document to learn about what proof of space is and how it works.

C++ Usage Instructions

Compile

# Requires cmake 3.14+

mkdir -p build && cd build
cmake ../
cmake --build . -- -j 6

Static Compilation With glibc

Statically compile ProofOfSpace

mkdir -p build && cd build
cmake -DBUILD_PROOF_OF_SPACE_STATICALLY=ON ../
cmake --build . -- -j 6

Run tests

./RunTests

CLI usage

./ProofOfSpace -k 25 -f "plot.dat" -m "0x1234" create
./ProofOfSpace -k 25 -f "final-plot.dat" -m "0x4567" -t TMPDIR -2 SECOND_TMPDIR create
./ProofOfSpace -f "plot.dat" prove <32 byte hex challenge>
./ProofOfSpace -k 25 verify <hex proof> <32 byte hex challenge>
./ProofOfSpace -f "plot.dat" check <iterations>

Benchmark

time ./ProofOfSpace -k 25 create

Hellman Attacks usage

There is an experimental implementation which implements some of the Hellman Attacks that can provide significant space savings for the final file.

./HellmanAttacks -k 18 -f "plot.dat" -m "0x1234" create
./HellmanAttacks -f "plot.dat" check <iterations>

Python binding

Python bindings are provided in the python-bindings directory.

Install

python3 -m venv .venv
. .venv/bin/activate
pip3 install .

Run python tests

Testings uses pytest. Linting uses flake8 and mypy.

py.test ./tests -s -v

Rust binding

Finally, Rust bindings are provided, but only validation of proofs of space is supported, and it cannot be used to make plots or create proofs for plots.

ci Building

The primary build process for this repository is to use GitHub Actions to build binary wheels for MacOS, Linux (x64 and aarch64), and Windows and publish them with a source wheel on PyPi. See .github/workflows/build.yml. CMake uses FetchContent to download pybind11. Building is then managed by cibuildwheel. Further installation is then available via pip install chiapos e.g.

Contributing and workflow

Contributions are welcome and more details are available in chia-blockchain's CONTRIBUTING.md.

The main branch is usually the currently released latest version on PyPI. Note that at times chiapos will be ahead of the release version that chia-blockchain requires in it's main/release version in preparation for a new chia-blockchain release. Please branch or fork main and then create a pull request to the main branch. Linear merging is enforced on main and merging requires a completed review. PRs will kick off a GitHub actions ci build and analysis of chiapos at lgtm.com. Please make sure your build is passing and that it does not increase alerts at lgtm.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chiapos-2.0.12.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

chiapos-2.0.12-cp314-cp314-win_amd64.whl (9.0 MB view details)

Uploaded CPython 3.14Windows x86-64

chiapos-2.0.12-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chiapos-2.0.12-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chiapos-2.0.12-cp314-cp314-macosx_11_0_x86_64.whl (365.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

chiapos-2.0.12-cp314-cp314-macosx_11_0_arm64.whl (321.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chiapos-2.0.12-cp313-cp313-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.13Windows x86-64

chiapos-2.0.12-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chiapos-2.0.12-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chiapos-2.0.12-cp313-cp313-macosx_11_0_x86_64.whl (365.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

chiapos-2.0.12-cp313-cp313-macosx_11_0_arm64.whl (321.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chiapos-2.0.12-cp312-cp312-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.12Windows x86-64

chiapos-2.0.12-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chiapos-2.0.12-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chiapos-2.0.12-cp312-cp312-macosx_11_0_x86_64.whl (365.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

chiapos-2.0.12-cp312-cp312-macosx_11_0_arm64.whl (321.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chiapos-2.0.12-cp311-cp311-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.11Windows x86-64

chiapos-2.0.12-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chiapos-2.0.12-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chiapos-2.0.12-cp311-cp311-macosx_11_0_x86_64.whl (365.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

chiapos-2.0.12-cp311-cp311-macosx_11_0_arm64.whl (321.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chiapos-2.0.12-cp310-cp310-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.10Windows x86-64

chiapos-2.0.12-cp310-cp310-manylinux_2_28_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

chiapos-2.0.12-cp310-cp310-manylinux_2_28_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

chiapos-2.0.12-cp310-cp310-macosx_11_0_x86_64.whl (363.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

chiapos-2.0.12-cp310-cp310-macosx_11_0_arm64.whl (320.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file chiapos-2.0.12.tar.gz.

File metadata

  • Download URL: chiapos-2.0.12.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chiapos-2.0.12.tar.gz
Algorithm Hash digest
SHA256 70d00a5687cdef4ffe38221b2ea1d782af3679ebcec9b84d9272c0bab8b0eba2
MD5 dcb1be4f2d6b9fc35ddeee36f5ce9606
BLAKE2b-256 cd97c68cf1af7bb7768a5ef46bed91112890b24639f72c71c788e385d4851ebc

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12.tar.gz:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: chiapos-2.0.12-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chiapos-2.0.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f048b9b87ad5ef324a9026700a1e6652eb52cd82ba9576cbba10734e395d29f
MD5 c97d3224bfce20a05072381dc1c6007e
BLAKE2b-256 7e4b4ebbcf0e1d230b43fe982f9903697c282cb21d4638c45b8b1e66842b8551

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp314-cp314-win_amd64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 624ca1f624b1f9e1b1b4749519c1dcd388afff977030d480a11d9e727d372f1b
MD5 ae87faac442e404631972f73805ee0d4
BLAKE2b-256 a47b11e3cc70fa6bd0a303b31d66d23f0caf81a7e540e48cd719ff89c466f5c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61623cae9f304fb0c5c09c3351f6085367d5321e4f0650b2aa56b71ee7b55c9c
MD5 17a650623ee5d1905b9d23b5838e4d6b
BLAKE2b-256 b7e4b797bcf0a185a9ac2a3a3ba2dd0217bd9c10650db3e55c96854875c98326

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9cc285d43879221119b37571d1fec83ad320aa66abc074b34295e9041ba76cbc
MD5 7fc87cc72cee879d20c37ca3b1ec97c9
BLAKE2b-256 6b19a49627c0e7a0f09a99138c73b6ba2e2940eb1d86075b3a1f7e6d642f48c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 798c49b3db353f344ee7bd8c32c9d15a44db65c7da71a58dec067850e03a1c6b
MD5 e5d4427c605563edba55cd8209adc5b2
BLAKE2b-256 1807f632a26cbe54c2ee9700317216a5a27e76a18f033d7f66d22347c9667c9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: chiapos-2.0.12-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chiapos-2.0.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8eb98dd6d564bbc495da0be2678c087489702284622840b9f937b576acf5dc20
MD5 1c7dc5780002050ceb5fa3d272aa4438
BLAKE2b-256 fbb7476a6d8e1b359eda00d0787d4dbd4aecf81303c948a23250e5ad522adb72

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp313-cp313-win_amd64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cfc0a0768f703f8fecc2098a46288a5008fbee19094c55365109abf73187e2bc
MD5 362b4e6649fd397be87ac636fff09593
BLAKE2b-256 895ef1fc11d955fd20ffed7ac10da0478d61b7aca55f216e1e96e6f8a20448cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd49c778ba2231f656852216ca65faa58b65609f841e5fcc5a353172e23f19a0
MD5 b783e9829f0c3f1ac0ba38d858a6ef2b
BLAKE2b-256 969209dee92b101e420d0a2e2d1251d9342ea384834613d6ccaf1b6cc92fdca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a13e6771ee3a5e27c5aa9d7dcccbe85229967f77ccfa32e7ea45515bc4cce9bb
MD5 9a2d20ba0bed69614e12879df146d0fe
BLAKE2b-256 97fc34cfff3dabba2b8525777c423d9691ee38de4c9153cfa5b494d185340807

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cad8464e8111d5e19489bf311578fc7307e4389d43f9fbfa6bb80e28fd8c205b
MD5 322a7976d2d9f4faad51ffa76d491723
BLAKE2b-256 63845b0c9db77a5e989f9a45bd845768e1d21ab36dcf16dd10996e58ed78d4cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: chiapos-2.0.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chiapos-2.0.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5da38c1b368e85cd8b3d81a4c7e8bed3245c8e05c5519d82c39004158043981
MD5 53a285baa7bb09465103d24438f2c11a
BLAKE2b-256 7bce0e9b85abf97150d1bbe71b4e58872f35adb0ef08c2b0ce77ade41ce5206c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp312-cp312-win_amd64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57723032157087d3c3eb2b23759ed68603ae032709faa61133a00ed553d74190
MD5 a2db9150a2ec1b255fde48aa1c9d21bb
BLAKE2b-256 c63f69f9459c98357d3af0d06d6a62d8091aa9bc14279d58143adb79e4ce9654

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3a4ed32de760b081d2e596070d8f7808c71512f0e48d9ddb15693fc4bd58af4
MD5 e0e8d3ee1814d76077eb6f0c7ec68ad4
BLAKE2b-256 959aff30945a18c9c869ac426b1b6c04fa73f328f110f5268147c022c71bd55c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6f146c99804eb885f7acaa06fec501b094c4a6b1a91708cb07cdcfe5a429a54b
MD5 d09bc1c6f6ea3ea6aa209d5e637e3b75
BLAKE2b-256 f06e311c19ea6e8f084c464e762ee8da7b1e8504399893216b659a3775ce165c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ced8d301d825075e304ead7ba87a847dfa52a2eaccfb037e7ae036942561eb0
MD5 45ea109ace65a9c4444aeefb81fb909f
BLAKE2b-256 e9e67477c52af864f964663de79f0cba214c0547a8d5b619cc692d4a5d7a9827

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: chiapos-2.0.12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chiapos-2.0.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57d9a4f9161940dc0e8e9a434efa3949908ebcc99854a6ce1bf3a670b395dc03
MD5 782a82e861ed1ba280df799aaca72cd0
BLAKE2b-256 86be131f1c249389afc4592d5a2edf7f1568f1390f2e39edaa9c86466ad4b536

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp311-cp311-win_amd64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 453c1cb4c00abe82ec885a1aa6fa11be87e791f94c84942b4daeeffb032cd5de
MD5 f1cf2fec0d98f0b9e862b68a3f60ef2d
BLAKE2b-256 416ee0827b66fa2c1e55412c9c4b5517d2946a9b563fe2d0ff65d4ec4ba74065

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e47288e64965b3a036db8a262b60c5d3625d888a81f154e138e129199032227
MD5 7ed4ac84f2175a4feea5a1b9b5651259
BLAKE2b-256 2748f3aa69258b6a073beae9dd23d2d224f75b3a136a3c4796c0d268d3a97b22

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 91fa0147e6bd2d4b4c46e4f75667c78cdb0f8b47b30f2761eb981bf1bf429b38
MD5 801ce841ce264bb78630087c81958f0b
BLAKE2b-256 80256caf646fc598ef405127f96f012fcde6177833b33a30b93251bae499ed8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8f98594e43e34daa2cb2f1aa838bd6742e784dc61efe243959044e8cb5f6353
MD5 ccc9702fd61875b8e77312b410f4f3bb
BLAKE2b-256 e357ca6a0712ba3bd6472621f806e4385c3f102910fb2aaf24e26c478641d803

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: chiapos-2.0.12-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chiapos-2.0.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0f5d19337a81e757a8bf4c8df69bbd17d01928ec4db676dde35ca17f831f5de9
MD5 a0a97d8fdce13ca5fa4e5da11a0e9964
BLAKE2b-256 e6d034a3683a278bac8a4982fcf6be00abb07d927631101c54caa37331347bc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp310-cp310-win_amd64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a57802bea0ef12e9b77123ad9b87263df498a5f7c5800587520ba2e068d40e83
MD5 2b870f793982862945413763793363ae
BLAKE2b-256 2fb09fdba0a891342576ec6cd9f3c2066fb56fb9656d04239b104cbd8c3c24eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9526e8546da2886f9d00c9c38b38f308822fa3ba63b9a093fc083eb4fe683ef
MD5 40ea32e85575fed3da90cd4c8f7df0c7
BLAKE2b-256 db4849e87f37e8868f1664a329c55ce1d784432b5671766702bb558757997e46

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6af55fe0acb300fd77771d6a7b8efc552703a549aef0600c9720bb5814f54821
MD5 53b6d46cd2fe48f83a23426cf96c5654
BLAKE2b-256 5fc65f1e563995567a057e0e205e65202a1bdcb65528c5e303c4efd0065853ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chiapos-2.0.12-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77bb86858b3cf6ecd2f4cb5f02dbc14828329acf3db63ad0762c5079e31d3a40
MD5 9460e7c224cd5d250f4c6c09c5cd362e
BLAKE2b-256 4c6452567d906efb46dbdd7b5f385945d6442306ad91b16fb59ef7ce06ba033b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.12-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on Chia-Network/chiapos

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page