cherry-shared2 0.1.28__tar.gz → 0.1.30__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.28 → cherry_shared2-0.1.30}/PKG-INFO +1 -1
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/blockchains.py +3 -3
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/launchpads.py +13 -1
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared2.egg-info/PKG-INFO +1 -1
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/setup.py +1 -1
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/README.md +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/InfoService.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/__init__.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/bot_strings.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/constants.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/emojis.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/functions.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/types/__init__.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/types/blockchain.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/types/dexscreener.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/types/launchpad.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/types/leaderboardEntry.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/types/raid_info.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared/types/user_wallet.py +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared2.egg-info/SOURCES.txt +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared2.egg-info/dependency_links.txt +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared2.egg-info/requires.txt +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/cherry_shared2.egg-info/top_level.txt +0 -0
- {cherry_shared2-0.1.28 → cherry_shared2-0.1.30}/setup.cfg +0 -0
|
@@ -33,8 +33,8 @@ class Blockchains:
|
|
|
33
33
|
"https://solscan.io/token",
|
|
34
34
|
False,
|
|
35
35
|
{
|
|
36
|
-
3: {3: 0, 6: 0, 12:
|
|
37
|
-
10: {3:
|
|
36
|
+
3: {3: 0, 6: 0, 12: 8.1, 24: 12.5},
|
|
37
|
+
10: {3: 2.3, 6: 3.4, 12: 5.4, 24: 9.2},
|
|
38
38
|
},
|
|
39
39
|
["SOL", "USDC"],
|
|
40
40
|
{
|
|
@@ -60,7 +60,7 @@ class Blockchains:
|
|
|
60
60
|
25000: 55,
|
|
61
61
|
100_000: 220,
|
|
62
62
|
},
|
|
63
|
-
"boost_price": {1000:
|
|
63
|
+
"boost_price": {1000: 1.5, 2000: 2.9, 4000: 5.4, 8000: 9},
|
|
64
64
|
},
|
|
65
65
|
)
|
|
66
66
|
|
|
@@ -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.28 → cherry_shared2-0.1.30}/cherry_shared2.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|