post https://api-sdk.lmnl.dev/api/wallet/pending-transaction
This API fetches transactions that are currently in a 'Pending' state. This can be done by following two methods : -> By Pagination (For List of Pending Transactions) -> By Sequence ID (For Individual Pending Transaction)
Quick Navigation : Function Index
By Pagination
Retrieves a list of transactions in the 'Pending' state. Refer to the following guide:
Example Request Body
{
"wallet":{
"coin": "eth",
"walletId":1
},
"getPendingTransactionOptions":{
"pagination":{
"pageNumber":1,
"pageSize":10
}
}
}
By Sequence ID
Fetches details of a 'Pending' transaction using its Sequence ID. See the guide below:
Example Response Body
{
"wallet":{
"coin": "eth",
"walletId":1
},
"getPendingTransactionOptions":{
"sequenceId":"93544241-c00e-c754-3bd0-494567a67ee8"
}
}