> For the complete documentation index, see [llms.txt](https://plabs.gitbook.io/plabs-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://plabs.gitbook.io/plabs-docs/privacy-core/perc20/overview.md).

# Overview

**pERC20** is the **native private fungible token** asset protocol: Orchard notes plus ERC-20-like product semantics. Private assets created here can be used by higher-level applications (pSWAP, pDEX, pX402) documented outside this book.

## One line

> Fungible tokens that are **private from creation**, with an ERC-20-like API and different openness.

## Contract structure

```solidity
contract PERC20 is OrchardVerifier, IPERC20
```

| Inheritance       | Provides                                      |
| ----------------- | --------------------------------------------- |
| `OrchardVerifier` | Privacy Core state machine                    |
| `IPERC20`         | Metadata, `totalSupply`, `mint/burn/transfer` |

## Privacy Core vs pERC20 delta

| Capability                | Privacy Core | pERC20 adds |
| ------------------------- | ------------ | ----------- |
| Note spend/create         | ✅            | —           |
| Groth16 + sigs + freeze   | ✅            | —           |
| `name/symbol/decimals`    | —            | ✅           |
| Public `totalSupply`      | —            | ✅           |
| Issuer-only `mint`        | —            | ✅           |
| Off-chain ERC-20-like API | —            | ✅ (wallet)  |

## Deployment

1. Deploy verifier + factory once per chain
2. `createPerc20(...)` → EIP-1167 clone (\~321K gas)
3. Issuer mints to shielded notes

→ [Issuance & deployment](/plabs-docs/privacy-core/perc20/issuance-and-deployment.md)

## Standard

| Item    | Value                                                  |
| ------- | ------------------------------------------------------ |
| ERC     | **8302** (submission) / 8289 (repo draft until synced) |
| Status  | Draft                                                  |
| ERCs PR | [#1817](https://github.com/ethereum/ERCs/pull/1817)    |

→ [ERC-8302 index](/plabs-docs/privacy-core/perc20/eip-8302.md) · [ERC-8289 (prior number)](/plabs-docs/privacy-core/perc20/eip-8289.md)

## Next

* [Interface & ERC-20 mapping](/plabs-docs/privacy-core/perc20/interface-and-erc20.md)


---

# 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://plabs.gitbook.io/plabs-docs/privacy-core/perc20/overview.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.
