Skip to content

Latest commit

 

History

History
164 lines (117 loc) · 4.64 KB

testmintburntoken.md

File metadata and controls

164 lines (117 loc) · 4.64 KB

Mintable and burnable token

To implement mintable and burnable token, change sampletoken.py to implement IRC2burnable and IRC2mintable.

from iconservice import *
from .ODIContracts.tokens.IRC2burnable import IRC2Burnable
from .ODIContracts.tokens.IRC2mintable import IRC2Mintable

TAG = 'SampleToken'

class SampleToken(IRC2Burnable, IRC2Mintable):
    pass

Now, since we changed the token, we need to update the contract. Execute this block to update the contract again without making change to other blocks.

update_transaction = DeployTransactionBuilder()\
    .from_(deployer_wallet.get_address())\
    .to(SCORE_ADDRESS)\
    .nid(NID)\
    .nonce(100)\
    .content_type("application/zip")\
    .content(gen_deploy_data_content('sampletoken'))\
    .build()

estimate_step = icon_service.estimate_step(update_transaction)
step_limit = estimate_step + 100000
signed_transaction = SignedTransaction(update_transaction, deployer_wallet, step_limit)

tx_hash = icon_service.send_transaction(signed_transaction)

tx_result = get_tx_result(tx_hash)
tx_result

Test mint method

Using this method, _amount tokens can be minted to deployer address. Only the deployer and minters can call this method.

params={
    "_amount": 5,
}

call_transaction = CallTransactionBuilder()\
    .from_(deployer_wallet.get_address())\
    .to(SCORE_ADDRESS)\
    .nid(3)\
    .nonce(100)\
    .method("mint")\
    .params(params)\
    .build()


estimate_step = icon_service.estimate_step(call_transaction)
step_limit = estimate_step + 100000
signed_transaction = SignedTransaction(call_transaction, deployer_wallet, step_limit)

tx_hash = icon_service.send_transaction(signed_transaction)

tx_result = get_tx_result(tx_hash)
tx_result

After this block finishes executing, re-execute the block to check the total supply and deployer balance. 5 tokens must be added to total supply as well as the deployer address.

Test mintTo method

Using this method, tokens can be minted to other address as well. However, only the deployer and minters can call this method. Here, _amount number of tokens will be minted to _account.

params={
    "_account": caller_wallet.get_address(),
    "_amount": 5,
}

call_transaction = CallTransactionBuilder()\
    .from_(deployer_wallet.get_address())\
    .to(SCORE_ADDRESS)\
    .nid(3)\
    .nonce(100)\
    .method("mintTo")\
    .params(params)\
    .build()


estimate_step = icon_service.estimate_step(call_transaction)
step_limit = estimate_step + 100000
signed_transaction = SignedTransaction(call_transaction, deployer_wallet, step_limit)

tx_hash = icon_service.send_transaction(signed_transaction)

tx_result = get_tx_result(tx_hash)
tx_result

After this block finishes executing, now re-execute the block to check the total supply and random address balance. 5 tokens are added to total supply as well as the caller address.

Test burn method

Using this method, _amount tokens can be destroyed from deployer address. Only the deployer and burners can call this method.

params={
    "_amount": 5,
}

call_transaction = CallTransactionBuilder()\
    .from_(deployer_wallet.get_address())\
    .to(SCORE_ADDRESS)\
    .nid(3)\
    .nonce(100)\
    .method("burn")\
    .params(params)\
    .build()


estimate_step = icon_service.estimate_step(call_transaction)
step_limit = estimate_step + 100000
signed_transaction = SignedTransaction(call_transaction, deployer_wallet, step_limit)

tx_hash = icon_service.send_transaction(signed_transaction)

tx_result = get_tx_result(tx_hash)
tx_result

After this block finishes executing, now re-execute the block to check the total supply and deployer balance. 5 tokens is subtracted from total supply as well as from the deployer address.

Test burnFrom method

Using this method, tokens can be destroyed from other address as well. However, only the deployer and burners can call this method.

params={
    "_account": caller_wallet.get_address(),
    "_amount": 5,
}

call_transaction = CallTransactionBuilder()\
    .from_(deployer_wallet.get_address())\
    .to(SCORE_ADDRESS)\
    .nid(3)\
    .nonce(100)\
    .method("burnFrom")\
    .params(params)\
    .build()


estimate_step = icon_service.estimate_step(call_transaction)
step_limit = estimate_step + 100000
signed_transaction = SignedTransaction(call_transaction, deployer_wallet, step_limit)

tx_hash = icon_service.send_transaction(signed_transaction)

tx_result = get_tx_result(tx_hash)
tx_result

After this block finishes executing, now re-execute the block to check the total supply and random address balance. 5 tokens is deducted from total supply as well as from the caller address.