Overview
JUICED is a yield-bearing SPL token issued by Jupiter Lend. It represents a deposit of JupUSD (a reserve-backed stablecoin pegged to $1) into the Jupiter Lend Earn protocol. JUICED follows a vault share model: the JUICED/JupUSD exchange rate increases monotonically as yield accrues. The rate never decreases. Yield comes from two sources, both accrued into the token price:- Borrowing interest from JupUSD utilisation on Jupiter Lend.
- T-bill yield from the reserves backing minted JupUSD (primarily Ethena’s USDtb, backed by BlackRock’s BUIDL), distributed through Jupiter’s rewards distributor.
Token details
| Field | Value |
|---|---|
| Name | JUICED |
| Ticker | JUICED |
| Mint address | 7GxATsNMnaC88vdwd2t3mwrFuQwwGvmYPrUQ4D6FotXk |
| Standard | SPL Token |
| Decimals | 9 |
| Underlying asset | JupUSD (JuprjznTrTSp2UFa3ZBUFgwdAmtZCq4MQCwysN55USD) |
Pricing
JUICED is contract-priced. Its value is derived from the onchain exchange rate against JupUSD:Reading the exchange rate onchain
The Jupiter Lend program (Fluid) exposes two functions to read the current JUICED/JupUSD exchange rate:get_underlying_balance returns the underlying JupUSD balance for 1 share (1e9 lamports). This is the effective price of one JUICED token in JupUSD terms.
get_exchange_price returns the exchange price of 1 share directly.
Rate update frequency
The exchange rate is updated on every interaction with the protocol (deposit, withdraw, borrow, repay). A weekly cron job ensures the rate is updated even if no interactions occur for an extended period.Rate behaviour
The exchange rate is monotonically increasing. It does not decrease under normal protocol operation. This makes JUICED suitable as collateral with predictable value appreciation.An additional Jupiter Lend oracle is available for pricing via CPI. Contact the Jupiter team for integration details.
Deposit and withdraw
Protocols can deposit JupUSD to receive JUICED, or withdraw JupUSD by redeeming JUICED. Two integration paths are available: the Lend API (HTTP) and the Lend SDK (TypeScript).- Lend API
- Lend SDK
The Lend API is the simplest integration path. It returns a signed transaction that you submit to the network.Deposit JupUSD to receive JUICEDWithdraw JupUSD by redeeming JUICEDYou can also use the mint/redeem endpoints to operate in share amounts (JUICED units) instead of underlying amounts (JupUSD units):For the full API schema, see the Lend API Reference.
An API key is required. See API Key Setup for details.
Read functions
The SDK provides read functions to query token and position data:Withdrawal behaviour
There are no supply limits on the Earn protocol. Withdrawals use an Automated Debt Ceiling: the withdrawal allowance increases every block, creating a smoothing curve that prevents sudden large outflows. Under normal conditions, withdrawals are instant.Program IDs
| Program | Address |
|---|---|
| Jupiter Lend Earn | jup3YeL8QhtSx1e253b2FDvsMNC87fDrgQZivbrndc9 |
| Jupiter Lend Borrow | jupr81YtYssSyPt8jbnGuiWon5f6x9TcDEFxYe3Bdzi |
| Jupiter Lend Earn Rewards | jup7TthsMgcR9Y3L277b8Eo9uboVSmu1utkuXHNUKar |
| Jupiter Lend Liquidity | jupeiUmn818Jg1ekPURTpr4mFo29p46vygyykFJ3wZC |
| Jupiter Lend Borrow Oracle | jupnw4B6Eqs7ft6rxpzYLJZYSnrpRgPcr589n5Kv4oc |
Risk considerations for integrators
Protocols integrating JUICED as collateral should evaluate the following: Exchange rate is monotonically increasing. Under normal protocol operation, the JUICED/JupUSD rate only goes up. This simplifies collateral valuation but does not eliminate all risk vectors. JupUSD peg dependency. JUICED value ultimately depends on JupUSD maintaining its $1 peg. JupUSD is backed by Ethena’s USDtb and USDC, held in an Anchorage Porto Wallet. A depeg event on JupUSD would directly impact JUICED valuation. T-bill yield is variable and can be diluted. T-bill yield is generated by the reserves backing minted JupUSD but distributed across all JUICED supply. If JUICED supply exceeds minted JupUSD supply, per-unit T-bill yield decreases. This does not affect the exchange rate direction (still increasing) but affects the rate of appreciation. Withdrawal liquidity. Withdrawals are subject to the Automated Debt Ceiling smoothing mechanism. In extreme scenarios (mass withdrawals, high utilisation), redemption to JupUSD may be delayed. Smart contract risk. JUICED depends on the Jupiter Lend program (Fluid). JupUSD has been audited by Offside Labs, Guardian, and Pashov. Jupiter Lend contracts have been audited by Zenith and Offside. Third-party dependencies. The yield chain involves Ethena (USDtb issuer), BlackRock (BUIDL fund), and Anchorage (custody). Changes in operations or regulatory status of these parties could affect JUICED yield or JupUSD backing.Related
- JupUSD Mint & Redeem for minting and redeeming JupUSD
- Lend Earn API for the full Earn API reference
- Lend Earn SDK: Deposit for SDK deposit documentation
- Lend Earn SDK: Withdraw for SDK withdrawal documentation
- Lend Earn CPI for Cross-Program Invocation integration
