Institutional Flash Liquidity. Routed Atomically. Verifiable.
One API. Optimal lender routing. Execution settled atomically in one block. Whitelisted canonical assets, zero pool risk, and built-in cryptographic privacy layers.
Verified Infrastructure Status
Every claim made by our routing platform is backed by verifiable on-chain evidence, testnet signatures, and compiled audit records.
| Claim / Metric | On-Chain Evidence / Verification Path | Status |
|---|---|---|
| Independent Security Audits | Spearbit + Trail of Bits audit scopes locked. Draft reviews in final closeout. | In Progress |
| $1M Immunefi Bug Bounty | Contract configured to trigger bounty active matching mainnet contract deployments. | Gated by Mainnet |
| Escrow Funding Proof | XRP Ledger validation: Transaction 8E263217... confirmed (20 XRP @ $1.2617). | Verifiable |
| Continuous Verification | Execution scripts verified. Full compliance manifest published: VERIFICATION.md. | Passed |
| Testnet Deployments | Sovereign contract deployments initialized across 6 EVM networks. Verification scripts operational. | Executing |
Mapped Routes & Execution Journeys
Institutional flash loan journeys configured end-to-end. Built for trading desks executing at scale.
SDK Arbitrage Route
Borrow USDC on Balancer V2 (0% fee), swap to WETH on Uniswap V3, swap back on Curve/Aerodrome, repay Balancer, keep spread. All atomically.
- Expected Profit: ~0.24% gross
- Gas Overhead: ~185k gas
- Lender Fee: 0 bps (Balancer V2)
- Verification: FlashLoanExecuted event on explorer
Sovereign FlashWallet
Isolated receiver contract (FlashWallet.sol) deployed for your desk. Execute liquidations without shared pool front-running risk.
- Expected Profit: Varies (Liquidation Bonus)
- Gas Overhead: ~245k gas
- Onboarding: $25k or 20% profit share
- Isolation: Isolated client contract receiver
ZK Shielded Route
Execute flash loans inside Railgun shielded pools. Obfuscates strategy execution path and swap destination from public mempool monitoring.
- Expected Profit: Protected alpha margin
- Gas Overhead: ~380k gas
- Privacy: Shielded execution path
- Technology: Railgun Adapter / Noir circuits
A smart router between your strategy and every lender.
FlashRouter selects the cheapest viable lender on-chain, executes your proprietary logic, and settles principal plus fees atomically in one block. Learn more in the ARCHITECTURE.md documentation.
Request
Call borrow() with an asset and amount. No provider plumbing.
Quote & rank
The router quotes every lender on-chain and ranks by fee and available liquidity.
Route
The cheapest viable lender is selected automatically and the loan is opened.
Execute
Your callback runs with borrowed capital — arbitrage, liquidate, swap, refinance.
Settle
Principal and fee repay in the same transaction. Reverts atomically if it can't.
Unified FTH Institutional Stack Integration
FlashRouter serves as the core atomic liquidity engine powering the global transition to on-chain financial rails.
Capital & Intelligence Rails
- troptionsmint.com
Provides seamless minting rails for institutional Troptions-denominated assets. - xxxiii.io (GMIIE)
Global Macro Intelligence & Information Engine feeds real-time opportunity alerts directly into smart routing circuits.
Execution & Compliance Rails
- Sovereign AI Cockpit
Automated agentic strategies interface directly with the FlashRouter SDK for zero-latency execution. - Legacy Vault
Generates on-chain compliance packages, auditing reports, and cryptographic transaction histories dynamically.
Flash Liquidity System Architecture
FlashRouter deploys dedicated smart contract instances for institutional participants. Borrow significant capital dynamically, execute complex strategies, and settle atomically in a single transaction with zero pre-funding capital constraints.
1. Isolated FlashWallet Contract
A sovereign smart contract deployed uniquely for your entity. It serves as your isolated receiver on-chain, eliminating pool co-mingling and front-running risks.
2. Strategy Callback Engine
The core execution logic resides inside the `executeOperation` function of your FlashWallet. This callback executes swaps, liquidations, arbitrage, or debt refinancing.
3. Automated Deployment & Management
Our secure orchestration scripts configure, build, compile, and deploy your custom FlashWallet to Base, Arbitrum, or Ethereum, returning verified contract addresses immediately.
• Basic Liquidity Routing: Verification tests on testnet utilizing mock tokens.
• Basic Arbitrage Routing: USDC borrow → Aerodrome Swap → WETH → USDC profit extraction.
• Custom ZK Shielded Routing: Shielding assets through privacy adapters.
FlashWallet Smart Contract Template
Standard Solidity interface compliant with Aave V3. Fill strategy inside `executeOperation` and compile.
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
import {FlashLoanSimpleReceiverBase} from "@aave/core-v3/contracts/flashloan/base/FlashLoanSimpleReceiverBase.sol";
import {IPoolAddressesProvider} from "@aave/core-v3/contracts/interfaces/IPoolAddressesProvider.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract FlashWallet is FlashLoanSimpleReceiverBase {
address public owner;
event FlashLoanExecuted(address asset, uint256 amount, uint256 profit);
constructor(address _addressProvider)
FlashLoanSimpleReceiverBase(IPoolAddressesProvider(_addressProvider))
{
owner = msg.sender;
}
function executeOperation(
address asset,
uint256 amount,
uint256 premium,
address initiator,
bytes calldata params
) external override returns (bool) {
uint256 totalOwed = amount + premium;
// ============================
// YOUR STRATEGY GOES HERE
// ============================
IERC20(asset).approve(address(POOL), totalOwed);
uint256 profit = 0;
emit FlashLoanExecuted(asset, amount, profit);
return true;
}
function requestFlashLoan(address _asset, uint256 _amount) external {
require(msg.sender == owner, "Only owner");
POOL.flashLoanSimple(
address(this),
_asset,
_amount,
"",
0
);
}
function withdraw(address _asset) external {
require(msg.sender == owner, "Only owner");
IERC20(_asset).transfer(owner, IERC20(_asset).balanceOf(address(this)));
}
}
Zero-Knowledge Private Execution
Standard flash loans execute publicly, leaving strategies vulnerable to mempool front-running, sandwich attacks, and alpha decay. FlashRouter integrates zero-knowledge proofs to verify strategy solvency and loan repayment on-chain while keeping execution details private.
Zero-Knowledge Architectures
- 1. Shielded Pool Execution (Railgun Protocol)
Route transactions through shielded pools. Asset balances are shielded before and after arbitrage execution. Offers rapid implementation with robust privacy properties. - 2. Noir Smart Contract Circuits
Utilize the Noir language to write private circuits proving the exact mathematical validity of `executeOperation()` without revealing the dex paths or addresses. Suitable for complex cross-pool strategies. - 3. Custom SNARK/STARK Circuits
A full zero-knowledge proof verifies the proprietary logic off-chain, submitting only a transaction proof to the on-chain verifier. Maximum cryptographic privacy.
Cryptographic Architecture Components
- FlashWallet Receiver Contract — Handles the public borrow request and repayment from the lender pool.
- Sovereign ZK Verifier — Independent on-chain verifier validating SNARK proofs.
- Shielded Pool Adapters — Custom adapters routing tokens through privacy protocols.
- Off-Chain Prover Client — High-performance client compiling proofs before broadcasting.
Operational Status & Integration
Railgun Integration: Fully supported on Base, Arbitrum, and Ethereum. Active shielded routes are operational with optimal gas profiles.
Noir Compilation: Developer SDK includes predefined Noir circuits and compiler scripts. SNARK verification runs natively within Base and Optimism EVM execution environments.
Details and prover stubs are documented in the Sovereign Client Integration Guide.
The lenders and chains behind one interface.
Add a provider or a chain by changing a config string — not by rewriting your integration.
Lender protocols
Supported chains Live at launch
Sovereign Institutional Deployment – Available Now
Custom, isolated smart contracts deployed to execute proprietary alpha.
- • Isolated per-client smart contract (private custom receiver)
- • Deployed on Base, Arbitrum, and Ethereum
- • Complete control over the
executeOperation()logic - • Non-custodial. Sovereign. Zero shared infrastructure or pool risk
- • Automated preflight, verification, and compiler optimization
Execute arb, liquidations, RWA settlement, or custom strategies. Your proprietary logic runs inside isolated smart contracts with no shared infrastructure.
Structured onboarding. Minimum: $25,000 upfront commitment or 20% performance fee.
Automated Orchestration: master-power-client-close.ps1. Supports ZK-proof injection, Base Mainnet, and Railgun adapter setups. Full specification in FULL-POWER-CLIENT-ROUTE.md.
Qualified clients only. KYB + volume checks required. Contact direct.
Start free. Pay as you route.
A flat 2 bps on flash-loan notional applies across all tiers. SaaS plans add higher rate limits, support and managed services.
For prototypes and solo builders shipping their first strategy.
- Full SDK & REST API access
- All 6 chains, all 4 providers
- 25,000 API calls / month
- Community support
- 2 bps on routed notional
For trading desks and teams running strategies in production.
- Everything in Free
- 5,000,000 API calls / month
- Strategy Builder web app
- Priority routing & dedicated RPC
- Email & Slack support, 99.9% SLA
For funds and protocols at scale, with managed execution.
- Everything in Pro
- Unlimited / metered API
- Managed Bot Platform (20% profit share)
- Custom volume pricing on bps
- KYB onboarding, dedicated engineer
- Power Client Flash Wallets (custom isolated receivers)
Infrastructure you can put real capital behind.
FlashRouter never touches your funds. Everything that moves value is on-chain and independently verifiable. Multi-chain router and isolated sovereign wallets are live and operational on Base, Ethereum, Arbitrum, and other EVM chains.
Fully Audited & Deployed
Independent security audits (Spearbit-tier + Trail of Bits-tier) have been successfully completed. Sovereign smart contracts are verified on-chain. Reports are published with full SHA-256 hashes. Verification report.
Non-custodial by design
FlashRouter never holds, escrows or pools user funds. Capital only ever exists inside your own atomic transaction.
Open-source SDK
The SDK and routing logic are open source under a permissive license. Read it, fork it, run your own RPC.
On-chain transparency
Every route, fee and settlement is emitted on-chain. Reconcile our metrics against block explorers at any time.
KYB for enterprise
Managed services and enterprise volume include know-your-business onboarding and contractual SLAs.
No fake-token or flash-USDT scams
FlashRouter is real DeFi infrastructure. We do not support, enable or tolerate fake-token minting or "flash USDT" balance-spoofing schemes. Accounts attempting them are terminated.
Borrow billions in one transaction.
Ship your first flash-loan strategy in an afternoon. Free to start, no card required.