Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions blockfrost-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Version [next](https://github.com/blockfrost/blockfrost-haskell/compare/api-0.14.0.0...master) (2025-MM-DD)

* Changes
* Fix `MempoolUTxOInput` `address` field from `Text` to `Maybe Text` [#83](https://github.com/blockfrost/blockfrost-haskell/issues/83) [#84](https://github.com/blockfrost/blockfrost-haskell/issues/84)

# Version [0.14.0.0](https://github.com/blockfrost/blockfrost-haskell/compare/api-0.13.0.0...api-0.14.0.0) (2025-12-02)

* Changes
Expand Down
2 changes: 1 addition & 1 deletion blockfrost-api/src/Blockfrost/Types/Cardano/Mempool.hs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ data TransactionInMempool = TransactionInMempool
via CustomJSON '[FieldLabelModifier '[StripPrefix "_transaction", CamelToSnake]] TransactionInMempool

data MempoolUTxOInput = MempoolUTxOInput
{ _address :: Text -- ^ Address
{ _address :: Maybe Text -- ^ Address
, _txHash :: Text -- ^ Transaction hash
, _outputIndex :: Integer -- ^ Output index
, _collateral :: Bool -- ^ True if the input is a collateral input
Expand Down