Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add BeeHarvest, GemGame, TeleverseOdyssey #141

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions projects/apps/BeeHarvest.py
Original file line number Diff line number Diff line change
@@ -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,
),
],
)
18 changes: 18 additions & 0 deletions projects/apps/GemGame.py
Original file line number Diff line number Diff line change
@@ -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",
),
],
)
20 changes: 4 additions & 16 deletions projects/apps/HOTWallet.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from models.metrics.smc_interaction import SmartContractInteraction
from models.metrics.dex_swaps import DexSwaps
from models.project import App

"""
Expand All @@ -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"
),
],
)
19 changes: 19 additions & 0 deletions projects/apps/TeleverseOdyssey.py
Original file line number Diff line number Diff line change
@@ -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,
),
],
)
Binary file added projects/icons/apps_beeharvest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/icons/apps_gemgame.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/icons/apps_televerse odyssey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions seasons/s6.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -181,6 +184,9 @@
DEPINSIM,
HOTWallet,
MemeTv,
BeeHarvest,
GemGame,
TeleverseOdyssey,
],
score_model=AppLeaderboardModelS6(),
enrollment_sbt="EQDZ81ZvxRfutjkALcUK0q3Cuusm1XtmhEwUiGSeviLpPARH"
Expand Down
Loading