Skip to content

Commit 8f77b7e

Browse files
Barbara Pericgitbook-bot
Barbara Peric
authored andcommitted
GITBOOK-54: change request with no subject merged in GitBook
1 parent da84df8 commit 8f77b7e

File tree

99 files changed

+863
-810
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+863
-810
lines changed

builder-cookbook/dapps/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ description: Various features from Filecoin ecosystem to build your dApps.
44

55
# dApps
66

7+
[Was this page helpful?](https://airtable.com/apppq4inOe4gmSSlk/pagoZHC2i1iqgphgl/form?prefill\_Page+URL=https://docs.filecoin.io/builder-cookbook/dapps)

builder-cookbook/dapps/chain-data-query.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,7 @@ The expected transaction will be similar as follows. With this information, you
156156
]
157157
},
158158
```
159+
160+
161+
162+
[Was this page helpful?](https://airtable.com/apppq4inOe4gmSSlk/pagoZHC2i1iqgphgl/form?prefill\_Page+URL=https://docs.filecoin.io/builder-cookbook/dapps/chain-data-query)

builder-cookbook/dapps/cross-chain-bridges.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,3 +178,7 @@ Note that there is an expected finality period when conducting inter-chain messa
178178
2. [Ready-to-use EC finality calculator](https://github.com/filecoin-project/FIPs/discussions/919) 
179179

180180
Learn more about cross-chain bridges and which bridges are available on which networks in the Filecoin Docs [here](https://docs.filecoin.io/smart-contracts/advanced/cross-chain-bridges). 
181+
182+
183+
184+
[Was this page helpful?](https://airtable.com/apppq4inOe4gmSSlk/pagoZHC2i1iqgphgl/form?prefill\_Page+URL=https://docs.filecoin.io/builder-cookbook/dapps/cross-chain-bridges)

builder-cookbook/dapps/decentralized-database.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,7 @@ console.log(results);
142142
```
143143

144144
To learn how to write different select statements using Tableland SDK, you can refer to [here](https://docs.tableland.xyz/sdk/database/prepared-statements).
145+
146+
147+
148+
[Was this page helpful?](https://airtable.com/apppq4inOe4gmSSlk/pagoZHC2i1iqgphgl/form?prefill\_Page+URL=https://docs.filecoin.io/builder-cookbook/dapps/decentralized-database)

builder-cookbook/dapps/oracles.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,7 @@ contract PriceContract is UsingTellor {
5151
Oracle contract address (on both Calibration Testnet and Mainnet): `0xb2CB696fE5244fB9004877e58dcB680cB86Ba444`
5252

5353
To see additional addresses for Tellor Oracles, please see [this doc](https://docs.filecoin.io/smart-contracts/advanced/oracles). 
54+
55+
56+
57+
[Was this page helpful?](https://airtable.com/apppq4inOe4gmSSlk/pagoZHC2i1iqgphgl/form?prefill\_Page+URL=https://docs.filecoin.io/builder-cookbook/dapps/oracles)

builder-cookbook/data-storage/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ description: Recipes of using Filecoin data storage features programmatically.
44

55
# Data Storage
66

7+
[Was this page helpful?](https://airtable.com/apppq4inOe4gmSSlk/pagoZHC2i1iqgphgl/form?prefill\_Page+URL=https://docs.filecoin.io/builder-cookbook/data-storage)

builder-cookbook/data-storage/privacy-and-access-control.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,3 +295,7 @@ Lighthouse also provides a number of methods to gate access a given data set. I
295295
```
296296

297297
To review the Lighthouse documentation in its entirety, please visit: [https://docs.lighthouse.storage/lighthouse-1/](https://docs.lighthouse.storage/lighthouse-1/) 
298+
299+
300+
301+
[Was this page helpful?](https://airtable.com/apppq4inOe4gmSSlk/pagoZHC2i1iqgphgl/form?prefill\_Page+URL=https://docs.filecoin.io/builder-cookbook/data-storage/privacy-and-access-control)

builder-cookbook/data-storage/retrieve-data.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ description: >-
88

99
### <mark style="color:blue;">Retrieve data using retrieval clients</mark>
1010

11-
To retrieve data stored on the Filecoin network, the basic process involves making retrieval requests to Service Providers (SPs) who initially stored the data, using either the Content ID (CID) or the storage deal ID.&#x20;
11+
To retrieve data stored on the Filecoin network, the basic process involves making retrieval requests to Service Providers (SPs) who initially stored the data, using either the Content ID (CID) or the storage deal ID.
1212

1313
A programmatic option is to utilize Filecoin retrieval clients, which handle the intricate retrieval process behind the scenes. By simply providing a Content ID (CID), retrieval clients can efficiently return your data either via the command-line interface (CLI) or through the programmable method.
1414

1515
#### **Ingredients**
1616

1717
With a given CID, you can use any of the following retrieval clients to retrieve content.
1818

19-
* [Lassie](https://github.com/filecoin-project/lassie): optimizes for most efficient available retrieval protocols.&#x20;
19+
* [Lassie](https://github.com/filecoin-project/lassie): optimizes for most efficient available retrieval protocols.
2020
* [go-car](https://github.com/ipld/go-car): a content addressable archive utility.
2121
* [Saturn](https://saturn.tech/): a Web3 CDN in Filecoin’s retrieval market.
2222

@@ -31,13 +31,13 @@ The Lassie command line interface (CLI) provides the simplest method for retriev
3131
<pre class="language-jsx"><code class="lang-jsx"><strong>lassie fetch -o - &#x3C;CID> | car extract
3232
</strong></code></pre>
3333

34-
For example,&#x20;
34+
For example,
3535

3636
```
3737
lassie fetch -p bafybeic56z3yccnla3cutmvqsn5zy3g24muupcsjtoyp3pu5pm5amurjx4 | car extract
3838
```
3939

40-
Lassie can also serve as a go library within your Golang application when programmatically retrieving content from the network. To utilize Lassie in your code, you need to install the dependency and import it into your program following the instructions [here](https://github.com/filecoin-project/lassie?tab=readme-ov-file#golang-library).&#x20;
40+
Lassie can also serve as a go library within your Golang application when programmatically retrieving content from the network. To utilize Lassie in your code, you need to install the dependency and import it into your program following the instructions [here](https://github.com/filecoin-project/lassie?tab=readme-ov-file#golang-library).
4141

4242
The following example demonstrates how to use the Lassie library to fetch a CID.
4343

@@ -89,7 +89,7 @@ func main() {
8989
2. **retrieving content with Saturn**
9090

9191
{% hint style="info" %}
92-
[Saturn Javascript Client](https://github.com/filecoin-saturn/js-client) is still a work in progress and not recommended for use in production yet.&#x20;
92+
[Saturn Javascript Client](https://github.com/filecoin-saturn/js-client) is still a work in progress and not recommended for use in production yet.
9393
{% endhint %}
9494

9595
The following code example demonstrates how to use the Saturn in the Javascript program to fetch a CID.
@@ -126,3 +126,5 @@ const options = {
126126
For quick retrieval of existing datasets with the methods above, check out the [Filecoin Dataset Explorer](https://dataset-explorer.vercel.app/).
127127

128128
***
129+
130+
[Was this page helpful?](https://airtable.com/apppq4inOe4gmSSlk/pagoZHC2i1iqgphgl/form?prefill\_Page+URL=https://docs.filecoin.io/builder-cookbook/data-storage/retrieve-data)

0 commit comments

Comments
 (0)