Smart contract router that captures MEV-Share rebates and redistributes them to users proportionally. Integrates with any DEX router to provide automatic MEV rebating on swaps.
Category: contracts
Files: 12
Chains: Ethereum, Arbitrum, Base
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /// @title MEV Rebate Router /// @notice Router that captures and redistributes MEV rebates to users. contract MevRebateRouter { address public immutable owner; uint256 public constant VERSION = 1; event Initialized(address indexed deployer); constructor() { owner = msg.sender; emit Initialized(msg.sender); } // ... full implementation in purchased package }