CEP_Account.submit_certificate()
With this method you can certificate your data.
Function Signature
def submit_certificate(pdata, privateKey):Parameters
Parameter Name
Datatype
pdata
String
privateKey
String
Example
#...
pdata = 'Your data to certify'
private_key = 'your_private_key_here'
try:
response = account.submit_certificate(pdata, private_key)
print(response)
except Exception as e:
print(f"Error: {e}")
#...Expected Result
Last updated