Skip to content

Commit

Permalink
Merge pull request #30 from ton-society/feature/tonmap
Browse files Browse the repository at this point in the history
Adding tonmap
  • Loading branch information
shuva10v authored Jun 17, 2024
2 parents 5caf2dc + 000f4f8 commit 371732c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
18 changes: 18 additions & 0 deletions projects/apps/TonMap.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

"""
TonMap app
"""

TonMap = App(
name="TonMap",
analytics_key="tonmap",
url='https://tonmap.app/',
metrics=[
SmartContractInteraction(
"SBT mint", address="EQBQjoanL6qrduDIIsLw99BNpmfDiYi4gLq3YbQppUlVRDWb",
op_codes=[993321253]
)
]
)
Binary file added projects/icons/apps_tonmap.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: 3 additions & 1 deletion seasons/s4.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from projects.apps.SwapCoffee import SwapCoffee
from projects.apps.TapFantasy import TapFantasy
from projects.apps.ThePixels import ThePixels
from projects.apps.TonMap import TonMap
from projects.apps.TonPunks import TonPunks
from projects.apps.TonUp import TonUP
from projects.apps.Tonano import Tonano
Expand Down Expand Up @@ -149,7 +150,8 @@
ChickCoop,
TonUP,
Tongochi,
Shardify
Shardify,
TonMap
],
score_model=AppLeaderboardModelV2()
)
Expand Down

0 comments on commit 371732c

Please sign in to comment.