Analysis updated 2026-05-18
Automatically arbitrage the price gap between a token's bonding curve and its Uniswap V4 pool.
Run a dry-run monitor to watch price spreads before committing real funds.
Deploy and fund a smart contract that trades atomically with no risk of a losing trade.
| flipz3ro/robinarb | adindazu/fextractor | anonymousraid/osint-mapping-tool | |
|---|---|---|---|
| Stars | 15 | 15 | 15 |
| Language | JavaScript | JavaScript | JavaScript |
| Setup difficulty | hard | hard | easy |
| Complexity | 4/5 | 1/5 | 2/5 |
| Audience | developer | general | researcher |
Figures from each repo's GitHub metadata at analysis time.
Requires funding a deployed smart contract with real ETH and configuring an RPC endpoint before live trading.
RobinArb is an automated trading bot built for a specific blockchain network called Robinhood Chain. It looks for price differences between two places a token can be traded: a bonding curve on a site called RobinFun, and a matching pool on Uniswap V4, a decentralized token exchange. When those two prices drift apart enough to cover fees and gas costs, the bot buys on the cheaper side and sells on the more expensive side, pocketing the difference. The trade itself happens as a single blockchain transaction that either completes profitably or reverts entirely, so a user cannot lose money on a bad trade, only spend a small amount of gas if no profitable opening exists at that moment. To use it, a person first finds a token on RobinFun with enough bonding curve progress, creates a matching Uniswap V4 pool for that token at the same starting price, and triggers the pool once through a companion tool. From that point on, the bot detects the new pool automatically by watching onchain events, adds it to its own watchlist, and starts monitoring and trading it with no further manual setup. Setup involves installing the project with npm, copying an example environment file, and filling in a private key and an RPC endpoint. The bot works out of the box using a public RPC for the network, though a private one can be used for more reliable execution. Once configured, a person deploys a small smart contract that holds the trading funds, deposits some starting capital into it, and can withdraw part or all of it back out at any time. The bot can run continuously in the background using a process manager, and it sends live trade notifications through Telegram. Several command-line scripts control different pieces: one discovers eligible tokens, one runs in a dry-run mode that only watches prices without trading, and one runs live trading once real funds are involved. A handful of settings in the environment file control trade size limits and the minimum profit required before the bot will act. The project does not state a license in its README.
An automated arbitrage bot that trades price gaps between a token's bonding curve and its Uniswap V4 pool on Robinhood Chain.
Mainly JavaScript. The stack also includes JavaScript, Node.js, Solidity.
No license information is provided in the README.
Setup difficulty is rated hard, with roughly 1h+ to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.