Stellar SEP-24 Support
Use ROZO's Stellar anchor for standard SEP-24 deposit and withdraw flows alongside the ROZO Intent Pay SDK.
Supported Anchor Hosts
Mainnet
anchor.rozo.ai
Testnet
testanchor.rozo.ai
Supported Assets
Stellar
USDC
Stellar
EURC
For token identifiers and chain-level details, see Supported Tokens and Chains.
Endpoint Discovery
ROZO follows the standard Stellar SEP-24 discovery flow. Start from the anchor host and read:
https://anchor.rozo.ai/.well-known/stellar.toml
https://testanchor.rozo.ai/.well-known/stellar.tomlYour client should read TRANSFER_SERVER_SEP0024 from stellar.toml instead of hardcoding a transfer server path.
When To Use SEP-24
Use SEP-24 when your Stellar integration needs an anchor-managed deposit or withdraw flow for supported assets.
Typical cases:
On-ramp or off-ramp style deposit and withdrawal experiences
Wallet or app flows that already support the Stellar anchor ecosystem
Redirect-based deposit and withdraw UX outside the main ROZO payment button flow
Use the main Quick Start Guide when you only need the SDK payment button flow.
Integration Notes
Use
anchor.rozo.aifor production.Use
testanchor.rozo.aifor testing and sandbox environments.Supported Stellar assets are currently
USDCandEURC.Keep asset code handling explicit in your integration so users cannot accidentally switch between
USDCandEURC.If you support both EVM and Stellar destinations in one app, keep your SDK payout config and your SEP-24 anchor config separate.
Example Discovery Flow
Fetch the anchor's
stellar.toml.Read
TRANSFER_SERVER_SEP0024.Start the SEP-24
depositorwithdrawflow forUSDCorEURC.Redirect the user through the anchor flow in your wallet or app UI.
Track the transaction state using the anchor response and your app session state.
Asset Selection Guidance
If your app already uses ROZO Intent Pay for payouts:
Use the SDK payout config for checkout and direct payment collection.
Use SEP-24 only for anchor-style deposit and withdraw steps.
Keep
USDCandEURCas separate user choices in the UI.
Related Docs
Last updated