Safe Haskell | None |
---|---|
Language | Haskell2010 |
Asset queries
Synopsis
- getAssets :: BlockfrostClient [AssetInfo]
- getAssets' :: Paged -> SortOrder -> BlockfrostClient [AssetInfo]
- getAssetDetails :: AssetId -> BlockfrostClient AssetDetails
- getAssetHistory :: AssetId -> BlockfrostClient [AssetHistory]
- getAssetHistory' :: AssetId -> Paged -> SortOrder -> BlockfrostClient [AssetHistory]
- getAssetTransactions :: AssetId -> BlockfrostClient [AssetTransaction]
- getAssetTransactions' :: AssetId -> Paged -> SortOrder -> BlockfrostClient [AssetTransaction]
- getAssetAddresses :: AssetId -> BlockfrostClient [AssetAddress]
- getAssetAddresses' :: AssetId -> Paged -> SortOrder -> BlockfrostClient [AssetAddress]
- getAssetsByPolicy :: PolicyId -> BlockfrostClient [AssetInfo]
- getAssetsByPolicy' :: PolicyId -> Paged -> SortOrder -> BlockfrostClient [AssetInfo]
Documentation
getAssets :: BlockfrostClient [AssetInfo] Source #
List all assets
getAssets' :: Paged -> SortOrder -> BlockfrostClient [AssetInfo] Source #
List all assets
Allows custom paging and ordering using Paged
and SortOrder
.
getAssetDetails :: AssetId -> BlockfrostClient AssetDetails Source #
Information about a specific asset
getAssetHistory :: AssetId -> BlockfrostClient [AssetHistory] Source #
History of a specific asset
getAssetHistory' :: AssetId -> Paged -> SortOrder -> BlockfrostClient [AssetHistory] Source #
History of a specific asset
Allows custom paging and ordering using Paged
and SortOrder
.
getAssetTransactions :: AssetId -> BlockfrostClient [AssetTransaction] Source #
List of a specific asset transactions
getAssetTransactions' :: AssetId -> Paged -> SortOrder -> BlockfrostClient [AssetTransaction] Source #
List of a specific asset transactions
Allows custom paging and ordering using Paged
and SortOrder
.
getAssetAddresses :: AssetId -> BlockfrostClient [AssetAddress] Source #
List of a addresses containing a specific asset
getAssetAddresses' :: AssetId -> Paged -> SortOrder -> BlockfrostClient [AssetAddress] Source #
List of a addresses containing a specific asset
Allows custom paging and ordering using Paged
and SortOrder
.
getAssetsByPolicy :: PolicyId -> BlockfrostClient [AssetInfo] Source #
List of asset minted under a specific policy
getAssetsByPolicy' :: PolicyId -> Paged -> SortOrder -> BlockfrostClient [AssetInfo] Source #
List of asset minted under a specific policy
Allows custom paging and ordering using Paged
and SortOrder
.