curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/gettransactionfrompending \
--header 'Content-Type: application/json' \
--data '
{
"value": "f34f1c799700a9d83b67fdcadd7be697010a8dbbcd520de4ac46a648e3e7ae3d"
}
'{
"txID": "f34f1c799700a9d83b67fdcadd7be697010a8dbbcd520de4ac46a648e3e7ae3d",
"raw_data": {
"contract": [
{
"type": "TransferContract",
"parameter": {
"type_url": "type.googleapis.com/protocol.TransferContract",
"value": {}
}
}
],
"ref_block_bytes": "6f80",
"ref_block_hash": "1c9c4b8c43c5e0b1",
"expiration": 1704067260000,
"timestamp": 1704067200000,
"fee_limit": 100000000
},
"signature": [
"<string>"
],
"ret": [
{
"contractRet": "SUCCESS"
}
]
}curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/gettransactionfrompending \
--header 'Content-Type: application/json' \
--data '
{
"value": "f34f1c799700a9d83b67fdcadd7be697010a8dbbcd520de4ac46a648e3e7ae3d"
}
'{
"txID": "f34f1c799700a9d83b67fdcadd7be697010a8dbbcd520de4ac46a648e3e7ae3d",
"raw_data": {
"contract": [
{
"type": "TransferContract",
"parameter": {
"type_url": "type.googleapis.com/protocol.TransferContract",
"value": {}
}
}
],
"ref_block_bytes": "6f80",
"ref_block_hash": "1c9c4b8c43c5e0b1",
"expiration": 1704067260000,
"timestamp": 1704067200000,
"fee_limit": 100000000
},
"signature": [
"<string>"
],
"ret": [
{
"contractRet": "SUCCESS"
}
]
}value — transaction ID hash of the pending transaction to retrievetxID — unique transaction identifier hashraw_data — raw transaction data containing:
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/gettransactionfrompending method is used for:
Transaction ID hash of the pending transaction to retrieve
Specific pending transaction details
Unique transaction identifier hash
"f34f1c799700a9d83b67fdcadd7be697010a8dbbcd520de4ac46a648e3e7ae3d"
Show child attributes
Reference block bytes for validation
"6f80"
Hash of the reference block
"1c9c4b8c43c5e0b1"
Transaction expiration timestamp
1704067260000
Transaction creation timestamp
1704067200000
Maximum fee allowed for this transaction
100000000
Array of transaction signatures
Was this page helpful?