You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I create a new address and don't send any tokens to it, I would expect to get an empty list as a result if I used chain_context.utxos(address). Currently, however, it raises the following exception:
| File "/usr/local/lib/python3.9/site-packages/blockfrost/utils.py", line 83, in recursive_append
| raise ApiError(request_response)
| blockfrost.utils.ApiError: {'status_code': 404, 'error': 'Not Found', 'message': 'The requested component has not been found.'}
This is a snippet if you want to reproduce the error,
The solution is to update the blockfrost chain context to try and catch the blockfrost api for this address. If it receives a 404 error, should return an empty list.
If I create a new address and don't send any tokens to it, I would expect to get an empty list as a result if I used
chain_context.utxos(address)
. Currently, however, it raises the following exception:This is a snippet if you want to reproduce the error,
This will give us the exception written above, but I would expect to get an empty list instead.
The text was updated successfully, but these errors were encountered: