Skip to content

This is a basic copy trading bot for Solana DEX platforms like Raydium, Meteora, and Pumpfun, which quickly tracks and copies profitable bots, with an option for a full version and customized advanced projects.

Notifications You must be signed in to change notification settings

conka8/Solana-Copytrading-Bot

Repository files navigation

Solana Copytrading Bot

This is copy trading bot running on several solana dex platform - raydium, meteora, pumpfun. This is basic version, not full version. In this bot, it track the profitable bots fast and copytrack it. If you want, I can offer full version and can develop customized advanced project.

Contact information:

Whatspp: https://wa.me/13137423660 Telegram: https://t.me/DevCutup Twitter: https://twitter.com/januscutup

What can you do in this project

This is not advanced project, but it will be basic knowledge for your solana bot study. If you wanna have solana trading bot , I can customize it for your requirement.

Code Explanation

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) } ... };

About

This is a basic copy trading bot for Solana DEX platforms like Raydium, Meteora, and Pumpfun, which quickly tracks and copies profitable bots, with an option for a full version and customized advanced projects.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published