Safe Haskell | None |
---|---|
Language | Haskell2010 |
Address queries
Synopsis
- getAddressInfo :: Address -> BlockfrostClient AddressInfo
- getAddressDetails :: Address -> BlockfrostClient AddressDetails
- getAddressUtxos :: Address -> BlockfrostClient [AddressUtxo]
- getAddressUtxos' :: Address -> Paged -> SortOrder -> BlockfrostClient [AddressUtxo]
- getAddressUtxosAsset :: Address -> AssetId -> BlockfrostClient [AddressUtxo]
- getAddressUtxosAsset' :: Address -> AssetId -> Paged -> SortOrder -> BlockfrostClient [AddressUtxo]
- getAddressTransactions :: Address -> BlockfrostClient [AddressTransaction]
- getAddressTransactions' :: Address -> Paged -> SortOrder -> Maybe BlockIndex -> Maybe BlockIndex -> BlockfrostClient [AddressTransaction]
Documentation
getAddressInfo :: Address -> BlockfrostClient AddressInfo Source #
Obtain information about a specific address.
getAddressDetails :: Address -> BlockfrostClient AddressDetails Source #
Obtain details about an address.
getAddressUtxos :: Address -> BlockfrostClient [AddressUtxo] Source #
UTXOs of the address.
getAddressUtxos' :: Address -> Paged -> SortOrder -> BlockfrostClient [AddressUtxo] Source #
UTXOs of the address.
Allows custom paging and ordering using Paged
and SortOrder
.
getAddressUtxosAsset :: Address -> AssetId -> BlockfrostClient [AddressUtxo] Source #
UTXOs of the address containing specific asset.
getAddressUtxosAsset' :: Address -> AssetId -> Paged -> SortOrder -> BlockfrostClient [AddressUtxo] Source #
UTXOs of the address containing specific asset.
Allows custom paging and ordering using Paged
and SortOrder
.
getAddressTransactions :: Address -> BlockfrostClient [AddressTransaction] Source #
Transactions on the address.
getAddressTransactions' :: Address -> Paged -> SortOrder -> Maybe BlockIndex -> Maybe BlockIndex -> BlockfrostClient [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.