Getting started
IntroductionDefinitionsIdeas and TheoryUse CaseConstructions
Filecoin PoS Related ProtocolsOpen ProblemsUseful resources
DocumentationOutreach TalksFilecoin Proof of Space
We will present an instantiation of PoS protocol in Filecoin where implementation and optimization details are omitted.
In a nutshell
Distributed peer-to-peer storage
Filecoin is a data storage and retrieval marketplace that coordinates untrusted parties to buy and sell provable storage.
In Filecoin, users can pay to store their files on storage providers. Storage providers are computers responsible for storing files and proving they have stored the files correctly over time. Anyone who wants to store their files or get paid for storing other users’ files can join the Filecoin network.
Decentralised Network: In a centralized system, where the user trust the central service provider to keep the data safe and store it for a promised period. With the decentralized Filecoin network, on the other hand, we have access to a variety of storage providers who are competing. These providers are not trusted, but the design of Filecoin's protocol relies on a public bulletin board (a blockchain) that allows to verify that storage providers are honoring their agreements to store users data for an expected period of time. All participants in the network work together to verify each deal. This uses a consensus mechanisms that help users in a distributed network come to agreement without the need for a central authority.
Proving Storage
Initialisation
Encode the storage and commit to it
First step to onboard storage consist in the Initialisation phase called also “Proof of Replication” in Filecoin jargon. In this step, a storage provider proves that they are storing a physically unique copy, or replica, of the data. Proof of Replication happens just once, at the time the data is first stored and uploaded in the system. As the storage miner receives each piece of the client data, they place it into a sector (usually 32GB). Sectors are the fundamental units of storage in Filecoin, and can contain pieces from multiple deals and clients.
Once a sector is full, a ComD (Commitment of Data) is produced and uploaded to the blockchain.
A Proof of Space Initialisation step asks the prover to generate some encoding of the data which is incompressible, called replica (or advice). The prover is supposed to store the replica persistently throughout the second stage. To make the storage verifiable, the prover commits to the replica (ComR) and to the data, proves the encoding transformation correct and posts the two commitments in the blockchain. The encoding process is designed to be slow and computationally heavy.
Execution
Prove later that you continuously store the Data
In the second stage, the verifier can repeatedly audit the prover and check if it is still storing the replica.
While the Initialisation is run once to prove that a storage provider stored a physically unique copy of the data at the time the sector was sealed, Execution is run repeatedly to prove that the storage provider are continuing to dedicate storage space to that same data over time.
During this audit phase, the prover has to open random positions from the replica and show they are consistent with the publicly-known commitment (ComR) stored in the blockchain.
Encoding: Seal Operation
Seal is an operation used on the data to create a replica. The following properties are requiered to hold for Seal:
- Seal forces replicas to be physically independent copies by requiring provers to store a pseudo-random permutation of unique to their public key, such that committing to store replicas results in dedicating disk space for n independent replicas (hence n times the storage size of a replica)
- Seal enforces that the generation of the replica takes substantially longer than the time expected for responding to a challenge.
PoS.SEAL
Inputs: – prover key pair – prover SEAL key – data Outputs: replica , Merkle root commitment of proof
PoS.Prove
Inputs:
– prover PoSt key – replica – random challenge – time parameter Outputs: a proof
PoS.Verify
Inputs:
– prover public key – verifier SEAL and POS keys – hash of data – Merkle root of the replica, – random challenge, – tuple of proofs, Outputs: bit , equals 1 if proofs are valid
For further readings
- Technical Report https://drive.google.com/file/d/1notObdkPT1BCztgspIpzSUAzWSrM8h81/view?usp=sharing
- Filecoin https://curriculum.pl-launchpad.io/curriculum/filecoin/introduction/
- PoRep and PoSt https://proto.school/verifying-storage-on-filecoin
More in depth
← Previous
Next →
ON THIS PAGE