Safe Haskell | None |
---|---|
Language | Haskell2010 |
Metadata queries
Synopsis
- getTxMetadataLabels :: BlockfrostClient [TxMeta]
- getTxMetadataLabels' :: Paged -> SortOrder -> BlockfrostClient [TxMeta]
- getTxMetadataByLabelJSON :: Text -> BlockfrostClient [TxMetaJSON]
- getTxMetadataByLabelJSON' :: Text -> Paged -> SortOrder -> BlockfrostClient [TxMetaJSON]
- getTxMetadataByLabelCBOR :: Text -> BlockfrostClient [TxMetaCBOR]
- getTxMetadataByLabelCBOR' :: Text -> Paged -> SortOrder -> BlockfrostClient [TxMetaCBOR]
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
.