Skip to content

Solana Wallet Tracking Telegram bot for tracking wallet activities, transactions, and interactions with the Pump.fun platform.

Notifications You must be signed in to change notification settings

bitman310/wallet-tracking-telegram-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 

Repository files navigation

wallet-tracking-telegram-bot

This Solana Wallet Tracking Telegram bot for tracking wallet activities, transactions, and interactions with the Pump.fun platform.

Contact Info

Telegram: @diasibt

X: @DiasIbt101

LinkedIn: @dias-ishbulatov

Key Features

  • Tracking Solana wallet transactions that interact with the Pump.fun
  • Monitor wallet activities and provide real-time updates
  • Designated Telegram channel for seamless tracking

Clone the repo

git clone https://github.com/bitman310/wallet-tracking-telegram-bot

Project Structure

  • src/index.ts
import { WalletTracker } from "./utils";

async function main() {
  const tracker = new WalletTracker();
  await tracker.start();
}

main().catch(console.error);
  • src/utils/utils.ts
import { LAMPORTS_PER_SOL } from "@solana/web3.js";

export async function getTransactionDetails(
  connection: any,
  signature: string
) {
  const txn = await connection.getParsedTransaction(signature, {
    maxSupportedTransactionVersion: 0,
    commitment: "confirmed",
  });

  if (txn?.meta && txn.transaction) {
    const instructions = txn.transaction.message.instructions;

    const timestamp = txn.blockTime
      ? new Date(txn.blockTime * 1000).toISOString()
      : new Date().toISOString();

    const preBalances = txn.meta.preBalances;
    const postBalances = txn.meta.postBalances;
    const balanceChange = (postBalances[0] - preBalances[0]) / LAMPORTS_PER_SOL;

    const details = {
      signature,
      timestamp,
      balanceChange: `${balanceChange} SOL`,
      sender: txn.transaction.message.accountKeys[0].pubkey.toString(),
      instructions: instructions.map((ix: any) => {
        if ("parsed" in ix) {
          return {
            program: ix.program,
            type: ix.parsed.type,
            receiver: ix.parsed.info.destination,
          };
        }
        return {
          programId: ix.programId.toString(),
        };
      }),
      logs: txn.meta.logs,
    };

    return details;
  }
}
  • config.ts
import dotenv from "dotenv";
dotenv.config();

export const PUMP_FUN_ADDRESS = "Target PUMPFUN ADDRESS";

export const MAIN_WALLET_ADDRESS = process.env.MAIN_WALLET_ADDRESS || "";
export const TELEGRAM_BOT_TOKEN = process.env.TELEGRAM_BOT_TOKEN || "";
export const TELEGRAM_CHANNEL_ID = process.env.TELEGRAM_CHANNEL_ID || "";
export const SOLANA_RPC_URL = process.env.SOLANA_RPC_URL || "";

export const TRACKED_WALLETS_SIZE = 150;

About

Solana Wallet Tracking Telegram bot for tracking wallet activities, transactions, and interactions with the Pump.fun platform.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published