curl --request GET \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/gettransactionlistfrompending{
"transactions": [
{
"txID": "f34f1c799700a9d83b67fdcadd7be697010a8dbbcd520de4ac46a648e3e7ae3d",
"raw_data": {
"contract": [
{
"type": "TransferContract",
"parameter": {}
}
],
"ref_block_bytes": "6f80",
"ref_block_hash": "1c9c4b8c43c5e0b1",
"expiration": 1704067260000,
"timestamp": 1704067200000,
"fee_limit": 100000000
},
"signature": [
"<string>"
],
"ret": [
{
"contractRet": "SUCCESS"
}
]
}
]
}curl --request GET \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/gettransactionlistfrompending{
"transactions": [
{
"txID": "f34f1c799700a9d83b67fdcadd7be697010a8dbbcd520de4ac46a648e3e7ae3d",
"raw_data": {
"contract": [
{
"type": "TransferContract",
"parameter": {}
}
],
"ref_block_bytes": "6f80",
"ref_block_hash": "1c9c4b8c43c5e0b1",
"expiration": 1704067260000,
"timestamp": 1704067200000,
"fee_limit": 100000000
},
"signature": [
"<string>"
],
"ret": [
{
"contractRet": "SUCCESS"
}
]
}
]
}transactions — array of pending transaction objects, each containing:
txID — unique transaction identifier hashraw_data — raw transaction data including:
contract — array with transaction contract detailsref_block_bytes — reference block bytes for validationref_block_hash — hash of the reference blockexpiration — transaction expiration timestamptimestamp — transaction creation timestampfee_limit — maximum fee allowed for this transactionsignature — array of transaction signaturesret — transaction result information (if available)wallet/gettransactionlistfrompending method is used for:
List of all pending transactions
Array of pending transaction objects
Show child attributes
Was this page helpful?