curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getnowblock \
--header 'Content-Type: application/json' \
--data '{}'
{
"blockID": "<string>",
"block_header": {
"raw_data": {},
"witness_signature": "<string>"
},
"transactions": [
"<any>"
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getnowblock \
--header 'Content-Type: application/json' \
--data '{}'
{
"blockID": "<string>",
"block_header": {
"raw_data": {},
"witness_signature": "<string>"
},
"transactions": [
"<any>"
]
}
blockID
— the block hash identifierblock_header
— block header information containing:
raw_data
— raw block header data including:
timestamp
— block generation timestamptxTrieRoot
— transaction trie root hashparentHash
— parent block hashnumber
— block heightwitness_address
— address of the block producerversion
— block versionwitness_signature
— block producer’s signaturetransactions
— array of transactions included in the blockwallet/getnowblock
method is used for:
Current block information
The response is of type object
.
Was this page helpful?