Untitled
from tonsdk.utils import Address # Địa chỉ Hexadecimal hex_address = "0:7e8125f0e5b54c96db34762e0c3b5e8a5a0e84b3e1c5e665318bdc3b2c722a21" # Chuyển đổi từ Hexadecimal sang Friendly Address friendly_address = Address(hex_address).to_friendly() print("Friendly Address:", friendly_address) # Chuyển đổi từ Friendly Address sang Hexadecimal converted_hex_address = Address(friendly_address).to_raw() print("Hexadecimal Address:", converted_hex_address)1
Leave a Comment