Documentation
Docs30. DeFi on Kortana

30. DeFi on Kortana

Kortana provides an institutional-grade foundation for decentralized finance, combining high-speed deterministic finality with advanced exploit mitigation primitives.

30.1 AMM / DEX Compatibility (Uniswap V2 Verified)

Decentralized exchanges and Automated Market Makers (AMMs) deployed on Kortana benefit from complete Ethereum compatibility. The canonical Uniswap V2 protocol—including UniswapV2Factory, UniswapV2Pair, and UniswapV2Router02—has been extensively tested and verified on the KEVM.

Traders execute constant-product token swaps (x * y = k), provide liquidity to automated pools, and execute flash swaps with complete behavioral fidelity. The Cancun hard fork's transient storage (TSTORE/TLOAD) allows AMM pairs to implement reentrancy locks with minimal gas overhead compared to legacy storage writes.

30.2 Bridged USDC (USDC.e)

Stablecoin liquidity on Kortana is anchored by Bridged USDC (USDC.e), implemented in contracts/BridgedUSDC.sol. The token contract conforms to standard ERC-20 specifications while implementing enterprise security features:

  • Role-Based Minting: Only authorized bridge gateways can mint or burn USDC.e.
  • EIP-2612 Permit: Gasless token approvals via signed cryptographic permits.
  • Blacklist Controls: Compliance mechanisms to freeze illicit addresses when legally mandated.

30.3 BridgeMinter — Rate-Limited Bridge Gate

To protect the Kortana DeFi ecosystem against cross-chain bridge hacks and catastrophic minting exploits, all token minting is gated by contracts/BridgeMinter.sol.

BridgeMinter implements a Token-Bucket Rate Limiter that enforces hourly and daily minting capacity ceilings on connected bridge gateways. If an external bridge experiences a key compromise or smart contract exploit, the attacker cannot drain the network's liquidity pools because BridgeMinter strictly caps the volume of tokens that can be minted within any rolling 60-minute window, giving governance time to pause the bridge gateway.