> For the complete documentation index, see [llms.txt](https://doc.notliquid.fun/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.notliquid.fun/money-and-risk/safety-and-governance.md).

# Safety & Governance

PNL cannot make NFTs safe, valuable, or polite. It can make its own state transitions explicit and bounded.

## Ordered anti-steering

Acquisitions settle in their original onchain sequence.

* Out-of-order Pyth callbacks only cache randomness.
* Later requests cannot skip an unresolved earlier request.
* Deposits made during an open window enter staging.
* Withdrawals and backing changes wait until unresolved acquisitions are terminal.

These rules stop callback timing or a last-second pool edit from choosing a more convenient selection set.

## Randomness delivery

`PNLPythAdapter` only accepts callbacks from the configured Pyth Entropy contract.

The adapter stores a fulfilled word before forwarding it to PNL. If delivery fails, anyone can retry it through `deliverRandomness` without changing the word.

The adapter also caps the acceptable Entropy fee. A quote above that cap fails closed instead of silently charging an unlimited amount.

## Refund credits

Expired, empty-pool, and out-of-bounds acquisitions credit the escrowed acquisition fee to the acquirer.

Refunds are pulled with `withdrawAcquisitionRefund`. This keeps an unusual receiving address from blocking the FIFO processor for everybody behind it.

The already-paid Pyth Entropy fee is not included in that credit.

## Operating switches

The PNL owner can:

* open or close new acquisitions;
* enable withdraw-only emergency mode;
* enable or disable collection whitelist enforcement;
* update bounded economic and timing parameters;
* manage collection eligibility;
* update the protocol payout address.

Withdraw-only mode stops new listings and acquisitions. Already-issued requests still need to resolve or expire before active positions can exit.

Staged positions cannot be cancelled out of order. Once the request queue is idle, anyone can activate eligible staged positions so their depositors regain the normal active-position exit path.

## Admin boundaries

Configuration authority is not custody authority.

The owner cannot use the PNL core to:

* withdraw a depositor's active NFT and backing;
* redirect a user's recorded fee earnings;
* redirect an acquirer's recorded refund credit;
* skip an earlier acquisition sequence.

The owner can change future-facing settings, including randomness configuration when no request is in flight. That authority is part of the admin risk, so the interface and current onchain configuration remain the source of truth.

## Background processing

The independent PNL keeper calls the same permissionless `processAcquisitions` function available to anyone.

It simulates work, advances ready or expired requests in canonical order, and waits for transaction confirmation. It does not hold user assets or gain a private settlement route.

## External risk remains

{% hint style="danger" %}
PNL uses real NFTs and real HYPE. Smart-contract, Pyth Entropy, HyperEVM, admin-key, collection-contract, metadata, liquidity, and market-price risks remain.
{% endhint %}

Mechanism guarantees are not profit guarantees. A valid random allocation can still be a financially terrible Tuesday.


---

# 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://doc.notliquid.fun/money-and-risk/safety-and-governance.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.
