curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/walletsolidity/getblockbylimitnext \
--header 'Content-Type: application/json' \
--data '
{
"startNum": 70000000,
"endNum": 70000010
}
'{
"block": [
{
"blockID": "<string>",
"block_header": {
"raw_data": {
"number": 123,
"timestamp": 123,
"parentHash": "<string>",
"witness_address": "<string>"
},
"witness_signature": "<string>"
},
"transactions": [
{}
],
"blockSize": 123
}
]
}curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/walletsolidity/getblockbylimitnext \
--header 'Content-Type: application/json' \
--data '
{
"startNum": 70000000,
"endNum": 70000010
}
'{
"block": [
{
"blockID": "<string>",
"block_header": {
"raw_data": {
"number": 123,
"timestamp": 123,
"parentHash": "<string>",
"witness_address": "<string>"
},
"witness_signature": "<string>"
},
"transactions": [
{}
],
"blockSize": 123
}
]
}TRON API method that retrieves a range of solidified blocks by specifying start block number and limit. This method queries confirmed and finalized blockchain state, providing reliable block information that cannot be rolled back.Documentation Index
Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
Use this file to discover all available pages before exploring further.
startNum — the starting block numberendNum — the ending block number (range limit)blockID — the block hashblock_header — block header informationtransactions — array of transactions in each blockblockSize — size of each block in bytestimestamp — block creation timestampsnumber — block numbers in the rangewalletsolidity/getblockbylimitnext method is used for:
Was this page helpful?