


Plug-and-play SDKs that let users grow and protect stablecoin savings — while you earn TVL and revenue.
Give your users reasons to stay engaged with automated yield strategies.
Safe, automated ways to grow balances - without users leaving your app.
Reduce churn in uncertain economies with capital-preserving vaults.
Capture revenue.
Attract new users and convert them into active users.
Stablecoins are the #1 held asset in emerging markets - we help you attract them.
Unlock new TVL.
Increase distribution of your DeFi protocol.
Real-world examples of yield integration in action.
"Our users don't care about blockchain — they care about saving and sending money safely. DeFindex vaults fit that promise: tested, reliable components that help them grow stablecoin savings inside the Beans wallet"Wouter, CEO & Founder, Beans.


Initialize SDK, generate deposit transaction, and send it to the network.
import {
DefindexSDK,
SupportedNetworks,
DepositToVaultParams
} from '@defindex/sdk';
// Initialize the DefindexSDK
const sdk = new DefindexSDK({
apiKey: 'sk_your_api_key_here',
baseUrl: 'https://api.defindex.io'
});
const vaultAddress = 'CAEJL2XKGLSWCPKSVVRYAWLQKE4DS24YCZX53CLUMWGOVEOERSAZH5UM';
const userAddress = 'GUSER_ADDRESS...';
async function performDepositAndSendTransaction() {
try {
// 1. Generate a Deposit Transaction
const depositData: DepositToVaultParams = {
amounts: [1000000], // Amount in smallest unit
caller: userAddress,
invest: true, // Auto-invest after deposit
slippageBps: 100 // 1% slippage tolerance
};
const depositResponse = await sdk.depositToVault(
vaultAddress,
depositData,
SupportedNetworks.TESTNET
);
// 2. Sign the transaction (with user's wallet)
const signedXDR = await yourWallet.sign(depositResponse.xdr);
// 3. Send the transaction
const result = await sdk.sendTransaction(
signedXDR,
SupportedNetworks.TESTNET,
false
);
console.log('Transaction hash:', result.hash);
console.log('Status:', result.status);
} catch (error) {
console.error('Deposit failed:', error);
}
}A team of DeFi builders focused on making stablecoin yield accessible, automated, and safe. We're committed to transparency, security, and helping developers build the future of decentralized finance.
Learn more about Palta LabsFind answers to common questions about integrating DeFindex