get_pending_transfers_for_account

@mount("ft4.crosschain.get_pending_transfers_for_account") query get_pending_transfers_for_account(account_id: byte_array, page_size: integer?, page_cursor: text?): paged_result(source)

Retrieves all pending transfers for an account, that is: all crosschain transfers which was sent from this account but was not yet delivered to the final recipient. Once a transfer has been marked as completed on this chain, it will no longer show up in this query. Paginated.

Parameters

account_id

id of the account for which to get pending transfers

page_size

the size of the pages to retrieve

page_cursor

a pointer to where the page should start

See also

utils.paged_result

for information about pagination

crosschain.complete_transfer

for information about completing a transfer