Your customer chooses to earn.
Your product introduces the opportunity, explains the terms and guides the deposit. You shape the interface and the customer relationship.

Connect your product to stablecoin lending. Deposits, positions and withdrawals, built around one shared foundation.
Your interface guides the customer. The vault records ownership and connects the underlying lending markets.
Your product introduces the opportunity, explains the terms and guides the deposit. You shape the interface and the customer relationship.
Stablecoins enter the vault, and shares are issued to the customer’s wallet. Those shares represent their claim on the underlying assets.
Provider adapters connect the vault to lending markets. Rebalancing moves the underlying assets while the customer’s share position stays in place.
Bring the position into your interface. Read the vault through a standard contract interface, and keep transaction signing in your existing wallet flow.
Vault shares identify what the customer holds. Read the balance directly and present it alongside the rest of their account.
// Customer-held vault shares
const shares =
await vault.balanceOf(
wallet
);Your app reads the position. The customer holds the shares.
Convert the share balance into its underlying asset value. The number your customer sees reflects the assets represented by their position.
// Assets behind the position
const assets =
await vault.convertToAssets(
shares
);One account view, even when the underlying allocation changes.
Preview the asset value of a redemption, check the vault’s current liquidity and controls, then guide the customer through signing and confirmation.
// Preview the asset return
const assets =
await vault.previewRedeem(
shares
);The preview informs the customer; the signed transaction executes the redemption.
Customer onboarding, the Earn interface, eligibility, disclosures and support stay part of your product design.
Vaults, lending adapters and allocation mechanics share one foundation. Your team integrates the position, signing flow and reporting into its own stack.
Map the vault, signing flow and position data with our team.