blockfrost-haskell
blockfrost-haskell copied to clipboard
Haskell SDK for Blockfrost.io
Currently it is `newtype CostModels = CostModels { unCostModels :: Map ScriptType (Map Text Integer) }`, I propose it to be `newtype CostModels = CostModels { unCostModels :: Map ScriptType...
Closes #58. For reference, here is what Blockfrost returned for latest epoch: ``` { "epoch": 507, "min_fee_a": 44, "min_fee_b": 155381, "max_block_size": 90112, "max_tx_size": 16384, "max_block_header_size": 1100, "key_deposit": "2000000", "pool_deposit": "500000000",...
Blockfrost API (https://blockfrost.dev/api/latest-epoch-protocol-parameters) now provides it albeit not documented in their schema, is it already in progress? Else I can pick it up.
The api specification says you can run queries against the [mempool](https://blockfrost.dev/api/mempool) however these don't appear to be exposed in the SDK. Are there plans for this?