blockfrost-client-0.4.0.1: blockfrost.io basic client
Safe Haskell None
Language Haskell2010

Blockfrost.Client.Cardano.Addresses

Description

Address queries

Synopsis

Documentation

getAddressInfo :: MonadBlockfrost m => Address -> m AddressInfo Source #

Obtain information about a specific address.

getAddressUtxos' :: MonadBlockfrost m => Address -> Paged -> SortOrder -> m [ AddressUtxo ] Source #

UTXOs of the address. Allows custom paging and ordering using Paged and SortOrder .

getAddressUtxosAsset :: MonadBlockfrost m => Address -> AssetId -> m [ AddressUtxo ] Source #

UTXOs of the address containing specific asset.

getAddressUtxosAsset' :: MonadBlockfrost m => Address -> AssetId -> Paged -> SortOrder -> m [ AddressUtxo ] Source #

UTXOs of the address containing specific asset. Allows custom paging and ordering using Paged and SortOrder .

getAddressTransactions' :: MonadBlockfrost m => Address -> Paged -> SortOrder -> Maybe BlockIndex -> Maybe BlockIndex -> m [ AddressTransaction ] Source #

Transactions on the address. Allows custom paging and ordering using Paged and SortOrder . Also allows support for limiting block ranges using from / to BlockIndex es.