Skip to content

Fixes and additions #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions filecoin-virtual-machine/section-a.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 🅰 Upload, PoDSI, and Deal-Making
# 🅰 Upload Your Data to Filecoin

In this **Section A**, we will discuss the following

Expand Down Expand Up @@ -52,7 +52,7 @@ const dealParams = {
num_copies: 2,
};
// The `false` indicates that we're uploading a single file.
// Returns a CID (Content ID) for your file that you can use for PoDSI verification.
// Returns a CID (Content ID) for your file that you can use for provable storage verification.
const uploadResponse = await lighthouse.upload('/path/to/adorable/dog.jpg', 'YOUR_API_KEY', false, dealParams);
```
{% endcode %}
Expand Down Expand Up @@ -127,7 +127,7 @@ const response = await lighthouse.upload(path, apiKey, false, dealParam_mock);
const response = await lighthouse.upload(path, apiKey, false, dealParam_ignore);
</code></pre>

### Step 3: Understanding PoDSI: Getting the PoDSI for your file
### Step 3: Understanding PoDSI: Getting Storage Proofs for your file

Now that you've registered the picture of your puppy, how would you know that it's actually being maintained on the Filecoin network? This is where the PoDSI comes in. The PoDSI is a proof that your file is being maintained on the Filecoin network.

Expand Down
2 changes: 1 addition & 1 deletion filecoin-virtual-machine/section-b.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: >-
through the Lighthouse Smart Contract
---

# 🅱 Attaching RaaS (renew, repair, replication) Worker
# 🅱 Renew, Repair, and Replicate Storage on Filecoin

## <mark style="color:blue;">1) Attaching Lighthouse RaaS Worker</mark>

Expand Down