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 Gemz, SEED #157

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
19 changes: 19 additions & 0 deletions projects/apps/Gemz.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

"""
gemz app
"""

Gemz = App(
name="gemz",
analytics_key="gemz",
url="https://t.me/gemzcoin_bot",
metrics=[
SmartContractInteraction(
"Interaction",
"EQBj4jX-6KSEY5oFd98sdIZB5YrnOWIOvskD_Mf8VuJ4EAeB",
op_codes=[-1959520222],
),
],
)
19 changes: 19 additions & 0 deletions projects/apps/SEED.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

"""
SEED app
"""

SEED = App(
name="SEED",
analytics_key="seed_analytics",
url="",
metrics=[
SmartContractInteraction(
"Interaction",
"EQBCC49AnXkwfpVhTf45xPOdBUzZR8P_-woQiEoUnzN4VhCS",
comment_required=True,
),
],
)
Binary file added projects/icons/apps_gemz.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_seed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions seasons/s6.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@
from projects.apps.RentTower import RentTower
from projects.apps.RentTycoon import RentTycoon
from projects.apps.TONSTATION import TONSTATION
from projects.apps.Gemz import Gemz
from projects.apps.SEED import SEED
from projects.defi.DAOLama import DAOLama
from projects.defi.DeDust import DeDust
from projects.defi.EVAA import EVAA
Expand Down Expand Up @@ -213,6 +215,8 @@
RentTower,
RentTycoon,
TONSTATION,
Gemz,
SEED,
],
score_model=AppLeaderboardModelS6(),
enrollment_sbt="EQDZ81ZvxRfutjkALcUK0q3Cuusm1XtmhEwUiGSeviLpPARH"
Expand Down
Loading