-
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 #131 from aleksandrkaekhtin/feature/new_projects_s6
Add DEPINSIM, HOT Wallet, MemeTv
- Loading branch information
Showing
7 changed files
with
84 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,29 @@ | ||
from models.metrics.smc_interaction import SmartContractInteraction | ||
from models.metrics.token_transfer_from_user import TokenTransferFromUser | ||
from models.project import App | ||
|
||
""" | ||
DEPINSIM app | ||
""" | ||
|
||
DEPINSIM = App( | ||
name="DEPINSIM", | ||
analytics_key="DepinSim", | ||
url="https://t.me/DepinSimBot", | ||
metrics=[ | ||
SmartContractInteraction( | ||
"Purchase in TON", | ||
"EQC9jJri7_GElDmGwNuRAYnzIKzpvvLKkewn9FnNZuoB_mCp", | ||
comment_required=True, | ||
), | ||
TokenTransferFromUser( | ||
"Purchase in Jetton", | ||
jetton_masters=[ | ||
"EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs", # USDT | ||
], | ||
destinations=[ | ||
"EQC9jJri7_GElDmGwNuRAYnzIKzpvvLKkewn9FnNZuoB_mCp", | ||
], | ||
), | ||
], | ||
) |
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,30 @@ | ||
from models.metrics.smc_interaction import SmartContractInteraction | ||
from models.project import App | ||
|
||
""" | ||
HOT Wallet app | ||
""" | ||
|
||
HOTWallet = App( | ||
name="HOT Wallet", | ||
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", | ||
), | ||
], | ||
) |
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 | ||
|
||
""" | ||
MemeTv app | ||
""" | ||
|
||
MemeTv = App( | ||
name="MemeTv", | ||
analytics_key="MemeTv", | ||
url="https://t.me/TheMemeTvBot", | ||
metrics=[ | ||
SmartContractInteraction( | ||
"Interaction", | ||
"EQCHiGNkhPqwgDkYp-ZqAKMKqAf4k9-_Z1_IbNb-L7OBFOpr", | ||
op_codes=[-564733746], | ||
), | ||
], | ||
) |
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