> For the complete documentation index, see [llms.txt](https://rwapact.gitbook.io/whitepaper/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rwapact.gitbook.io/whitepaper/protocol-economics/protocol-fees.md).

# Protocol Fees

## Protocol Fees

RWAPACT's current specification defines a `0.3%` protocol fee on validated trade volume.

The fee is associated with trading activity that passes through the Pact validation layer. RWAPACT first evaluates a trade request. It does not charge for acting as the DEX or trading venue.

### From intent to validated volume

An agent submits a trade intent to RWAPACT. The Pact evaluates the request before execution can be authorized.

* KRO evaluates RWA risk.
* KSO validates the session.
* KPV checks the active policy.
* KGR evaluates execution conditions.
* KAR records the resulting decision.

The protocol fee relates to validated trading activity passing through this middleware. The specification does not state that every attempted or rejected trade necessarily produces the `0.3%` fee.

```
Agent Trade Intent
  -> Pact Validation
  -> Authorized Trade
  -> Validated Trade Volume
  -> Protocol Fee
```

### Fee Is Not the Execution Layer

RWAPACT does not charge a fee because it is the execution venue. It sits between agent intent and execution as decision and risk middleware.

The fee reflects use of the validation and decision infrastructure. That infrastructure includes risk evaluation, session validation, policy enforcement, gas routing, and attestation recording.

The specification does not define cost-allocation percentages across those functions. This page does not infer any allocation from the stated fee rate.

### Mathematical example

If a validated trade has a notional value of `$1,000`, a `0.3%` fee equals `$3.00`.

This is a mathematical example, not a production fee transaction.

### Fee Calculation Example

| Validated trade volume | Fee rate | Protocol fee |
| ---------------------- | -------- | ------------ |
| `$500`                 | `0.3%`   | `$1.50`      |
| `$1,000`               | `0.3%`   | `$3.00`      |
| `$10,000`              | `0.3%`   | `$30.00`     |

These calculations illustrate the current stated rate. They do not describe realized fees or future fee outcomes.

The protocol fee scales with validated activity. The model does not require a fixed subscription for every agent.

***


---

# 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://rwapact.gitbook.io/whitepaper/protocol-economics/protocol-fees.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.
