Blockfrost.Cardano.Addresses (Blockfrost v0.1.1) View Source
Functions for to the /addresses namespace in the Blockfrost API
Link to this section Summary
Functions
Obtain details about a specific address
Transactions of a specific address
UTXOs of a specific address
Obtain information about a specific address
Link to this section Functions
Specs
address_details(Blockfrost.t(), String.t(), Keyword.t()) :: {:ok, Blockfrost.Response.AddressDetailsResponse.t()} | Blockfrost.HTTP.error_response()
Obtain details about a specific address
Specs
address_transactions(Blockfrost.t(), String.t(), Keyword.t()) :: {:ok, Blockfrost.Response.AddressTransactionsResponse.t()} | Blockfrost.HTTP.error_response()
Transactions of a specific address
Supports pagination.
Takes two additional options:
:from
: The block number and optionally also index from which (inclusive) to start search for results, concatenated using colon. Has to be lower than or equal to to parameter. Example:"8929261"
:to
: The block number and optionally also index where (inclusive) to end the search for results, concatenated using colon. Has to be higher than or equal to from parameter. Example:"9999269:10"
Specs
address_utxos(Blockfrost.t(), String.t(), Keyword.t()) :: {:ok, Blockfrost.Response.AddressUTXOsResponse.t()} | Blockfrost.HTTP.error_response()
UTXOs of a specific address
Supports pagination.
Specs
specific_address(Blockfrost.t(), String.t(), Keyword.t()) :: {:ok, Blockfrost.Response.SpecificAddressResponse.t()} | Blockfrost.HTTP.error_response()
Obtain information about a specific address