> For the complete documentation index, see [llms.txt](https://developers.shredpay.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.shredpay.xyz/reference/glossary.md).

# Glossary

| Term                 | Definition                                                                                                                 |
| -------------------- | -------------------------------------------------------------------------------------------------------------------------- |
| **Agent Wallet**     | ShredPay's product giving AI agents a sandboxed on-chain wallet.                                                           |
| **Sub-wallet**       | A user-owned wallet dedicated to a single agent / use case. Distinct from the user's main ShredPay wallet.                 |
| **API key**          | The credential that grants access to one sub-wallet, with permissions and spend limits attached.                           |
| **Co-signer**        | ShredPay's P-256 key that participates in the 2/2 quorum signing scheme.                                                   |
| **Privy**            | The wallet infrastructure provider that holds the other half of the 2/2 quorum.                                            |
| **Router**           | ShredPay's on-chain contract that batches approve + swap + deposit and lets ShredPay sponsor gas.                          |
| **MCP**              | [Model Context Protocol](https://modelcontextprotocol.io/) — the open standard ShredPay uses to expose tools to AI agents. |
| **OpenClaw**         | An agent platform that ships ShredPay as a one-click installable Skill.                                                    |
| **Skill (OpenClaw)** | A bundled set of tools and metadata an agent can install. ShredPay's Skill is `shredpay-wallet`.                           |
| **Sponsored gas**    | Gas paid by ShredPay (in exchange for a small service fee). Available for swap, DeFi, and `gas_swap`.                      |
| **Allowed chains**   | The whitelist on an API key — only listed chain IDs may be used.                                                           |
| **Group ID**         | An optional grouping of sub-wallets under a user. Reserved for future multi-wallet workflows.                              |
| **Quorum**           | A signing scheme that requires multiple signatures. ShredPay uses 2/2 (Privy + ShredPay co-signer).                        |
| **Smallest unit**    | The integer representation of a token amount (e.g. 1 USDC = `1000000` because USDC has 6 decimals).                        |


---

# 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://developers.shredpay.xyz/reference/glossary.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.
