Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/pages/docs/guide/issuance/create-a-stablecoin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,12 @@ Tokens can also carry an optional on-chain `logoURI` ([TIP-1026](https://tips.sh
The `currency` field is **immutable** after token creation and affects fee payment eligibility, DEX routing, and quote token pairing. See [Currency Declaration](/docs/protocol/tip20/overview#currency-declaration) for guidelines on choosing the right value. **Only `USD` stablecoins can be used to pay transaction fees on Tempo.**
:::

#### Issuing non-USD stablecoins

Set `currency` to the reference asset the token tracks, not to the token symbol. For fiat-backed stablecoins, use the ISO 4217 code such as `USD`, `EUR`, `BRL`, or `MXN`; do not use `USD` unless 1 token is intended to track 1 US dollar.

The SDK defaults `quoteToken` to [`pathUSD`](/docs/protocol/exchange/quote-tokens#pathusd). If you override it, use an already deployed TIP-20. `USD` tokens must use a `USD` quote token; non-`USD` TIP-20s can be issued with any deployed TIP-20 quote token, but they are not fee tokens and are not supported by native DEX trading today.

<Demo.Container name="Create Form">
<CreateToken stepNumber={1} last />
</Demo.Container>
Expand Down
Loading