FAQ

FAQ

Frequently asked questions about VAEA Flash.

What is a flash loan?

A flash loan lets you borrow tokens without collateral, as long as you repay within the same transaction. If repayment fails, the entire transaction reverts — you never received the tokens. The only cost on failure is the base TX fee (~0.000005 SOL).

How is VAEA different from other flash loan providers?

FeatureVAEA FlashMarginfiKaminoJupiter Lend
Tokens120+ / Any SPL~143~51~39
SDK Fee2 bps (0.02%)0%~5 bps0%
State Size99 B~4,000 B~2,000 B~1,200 B
CPI Consumed01-211
Multi-Source
Smart Router
Turbo Mode
Jito Bundles✅ Built-in
Multi-Token Flash
Smart Retry

Can I use devnet?

Yes! VAEA Flash is deployed on Solana Devnet.

typescript
Program ID (devnet): HoYiwkNB7a3gmZXEkTqLkborNDc976vKEUAzBm8YpK5E
Program ID (mainnet): Coming April 2026

// Connect to devnet:
const flash = new VaeaFlash({
  connection: new Connection('https://api.devnet.solana.com'),
  wallet: myDevnetKeypair,
  source: 'sdk',
});

// Get devnet SOL: solana airdrop 2 --url devnet
⚠️ Warning
Jito bundles are mainnet only. You can test all other features on devnet.

How much does it cost?

Route TypeVAEA Fee (SDK)Swap CostTotal
Direct (SOL, USDC…)0.02%0%0.02%
Synthetic LST (INF, laineSOL…)0.02%~0.03%~0.05%
Synthetic Mid-cap (TRUMP, PENGU…)0.02%~0.08%~0.10%

Which SDK should I use?

LanguagePackageInstall
TypeScript@vaea/flashnpm install @vaea/flash
Rustvaea-flash-sdkcargo add vaea-flash-sdk
Pythonvaea-flashpip install vaea-flash

All three SDKs have identical feature parity — same methods, same options, same behavior. Choose based on your stack.

ℹ️ Note
Zero data retention. VAEA has no database and stores no user data. All state is read from the Solana blockchain.