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.10.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

chiapos-2.0.10-cp312-cp312-macosx_11_0_x86_64.whl (383.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

chiapos-2.0.10-cp312-cp312-macosx_11_0_arm64.whl (321.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

chiapos-2.0.10-cp311-cp311-macosx_11_0_x86_64.whl (383.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

chiapos-2.0.10-cp311-cp311-macosx_11_0_arm64.whl (321.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

chiapos-2.0.10-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.10-cp310-cp310-manylinux_2_28_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

chiapos-2.0.10-cp310-cp310-macosx_11_0_x86_64.whl (381.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

chiapos-2.0.10-cp310-cp310-macosx_11_0_arm64.whl (320.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

chiapos-2.0.10-cp39-cp39-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.9Windows x86-64

chiapos-2.0.10-cp39-cp39-manylinux_2_28_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

chiapos-2.0.10-cp39-cp39-manylinux_2_28_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

chiapos-2.0.10-cp39-cp39-macosx_11_0_x86_64.whl (381.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

chiapos-2.0.10-cp39-cp39-macosx_11_0_arm64.whl (320.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

chiapos-2.0.10-cp38-cp38-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.8Windows x86-64

chiapos-2.0.10-cp38-cp38-manylinux_2_28_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

chiapos-2.0.10-cp38-cp38-manylinux_2_28_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

chiapos-2.0.10-cp38-cp38-macosx_11_0_x86_64.whl (381.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

File details

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

File metadata

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

File hashes

Hashes for chiapos-2.0.10.tar.gz
Algorithm Hash digest
SHA256 4c237b284abd18e662d4701ca9e233cab3867cec2a04877fd6406345fca6560a
MD5 7877bf21b3766e441f6b2afb9cc4d01e
BLAKE2b-256 97d14d849b736a9abbf867c071c6d83612653467bdac68c7db61e7db561e0597

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10.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.10-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: chiapos-2.0.10-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.12.8

File hashes

Hashes for chiapos-2.0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ce98a45105528a94d219d986abfeb55ef18692479a6957c18ab73ab2986a84cc
MD5 868e3fe6be88fe9384fd7323323ed6e9
BLAKE2b-256 52ed85db6aa739df48b7dd4ceaf4b5eebc404c6c004200ac9f47f2abe7b0bd3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.10-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e791e053eaf1f08d94426d951f451247433575a8e54a10080e4a41e1b03f99bc
MD5 b2e6223985304b2574896982e8e3a121
BLAKE2b-256 7e19adf3cab2ebdd1ae1e6f3248b5e13f8a25269002502db22816fa70b03b4cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp312-cp312-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.10-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb7fa9d907f3da31e55a56e9f91e4b7080a48cf741ef8dededb17f6872a29b0a
MD5 45cb05a3a44200d6092ab5b12a353036
BLAKE2b-256 359b4b06ac565908f9ad853c97e74654b7e285ac783229c31b0c93622e2225cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp312-cp312-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.10-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8b6e27e5d85f7a6fabb841bfd0830015fb6d93cf99ceccdf64fd6d99da482a7f
MD5 db44536e773b953960ea365e15c5d9f4
BLAKE2b-256 ff55ee7f60642756358584cf349fe3d1669c6ff018e08445fb3fa50298d137f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf22fcf261eecba87c5ec9a98fba2a4f3a43b29178b5193dc21cbfb266c62e9e
MD5 2f7272403214a2eed15f32ed66572bf9
BLAKE2b-256 7955911f905223c2f1e7c2d2d81a2e257f5dcfdf0608b14050b6724dfcfdce14

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.10-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: chiapos-2.0.10-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.12.8

File hashes

Hashes for chiapos-2.0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dedc471169ae2e05cae273f14949c423bc410cba1764babd91c3fb8eb52af76a
MD5 9e6cd912ace0f9388a71c7ee084fd795
BLAKE2b-256 ff5fa2bf5f40458ea6b2efc5669a85fdfc7eda38a23c041b842ebbcef637c305

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.10-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 699b58294aa89696761e47061f13680e1a9b5c5926ee0d22b92c3fb67f41f851
MD5 21c44ccbdeaac2c56cee0142fd600f75
BLAKE2b-256 e67543f8bb039c1cba13b11af44112f48fa801992612527554493afe2bc21455

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp311-cp311-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.10-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab97b1831ee4dac86d6b81731e16890530d4e105888b1cb15f59b4d6b567e78b
MD5 dbdece50ccb45e1fb37956a9700cc1ed
BLAKE2b-256 8d6e11c339ed7f8cf2a544c0b018c4d0e9abdf6208e330af4172d0a360b4a994

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp311-cp311-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.10-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 01e22ec6ae1b4ccb337efc6939ab810f9ee7805ca19726dd7407270a9e3e0cf8
MD5 8fab3b054115a9929b00d689a4cbbb98
BLAKE2b-256 3ed0ff26ea628c85de966997e4de25c340ab6b8111500b7f5995492659b2b7ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 250efc984f7720f391b77f87a6b5c6731d7cec9c0a80ca1bc10921e562dd2dcb
MD5 bed72b6838c927d8d3dd8276997d9528
BLAKE2b-256 0da1f9ff78459074555e58e1b3c11ddf6808a2511914bbf4a32ddf6bd402f2ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.10-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: chiapos-2.0.10-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.12.8

File hashes

Hashes for chiapos-2.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 032130d391f661c5b9ffba3af98deb3ea44d66ccf6ce5bcc6c8376c03fdb01af
MD5 b16a1f2d0e67ff2567f5913423f86900
BLAKE2b-256 fb119a41e9debc20b9f2aa91374208dc07ad9b4d63b7c42ab0dd12feaed387f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.10-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ddadb075c49856248742219f45f806ef0b4f46fec7d9c56c55c11f64e443e41
MD5 7bc8ba7f06e951b322ee1119d885d595
BLAKE2b-256 f213a4ee6d5b0d3b9884cc457bb83ab5c3b7fcbacc588c02df4da7ed7164fb26

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.10-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ade8a48ca97a5b1222297a854c2cca52bcc3c91c3943b9b17d0155ed09cfb1bf
MD5 bdc6dfbe197e5da517274e1808543adb
BLAKE2b-256 9db9e945ca31848c4dd13346afc680b7a98c236aae20868708d911857302c5ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.10-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 fb14d192557dd6e4e9de0abe42db2c3d21d1482846ecc0fe3aacc70d1c6986e1
MD5 cbfd01d6d2c3e0cdba49960857e87aad
BLAKE2b-256 b3d52255a38baed09f360832ad156bd8e20ead5a5b6b7b645833221d5bcfe918

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1310ca2474479dbe96ff74ee15caf6f922ec2924ed4eb022bbf2dcc165e90ff8
MD5 389bff42332444eb7b84ab90a9c447ab
BLAKE2b-256 afa94d275f4a0856b053147d093b8e17b7f019ce0e7ef7180bb5387b6f35c3a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-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.

File details

Details for the file chiapos-2.0.10-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: chiapos-2.0.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for chiapos-2.0.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 56f8a5e8d3a5eed946a41b3f92b3ba15e38db9ed77ac235555a047de26b5b976
MD5 1361c56cbd89d39c4298983f87146b3a
BLAKE2b-256 a9830b4a286187e8037c137f2d49dbef6a97f1e973b08711782177ec4f23848a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp39-cp39-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.10-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d4562279c124c6eb04373653aaabcbc87e8c00fe370616f13c4f4779b28c6a9
MD5 fa5684bc50890faabcdd4d846d7be37a
BLAKE2b-256 a0f05f9bbd7eb26d2b49da791e371a4906d1e81692c437f38041195203614dc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp39-cp39-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.10-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03b493511c57d5854fb02e9610dd9863370237c9405098c59cc131594ce1086e
MD5 7ceb4993bd35f319ca1f08e3eb7b9a6c
BLAKE2b-256 884e2385fd036a202cfbc86f8522fd02c9b00f383e9270f62d2ada4832a0474d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp39-cp39-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.10-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 560f72786a2e632ab8de630816ef852da2fd9cdfdd0e39cf7805daca7a3fc31b
MD5 441d5fadf2fe551da799cd54911e0a14
BLAKE2b-256 138fce0393c108ebae3acaa6c78bb0fb3c71694ba15777f8a1c7beba87c73a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp39-cp39-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.10-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46e9bc5220743f4a6f06d06d7224bf7ef3d07d4e9b33226846c431018795fe9e
MD5 aae65c6703ed29b06a963e52931710cf
BLAKE2b-256 eac67958f9ff4b6383cb3854112b664fd2090a5178e19e2d3123e0690c6e06d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp39-cp39-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.10-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: chiapos-2.0.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for chiapos-2.0.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 afcc2bf2dc6314c581c472c40944775ae1303e30eedbc226567de45d7dad2fae
MD5 0eca6825e65a47e852d9406138fa443c
BLAKE2b-256 480e947a91caf298b814c8f16c158642e9b24c293274e11b45e3cae1289a7488

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp38-cp38-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.10-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e5df7e1c677f7de3b4e39db0adf62f1f4619d26183227d42363cf8bb56adc66
MD5 7ec733a27ea63de02c0d07e8398058ed
BLAKE2b-256 f63dfdc59bc7351dab4745d99d30d0dcb70c5f5cdad8efe2a7633d84a42a3ce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp38-cp38-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.10-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c20659c7065c3f97fde2726105b8bb733b204e648abc2c64f5a744b95fbbc683
MD5 6e37145162a9601d897c40040a61b148
BLAKE2b-256 b7126be98a9d0ee1f20501a18ce8d429a2c46b1b95496a9cab6a1d3024279ce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp38-cp38-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.10-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chiapos-2.0.10-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ab87176b20139156222537e816015d03c2e7762e620bc919dddca26652ae70eb
MD5 dc2072ce11bbb95e328d96ae65a2c998
BLAKE2b-256 1956081c232d183c45e01c27bb2e18455095582e6dc79adf28efab8dc6fc37f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for chiapos-2.0.10-cp38-cp38-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.

Supported by

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