Safe Haskell | None |
---|---|
Language | Haskell2010 |
Pool queries
Synopsis
- listPools :: BlockfrostClient [PoolId]
- listPools' :: Paged -> SortOrder -> BlockfrostClient [PoolId]
- listRetiredPools :: BlockfrostClient [PoolEpoch]
- listRetiredPools' :: Paged -> SortOrder -> BlockfrostClient [PoolEpoch]
- listRetiringPools :: BlockfrostClient [PoolEpoch]
- listRetiringPools' :: Paged -> SortOrder -> BlockfrostClient [PoolEpoch]
- getPool :: PoolId -> BlockfrostClient PoolInfo
- getPoolHistory :: PoolId -> BlockfrostClient [PoolHistory]
- getPoolHistory' :: PoolId -> Paged -> SortOrder -> BlockfrostClient [PoolHistory]
- getPoolMetadata :: PoolId -> BlockfrostClient (Maybe PoolMetadata)
- getPoolRelays :: PoolId -> BlockfrostClient [PoolRelay]
- getPoolDelegators :: PoolId -> BlockfrostClient [PoolDelegator]
- getPoolDelegators' :: PoolId -> Paged -> SortOrder -> BlockfrostClient [PoolDelegator]
- getPoolBlocks :: PoolId -> BlockfrostClient [BlockHash]
- getPoolBlocks' :: PoolId -> Paged -> SortOrder -> BlockfrostClient [BlockHash]
- getPoolUpdates :: PoolId -> BlockfrostClient [PoolUpdate]
- getPoolUpdates' :: PoolId -> Paged -> SortOrder -> BlockfrostClient [PoolUpdate]
Documentation
listPools :: BlockfrostClient [PoolId] Source #
List registered stake pools.
listPools' :: Paged -> SortOrder -> BlockfrostClient [PoolId] Source #
List registered stake pools.
Allows custom paging and ordering using Paged
and SortOrder
.
listRetiredPools :: BlockfrostClient [PoolEpoch] Source #
List retired stake pools.
listRetiredPools' :: Paged -> SortOrder -> BlockfrostClient [PoolEpoch] Source #
List retired stake pools.
Allows custom paging and ordering using Paged
and SortOrder
.
listRetiringPools :: BlockfrostClient [PoolEpoch] Source #
List retiring stake pools.
listRetiringPools' :: Paged -> SortOrder -> BlockfrostClient [PoolEpoch] Source #
List retiring stake pools.
Allows custom paging and ordering using Paged
and SortOrder
.
getPoolHistory :: PoolId -> BlockfrostClient [PoolHistory] Source #
Get stake pool history
getPoolHistory' :: PoolId -> Paged -> SortOrder -> BlockfrostClient [PoolHistory] Source #
Get stake pool history
Allows custom paging and ordering using Paged
and SortOrder
.
getPoolMetadata :: PoolId -> BlockfrostClient (Maybe PoolMetadata) Source #
Get stake pool metadata
getPoolRelays :: PoolId -> BlockfrostClient [PoolRelay] Source #
Get stake pool relays
getPoolDelegators :: PoolId -> BlockfrostClient [PoolDelegator] Source #
Get stake pool delegators
getPoolDelegators' :: PoolId -> Paged -> SortOrder -> BlockfrostClient [PoolDelegator] Source #
Get stake pool delegators
Allows custom paging and ordering using Paged
and SortOrder
.
getPoolBlocks :: PoolId -> BlockfrostClient [BlockHash] Source #
Get stake pool blocks
getPoolBlocks' :: PoolId -> Paged -> SortOrder -> BlockfrostClient [BlockHash] Source #
Get stake pool blocks
Allows custom paging and ordering using Paged
and SortOrder
.
getPoolUpdates :: PoolId -> BlockfrostClient [PoolUpdate] Source #
Get stake pool updates
getPoolUpdates' :: PoolId -> Paged -> SortOrder -> BlockfrostClient [PoolUpdate] Source #
Get stake pool updates
Allows custom paging and ordering using Paged
and SortOrder
.