# Smart Guardrails

Smart Guardrails ensure that only safe, liquid, and executable assets can be reached through the Universal Access Schema.\
They act as an automated clearing layer — verifying each token before OPN accepts a BuyIntent.

Smart Guardrails run four independent checks:

***

### 4.1 Liquidity Verification

Ensures the asset has sufficient on-chain liquidity for deterministic execution.

**Checks include:**

* Minimum liquidity thresholds on local DEXs
* Reliable routing paths (no fragmented liquidity)
* Slippage safety under expected volumes

**Why it matters:**\
Tokens with thin liquidity can cause failed trades, high slippage, or delivery mismatches.

***

### 4.2 Contract Integrity Review

Analyzes the token’s smart contract for security and behavioral risks.

**Checks include:**

* Mint / burn authority
* Proxy or upgrade logic
* Fee-on-transfer behavior
* Pausable or blacklist controls
* Known exploit patterns

**Why it matters:**\
Users should never buy a token whose code allows unexpected minting, freezing, or execution traps.

***

### 4.3 Admin Key Analysis

Examines whether a token can be manipulated post-launch.

**Checks include:**

* Ownership status (EOA, multisig, timelock)
* Ability to change fees, supply, or trading rules
* Privileged functions that override market reality

**Why it matters:**\
Admin keys can compromise user safety if not properly structured or time-locked.

***

### 4.4 Settlement Compatibility (OPN Compatibility)

Ensures the token can be executed natively and non-custodially.

**Checks include:**

* Exists on a supported chain with native liquidity
* No bridging, wrapping, or derivative representations
* Deterministic settlement possible via local USDC liquidity

**Why it matters:**\
Gateway and OPN only execute **native, verifiable** settlement paths — no wrappers, no synthetic assets.

***

### 4.5 Outcome of Smart Guardrail Checks

Each token receives one of three results:

| Status         | Meaning                                                                 |
| -------------- | ----------------------------------------------------------------------- |
| **Cleared**    | Token is eligible. Schema links work globally.                          |
| **Restricted** | Token partially passes checks; schema may work in limited contexts.     |
| **Rejected**   | Token fails core safety requirements and is not executable via Gateway. |

***

### 4.6 Why Smart Guardrails Exist

Smart Guardrails prevent:

* Unsafe assets from being purchased
* Illiquid assets from causing failed settlement
* Wrapped/bridged assets from creating fragmentation
* Users from encountering opaque or malicious token behavior

They are the foundation of **trust, determinism, and safety** for the Universal Access Schema.

***

### 4.7 Summary

Smart Guardrails ensure that:

* Users only interact with safe, verifiable assets
* Chains remain sovereign (local liquidity, no bridges)
* Execution remains deterministic
* Every schema link points to a trustworthy path

They function as the **on-chain clearing layer** of the ONCHAIN® Protocol Network.


---

# 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.onchain.money/getting-started/smart-guardrails.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.
