Bitcoin Forum

Economy => Services => Topic started by: Heibo on January 31, 2022, 02:03:54 PM



Title: Wallet Sniper Bot
Post by: Heibo on January 31, 2022, 02:03:54 PM
What is the Wallet Sniper?

Wallet Sniper is a bot coded with Python. The bot checks the wallet balance every 0.3 (you can change) seconds and if you get new payment the bot transfers the balance an other account. The bot checks gas price in blockchain before the create transaction. You can set up gas prices as Slow - Fast - Rapid.

How does the bot is work: Check account balance every 0.3 (you can change) seconds. If balance bigger than 0.0001 (you can change) transfer balance the another account.

Supported Networks

It works with all EVM (Ethereum Virtual Machine) compatible networks.

Where can you use it?

You can create a payment infrastructure for your website, and automatically transfer your money to your personal wallet when money is received in the payment wallet.
Depending on your imagination, you can use it in any area you want in all EVM compatible networks.

Images

Main Monitor: https://imgur.com/XQDWneN
Add RPC Screen: https://imgur.com/jIHVr9O
Balance Screen: https://imgur.com/LV8pi9Z
Settings: https://imgur.com/xcpFun8
Transaction History: https://imgur.com/k0ncvVJ
Log: https://imgur.com/4ks1RC0

Price: $350

Optionally adding, removing, etc. to the bot. things can be done. If you want the bot to run 24/7, you need to rent a VDS.

Contact: https://t.me/goudasdream
Mail: goudasdream@protonmail.com
Buy link: https://bestcrypto.shop/product/wallet-sniper-bot/


Title: Re: Wallet Sniper Bot
Post by: seoincorporation on January 31, 2022, 06:07:32 PM
You can use it for scam.

The idea is good, it could be a really useful bot, but promoting it for scam is a terrible idea, any software made for that intention will burn the reputation of the coder.

What you offer can be done with a simple bash script:

Code:
$ cat /usr/local/bin/bitcoin_resender
#!/bin/bash
if [ $(echo "$(bitcoind getbalance) > 0" | bc) -eq 1 ];then
      bitcoind sendtoaddress YOUR_NEW_ADDRESS $(bitcoind getbalance) "Comment for resender"
fi

People don't need a VPS or some complex installation to make the auto-send task.