# FAQs

## Frequently Asked Questions

<details>

<summary>Do I need to handle packet loss?</summary>

Yes, UDP does not guarantee delivery. For critical applications, implement FEC (Forward Error Correction) decoding using coding shreds, or accept occasional gaps.

</details>

<details>

<summary>Can I receive shreds behind NAT?</summary>

No. You need a public IP with a directly accessible UDP port. Home connections with CGNAT will not work.

</details>

<details>

<summary>What's the difference between data and coding shreds?</summary>

* **Data shreds** (type=0) contain actual transaction data
* **Coding shreds** (type=1) are for FEC - used to recover lost data shreds

</details>

<details>

<summary>How do I reconstruct transactions?</summary>

Collect all data shreds for a slot, sort by index, concatenate payloads, and parse the resulting entries. This requires understanding Solana's entry and transaction formats.

</details>

<details>

<summary>What locations are available?</summary>

Shred sources deployed in regions with highest validator and stake density. Contact us for availability.

</details>

## Support

For access requests and technical support, contact [Thor Labs](https://discord.gg/thor_labs).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.thornode.io/infrastructure/thor-shredstream/faqs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
