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

Blockfrost.Client.Cardano.Metadata

Description

Metadata queries

Synopsis

Documentation

getTxMetadataLabels :: BlockfrostClient [TxMeta] Source #

List of all used transaction metadata labels.

getTxMetadataLabels' :: Paged -> SortOrder -> BlockfrostClient [TxMeta] Source #

List of all used transaction metadata labels. Allows custom paging and ordering using Paged and SortOrder.

getTxMetadataByLabelJSON :: Text -> BlockfrostClient [TxMetaJSON] Source #

Transaction metadata per label (JSON Value)

getTxMetadataByLabelJSON' :: Text -> Paged -> SortOrder -> BlockfrostClient [TxMetaJSON] Source #

Transaction metadata per label (JSON Value) Allows custom paging and ordering using Paged and SortOrder.

getTxMetadataByLabelCBOR :: Text -> BlockfrostClient [TxMetaCBOR] Source #

Transaction metadata per label (CBOR ByteString)

getTxMetadataByLabelCBOR' :: Text -> Paged -> SortOrder -> BlockfrostClient [TxMetaCBOR] Source #

Transaction metadata per label (CBOR ByteString) Allows custom paging and ordering using Paged and SortOrder.