rwaUSD (id 432, gecko_id rwausd) renders as a standalone stablecoin at
stablecoin/rwausd instead of nesting under the Multipli.fi protocol page, unlike
its sibling rwaUSDi (id 340).
Root cause is on the protocol side, not the stablecoin side:
curl -s https://api.llama.fi/protocol/multipli.fi | jq '.stablecoins'
# -> ["rwausdi"]
Multipli.fi's stablecoins array only lists rwausdi. rwausd is missing from it.
That's the entire mechanism DefiLlama uses to nest a stablecoin under a protocol page
— it's not a gecko_id or deprecated issue (checked both, rwaUSD has a valid
gecko_id: "rwausd" and no deprecated flag):
curl -s https://stablecoins.llama.fi/stablecoin/432 | jq '{gecko_id, pegMechanism, parentProtocol, deprecated}'
# gecko_id: "rwausd" | pegMechanism: "crypto-backed" | parentProtocol: absent | deprecated: absent
Fix: add "rwausd" to the Multipli.fi protocol config's stablecoins array
(protocol id 5905), alongside the existing "rwausdi". That config lives in the
private defillama-server repo, which is why this is filed here rather than as a PR
— happy to help verify a fix against the live API once one's made.
Flagged on behalf of the Multipli team, who raised this in DefiLlama's Discord.
rwaUSD (id 432, gecko_id
rwausd) renders as a standalone stablecoin atstablecoin/rwausdinstead of nesting under the Multipli.fi protocol page, unlikeits sibling rwaUSDi (id 340).
Root cause is on the protocol side, not the stablecoin side:
Multipli.fi's
stablecoinsarray only listsrwausdi.rwausdis missing from it.That's the entire mechanism DefiLlama uses to nest a stablecoin under a protocol page
— it's not a
gecko_idordeprecatedissue (checked both, rwaUSD has a validgecko_id: "rwausd"and nodeprecatedflag):Fix: add
"rwausd"to the Multipli.fi protocol config'sstablecoinsarray(protocol id 5905), alongside the existing
"rwausdi". That config lives in theprivate
defillama-serverrepo, which is why this is filed here rather than as a PR— happy to help verify a fix against the live API once one's made.
Flagged on behalf of the Multipli team, who raised this in DefiLlama's Discord.