Assets
USDG
The Global Dollar — the only asset Lendr will ever lend.
USDG (Global Dollar) is Lendr's sole loan asset — LOAN_TOKENS is a single-element list, and every createListing call uses it as loanToken. Lendr does not mint, wrap, or issue USDG itself; it's the Robinhood-chain-issued stablecoin, used as-is via the standard ERC-20 interface.
| Field | Value |
|---|---|
| Symbol | USDG |
| Name | Global Dollar |
| Decimals | 6 |
| Mainnet address | 0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168 |
| Category | stable |
Testnet
There's no canonical USDG deployment on Robinhood Chain's testnet, so a testnet LendrMarket deployment uses a mock loan token instead, supplied via the NEXT_PUBLIC_LOAN_TOKEN environment variable. If that variable is unset on testnet, the app falls back to the zero address for the loan token, which keeps the frontend in local demo mode rather than pointing it at a token that doesn't exist.
Why single-asset, not multi-asset lending
Restricting the loan side to one asset keeps every listing directly comparable on APR and term — there's no cross-asset exchange-rate risk to reason about on the loan side, only on the collateral side. If Lendr ever supports a second loan asset, it would show up as a second entry in LOAN_TOKENS, and existing listings would be unaffected since loanToken is fixed per listing at creation.
