blockfrost-client-0.2.1.0: blockfrost.io basic client
Safe HaskellNone
LanguageHaskell2010

Blockfrost.Client.Cardano.Assets

Description

Asset queries

Synopsis

Documentation

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.