> For the complete documentation index, see [llms.txt](https://docs.zircofi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zircofi.com/assets/usdg.md).

# Quote asset: USDG

Every market is quoted against **USDG**, the Paxos Global Dollar. All spreads, fees and vault accounting are denominated in it, and token-to-token swaps route through it.

## Why USDG

| Reason              | Detail                                                                                                                                                     |
| ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Native to the chain | USDG is issued natively on Robinhood Chain rather than bridged, which removes bridge risk from the settlement path.                                        |
| The chain's dollar  | Robinhood Earn and the chain's lending markets already run on USDG through Morpho, so the dollar traders arrive holding is the dollar the venue quotes in. |
| Regulatory footing  | USDG is regulated under MiCA in the EU, which matters for a venue whose primary market is the Stock Token jurisdiction list.                               |
| Clean semantics     | Standard ERC-20, no fee-on-transfer, no rebasing: the properties vault accounting assumes.                                                                 |

## A single quote asset is a design choice

Routing everything through one quote asset keeps liquidity concentrated instead of fragmenting each Stock Token across several stablecoin pairs, makes every price directly comparable, and keeps two-leg [routing](/protocol/routing.md) simple enough to verify on-chain. The cost is a dependency on one issuer, which is disclosed in the [Risk framework](/risk/framework.md) alongside the others.

## Additional quote assets

The market configuration keys on the quote asset, so a second one (USDC via CCTP once bridged liquidity on the chain is confirmed, or USDe, which is present on the chain) would be a new, isolated set of markets rather than a change to existing ones. A new quote asset is only added once bridged liquidity is confirmed and the token has passed the same bytecode review as any listed asset, through the timelock like any other parameter.

## Decimals and precision

USDG uses 6 decimals. Stock Tokens use 18. `OracleRouter` quotes prices in quote-asset base units per whole token, vault value is computed as `usdgBalance + tokenBalance × price / 10^18`, and the invariant suite checks the arithmetic across both decimal regimes, including rounding direction on share mints and burns.


---

# 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://docs.zircofi.com/assets/usdg.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.
