بنقرة واحدة
execution-web3
Web3 DEX execution layer — MEV protection, gas optimization, on-chain swaps
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Web3 DEX execution layer — MEV protection, gas optimization, on-chain swaps
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
S+ Grade Universal Trading Skill Pack for AI Agents. Trinity Architecture: Inference → Signal → Execution → Self-Upgrade. S+ Additions: Vectorized Backtest Engine, Web3 DEX Executor, LLM Agent Tool Adapter, CI/CD, 57 tests, >90% core coverage.
Adversarial intelligence — behavioral detection, whale tracking, sentiment analysis
Technical signal generators — OBI, Funding Arbitrage, Kelly Criterion
استنادا إلى تصنيف SOC المهني
| name | execution_web3 |
| version | 2.0.0 |
| description | Web3 DEX execution layer — MEV protection, gas optimization, on-chain swaps |
| author | VelonLabs |
| skills | [{"name":"web3_dex_executor","class":"Web3DEXExecutor","module":"skills.execution.web3.dex_executor","description":"Async on-chain DEX execution with MEV protection","triggers":["swap","dex","web3","execution"]},{"name":"mev_protection","class":"MEVProtection","module":"skills.execution.web3.mev_protection","description":"MEV-protected RPC endpoint selector","triggers":["mev","rpc","protection"]}] |
| dependencies | ["web3>=7.0","eth-account>=0.10"] |
Unified execution seam for DEX connectivity. Implements BaseConnector.
from skills.execution.web3 import Web3DEXExecutor
executor = Web3DEXExecutor(
rpc_url="https://eth.llamarpc.com",
mev_protection="flashbots",
)
# Unified connector interface
report = await executor.place_order(order)
pos = await executor.fetch_position("ETH/USDT")
# Agent dispatch
result = await executor.run({
"action": "swap",
"token_in": "0x...",
"token_out": "0x...",
"amount_in": "1.5",
})
Select MEV-protected RPC endpoints (Flashbots, MEV Blocker, Eden).