cherry-shared2 0.1.28__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.
Files changed (24) hide show
  1. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/PKG-INFO +1 -1
  2. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/launchpads.py +13 -1
  3. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/PKG-INFO +1 -1
  4. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/setup.py +1 -1
  5. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/README.md +0 -0
  6. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/InfoService.py +0 -0
  7. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/__init__.py +0 -0
  8. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/blockchains.py +0 -0
  9. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/bot_strings.py +0 -0
  10. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/constants.py +0 -0
  11. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/emojis.py +0 -0
  12. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/functions.py +0 -0
  13. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/types/__init__.py +0 -0
  14. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/types/blockchain.py +0 -0
  15. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/types/dexscreener.py +0 -0
  16. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/types/launchpad.py +0 -0
  17. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/types/leaderboardEntry.py +0 -0
  18. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/types/raid_info.py +0 -0
  19. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared/types/user_wallet.py +0 -0
  20. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/SOURCES.txt +0 -0
  21. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/dependency_links.txt +0 -0
  22. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/requires.txt +0 -0
  23. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/cherry_shared2.egg-info/top_level.txt +0 -0
  24. {cherry_shared2-0.1.28 → cherry_shared2-0.1.29}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cherry_shared2
3
- Version: 0.1.28
3
+ Version: 0.1.29
4
4
  Summary: Cherry Bot shared utilities
5
5
  Author: headria
6
6
  Classifier: Development Status :: 4 - Beta
@@ -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/pumpfuncherry",
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,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cherry_shared2
3
- Version: 0.1.28
3
+ Version: 0.1.29
4
4
  Summary: Cherry Bot shared utilities
5
5
  Author: headria
6
6
  Classifier: Development Status :: 4 - Beta
@@ -10,7 +10,7 @@ if readme_file.exists():
10
10
 
11
11
  setup(
12
12
  name="cherry_shared2",
13
- version="0.1.28",
13
+ version="0.1.29",
14
14
  packages=find_packages(),
15
15
  install_requires=[
16
16
  "web3",