Get public transitions by address and timestamp range
Returns the transitions for a given address within a certain timestamp range. These are only public transitions. The latest (according to block timestamp) transitions are returned first. We limit the number of returned transitions to a maximum of 1000 per call.
Arguments
Parameter | Type | Required | Description |
address | string | Yes | The aleo address of the transitions. |
startTimestamp | number | Yes | The starting timestamp of the requested transitions. Should be a nonnegative integer. |
endTimestamp | number | Yes | The ending timestamp of the requested transitions. Should be a nonnegative integer and greater or equal than startTimestamp . endTimestamp is inclusive. |
limit | number | No | Optional parameter which if set limits the number of items returned. |
Response
Parameter | Type | Description |
result | Array<{address: string, transition_id: string, transition: Transition, transaction_id: string, block_height: number, timestamp: number}> | The requested transitions. |