Powered byTroptions
Non-Custodial Canonical Asset Whitelist Multisig Killswitch Audit-Bound OFAC Gated Every Tx Verifiable
TESTNET EXECUTING • AUDITS IN FINAL REVIEW

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.

Mainnet gated by audits + $1M bounty KYB open for enterprise
Base Network

          
Zero Unbacked Claims

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
Production Use Cases

Mapped Routes & Execution Journeys

Institutional flash loan journeys configured end-to-end. Built for trading desks executing at scale.

Arbitrage Desk

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
View SDK Code
Liquidation Bot

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
Explore FlashWallet
Privacy-Sensitive / Large Arb

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
Explore ZK Privacy
Routing Mechanics

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.

Your Strategy fr.borrow() Smart Router quote · rank · route best fee selected Aave V3 Balancer V2 Uniswap V3 Maker DSS Execute your callback Settle 1 tx
01

Request

Call borrow() with an asset and amount. No provider plumbing.

02

Quote & rank

The router quotes every lender on-chain and ranks by fee and available liquidity.

03

Route

The cheapest viable lender is selected automatically and the loan is opened.

04

Execute

Your callback runs with borrowed capital — arbitrage, liquidate, swap, refinance.

05

Settle

Principal and fee repay in the same transaction. Reverts atomically if it can't.

Ecosystem Power

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.
Sovereign Architecture

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.

Standard Implementation Paths:
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)));
    }
}

See full power client templates + BasicArb + LiquidationHunter + AerodromeArb in contracts/src/power-clients/.

Privacy Infrastructure

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.

Architecture Recommendation: Deploy utilizing the Railgun Shielded Pool Adapter for immediately active production privacy. For bespoke proprietary strategies, compile and register custom Noir verifiers using our CLI toolchain.

Details and prover stubs are documented in the Sovereign Client Integration Guide.
Coverage

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

Aave
V3 · simple flash
Balancer
V2 · vault, 0% fee
Uniswap
V3 · pool flash
MakerDAO
DSS-Flash · DAI

Supported chains Live at launch

Ethereum
Base
Arbitrum
Optimism
BNB Chain
Polygon
For institutional flow

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.

Onboard as Power Client

Qualified clients only. KYB + volume checks required. Contact direct.

Agentic AI Hub

Web3 Agentic MCP & Flash Route Buys

Instruct autonomous AI agents to scout and capture DeFi opportunities. Select a pre-built strategy template, customize parameters, and execute atomic trades using the Model Context Protocol (MCP) — backed by live, aggregated on-chain liquidity providers.

● Aave V3 Live ● Balancer V2 Live ● Uniswap V3 Swaps Live ● MakerDAO DSS Live
Edge RPC Node: eth.flashrouter.io (Active)
IPFS Gateway: ipfs.flashrouter.io (Active)

Select Execution Template

Cross-DEX Arbitrage

Sourced via Balancer V2 Vault (0% fee). Capture pool discrepancies across Aerodrome and Uniswap.

Aave V3 Liquidation Loop

Sourced via Aave V3 (0.05% fee). Repay unhealthy debt positions, retrieve collateral, and swap.

Collateral Debt Refinance

Sourced via MakerDAO DSS-Flash (0% fee). Migrate debt positions between Maker and Balancer.

Private ZK Frontrun Guard

Sourced via Uniswap V3 Flash Swaps. Shield routing paths utilizing Railgun relayers.

Sovereign Agent Telemetry
System idle. Select a template and click "Run Agent Simulator" to test the x402 payment, ZK proof generation, and SDK loan route.
TypeScript SDK implementation snippet

            
MCP Client tool schema JSON payload

            
Compliance & security

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.

Read Docs
Powered byTroptions