cherry-shared2 0.1.27__tar.gz → 0.1.29__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/PKG-INFO +1 -1
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/bot_strings.py +3 -1
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/launchpads.py +13 -1
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/PKG-INFO +1 -1
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/setup.py +1 -1
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/README.md +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/InfoService.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/__init__.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/blockchains.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/constants.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/emojis.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/functions.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/types/__init__.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/types/blockchain.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/types/dexscreener.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/types/launchpad.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/types/leaderboardEntry.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/types/raid_info.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared/types/user_wallet.py +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/SOURCES.txt +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/dependency_links.txt +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/requires.txt +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/top_level.txt +0 -0
- {cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/setup.cfg +0 -0
|
@@ -87,7 +87,9 @@ class BotStrings:
|
|
|
87
87
|
{Emojis.dollar} Paid Features:
|
|
88
88
|
{Emojis.cup} BuyBot Trending: /Trend
|
|
89
89
|
{Emojis.hourglass} RaidBot Trending: /boost
|
|
90
|
-
{Emojis.bookmark} Button ads: /advertise
|
|
90
|
+
{Emojis.bookmark} Button ads: /advertise
|
|
91
|
+
{Emojis.check} No-Ads: /premium
|
|
92
|
+
"""
|
|
91
93
|
|
|
92
94
|
bot_start_message = f"""{Emojis.cup} <b>Cherry Telegram Bot</b>
|
|
93
95
|
|
|
@@ -9,6 +9,7 @@ class LaunchPadId(Enum):
|
|
|
9
9
|
FJORD = "fjord"
|
|
10
10
|
SOLPAD = "solpad"
|
|
11
11
|
PUMPFUN = "pumpfun"
|
|
12
|
+
BAGS = "bags"
|
|
12
13
|
LetsBonk = "letsbonk"
|
|
13
14
|
MOONSHOT = "moonshot"
|
|
14
15
|
SUNPUMP = "sunpump"
|
|
@@ -21,6 +22,7 @@ class LaunchPadId(Enum):
|
|
|
21
22
|
def all():
|
|
22
23
|
return [
|
|
23
24
|
LaunchPadId.PUMPFUN,
|
|
25
|
+
LaunchPadId.BAGS,
|
|
24
26
|
# LaunchPadId.FJORD,
|
|
25
27
|
# LaunchPadId.SOLPAD,
|
|
26
28
|
# LaunchPadId.LetsBonk,
|
|
@@ -62,7 +64,16 @@ class LaunchPads:
|
|
|
62
64
|
"https://pump.fun",
|
|
63
65
|
"pumpfun",
|
|
64
66
|
[ChainType.SOLANA],
|
|
65
|
-
"https://t.me/
|
|
67
|
+
"https://t.me/cherrycurvetrending",
|
|
68
|
+
)
|
|
69
|
+
bags = LaunchPad(
|
|
70
|
+
LaunchPadId.BAGS,
|
|
71
|
+
1,
|
|
72
|
+
"Bags",
|
|
73
|
+
"https://bags.fm",
|
|
74
|
+
"bags",
|
|
75
|
+
[ChainType.SOLANA],
|
|
76
|
+
"https://t.me/cherrycurvetrending",
|
|
66
77
|
)
|
|
67
78
|
letsbonk = LaunchPad(
|
|
68
79
|
LaunchPadId.LetsBonk,
|
|
@@ -163,6 +174,7 @@ class LaunchPads:
|
|
|
163
174
|
def all() -> List[LaunchPad]:
|
|
164
175
|
return [
|
|
165
176
|
LaunchPads.pumpfun,
|
|
177
|
+
LaunchPads.bags,
|
|
166
178
|
# LaunchPads.letsbonk,
|
|
167
179
|
# LaunchPads.moonshot,
|
|
168
180
|
# LaunchPads.sunpump,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cherry_shared2-0.1.27 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|