"_tokenName": "TestToken",
deploy_transaction = DeployTransactionBuilder()\
.from_(deployer_wallet.get_address())\
.to("cx0000000000000000000000000000000000000000")\
.content_type("application/zip")\
.content(gen_deploy_data_content('sampletoken'))\
estimate_step = icon_service.estimate_step(deploy_transaction)
step_limit = estimate_step + 100000
signed_transaction = SignedTransaction(deploy_transaction, deployer_wallet, step_limit)
tx_hash = icon_service.send_transaction(signed_transaction)
@retry(JSONRPCException, tries=10, delay=1, back_off=2)
def get_tx_result(_tx_hash):
tx_result = icon_service.get_transaction_result(_tx_hash)
tx_result = get_tx_result(tx_hash)
SCORE_ADDRESS = tx_result['scoreAddress']