> For the complete documentation index, see [llms.txt](https://docs.sherlock.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sherlock.xyz/audits/watsons/first-submission-pot.md).

# First Blood Pot

### First Blood Pot

Three percent of the total payouts will be reserved for a first-blood pot, which is distributed among the first submitters of all valid issues.

The first submitter of any valid issue is determined by the timestamp of the last modification on the GitHub issue, across all issues within a valid issue family.

Each first submitter of an issue receives a number of shares from the first-submitter pot, based on the issue's severity and the number of duplicates it has.

The number of shares is calculated using the same formula as for determining issue shares, with the key difference being that only the first submitter of that issue family receives the shares:

> (First Submitter Shares) = (Severity Factor) \* (0.9 ^ (IssueSubmissions - 1)) / IssueSubmissions

### Example

Consider a $100,000 contest with a $3,000 first-blood pot, which includes 2 valid High-severity and 2 valid Medium-severity issues after final judging.

1. The first High-severity issue has 4 submissions in its family.\
   The first submitter will receive `5 * (0.9 ^ (4-1)) / 4 = 0.91125` shares for this issue.
2. The second High-severity issue is a solo submission.\
   The first submitter will receive `5 * (0.9 ^ (1-1)) / 1 = 5` shares for this issue.
3. The first Medium-severity issue has 2 submissions in its family.\
   The first submitter will receive `1 * (0.9 ^ (2-1)) / 2 = 0.45` shares for this issue.
4. The second Medium-severity issue has 4 submissions in its family.\
   The first submitter will receive `1 * (0.9 ^ (4-1)) / 4 = 0.18225` shares for this issue.

The percentage of the first-blood pot each submitter receives is calculated by dividing the sum of their individual shares by the total number of shares awarded.

In this example, assume:

* Alice was the first submitter of issue 1.
* Frank was the first submitter of issue 2.
* Bob was the first submitter of issue 3.
* Dave was the first submitter of issue 4.

The payouts for each would be:

* Alice: $417.78
* Bob: $206.31
* Dave: $83.56
* Frank: $2,292.35

This example is further illustrated in [this spreadsheet](https://docs.google.com/spreadsheets/d/1eyyilZmwdjvZ2LaAsvDLzWyWKXDcqO9zabgNd2O5JWI/edit?usp=sharing).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.sherlock.xyz/audits/watsons/first-submission-pot.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
