getPublicTransactionsForAddress
Description
Retrieves IDs of public transactions associated with a given address from Aleo blockchain, within a range of block heights.
50000 blocks can be queried at maximum in a single request.
Method Parameters
params
-Object
:address
-string
: The Aleo address to retrieve the public NFTs for encoded in bech32 (prefix:aleo
).start
-number
: Start height of desired range (incuded).end
-number
: End height of desired range (excuded).page
(optional) -number
: Page number to get.transitionsPerRequest
(optional) -number
: Maximum amount of transactions returned by the request.
Returns
result
-Array<Object>
: Array of corresponding transactions.Transaction -
Object
:transaction_id
-string
: Transaction ID encoded in bech32 (prefix:at
).
Example
Request
Response
Last updated