blockfrost-client-0.2.1.0: blockfrost.io basic client
Safe HaskellNone
LanguageHaskell2010

Blockfrost.Client.Cardano.Accounts

Description

Account queries

Synopsis

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.

getAccountAssociatedAddresses :: Address -> BlockfrostClient [AddressAssociated] Source #

Obtain information about the addresses of a specific account.

getAccountAssociatedAddresses' :: Address -> Paged -> SortOrder -> BlockfrostClient [AddressAssociated] Source #

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

getAccountAssociatedAssets :: Address -> BlockfrostClient [Amount] Source #

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

getAccountAssociatedAssets' :: Address -> Paged -> SortOrder -> BlockfrostClient [Amount] Source #

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