Contract Details
Tech Stack
TypeScript Python 3.10+ ethers.js v6 aiohttp
Chains
Ethereum Goerli
Description
TypeScript and Python SDK for interacting with Flashbots MEV-Share orderflow auctions. Submit hints, listen for matches, receive rebates, and build on top of the MEV-Share protocol with type-safe clients.
Features
- ✓ Full TypeScript + Python dual-language SDK
- ✓ MEV-Share hint submission with configurable privacy
- ✓ SSE event stream listener for match events
- ✓ Rebate tracking and claim helpers
- ✓ Type-safe request/response models
- ✓ Retry logic with exponential backoff
- ✓ Comprehensive test suite with mocked endpoints
- ✓ Example scripts for common workflows
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /// @title MEV-Share SDK /// @notice TypeScript/Python SDK for Flashbots MEV-Share orderflow auctions. contract MevShareSdk { 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 }