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
In the AfterDenomMetadataCreation function in
evmos:x/erc20/keeper/denom_metadata_hooks.go:34, the validation employs a
case-insensitive comparison (strings.ToLower(newDenomMetadata.Base)) to match
the denomination prefix against the expected IBC prefix. This is problematic because different
casing denominations that are not IBC tokens (e.g., "IbC/..." or "IBc/...") will be treated as
equivalent
The text was updated successfully, but these errors were encountered:
In the AfterDenomMetadataCreation function in
evmos:x/erc20/keeper/denom_metadata_hooks.go:34, the validation employs a
case-insensitive comparison (strings.ToLower(newDenomMetadata.Base)) to match
the denomination prefix against the expected IBC prefix. This is problematic because different
casing denominations that are not IBC tokens (e.g., "IbC/..." or "IBc/...") will be treated as
equivalent
The text was updated successfully, but these errors were encountered: