-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPumpFun.py
50 lines (42 loc) · 1.92 KB
/
PumpFun.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import random
import time
class PumpFun:
def __init__(self, token_name):
self.token_name = token_name
self.wallets = []
self.comments = []
self.shill_messages = []
def generate_fresh_wallets(self, count):
print(f"Generating {count} fresh wallets for {self.token_name}...")
self.wallets = [f"wallet_{random.randint(10000, 99999)}" for _ in range(count)]
print("Fresh wallets generated.")
def add_comments(self, comments_list):
print("Adding comments to the tool...")
self.comments = comments_list
print("Comments added.")
def create_thread(self):
if not self.wallets or not self.comments:
print("Error: No wallets or comments available. Please add them first.")
return
print(f"Creating a thread for token: {self.token_name}")
for wallet in self.wallets:
comment = random.choice(self.comments)
print(f"Wallet {wallet} says: {comment}")
time.sleep(1) # Simulate delay for realism
def shill_mode(self, messages, delay=2):
print("Shill mode activated. Spamming messages...")
self.shill_messages = messages
for i in range(10): # Example loop for spamming
message = random.choice(self.shill_messages)
print(f"Shilling: {message}")
time.sleep(delay) # Delay between messages
if __name__ == "__main__":
print("Welcome to Pump.Fun Comments & Shill Tool!")
print("To get started, create threads and shill your token effectively.")
print("For more information or inquiries, contact me on Telegram at t.me/mxdotsol")
# Example usage
tool = PumpFun("YourTokenName")
tool.generate_fresh_wallets(5)
tool.add_comments(["Great token!", "This is the future!", "Check out this project!"])
tool.create_thread()
tool.shill_mode(["Buy now!", "Don't miss this gem!", "Huge potential!"])