from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.TestnetNTP1Api()
body = swagger_client.IssueTokenRequest() # IssueTokenRequest | Object representing the token to be created
try:
# Builds a transaction that issues a new NTP1 Token
body.issue_address(issue_address="TUfp4Ss95xaKQPNGpbiZDsMPe4NR16CDiL")
body.amount(1000)
body.divisibility(0)
body.fee(1000000000)
body.reissuable(False)
body.metadata({"token_name": "STST", "issuer": "Septio", "description": "Septio_Test"})
api_response = api_instance.testnet_issue_token(body)
pprint(api_response)
except ApiException as e:
print("Exception when calling NTP1Api->issue_token: %s\n" % e)
Im trying to have fun testing possibilities of NEBL, issuing tokens and stuff like that. What am I doing wrong?
I get such error:
raise ValueError("Invalid value for issue_address, must not be None") # noqa: E501
ValueError: Invalid value for issue_address, must not be None