> For the complete documentation index, see [llms.txt](https://docs.playnance.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.playnance.com/distribution-and-treasury/treasury-flow.md).

# Treasury Flow

1. User places a bet
2. The bet amount is transferred from the user wallet to the product treasury
3. Game logic resolves the outcome
4. If the user wins:
   * Funds are transferred directly from the treasury to the user wallet
5. All movements are finalized on-chain

There are no internal balances, IOUs, or delayed settlement mechanisms.

### Product-Level Treasuries

Each product operates with its own treasury smart contract, fully visible on the PlayBlock explorer.

#### Softswiss Games Treasury

```
0x655e837a99A0DA400a170091409a05df3cE4e1e1
```

#### Pixmove Games Treasury

```
0x8Ee489ED1BE9373c1dd0517A98AC6ecF43ec171f
```

#### Nardsclub Games Treasury

```
0x3c0cfa08Dc31EA935e59374F0a03600aD8434207
```

#### NexusGGR Games Treasury

```
0xc23cAc52E8fF6c72916893989ab88B9A66f7ce10
```

#### Prediction Games Treasury

```
0x5d2C5101a2a84288826961A4aF9e71D254963335
```

Each treasury is responsible only for the product it serves.

### Bet Handling

* Every bet:
  * Is sent directly from the user wallet
  * Lands only in the relevant product treasury
* There is no aggregation layer or intermediate holding wallet
* Bet transactions are immediately visible on-chain

This ensures that treasury balances always reflect real exposure.

### Win Settlement

* When a win occurs:
  * The treasury sends funds directly to the winner’s wallet
* No batching
* No off-chain settlement
* No deferred payouts

This design guarantees:

* Immediate finality
* User-verifiable payouts
* No custodial risk

### Operational Control & Security

Each treasury operates under strict rules:

* Only authorized executor wallets can initiate payouts
* Treasury contracts are purpose-specific
* No treasury can spend funds belonging to another product
* Monitoring systems track:
  * Treasury balances
  * Inflow / outflow rates
  * Anomalies or unexpected movements

This creates a clean separation between game logic, execution, and fund custody.

### Transparency & User Trust

Because all treasury interactions are on-chain:

* Users can:
  * Track their bets
  * Verify payouts
  * Inspect treasury balances
* Partners can:
  * Audit product-level performance
  * Reconcile revenue independently
* PlayBlock maintains:
  * Full accountability
  * Zero hidden balance movement

### Summary

The PlayBlock Treasury Model is built on a simple but powerful principle:

This approach delivers:

* Strong isolation
* Predictable settlement
* Maximum transparency
* Scalable multi-product growth

It is a core pillar of PlayBlock’s security, reliability, and long-term sustainability.


---

# 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.playnance.com/distribution-and-treasury/treasury-flow.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.
