Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wizasol/solana-trading-bot-pad

solana trading bot pad : bundle of solana trading bot which consists of sniping bot , volume bot , copytrading bot and so on
https://github.com/wizasol/solana-trading-bot-pad

bot sniping sniping-bot solana trading tradingbot volume volume-bot web3

Last synced: about 1 month ago
JSON representation

solana trading bot pad : bundle of solana trading bot which consists of sniping bot , volume bot , copytrading bot and so on

Awesome Lists containing this project

README

        

# Bot-Pad v_1

This is the bundle project of Solana Trading Bots running on several Solana Dex Platform such as Pumpfun and Raydium.
This Bot consists of various Trading Bot like Sniping Bot and Volume Bot , Copytrading Bot ...

In this bot , I focus on two things:

- To Prevent Scamming : I know my people feel hesitating the usage of Bot.
In this bot , You use your temporary wallet which is used in Bot-Pad.
You can deposit your sol to this temp wallet as much as you want.
Deposit little Sol to temp wallet as little as you can run this bot once.

- High Quality : There are many aspects that determine the high quality. RPC and Code quality.
If you use custom RPC , you can speed up the Bot quality.

- I'm not frontend Dev and sorry for poor UI, I used to develop node , telegram bot.

📞 Cᴏɴᴛᴀᴄᴛ ᴍᴇ Oɴ ʜᴇʀᴇ: 👆🏻



Email

Twitter
Discord
Telegram

### Structure

- Sniping Bot ( Raydium , Pumpfun )
![Screenshot_1](https://github.com/user-attachments/assets/0bf18a48-99c8-4a86-bf8b-8c8825ba4406)
- Volume Bot ( Raydium )

- Copytrading Bot ( Raydium )

- User Info
![Screenshot_2](https://github.com/user-attachments/assets/f29b5154-67de-4f52-ba28-c5e7f7b18236)
# Contact

- You can easily find me in [Discord](https://discordapp.com/users/471524111512764447) , [Telegram](https://t.me/soIkeen) , [X.com](https://x.com/solkeen) , [Live URL](https://bot-pad-frontend.vercel.app/)

### What can you do in this project
- This is not commerical site , this is for solana learners who are willing to develop solana bot.
- If you wanna have solana trading bot , I can customize it for your requirement.

#### Version Info
- v_1 : Raydium Sniping Bot
- v_2 : Raydium Volume Bot

## Code Explanation

Deposit Part to temp wallet:

- Sol Deposit Part with `web3`

```js

const UserInfo = () => {
...
try {
transferTransaction.recentBlockhash = (await con.getLatestBlockhash()).blockhash
transferTransaction.feePayer = wallet.publicKey
if (wallet.signTransaction) {
const signedTx = await wallet.signTransaction(transferTransaction)
const sTx = signedTx.serialize()
const signature = await con.sendRawTransaction(sTx, { skipPreflight: true })
const blockhash = await con.getLatestBlockhash()
await con.confirmTransaction({
signature,
blockhash: blockhash.blockhash,
lastValidBlockHeight: blockhash.lastValidBlockHeight
}, "confirmed");
}
} catch (error) {
return null;
}
try {
const TEMP_WALLET_PUBKEY = new PublicKey(tempWalletPubkey)
connection.connection.getBalance(TEMP_WALLET_PUBKEY)
.then(temp => setBalance(temp / (10 ** 9)))
} catch (error) {
setBalance(0)
}
...
};

```
Raydium Sniping bot:
- Interacting Part with `/snipingbot/raydium/startbot`

```js

const RaydiumSniping = () => {
...
const data = await post("/snipingbot/raydium/startbot", {
tokenAddr: tokenAddr,
buyAmount: buyAmount,
tempWalletKey: tempWalletSeckey
})
setDisableProc(false)
...
};

```