ManagedBlockchainQuery / Paginator / ListTransactions
ListTransactions#
- class ManagedBlockchainQuery.Paginator.ListTransactions#
- paginator = client.get_paginator('list_transactions') - paginate(**kwargs)#
- Creates an iterator that will paginate through responses from - ManagedBlockchainQuery.Client.list_transactions().- See also: AWS API Documentation - Request Syntax- response_iterator = paginator.paginate( address='string', network='ETHEREUM_MAINNET'|'BITCOIN_MAINNET'|'BITCOIN_TESTNET'|'ETHEREUM_SEPOLIA_TESTNET', fromBlockchainInstant={ 'time': datetime(2015, 1, 1) }, toBlockchainInstant={ 'time': datetime(2015, 1, 1) }, sort={ 'sortBy': 'TRANSACTION_TIMESTAMP', 'sortOrder': 'ASCENDING'|'DESCENDING' }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) - Parameters:
- address (string) – - [REQUIRED] - The address (either a contract or wallet), whose transactions are being requested. 
- network (string) – - [REQUIRED] - The blockchain network where the transactions occurred. 
- fromBlockchainInstant (dict) – - The container for time. - time (datetime) – - The container of the - Timestampof the blockchain instant.- Note- This - timestampwill only be recorded up to the second.
 
- toBlockchainInstant (dict) – - The container for time. - time (datetime) – - The container of the - Timestampof the blockchain instant.- Note- This - timestampwill only be recorded up to the second.
 
- sort (dict) – - Sorts items in an ascending order if the first page starts at - fromTime. Sorts items in a descending order if the first page starts at- toTime.- sortBy (string) – - Defaults to the value - TRANSACTION_TIMESTAMP.
- sortOrder (string) – - The container for the sort order for - ListTransactions. The- SortOrderfield only accepts the values- ASCENDINGand- DESCENDING. Not providing- SortOrderwill default to- ASCENDING.
 
- PaginationConfig (dict) – - A dictionary that provides parameters to control pagination. - MaxItems (integer) – - The total number of items to return. If the total number of items available is more than the value specified in max-items then a - NextTokenwill be provided in the output that you can use to resume pagination.
- PageSize (integer) – - The size of each page. 
- StartingToken (string) – - A token to specify where to start paginating. This is the - NextTokenfrom a previous response.
 
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'transactions': [ { 'transactionHash': 'string', 'network': 'ETHEREUM_MAINNET'|'BITCOIN_MAINNET'|'BITCOIN_TESTNET'|'ETHEREUM_SEPOLIA_TESTNET', 'transactionTimestamp': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } - Response Structure- (dict) – - transactions (list) – - The array of transactions returned by the request. - (dict) – - The container of the transaction output. - transactionHash (string) – - The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain. 
- network (string) – - The blockchain network where the transaction occurred. 
- transactionTimestamp (datetime) – - The time when the transaction occurred. 
 
 
- NextToken (string) – - A token to resume pagination.