Safe Haskell | None |
---|---|
Language | Haskell2010 |
Account queries
Synopsis
- getAccount :: Address -> BlockfrostClient AccountInfo
- getAccountRewards :: Address -> BlockfrostClient [AccountReward]
- getAccountRewards' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountReward]
- getAccountHistory :: Address -> BlockfrostClient [AccountHistory]
- getAccountHistory' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountHistory]
- getAccountDelegations :: Address -> BlockfrostClient [AccountDelegation]
- getAccountDelegations' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountDelegation]
- getAccountRegistrations :: Address -> BlockfrostClient [AccountRegistration]
- getAccountRegistrations' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountRegistration]
- getAccountWithdrawals :: Address -> BlockfrostClient [AccountWithdrawal]
- getAccountWithdrawals' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountWithdrawal]
- getAccountMirs :: Address -> BlockfrostClient [AccountMir]
- getAccountMirs' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountMir]
Documentation
getAccount :: Address -> BlockfrostClient AccountInfo Source #
Obtain information about a specific stake account.
getAccountRewards :: Address -> BlockfrostClient [AccountReward] Source #
Obtain information about the history of a specific account.
getAccountRewards' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountReward] Source #
Obtain information about the history of a specific account.
Allows custom paging and ordering using Paged
and SortOrder
.
getAccountHistory :: Address -> BlockfrostClient [AccountHistory] Source #
Obtain information about the history of a specific account.
getAccountHistory' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountHistory] Source #
Obtain information about the history of a specific account.
Allows custom paging and ordering using Paged
and SortOrder
.
getAccountDelegations :: Address -> BlockfrostClient [AccountDelegation] Source #
Obtain information about the delegation of a specific account.
getAccountDelegations' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountDelegation] Source #
Obtain information about the delegation of a specific account.
Allows custom paging and ordering using Paged
and SortOrder
.
getAccountRegistrations :: Address -> BlockfrostClient [AccountRegistration] Source #
Obtain information about the registrations and deregistrations of a specific account.
getAccountRegistrations' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountRegistration] Source #
Obtain information about the registrations and deregistrations of a specific account.
Allows custom paging and ordering using Paged
and SortOrder
.
getAccountWithdrawals :: Address -> BlockfrostClient [AccountWithdrawal] Source #
Obtain information about the withdrawals of a specific account.
getAccountWithdrawals' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountWithdrawal] Source #
Obtain information about the withdrawals of a specific account.
Allows custom paging and ordering using Paged
and SortOrder
.
getAccountMirs :: Address -> BlockfrostClient [AccountMir] Source #
Obtain information about the MIRs of a specific account.
getAccountMirs' :: Address -> Paged -> SortOrder -> BlockfrostClient [AccountMir] Source #
Obtain information about the MIRs of a specific account.
Allows custom paging and ordering using Paged
and SortOrder
.