├── .github ├── .gitkeep └── workflows │ └── validate_urls.yml ├── MEV_and_trading ├── README.md ├── backtesting │ └── README.md ├── bridges │ └── README.md ├── day-trading │ ├── README.md │ ├── investing_strategies │ │ └── README.md │ ├── leverage │ │ └── README.md │ ├── orders_types │ │ └── README.md │ ├── technical_analysis │ │ ├── README.md │ │ └── candlestick_charts.md │ └── trading_types │ │ └── README.md ├── derivatives │ ├── README.md │ ├── bsm.md │ ├── futures.md │ ├── options.md │ └── perpetuals │ │ ├── README.md │ │ ├── perpetual_swap.md │ │ ├── synthetix.md │ │ └── vela.md ├── high_frequency │ └── README.md ├── lending │ ├── README.md │ ├── collateralized.md │ ├── composable.md │ ├── protocols │ │ ├── README.md │ │ └── silo.md │ └── uncollateralized.md ├── liquidity │ ├── README.md │ ├── balancer.md │ └── tokemak.md ├── macroeconomy │ ├── README.md │ └── concepts.md ├── market_makers │ ├── README.md │ └── professional_entities │ │ └── README.md ├── market_manipulation │ └── README.md ├── protocols │ ├── 0x_protocol │ │ ├── README.md │ │ └── RFQ.md │ ├── README.md │ ├── dydx.md │ ├── gns.md │ ├── inverse.md │ ├── primitive.md │ ├── uniswap │ │ ├── README.md │ │ ├── uniswap-v2 │ │ │ └── README.md │ │ └── uniswap-v3 │ │ │ ├── README.md │ │ │ ├── just-in-time.md │ │ │ └── tricks.md │ └── yearn.md ├── stablecoins │ ├── DAI.md │ ├── DINERO.md │ ├── GHO.md │ ├── LUSD.md │ ├── RAI.md │ ├── README.md │ ├── USDD.md │ ├── UST.md │ ├── curve │ │ ├── README.md │ │ ├── crvusd.md │ │ ├── curve_wars.md │ │ └── historical.md │ └── stablecoins_101.md ├── staking │ ├── Frax.md │ ├── Lido.md │ ├── README.md │ ├── RocketPool.md │ ├── Stader.md │ ├── Stakewise.md │ ├── dvt │ │ └── README.md │ ├── lsds_and_mev.md │ └── mevETH.md ├── strategy_metrics │ └── README.md ├── vaults │ ├── ERC-4626.md │ ├── README.md │ └── openeden.md └── whales │ └── README.md ├── MEV_by_chains ├── MEV_on_Arbitrum │ ├── README.md │ ├── fair_ordering_sequencing │ │ └── README.md │ └── gmx │ │ ├── README.md │ │ ├── glp_vaults.md │ │ ├── oracle_abuse.md │ │ └── tokenomics.md ├── MEV_on_Avalanche │ └── README.md ├── MEV_on_BSC │ └── README.md ├── MEV_on_Cosmos │ └── README.md ├── MEV_on_Ethereum │ ├── README.md │ ├── account_abstraction │ │ └── README.md │ ├── block_builders.md │ ├── blockspace.md │ ├── eip-1559.md │ ├── ethereum_2.0 │ │ └── shapella.md │ ├── evm-knowledge.md │ ├── geth_and_k8s │ │ ├── README.md │ │ ├── deployment_gcp_docker.md │ │ ├── deployment_gcp_k8s.md │ │ ├── entrypoint.sh │ │ ├── genesis.dockerfile │ │ ├── genesis.json │ │ ├── genesis_block_explanation.md │ │ ├── geth_creation_commands.md │ │ ├── k8s │ │ │ ├── certificate.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── manifest.yaml │ │ │ └── service.yaml │ │ ├── running-a-node-geth.md │ │ └── scripts │ │ │ ├── create_docker.sh │ │ │ ├── entrypoint.sh │ │ │ ├── genesis.dockerfile │ │ │ └── genesis.json │ ├── glossary.md │ ├── pos_consensus_mechanisms.md │ ├── relays.md │ ├── running-a-node-advanced.md │ ├── running-a-node.md │ ├── searcher-builder-validator-sequencer │ │ └── README.md │ └── the_mempool.md ├── MEV_on_Optimism │ ├── README.md │ └── optimistic_rollups.md ├── MEV_on_Polygon │ └── README.md ├── MEV_on_Solana │ └── README.md └── README.md ├── MEV_projects ├── README.md ├── cow_protocol │ └── README.md ├── dflow │ └── README.md ├── eden │ └── README.md ├── flashbots │ ├── README.md │ ├── mev-boost │ │ └── README.md │ ├── scripts │ │ ├── README.md │ │ └── flashbots-bundle.py │ ├── suave │ │ └── README.md │ └── tools │ │ └── README.md ├── history.md ├── jito │ └── README.md ├── manifold │ └── README.md ├── shutter │ └── README.md └── skip │ └── README.md ├── MEV_searchers ├── README.md ├── bots │ ├── arbers.md │ ├── backrunners.md │ ├── cow-solvers.md │ ├── frontrunners.md │ ├── liquidators.md │ ├── longtailors.md │ ├── sandwichors.md │ ├── snipers.md │ ├── stat-arbers.md │ └── tradors.md ├── code_resources │ ├── README.md │ ├── gas_optimization │ │ └── README.md │ └── proxies │ │ └── README.md ├── cross_domain_mev │ └── README.md ├── data_and_analytics │ └── README.md ├── disassemblers │ └── README.md ├── latency │ └── README.md ├── mempool_monitoring │ └── README.md ├── order_flows │ ├── 101.md │ ├── README.md │ ├── exclusive_order_flows.md │ └── projects.md ├── profits │ └── 2022_profits.md ├── pvp_war │ ├── README.md │ └── malicious_tokens.md └── tx_and_signature_explorers │ └── README.md ├── MEV_strategies ├── README.md ├── atomic_arb │ ├── README.md │ ├── algorithms │ │ ├── README.md │ │ ├── bellmann_ford │ │ │ └── README.md │ │ └── ford_fulkerson │ │ │ └── README.md │ ├── mev_bots_wild │ │ └── README.md │ └── patterns │ │ ├── README.md │ │ ├── spatial.md │ │ ├── taxed.md │ │ └── triangle.md ├── backrunning │ └── README.md ├── flashloans │ ├── README.md │ └── smart_contracts │ │ └── dydx_flashloan.sol ├── frontrunning │ └── README.md ├── liquidations │ ├── README.md │ ├── aave.md │ ├── compound.md │ ├── euler.md │ └── liquity.md ├── longtails │ └── README.md ├── oracles │ ├── README.md │ ├── chainlink.md │ ├── twamm.md │ └── twap.md ├── sandwich │ ├── README.md │ └── interesting_examples.md ├── sniping │ ├── README.md │ └── tricks.md └── stat_arbs │ ├── README.md │ ├── aggregators │ ├── 1inch.md │ └── README.md │ ├── convex_optimization │ └── README.md │ └── dex-cex-arb │ └── README.md └── README.md /.github/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/validate_urls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/.github/workflows/validate_urls.yml -------------------------------------------------------------------------------- /MEV_and_trading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/README.md -------------------------------------------------------------------------------- /MEV_and_trading/backtesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/backtesting/README.md -------------------------------------------------------------------------------- /MEV_and_trading/bridges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/bridges/README.md -------------------------------------------------------------------------------- /MEV_and_trading/day-trading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/day-trading/README.md -------------------------------------------------------------------------------- /MEV_and_trading/day-trading/investing_strategies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/day-trading/investing_strategies/README.md -------------------------------------------------------------------------------- /MEV_and_trading/day-trading/leverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/day-trading/leverage/README.md -------------------------------------------------------------------------------- /MEV_and_trading/day-trading/orders_types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/day-trading/orders_types/README.md -------------------------------------------------------------------------------- /MEV_and_trading/day-trading/technical_analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/day-trading/technical_analysis/README.md -------------------------------------------------------------------------------- /MEV_and_trading/day-trading/technical_analysis/candlestick_charts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/day-trading/technical_analysis/candlestick_charts.md -------------------------------------------------------------------------------- /MEV_and_trading/day-trading/trading_types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/day-trading/trading_types/README.md -------------------------------------------------------------------------------- /MEV_and_trading/derivatives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/derivatives/README.md -------------------------------------------------------------------------------- /MEV_and_trading/derivatives/bsm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/derivatives/bsm.md -------------------------------------------------------------------------------- /MEV_and_trading/derivatives/futures.md: -------------------------------------------------------------------------------- 1 | ## futures 2 | 3 |
4 | -------------------------------------------------------------------------------- /MEV_and_trading/derivatives/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/derivatives/options.md -------------------------------------------------------------------------------- /MEV_and_trading/derivatives/perpetuals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/derivatives/perpetuals/README.md -------------------------------------------------------------------------------- /MEV_and_trading/derivatives/perpetuals/perpetual_swap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/derivatives/perpetuals/perpetual_swap.md -------------------------------------------------------------------------------- /MEV_and_trading/derivatives/perpetuals/synthetix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/derivatives/perpetuals/synthetix.md -------------------------------------------------------------------------------- /MEV_and_trading/derivatives/perpetuals/vela.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/derivatives/perpetuals/vela.md -------------------------------------------------------------------------------- /MEV_and_trading/high_frequency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/high_frequency/README.md -------------------------------------------------------------------------------- /MEV_and_trading/lending/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/lending/README.md -------------------------------------------------------------------------------- /MEV_and_trading/lending/collateralized.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/lending/collateralized.md -------------------------------------------------------------------------------- /MEV_and_trading/lending/composable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/lending/composable.md -------------------------------------------------------------------------------- /MEV_and_trading/lending/protocols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/lending/protocols/README.md -------------------------------------------------------------------------------- /MEV_and_trading/lending/protocols/silo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/lending/protocols/silo.md -------------------------------------------------------------------------------- /MEV_and_trading/lending/uncollateralized.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/lending/uncollateralized.md -------------------------------------------------------------------------------- /MEV_and_trading/liquidity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/liquidity/README.md -------------------------------------------------------------------------------- /MEV_and_trading/liquidity/balancer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/liquidity/balancer.md -------------------------------------------------------------------------------- /MEV_and_trading/liquidity/tokemak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/liquidity/tokemak.md -------------------------------------------------------------------------------- /MEV_and_trading/macroeconomy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/macroeconomy/README.md -------------------------------------------------------------------------------- /MEV_and_trading/macroeconomy/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/macroeconomy/concepts.md -------------------------------------------------------------------------------- /MEV_and_trading/market_makers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/market_makers/README.md -------------------------------------------------------------------------------- /MEV_and_trading/market_makers/professional_entities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/market_makers/professional_entities/README.md -------------------------------------------------------------------------------- /MEV_and_trading/market_manipulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/market_manipulation/README.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/0x_protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/0x_protocol/README.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/0x_protocol/RFQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/0x_protocol/RFQ.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/README.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/dydx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/dydx.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/gns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/gns.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/inverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/inverse.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/primitive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/primitive.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/uniswap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/uniswap/README.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/uniswap/uniswap-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/uniswap/uniswap-v2/README.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/uniswap/uniswap-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/uniswap/uniswap-v3/README.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/uniswap/uniswap-v3/just-in-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/uniswap/uniswap-v3/just-in-time.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/uniswap/uniswap-v3/tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/uniswap/uniswap-v3/tricks.md -------------------------------------------------------------------------------- /MEV_and_trading/protocols/yearn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/protocols/yearn.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/DAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/DAI.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/DINERO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/DINERO.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/GHO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/GHO.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/LUSD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/LUSD.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/RAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/RAI.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/README.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/USDD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/USDD.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/UST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/UST.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/curve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/curve/README.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/curve/crvusd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/curve/crvusd.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/curve/curve_wars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/curve/curve_wars.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/curve/historical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/curve/historical.md -------------------------------------------------------------------------------- /MEV_and_trading/stablecoins/stablecoins_101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/stablecoins/stablecoins_101.md -------------------------------------------------------------------------------- /MEV_and_trading/staking/Frax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/staking/Frax.md -------------------------------------------------------------------------------- /MEV_and_trading/staking/Lido.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/staking/Lido.md -------------------------------------------------------------------------------- /MEV_and_trading/staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/staking/README.md -------------------------------------------------------------------------------- /MEV_and_trading/staking/RocketPool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/staking/RocketPool.md -------------------------------------------------------------------------------- /MEV_and_trading/staking/Stader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/staking/Stader.md -------------------------------------------------------------------------------- /MEV_and_trading/staking/Stakewise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/staking/Stakewise.md -------------------------------------------------------------------------------- /MEV_and_trading/staking/dvt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/staking/dvt/README.md -------------------------------------------------------------------------------- /MEV_and_trading/staking/lsds_and_mev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/staking/lsds_and_mev.md -------------------------------------------------------------------------------- /MEV_and_trading/staking/mevETH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/staking/mevETH.md -------------------------------------------------------------------------------- /MEV_and_trading/strategy_metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/strategy_metrics/README.md -------------------------------------------------------------------------------- /MEV_and_trading/vaults/ERC-4626.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/vaults/ERC-4626.md -------------------------------------------------------------------------------- /MEV_and_trading/vaults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/vaults/README.md -------------------------------------------------------------------------------- /MEV_and_trading/vaults/openeden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/vaults/openeden.md -------------------------------------------------------------------------------- /MEV_and_trading/whales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_and_trading/whales/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Arbitrum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Arbitrum/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Arbitrum/fair_ordering_sequencing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Arbitrum/fair_ordering_sequencing/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Arbitrum/gmx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Arbitrum/gmx/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Arbitrum/gmx/glp_vaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Arbitrum/gmx/glp_vaults.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Arbitrum/gmx/oracle_abuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Arbitrum/gmx/oracle_abuse.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Arbitrum/gmx/tokenomics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Arbitrum/gmx/tokenomics.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Avalanche/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Avalanche/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_BSC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_BSC/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Cosmos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Cosmos/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/account_abstraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/account_abstraction/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/block_builders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/block_builders.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/blockspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/blockspace.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/eip-1559.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/eip-1559.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/ethereum_2.0/shapella.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/ethereum_2.0/shapella.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/evm-knowledge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/evm-knowledge.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/deployment_gcp_docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/deployment_gcp_docker.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/deployment_gcp_k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/deployment_gcp_k8s.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/entrypoint.sh -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/genesis.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/genesis.dockerfile -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/genesis.json -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/genesis_block_explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/genesis_block_explanation.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/geth_creation_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/geth_creation_commands.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/k8s/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/k8s/certificate.yaml -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/k8s/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/k8s/deployment.yaml -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/k8s/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/k8s/ingress.yaml -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/k8s/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/k8s/manifest.yaml -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/k8s/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/k8s/service.yaml -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/running-a-node-geth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/running-a-node-geth.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/scripts/create_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/scripts/create_docker.sh -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/scripts/entrypoint.sh -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/scripts/genesis.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/scripts/genesis.dockerfile -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/scripts/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/geth_and_k8s/scripts/genesis.json -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/glossary.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/pos_consensus_mechanisms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/pos_consensus_mechanisms.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/relays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/relays.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/running-a-node-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/running-a-node-advanced.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/running-a-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/running-a-node.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/searcher-builder-validator-sequencer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/searcher-builder-validator-sequencer/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Ethereum/the_mempool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Ethereum/the_mempool.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Optimism/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Optimism/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Optimism/optimistic_rollups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Optimism/optimistic_rollups.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Polygon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Polygon/README.md -------------------------------------------------------------------------------- /MEV_by_chains/MEV_on_Solana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/MEV_on_Solana/README.md -------------------------------------------------------------------------------- /MEV_by_chains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_by_chains/README.md -------------------------------------------------------------------------------- /MEV_projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/README.md -------------------------------------------------------------------------------- /MEV_projects/cow_protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/cow_protocol/README.md -------------------------------------------------------------------------------- /MEV_projects/dflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/dflow/README.md -------------------------------------------------------------------------------- /MEV_projects/eden/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/eden/README.md -------------------------------------------------------------------------------- /MEV_projects/flashbots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/flashbots/README.md -------------------------------------------------------------------------------- /MEV_projects/flashbots/mev-boost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/flashbots/mev-boost/README.md -------------------------------------------------------------------------------- /MEV_projects/flashbots/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/flashbots/scripts/README.md -------------------------------------------------------------------------------- /MEV_projects/flashbots/scripts/flashbots-bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/flashbots/scripts/flashbots-bundle.py -------------------------------------------------------------------------------- /MEV_projects/flashbots/suave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/flashbots/suave/README.md -------------------------------------------------------------------------------- /MEV_projects/flashbots/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/flashbots/tools/README.md -------------------------------------------------------------------------------- /MEV_projects/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/history.md -------------------------------------------------------------------------------- /MEV_projects/jito/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/jito/README.md -------------------------------------------------------------------------------- /MEV_projects/manifold/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/manifold/README.md -------------------------------------------------------------------------------- /MEV_projects/shutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/shutter/README.md -------------------------------------------------------------------------------- /MEV_projects/skip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_projects/skip/README.md -------------------------------------------------------------------------------- /MEV_searchers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/README.md -------------------------------------------------------------------------------- /MEV_searchers/bots/arbers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/bots/arbers.md -------------------------------------------------------------------------------- /MEV_searchers/bots/backrunners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/bots/backrunners.md -------------------------------------------------------------------------------- /MEV_searchers/bots/cow-solvers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/bots/cow-solvers.md -------------------------------------------------------------------------------- /MEV_searchers/bots/frontrunners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/bots/frontrunners.md -------------------------------------------------------------------------------- /MEV_searchers/bots/liquidators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/bots/liquidators.md -------------------------------------------------------------------------------- /MEV_searchers/bots/longtailors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/bots/longtailors.md -------------------------------------------------------------------------------- /MEV_searchers/bots/sandwichors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/bots/sandwichors.md -------------------------------------------------------------------------------- /MEV_searchers/bots/snipers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/bots/snipers.md -------------------------------------------------------------------------------- /MEV_searchers/bots/stat-arbers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/bots/stat-arbers.md -------------------------------------------------------------------------------- /MEV_searchers/bots/tradors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/bots/tradors.md -------------------------------------------------------------------------------- /MEV_searchers/code_resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/code_resources/README.md -------------------------------------------------------------------------------- /MEV_searchers/code_resources/gas_optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/code_resources/gas_optimization/README.md -------------------------------------------------------------------------------- /MEV_searchers/code_resources/proxies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/code_resources/proxies/README.md -------------------------------------------------------------------------------- /MEV_searchers/cross_domain_mev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/cross_domain_mev/README.md -------------------------------------------------------------------------------- /MEV_searchers/data_and_analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/data_and_analytics/README.md -------------------------------------------------------------------------------- /MEV_searchers/disassemblers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/disassemblers/README.md -------------------------------------------------------------------------------- /MEV_searchers/latency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/latency/README.md -------------------------------------------------------------------------------- /MEV_searchers/mempool_monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/mempool_monitoring/README.md -------------------------------------------------------------------------------- /MEV_searchers/order_flows/101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/order_flows/101.md -------------------------------------------------------------------------------- /MEV_searchers/order_flows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/order_flows/README.md -------------------------------------------------------------------------------- /MEV_searchers/order_flows/exclusive_order_flows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/order_flows/exclusive_order_flows.md -------------------------------------------------------------------------------- /MEV_searchers/order_flows/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/order_flows/projects.md -------------------------------------------------------------------------------- /MEV_searchers/profits/2022_profits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/profits/2022_profits.md -------------------------------------------------------------------------------- /MEV_searchers/pvp_war/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/pvp_war/README.md -------------------------------------------------------------------------------- /MEV_searchers/pvp_war/malicious_tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/pvp_war/malicious_tokens.md -------------------------------------------------------------------------------- /MEV_searchers/tx_and_signature_explorers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_searchers/tx_and_signature_explorers/README.md -------------------------------------------------------------------------------- /MEV_strategies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/README.md -------------------------------------------------------------------------------- /MEV_strategies/atomic_arb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/atomic_arb/README.md -------------------------------------------------------------------------------- /MEV_strategies/atomic_arb/algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/atomic_arb/algorithms/README.md -------------------------------------------------------------------------------- /MEV_strategies/atomic_arb/algorithms/bellmann_ford/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/atomic_arb/algorithms/bellmann_ford/README.md -------------------------------------------------------------------------------- /MEV_strategies/atomic_arb/algorithms/ford_fulkerson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/atomic_arb/algorithms/ford_fulkerson/README.md -------------------------------------------------------------------------------- /MEV_strategies/atomic_arb/mev_bots_wild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/atomic_arb/mev_bots_wild/README.md -------------------------------------------------------------------------------- /MEV_strategies/atomic_arb/patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/atomic_arb/patterns/README.md -------------------------------------------------------------------------------- /MEV_strategies/atomic_arb/patterns/spatial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/atomic_arb/patterns/spatial.md -------------------------------------------------------------------------------- /MEV_strategies/atomic_arb/patterns/taxed.md: -------------------------------------------------------------------------------- 1 | ## taxed tokens 2 | -------------------------------------------------------------------------------- /MEV_strategies/atomic_arb/patterns/triangle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/atomic_arb/patterns/triangle.md -------------------------------------------------------------------------------- /MEV_strategies/backrunning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/backrunning/README.md -------------------------------------------------------------------------------- /MEV_strategies/flashloans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/flashloans/README.md -------------------------------------------------------------------------------- /MEV_strategies/flashloans/smart_contracts/dydx_flashloan.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/flashloans/smart_contracts/dydx_flashloan.sol -------------------------------------------------------------------------------- /MEV_strategies/frontrunning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/frontrunning/README.md -------------------------------------------------------------------------------- /MEV_strategies/liquidations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/liquidations/README.md -------------------------------------------------------------------------------- /MEV_strategies/liquidations/aave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/liquidations/aave.md -------------------------------------------------------------------------------- /MEV_strategies/liquidations/compound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/liquidations/compound.md -------------------------------------------------------------------------------- /MEV_strategies/liquidations/euler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/liquidations/euler.md -------------------------------------------------------------------------------- /MEV_strategies/liquidations/liquity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/liquidations/liquity.md -------------------------------------------------------------------------------- /MEV_strategies/longtails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/longtails/README.md -------------------------------------------------------------------------------- /MEV_strategies/oracles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/oracles/README.md -------------------------------------------------------------------------------- /MEV_strategies/oracles/chainlink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/oracles/chainlink.md -------------------------------------------------------------------------------- /MEV_strategies/oracles/twamm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/oracles/twamm.md -------------------------------------------------------------------------------- /MEV_strategies/oracles/twap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/oracles/twap.md -------------------------------------------------------------------------------- /MEV_strategies/sandwich/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/sandwich/README.md -------------------------------------------------------------------------------- /MEV_strategies/sandwich/interesting_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/sandwich/interesting_examples.md -------------------------------------------------------------------------------- /MEV_strategies/sniping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/sniping/README.md -------------------------------------------------------------------------------- /MEV_strategies/sniping/tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/sniping/tricks.md -------------------------------------------------------------------------------- /MEV_strategies/stat_arbs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/stat_arbs/README.md -------------------------------------------------------------------------------- /MEV_strategies/stat_arbs/aggregators/1inch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/stat_arbs/aggregators/1inch.md -------------------------------------------------------------------------------- /MEV_strategies/stat_arbs/aggregators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/stat_arbs/aggregators/README.md -------------------------------------------------------------------------------- /MEV_strategies/stat_arbs/convex_optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/stat_arbs/convex_optimization/README.md -------------------------------------------------------------------------------- /MEV_strategies/stat_arbs/dex-cex-arb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/MEV_strategies/stat_arbs/dex-cex-arb/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solidquant/mev-toolkit/HEAD/README.md --------------------------------------------------------------------------------