diff --git a/projects/apps/BeeHarvest.py b/projects/apps/BeeHarvest.py new file mode 100644 index 0000000..45646a1 --- /dev/null +++ b/projects/apps/BeeHarvest.py @@ -0,0 +1,20 @@ +from models.metrics.smc_interaction import SmartContractInteraction +from models.project import App + +""" +BeeHarvest app +""" + +BeeHarvest = App( + name="BeeHarvest", + analytics_key="BeeharvestProd", + url="https://t.me/beeharvestbot", + nfts=["EQDVJADeL16Dv-alWpWFSgQrP-IqGjcNrJwQH65bXgBzKt8C"], + metrics=[ + SmartContractInteraction( + "Interaction", + "EQC6q99HyVc1GGLKOYfh_3ztYddYF-ir4-C92gusWcASs0TS", + comment_required=True, + ), + ], +) diff --git a/projects/apps/GemGame.py b/projects/apps/GemGame.py new file mode 100644 index 0000000..2c034c6 --- /dev/null +++ b/projects/apps/GemGame.py @@ -0,0 +1,18 @@ +from models.metrics.smc_interaction import SmartContractInteraction +from models.project import App + +""" +GemGame app +""" + +GemGame = App( + name="GemGame", + analytics_key="gem_game", + url="https://t.me/play_gemgame_bot/play?startapp=c_tw", + metrics=[ + SmartContractInteraction( + "Interaction", + "EQDJT5TJ6BpL2tFHKdh4oRxbhW3LXwsdwSE0FO9jsLV0A3Db", + ), + ], +) diff --git a/projects/apps/HOTWallet.py b/projects/apps/HOTWallet.py index d648ccf..12f715b 100644 --- a/projects/apps/HOTWallet.py +++ b/projects/apps/HOTWallet.py @@ -1,4 +1,4 @@ -from models.metrics.smc_interaction import SmartContractInteraction +from models.metrics.dex_swaps import DexSwaps from models.project import App """ @@ -10,21 +10,9 @@ analytics_key=None, url="https://t.me/herewalletbot", metrics=[ - SmartContractInteraction( - "Interaction", - "EQA4SmkTldq7Fn311uMDsvWPo_lbjamZmMZneXUcAJrJeYvm", - ), - SmartContractInteraction( - "Interaction", - "EQBxAcKP8QDDiwYolea9vTiP-O1nvP4H6Kjtx3BmsU4_klbt", - ), - SmartContractInteraction( - "Interaction", - "EQCgaC5OFAtfJjysbwP85d4Gsfgp1X-18z2S4-RIqb6z38Sk", - ), - SmartContractInteraction( - "Interaction", - "EQAvUDmCAM9Zl_i3rXeYA2n-s_uhM4rTBhzAQUeJIxEOB62i", + DexSwaps( + "Referral swaps", + "EQBxrkqb9sVVGBVqNJzJW9lDcKwhhgeamkBJNt1njgo_tU7s" ), ], ) diff --git a/projects/apps/TeleverseOdyssey.py b/projects/apps/TeleverseOdyssey.py new file mode 100644 index 0000000..d3ee284 --- /dev/null +++ b/projects/apps/TeleverseOdyssey.py @@ -0,0 +1,19 @@ +from models.metrics.smc_interaction import SmartContractInteraction +from models.project import App + +""" +Televerse Odyssey app +""" + +TeleverseOdyssey = App( + name="Televerse Odyssey", + analytics_key="Televerse_Odyssey", + url="https://t.me/TorchOdyssey_bot", + metrics=[ + SmartContractInteraction( + "Interaction", + "EQCTK7nQyhjNQUh9lThTzBpt2WHJ-90P_9d8CF4Q041doZdU", + comment_required=True, + ), + ], +) diff --git a/projects/icons/apps_beeharvest.png b/projects/icons/apps_beeharvest.png new file mode 100644 index 0000000..e25a50c Binary files /dev/null and b/projects/icons/apps_beeharvest.png differ diff --git a/projects/icons/apps_gemgame.png b/projects/icons/apps_gemgame.png new file mode 100644 index 0000000..ae5ac46 Binary files /dev/null and b/projects/icons/apps_gemgame.png differ diff --git a/projects/icons/apps_televerse odyssey.png b/projects/icons/apps_televerse odyssey.png new file mode 100644 index 0000000..480da45 Binary files /dev/null and b/projects/icons/apps_televerse odyssey.png differ diff --git a/seasons/s6.py b/seasons/s6.py index e7ab22b..d59561f 100644 --- a/seasons/s6.py +++ b/seasons/s6.py @@ -65,6 +65,9 @@ from projects.apps.DEPINSIM import DEPINSIM from projects.apps.HOTWallet import HOTWallet from projects.apps.MemeTv import MemeTv +from projects.apps.BeeHarvest import BeeHarvest +from projects.apps.GemGame import GemGame +from projects.apps.TeleverseOdyssey import TeleverseOdyssey from projects.defi.DAOLama import DAOLama from projects.defi.DeDust import DeDust from projects.defi.EVAA import EVAA @@ -181,6 +184,9 @@ DEPINSIM, HOTWallet, MemeTv, + BeeHarvest, + GemGame, + TeleverseOdyssey, ], score_model=AppLeaderboardModelS6(), enrollment_sbt="EQDZ81ZvxRfutjkALcUK0q3Cuusm1XtmhEwUiGSeviLpPARH"