Skip to content

/wallet/gettransactionlistfrompending

Returns the list of all transaction IDs in the pending pool.

  • Source: framework/src/main/java/org/tron/core/services/http/GetTransactionListFromPendingServlet.java
  • Method: GET / POST
  • Response: api.TransactionIdList

Request parameters

Field Type Required Description
visible bool No No effect (response has no bytes fields)

Example:

curl --request POST \
     --url https://nile.trongrid.io/wallet/gettransactionlistfrompending \
     --header 'accept: application/json'

Response

Field Type Description
txId repeated string List of transaction ID hex strings

Response example:

{
  "txId": [
    "7a265c89822d2dd9ee2187a728db3f273784943d588fd7b79ce972fc14a3f1de",
    "93347d947c339a2a7df588d3a96a003ec8745a4e0ee93a8074db3f1a754f21b5"
  ]
}

Error responses

Trigger Response
Internal node error (failed to read the pending pool) {"Error": "<exceptionClass> : <message>"}