-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from aleksandrkaekhtin/feature/new_projects_s6
Add Agent301, GrandCombat, MakeFrens
- Loading branch information
Showing
7 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
), | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
), | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
), | ||
], | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters