I created an asset and it seems like I can only opt in one of the accounts I created for testing. The opt in transaction does not seem to go through for any other accounts I created, even though the return says that the transaction was confirmed. I cannot transfer the asset to any of these accounts for that reason.
When I created the asset I set the decimal parameter to 2. I do not fully understand how the decimal parameter works, I want this to be a fungible asset that i can send to any account I want.
Created asset looks like this:
txn = AssetConfigTxn(
sender=accounts[1][‘pk’],
sp=params,
total=1000000000,
default_frozen=False,
unit_name=“MYCOIN”,
asset_name=“mine”,
manager=accounts[2][‘pk’],
reserve=accounts[2][‘pk’],
freeze=accounts[2][‘pk’],
clawback=accounts[2][‘pk’],
url=“https://something.com/”,
decimals=2)