github.com/status-im/status-go@v1.1.0/appdatabase/migrations/sql/1686825075_cleanup_token_address.up.sql (about)

     1  -- Fix the token_address column in the transfers table that has been
     2  -- incorrectly set to a string of the form "0x12ab..34cd" instead of a byte array
     3  UPDATE transfers SET token_address = replace(replace(token_address, '0x', ''), '"', '') WHERE token_address LIKE '"0x%"';