You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While testing a sample token transfer on testnet, it was observed that the sender address appears as 0x00…0. This occurs because ICS-20 directly mints the token into the recipient’s account, making the sender address zero, instead of showing the actual ICS-20 contract as the sender.
Proposal
We can first mint the tokens to the ICS-20 contract itself and then perform the transfer. This ensures that the ICS-20 address is correctly reflected as the sender.
Remark
(Since token creation happens only once, this approach should not introduce any significant overhead.)
It actually should be observed for the minting (not just token creation) process as well.
The text was updated successfully, but these errors were encountered:
Farhad-Shabani
changed the title
Zero address appearing as sender in testnet when creating new IBC tokens
Zero address appearing as sender in testnet when minting IBC tokens
Feb 11, 2025
Context
While testing a sample token transfer on testnet, it was observed that the sender address appears as
0x00…0
. This occurs because ICS-20 directly mints the token into the recipient’s account, making the sender address zero, instead of showing the actual ICS-20 contract as the sender.Proposal
We can first mint the tokens to the ICS-20 contract itself and then perform the transfer. This ensures that the ICS-20 address is correctly reflected as the sender.
Remark
(Since token creation happens only once, this approach should not introduce any significant overhead.)It actually should be observed for the minting (not just token creation) process as well.
The text was updated successfully, but these errors were encountered: