Analysis updated 2026-05-18
Automatically screen newly created Solana tokens for rug-pull risk before any money is committed.
Execute trades programmatically through Jupiter the moment a token passes all four security checks.
Study a working example of a four-gate risk filter for on-chain token safety.
| jaiswalraj03014/auditswap | 0xradioac7iv/tempfs | abboskhonov/hermium | |
|---|---|---|---|
| Stars | 0 | 0 | 0 |
| Language | TypeScript | TypeScript | TypeScript |
| Setup difficulty | moderate | moderate | moderate |
| Complexity | 4/5 | 3/5 | 4/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires a Birdeye API key, a funded Solana wallet, and a Solana RPC endpoint.
AuditSwap is an automated trading bot for the Solana blockchain that tries to solve a specific problem faced by people trading new tokens: acting fast enough to catch early opportunities while also verifying that a token is not a scam. On Solana, thousands of new tokens are created every day, and many are designed to steal funds, a practice known as a "rug pull." Manual checks take too long, blindly buying is risky. AuditSwap aims to do both simultaneously at machine speed. The system works by continuously watching a live feed of newly created Solana tokens via the Birdeye data API. When a new token appears, the engine runs it through a four-gate security check before any money moves. The gates check whether the token's creator still has the power to print more tokens (a red flag), whether simulations suggest the token is a "honeypot" (a contract designed so you can buy but not sell), whether a small number of wallets hold too much of the supply (a concentration that enables coordinated dumps), and whether there is enough liquidity in the trading pool. If the token fails any single gate, it is rejected and logged. If it passes all four, the engine routes a trade through Jupiter, a decentralized exchange aggregator on Solana, and executes the swap automatically. The project is written in TypeScript and requires a Birdeye API key, a Solana wallet with funds, and a Solana RPC endpoint to connect to the network. It was built as a hackathon submission.
An automated Solana trading bot that screens newly launched tokens for scam signals and executes buys automatically on the ones that pass.
Mainly TypeScript. The stack also includes TypeScript, Node.js, Solana.
Use freely for any purpose, including commercial use, as long as you keep the copyright notice.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.