Overview
Token identifiers in Prudra are string symbols such asUSDC, USDT, USDC_E, DAI, and native ETH where applicable. The server resolves each (chain, token) pair to a contract address and decimals. If a pair is not configured, the API returns a validation error before signing.
Common tokens
| Symbol | Typical usage |
|---|---|
USDC | USD Coin on EVM L1/L2s. |
USDT | Tether. |
USDC_E | Bridged / tempo-specific USDC variant (see Tempo docs). |
DAI | MakerDAO stablecoin. |
ETH | Native gas token for EVM chains. |
SDK
@prudra/core exports Token and type TokenType:
API validation
Transfer and withdrawal bodies includefromToken, toToken, or token fields. Prudra checks:
- Chain is supported.
- Token contract exists for that chain.
- Amount parses as a non-negative decimal string compatible with token decimals.
Related
- Chains — network slugs.
- Token transfers — routing and fees.

