The following code snippet works fine but UTXO ledgers, but not for Ethereum:
with graphsense.ApiClient(configuration) as api_client:
api = addresses_api.AddressesApi(api_client)
try:
e = api.get_address_entity('eth', '0xFA8E3920daF271daB92Be9B87d9998DDd94FEF08')
print(e)
except ApiException as e:
#pass
print(e)
The following code snippet works fine but UTXO ledgers, but not for Ethereum: