# Fundamentals & Terminology

## NOTE

[https://www.pulseinprivate.com ](<https://www.pulseinprivate.com >)domain has been removed from vercel host and returns 404. This project was launched briefly and then sunset. It had no users, and I didn't want to attempt to build a user base.

## Fundamentals

Pulse In Private (PIP) allows users to deposit and withdraw fixed amounts of tokens from "special" pools.&#x20;

These pools leverage Zero Knowledge Proofs to break the connection between the depositor and recipient, allowing for **private** token transfers.&#x20;

Tokens can only be withdrawn from a pool when the depositor has proven that they made a deposit.&#x20;

Depositors prove they made a deposit by showing their secret, unique, random number (nullifier) they received during their deposit.

Withdraws are anonymous as long as the anonymity set is greater than 1.

## Terms

* **Denomination**: An amount of tokens.
* **Pool**: A single contract deployed for a specific {token, denomination}.
* **Recipient**: The address that you want the withdraw to go to.
* **Nullifier**:&#x20;
  * A random number tied to a specific deposit. One time use. Useless after a deposit is withdrawn.
  * Required to withdraw your deposit. Keep it secret and hold onto it for dear life.&#x20;
  * Displayed along with the deposit's token and denomination: {token}-{denomination}-{nullifier}
* **Tree Index**: The number representing a particular merkle tree for a specific pool, starting at 0. Each tree can hold a maximum of 4,096 deposits. A pool can generates an infinite amount of merkle trees as needed.
* **Anonymity Set**: The current number of user's who have deposited into a pool, but not yet withdrawn from a pool, for a specific tree index.


---

# 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://pip-1.gitbook.io/pip-docs/user-documentation/fundamentals-and-terminology.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.
