blockchain2
This commit is contained in:
parent
cbd922371e
commit
5c2e940a9d
Binary file not shown.
Binary file not shown.
Binary file not shown.
0
kitchen_counter/Blockchain2/__pycache__/PPTConversion.cpython-310.pyc
Normal file → Executable file
0
kitchen_counter/Blockchain2/__pycache__/PPTConversion.cpython-310.pyc
Normal file → Executable file
Binary file not shown.
Binary file not shown.
0
kitchen_counter/Blockchain2/__pycache__/block_user_info.cpython-310.pyc
Normal file → Executable file
0
kitchen_counter/Blockchain2/__pycache__/block_user_info.cpython-310.pyc
Normal file → Executable file
Binary file not shown.
0
kitchen_counter/Blockchain2/__pycache__/blockchainsetting.cpython-310.pyc
Normal file → Executable file
0
kitchen_counter/Blockchain2/__pycache__/blockchainsetting.cpython-310.pyc
Normal file → Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,40 @@
|
|||
from auto_email.views import sendmail
|
||||
from django.conf import settings
|
||||
def TestAutoMail():
|
||||
to_email = ["praveshenter9303@gmail.com"]
|
||||
print("starting...")
|
||||
email_code = 'BL1'
|
||||
# key_value = {
|
||||
# "service":"Script Pad",
|
||||
# "hash": hash2,
|
||||
# "public key":blockchain_obj.publicKey,
|
||||
# "Transaction Hash": tx_id,
|
||||
# }
|
||||
key_value = {
|
||||
"Product Name": "Script Pad",
|
||||
"Profile url": f"https://mynextfilm.in/memberpage/#/personaldetails",
|
||||
"User url": f"https://mynextfilm.ai/memberpage/#/user/47/personaldetails",
|
||||
"Product output card url": "hash2",
|
||||
}
|
||||
sendmail(to_email=to_email , email_code=email_code, key_value=key_value, filePath=None)
|
||||
print("end............")
|
||||
|
||||
def TestAutoMail1():
|
||||
to_email = ["paveenpaul.work@gmail.com"]
|
||||
print("starting...")
|
||||
email_code = 'SB1'
|
||||
# key_value = {
|
||||
# "service":"Script Pad",
|
||||
# "hash": hash2,
|
||||
# "public key":blockchain_obj.publicKey,
|
||||
# "Transaction Hash": tx_id,
|
||||
# }
|
||||
key_value = {
|
||||
"Script Name" : "str(screenplay_name)",
|
||||
"Audited script url" : f"{settings.SITE_DOMAIN}/audit/audits1",
|
||||
"User's profile url": f"{settings.SITE_DOMAIN}/memberpage/#/user/46/personaldetails",
|
||||
}
|
||||
|
||||
print("key value = ",key_value)
|
||||
sendmail(to_email=to_email , email_code=email_code, key_value=key_value, filePath=None)
|
||||
print("end............")
|
|
@ -9,7 +9,8 @@ PRIVATE_KEY = "a632f28406579d96879cfc49d55411bb1424dbbae60bf4dd93ad0710b63d6b80"
|
|||
# ABI = '[ { "inputs": [], "stateMutability": "nonpayable", "type": "constructor" }, { "anonymous": false, "inputs": [ { "indexed": false, "internalType": "uint256", "name": "user_id", "type": "uint256" }, { "indexed": false, "internalType": "string", "name": "project", "type": "string" }, { "indexed": false, "internalType": "string", "name": "data", "type": "string" } ], "name": "conversion", "type": "event" }, { "inputs": [ { "internalType": "address", "name": "pubKey", "type": "address" }, { "internalType": "uint256", "name": "user_id", "type": "uint256" }, { "internalType": "string", "name": "project", "type": "string" }, { "internalType": "string", "name": "_data", "type": "string" } ], "name": "UploadScriptAuditData", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "user_id", "type": "uint256" }, { "internalType": "string", "name": "project", "type": "string" } ], "name": "deleteScriptAudit", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "userId", "type": "uint256" } ], "name": "getProjectId", "outputs": [ { "internalType": "string[]", "name": "", "type": "string[]" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "user_id", "type": "uint256" }, { "internalType": "string", "name": "project", "type": "string" } ], "name": "getScriptAudit", "outputs": [ { "components": [ { "internalType": "address", "name": "owner", "type": "address" }, { "internalType": "string", "name": "mydata", "type": "string" }, { "internalType": "bool", "name": "Write", "type": "bool" } ], "internalType": "struct ScriptAuditDataBase.privateData", "name": "", "type": "tuple" } ], "stateMutability": "view", "type": "function" } ]'
|
||||
|
||||
# mainnet
|
||||
RPC = 'https://polygon-mainnet.infura.io/v3/017957497a0d4e9c80750c18a431ac1e'
|
||||
RPC = 'https://polygon-rpc.com'
|
||||
# RPC = 'https://polygon-mainnet.infura.io/v3/017957497a0d4e9c80750c18a431ac1e'
|
||||
CONTRACT_ADDRESS = '0x3a5d033CdF38aC4a9fe116CE88EBA2E93260044c'
|
||||
CHAIN_ID = 137
|
||||
ABI = '[ { "inputs": [], "stateMutability": "nonpayable", "type": "constructor" }, { "anonymous": false, "inputs": [ { "indexed": false, "internalType": "uint256", "name": "user_id", "type": "uint256" }, { "indexed": false, "internalType": "string", "name": "project", "type": "string" }, { "indexed": false, "internalType": "string", "name": "data", "type": "string" } ], "name": "conversion", "type": "event" }, { "inputs": [ { "internalType": "address", "name": "pubKey", "type": "address" }, { "internalType": "uint256", "name": "user_id", "type": "uint256" }, { "internalType": "string", "name": "project", "type": "string" }, { "internalType": "string", "name": "_data", "type": "string" } ], "name": "UploadScriptAuditData", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "user_id", "type": "uint256" }, { "internalType": "string", "name": "project", "type": "string" } ], "name": "deleteScriptAudit", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "userId", "type": "uint256" } ], "name": "getProjectId", "outputs": [ { "internalType": "string[]", "name": "", "type": "string[]" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "user_id", "type": "uint256" }, { "internalType": "string", "name": "project", "type": "string" } ], "name": "getScriptAudit", "outputs": [ { "components": [ { "internalType": "address", "name": "owner", "type": "address" }, { "internalType": "string", "name": "mydata", "type": "string" }, { "internalType": "bool", "name": "Write", "type": "bool" } ], "internalType": "struct ScriptAuditDataBase.privateData", "name": "", "type": "tuple" } ], "stateMutability": "view", "type": "function" } ]'
|
||||
|
|
|
@ -80,4 +80,6 @@ def data():
|
|||
|
||||
# data()
|
||||
|
||||
# getToDatabase("pravesh3","MyNextFilm")
|
||||
# getToDatabase("pravesh3","MyNextFilm")
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue