波场跟evm地址如何互相转换

波场跟evm地址如何互相转换

请先 登录 后评论

2 个回答

Tiny熊
  擅长:智能合约,以太坊
请先 登录 后评论
你慢慢说 - 开发工程师
import base58
import binascii

def convert_tron_to_ethereum_address(tron_address):
    try:
        decoded_bytes = base58.b58decode(tron_address)
        truncated_bytes = decoded_bytes[1:-4]
        ethereum_address = binascii.hexlify(truncated_bytes).decode('utf-8')
        return "0x" + ethereum_address
    except Exception as e:
        print(e)
        return None


if __name__ == '__main__':
    print(convert_tron_to_ethereum_address('TYH5fKhbo9a3uCxcw5B79z9wYATXu8wPtj'))
请先 登录 后评论
  • 2 关注
  • 0 收藏,2892 浏览
  • 癞蛤蟆 提出于 2023-12-24 17:05