← All Tokens
HNT

Flash Loan Helium Network Token

HNTsynthetic route
Max Available
HNT
Fee (SDK)
Includes swap
Route
Synthetic
Status
Loading...

Flash Loan Calculator

Simulate a flash loan on HNT — see the exact fee breakdown before you code.

Enter an amount above to see the exact fee breakdown
📦

Quick Start Code

Flash loan 1.00K HNT with the VAEA SDK — copy and paste into your project.

typescript
import { VaeaFlash } from '@vaea/flash';

const flash = new VaeaFlash({
  apiUrl: 'https://api.vaea.fi',
  source: 'sdk'
});

const quote = await flash.getQuote('HNT', 1000);
console.log(`Fee: ${quote.fee_breakdown.total_fee_pct}%`);

const sig = await flash.execute({
  token: 'HNT',
  amount: 1000,
  onFunds: async (ixs) => {
    ixs.push(myArbitrageIx);
    return ixs;
  }
});
Install →npm i @vaea/flash
How this flash loan works
1
begin_flash()
Register HNT loan on-chain
2
Borrow SOL → swap to HNT
Via Sanctum/Jupiter
3
Your logic executes
Arb, liquidation, swap...
4
end_flash()
Repay + 0.03% fee