blockfrost-client-0.4.0.1: blockfrost.io basic client
Safe Haskell None
Language Haskell2010

Blockfrost.Client.Cardano.Accounts

Description

Account queries

Synopsis

Documentation

getAccount :: MonadBlockfrost m => Address -> m AccountInfo Source #

Obtain information about a specific stake account.

getAccountRewards :: MonadBlockfrost m => Address -> m [ AccountReward ] Source #

Obtain information about the history of a specific account.

getAccountRewards' :: MonadBlockfrost m => Address -> Paged -> SortOrder -> m [ AccountReward ] Source #

Obtain information about the history of a specific account. Allows custom paging and ordering using Paged and SortOrder .

getAccountHistory :: MonadBlockfrost m => Address -> m [ AccountHistory ] Source #

Obtain information about the history of a specific account.

getAccountHistory' :: MonadBlockfrost m => Address -> Paged -> SortOrder -> m [ AccountHistory ] Source #

Obtain information about the history of a specific account. Allows custom paging and ordering using Paged and SortOrder .

getAccountDelegations :: MonadBlockfrost m => Address -> m [ AccountDelegation ] Source #

Obtain information about the delegation of a specific account.

getAccountDelegations' :: MonadBlockfrost m => Address -> Paged -> SortOrder -> m [ AccountDelegation ] Source #

Obtain information about the delegation of a specific account. Allows custom paging and ordering using Paged and SortOrder .

getAccountRegistrations :: MonadBlockfrost m => Address -> m [ AccountRegistration ] Source #

Obtain information about the registrations and deregistrations of a specific account.

getAccountRegistrations' :: MonadBlockfrost m => Address -> Paged -> SortOrder -> m [ AccountRegistration ] Source #

Obtain information about the registrations and deregistrations of a specific account. Allows custom paging and ordering using Paged and SortOrder .

getAccountWithdrawals :: MonadBlockfrost m => Address -> m [ AccountWithdrawal ] Source #

Obtain information about the withdrawals of a specific account.

getAccountWithdrawals' :: MonadBlockfrost m => Address -> Paged -> SortOrder -> m [ AccountWithdrawal ] Source #

Obtain information about the withdrawals of a specific account. Allows custom paging and ordering using Paged and SortOrder .

getAccountMirs :: MonadBlockfrost m => Address -> m [ AccountMir ] Source #

Obtain information about the MIRs of a specific account.

getAccountMirs' :: MonadBlockfrost m => Address -> Paged -> SortOrder -> m [ AccountMir ] Source #

Obtain information about the MIRs of a specific account. Allows custom paging and ordering using Paged and SortOrder .

getAccountAssociatedAddresses :: MonadBlockfrost m => Address -> m [ AddressAssociated ] Source #

Obtain information about the addresses of a specific account.

getAccountAssociatedAddresses' :: MonadBlockfrost m => Address -> Paged -> SortOrder -> m [ AddressAssociated ] Source #

Obtain information about the addresses of a specific account. Allows custom paging and ordering using Paged and SortOrder .

getAccountAssociatedAssets :: MonadBlockfrost m => Address -> m [ Amount ] Source #

Obtain information about assets associated with addresses of a specific account.

getAccountAssociatedAssets' :: MonadBlockfrost m => Address -> Paged -> SortOrder -> m [ Amount ] Source #

Obtain information about assets associated with addresses of a specific account. Allows custom paging and ordering using Paged and SortOrder .