Hello all, I am a noob trying to dive into learning the blockfrost api via python,
I have a script I want to make, which requires me to call api.transaction_metadata, but it is returning a blank list. I am wondering why this is? (edit: my goal is to get transaction cost metadata)
Im unsure why it doesnt want to work for me. I have imported BlockFrostApi.
also, is there anywhere I can find the python specific documentation for this package? quite often it is confusing to try and find which name the different quereys listed here (Blockfrost.io ~ API Documentation) are in python.
(that is the SUNDAE minting transaction, just for example) you get a lot of metadata.
Yes, the Python version of the Blockfrost API is not documented well. You just have to look in the source (or in help(blockfrost.BlockFrostApi) on the Python REPL), which functions exist.
Thank you for the reply! Thats why it was blank. whoops,
For some reason I thought metadata would include stuff like transaction fees (which is what I am after) is there an api call for getting that information?