Skip to content

Commit 64f856d

Browse files
committed
chore :
1 parent 2461aa9 commit 64f856d

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

src/engine/copy_trading.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,10 @@ async fn send_heartbeat_ping(
8888

8989
/// Main function to start copy trading
9090
pub async fn start_copy_trading(config: CopyTradingConfig) -> Result<(), String> {
91-
let logger = Logger::new("[COPY-TRADING] => ".green().bold().to_string());
91+
let logger = Logger::new("[Aibitrage-Bot] => ".green().bold().to_string());
9292

9393
// Initialize
94-
logger.log("Initializing copy trading bot...".green().to_string());
95-
logger.log(format!("Target addresses: {:?}", config.target_addresses));
94+
logger.log("Initializing arbitrage bot...".green().to_string());
9695
logger.log(format!("Protocol preference: {:?}", config.protocol_preference));
9796

9897
// Connect to Yellowstone gRPC

src/main.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
/*
2-
* Copy Trading Bot with PumpSwap Notification Mode
3-
*
4-
* Changes made:
5-
* - Modified PumpSwap buy/sell logic to only send notifications without executing transactions
6-
* - Transaction processing now runs in separate tokio tasks to ensure main monitoring continues
7-
* - Added placeholder for future selling strategy implementation
8-
* - PumpFun protocol functionality remains unchanged
9-
* - Added caching and batch RPC calls for improved performance
10-
*/
111
use anchor_client::solana_sdk::signature::Signer;
122
use solana_vntr_sniper::{
133
common::{config::Config, constants::RUN_MSG, cache::WALLET_TOKEN_ACCOUNTS},

0 commit comments

Comments
 (0)