Safe Haskell | None |
---|---|
Language | Haskell2010 |
Metadata queries
Synopsis
- getTxMetadataLabels :: MonadBlockfrost m => m [TxMeta]
- getTxMetadataLabels' :: MonadBlockfrost m => Paged -> SortOrder -> m [TxMeta]
- getTxMetadataByLabelJSON :: MonadBlockfrost m => Text -> m [TxMetaJSON]
- getTxMetadataByLabelJSON' :: MonadBlockfrost m => Text -> Paged -> SortOrder -> m [TxMetaJSON]
- getTxMetadataByLabelCBOR :: MonadBlockfrost m => Text -> m [TxMetaCBOR]
- getTxMetadataByLabelCBOR' :: MonadBlockfrost m => Text -> Paged -> SortOrder -> m [TxMetaCBOR]
Documentation
getTxMetadataLabels :: MonadBlockfrost m => m [TxMeta] Source #
List of all used transaction metadata labels.
getTxMetadataLabels' :: MonadBlockfrost m => Paged -> SortOrder -> m [TxMeta] Source #
List of all used transaction metadata labels.
Allows custom paging and ordering using Paged
and SortOrder
.
getTxMetadataByLabelJSON :: MonadBlockfrost m => Text -> m [TxMetaJSON] Source #
Transaction metadata per label (JSON Value
)
getTxMetadataByLabelJSON' :: MonadBlockfrost m => Text -> Paged -> SortOrder -> m [TxMetaJSON] Source #
Transaction metadata per label (JSON Value
)
Allows custom paging and ordering using Paged
and SortOrder
.
getTxMetadataByLabelCBOR :: MonadBlockfrost m => Text -> m [TxMetaCBOR] Source #
Transaction metadata per label (CBOR ByteString
)
getTxMetadataByLabelCBOR' :: MonadBlockfrost m => Text -> Paged -> SortOrder -> m [TxMetaCBOR] Source #
Transaction metadata per label (CBOR ByteString
)
Allows custom paging and ordering using Paged
and SortOrder
.