32 stable releases (16 major)

new 17.0.0 Apr 25, 2024
16.1.0 Nov 8, 2023
16.0.0 Sep 5, 2023
15.0.0 Jun 30, 2023
1.0.0 May 19, 2020

#1024 in Magic Beans

Download history 1380/week @ 2024-01-03 1632/week @ 2024-01-10 2100/week @ 2024-01-17 2167/week @ 2024-01-24 1533/week @ 2024-01-31 1393/week @ 2024-02-07 2221/week @ 2024-02-14 2266/week @ 2024-02-21 2212/week @ 2024-02-28 1670/week @ 2024-03-06 2878/week @ 2024-03-13 2200/week @ 2024-03-20 1702/week @ 2024-03-27 2822/week @ 2024-04-03 2715/week @ 2024-04-10 2143/week @ 2024-04-17

9,649 downloads per month
Used in 25 crates (7 directly)

MIT/Apache

150KB
3.5K SLoC

Filecoin Proofs API

This library is meant to be the official public API into the proofs library.

CircleCI

The main API to interact with the proofs system in Filecoin.

Default build options

The build options enabled by default are cuda and opencl.

Running the tests

Running the tests with the default features can be done like this:

cargo test --release --all

Running with the opencl feature only can be done like this:

cargo test --no-default-features --features opencl --release --all

License

MIT or Apache 2.0


lib.rs:

Proofs library for Filecoin open blockchain network.

This goal of the filecoin-proofs-api crate is to provide the proving and verification mechanisms used within Filecoin, to ensure Storage Providers are properly storing client data, and retaining that data over time. The ‘Proofs’ are used to assert that the work was done properly, and the nodes on the network are able to verify proofs to maintain trust across the distributed storage network. The proving system used by Filecoin is based on Groth16. Specific poofs include Proof-of-Spacetime, and Proof-of-Replication.

For further information, please see the Filecoin specification

Dependencies

~21–32MB
~480K SLoC