seed = [b'metadata', bytes(program_id), bytes(PublicKey("AAFw5ekM42VZW63v9xPmuSKNnVPJ2JY2jVCEBscShB4a"))]
greeted, nonce = PublicKey.find_program_address(seeds=seed, program_id=program_id)
data = client.get_account_info(greeted)['result']['value']['data']
data[0]
I get the output(image attached):
"BLXRjfGGRq3wZT89L+Hj4D.........." actually longer than this, image attached
My guess is this is some base 64 or 58 something, but I have no idea what it is or how to convert the data to readable format in python.
Any Help is much appreciated.