Skip to content

Commit c51fc96

Browse files
Mayank Pandeygitbook-bot
Mayank Pandey
authored andcommitted
GITBOOK-237: change request with no subject merged in GitBook
1 parent c26b6ab commit c51fc96

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

Diff for: SUMMARY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@
1919
* [UI Settings](configuration/ui-settings.md)
2020
* [HTTP Transfer limit](configuration/http-transfer-limit.md)
2121
* [Deal Filters](configuration/deal-filters.md)
22+
* [Remote CommP](configuration/remote-commp.md)
2223
* [Backup and Restore](backup-and-restore.md)
2324
* [Tutorials](tutorials/README.md)
2425
* [How to store files with Boost on Filecoin](tutorials/how-to-store-files-with-boost-on-filecoin.md)
2526
* [Using filters for storage and retrieval deals](tutorials/using-filters-for-storage-and-retrieval-deals.md)
2627
* [Setting up a monitoring stack for Boost](tutorials/setting-up-a-monitoring-stack-for-boost.md)
2728
* [Bitswap Retrieval](bitswap-retrieval.md)
2829
* [HTTP Retrieval](http-retrieval.md)
29-
* [GraphQL API](graphql-api.md)
30-
* [Remote CommP](remote-commp.md)
3130
* [Troubleshooting](troubleshooting.md)
3231
* [Experimental Features](experimental-features/README.md)
3332
* [FVM Contract Deals](experimental-features/fvm-contract-deals.md)
33+
* [GraphQL API](graphql-api.md)
3434
* [JSON-RPC API](json-rpc-api.md)
3535
* [FAQ](faq.md)
3636
* [Need help?](need-help.md)

Diff for: boost-architecture/libp2p-protocols.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Boost supports the same libp2p protocols as legacy markets, and adds new version
44

55
## Propose Storage Deal Protocol
66

7-
The client makes a deal proposal over `v1.2.0` of the Propose Storage Deal Protocol: `/fil/storage/mk/1.2.0`
7+
The client makes a deal proposal over `v1.2.0` or `v1.2.1` of the Propose Storage Deal Protocol: `/fil/storage/mk/1.2.0` or `/fil/storage/mk/1.2.1`
88

99
It is a request / response protocol, where the request and response are CBOR-marshalled.
1010

@@ -13,7 +13,7 @@ There are two new fields in the Request of `v1.2.1` of the protocol, described i
1313
### Request
1414

1515
| Field | Type | Description |
16-
|-----------------------------|--------------------|----------------------------------------------------------------------------------------------------|
16+
| --------------------------- | ------------------ | -------------------------------------------------------------------------------------------------- |
1717
| DealUUID | uuid | A uuid for the deal specified by the client |
1818
| IsOffline | boolean | Indicates whether the deal is online or offline |
1919
| ClientDealProposal | ClientDealProposal | Same as `<v1 proposal>.DealProposal` |
@@ -22,8 +22,8 @@ There are two new fields in the Request of `v1.2.1` of the protocol, described i
2222
| Transfer.ClientID | string | Any id the client wants (useful for matching logs between client and server) |
2323
| Transfer.Params | byte array | Interpreted according to `Type`. eg for "http" `Transfer.Params` contains the http headers as JSON |
2424
| Transfer.Size | integer | The size of the data that is sent across the network |
25-
| SkipIPNIAnnounce (v1.2.1) | boolean | Whether the provider should announce the deal to IPNI or not (default: false) |
26-
| RemoveUnsealedCopy (v1.2.1) | boolean | Whether the provider should keep an unsealed copy of the deal (default: false) |
25+
| SkipIPNIAnnounce (v1.2.1) | boolean | Whether the provider should announce the deal to IPNI or not (default: false) |
26+
| RemoveUnsealedCopy (v1.2.1) | boolean | Whether the provider should keep an unsealed copy of the deal (default: false) |
2727

2828
### Response
2929

@@ -60,4 +60,3 @@ It is a request / response protocol, where the request and response are CBOR-mar
6060
| SignedProposalCid | cid | cid of the client deal proposal + signature |
6161
| PublishCid | cid | The cid of the publish message, if the deal has been published |
6262
| ChainDealID | integer | The ID of the deal on chain, if it's been published |
63-
File renamed without changes.

Diff for: faq.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ You can use the regular Unix OS signals
1010
**Is Boost compatible with the Lotus client? Can a client use `lotus client deal` to send a deal to Boost storage providers or do they have to use the boost client?**\
1111
Yes, boost should work with any client given it supports the storage market protocol / default standard of Filecoin network today.
1212

13-
**Does Boost provide retrieval functionality or a client still need to use the Lotus client for retrievals?**\
14-
Boost doesn't change anything about retrieval so far. We are working on new retrieval options.
13+
**Does Boost provide retrieval functionality?**\
14+
Yes, Boost provides 3 protocols for retrievals as of now. By default, Boost has Graphsync retrieval enabled. SPs can run Bitswap and HTTP retrievals by running [`booster-bitswap`](bitswap-retrieval.md) and [`booster-http`](http-retrieval.md) respectively.
15+
16+
**Does Boost client have retreival functionality?**\
17+
Yes, Boost client supports retrieval over graphsync protocol. But we highly recommend, using [`Lassie`](https://docs.filecoin.io/basics/how-retrieval-works/basic-retrieval/#lassie) client for Filecoin/IPFS retrievals.
1518

1619
**Can Boost make verified deals?**\
1720
Yes, payments for deals can be made either from a regular wallet, or from DataCap. Deals that are paid for with DataCap are called `verified` deals.

0 commit comments

Comments
 (0)