Skip to content

Commit

Permalink
Merge pull request #144 from aleksandrkaekhtin/feature/new_projects_s6
Browse files Browse the repository at this point in the history
Add Agent301, GrandCombat, MakeFrens
  • Loading branch information
aleksandrkaekhtin authored Sep 12, 2024
2 parents 25e1999 + d4079f2 commit b563eaf
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 0 deletions.
18 changes: 18 additions & 0 deletions projects/apps/Agent301.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

"""
Agent 301 app
"""

Agent301 = App(
name="Agent 301",
analytics_key="Agent301",
url="https://t.me/Agent301Bot",
metrics=[
SmartContractInteraction(
"Interaction",
"EQB_a4Y-9OYfcAsI7Evvyf7ph59mQrNFeqLwNBIPJkEFS-gb",
),
],
)
19 changes: 19 additions & 0 deletions projects/apps/GrandCombat.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

"""
Grand Combat app
"""

GrandCombat = App(
name="Grand Combat",
analytics_key="GrandCombat",
url="https://t.me/grandcombat_bot",
metrics=[
SmartContractInteraction(
"Interaction",
"EQAIcNCVhsldWIdyxHO3oIrGA3GOuFeDrk3xxTtOFknl4E-z",
op_codes=[1495321901]
),
],
)
24 changes: 24 additions & 0 deletions projects/apps/MakeFrens.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from models.metrics.smc_interaction import SmartContractInteraction
from models.project import App

"""
Make Frens app
"""

MakeFrens = App(
name="Make Frens",
analytics_key="Make_Frens",
url="https://t.me/MakeFrens_Bot",
metrics=[
SmartContractInteraction(
"Tickets Purchase",
"EQCbU_4fv1UBUUK5MrBBr8W3RG04gI5qKlC1kR9jX6oeo-lh",
op_codes=[-1804953418]
),
SmartContractInteraction(
"Pay-per-task",
"EQDF_RuRayVoMsDTdq8_zx2aDIMqFvuHdWZ6kg2hxA1jH5Ai",
op_codes=[-1804953418]
),
],
)
Binary file added projects/icons/apps_agent 301.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_grand combat.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_make frens.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 @@ -68,6 +68,9 @@
from projects.apps.BeeHarvest import BeeHarvest
from projects.apps.GemGame import GemGame
from projects.apps.TeleverseOdyssey import TeleverseOdyssey
from projects.apps.Agent301 import Agent301
from projects.apps.GrandCombat import GrandCombat
from projects.apps.MakeFrens import MakeFrens
from projects.defi.DAOLama import DAOLama
from projects.defi.DeDust import DeDust
from projects.defi.EVAA import EVAA
Expand Down Expand Up @@ -187,6 +190,9 @@
BeeHarvest,
GemGame,
TeleverseOdyssey,
Agent301,
GrandCombat,
MakeFrens,
],
score_model=AppLeaderboardModelS6(),
enrollment_sbt="EQDZ81ZvxRfutjkALcUK0q3Cuusm1XtmhEwUiGSeviLpPARH"
Expand Down

0 comments on commit b563eaf

Please sign in to comment.