> ## 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.

# walletsolidity/getnowblock | TRON

> TRON API method that retrieves the current solidified block (latest confirmed block). walletsolidity/getnowblock on TRON via Chainstack.

TRON API method that retrieves the current solidified block (latest confirmed block). This method queries the most recent confirmed and finalized blockchain state, providing reliable current block information that cannot be rolled back.

## Parameters

No parameters required.

## Response

Returns the current solidified block information including:

* `blockID` — the current block hash
* `block_header` — current block header information
* `transactions` — array of transactions in the current block
* `blockSize` — size of the current block in bytes
* `timestamp` — current block creation timestamp
* `number` — current block number
* `witness_address` — address of the current block producer

## Use case

The `walletsolidity/getnowblock` method is used for:

* Retrieving the latest confirmed block from solidified blockchain state
* Getting current finalized blockchain height and timestamp
* Building applications that need reliable current block information
* Implementing monitoring systems that track confirmed blockchain progress


## OpenAPI

````yaml openapi/tron_node_api/walletsolidity_getnowblock.json post /95e61622bf6a8af293978377718e3b77/walletsolidity/getnowblock
openapi: 3.0.0
info:
  title: walletsolidity/getnowblock TRON API
  version: 1.0.0
  description: Get current solidified block (latest confirmed block)
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/walletsolidity/getnowblock:
    post:
      tags:
        - Solidity Query
      summary: walletsolidity/getnowblock
      operationId: getSolidityNowBlock
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties: {}
      responses:
        '200':
          description: Current solidified block information
          content:
            application/json:
              schema:
                type: object
                properties:
                  blockID:
                    type: string
                    description: Current block hash identifier
                    example: >-
                      0000000004326f801c9c4b8c43c5e0b1f5e7b4c4a8ff6d02ab53a26d2344a5c1
                  block_header:
                    type: object
                    properties:
                      raw_data:
                        type: object
                        properties:
                          number:
                            type: integer
                            example: 70000000
                            description: Current block number
                          txTrieRoot:
                            type: string
                            example: >-
                              d41c56e7e8b4a9d4e7c8c7b4f3e6d5a2b1c9d8e7f6a5b4c3d2e1f0e9d8c7b6
                          parentHash:
                            type: string
                            example: >-
                              0000000004326f7f2c9c4b8c43c5e0b1f5e7b4c4a8ff6d02ab53a26d2344a5c0
                          timestamp:
                            type: integer
                            example: 1704067200000
                            description: Current block timestamp
                          witness_address:
                            type: string
                            example: >-
                              41e38c95e0d7e9b68f7c8f7b4d3e6a5c2b1f9e8d7c6b5a4f3e2d1c0b9a8
                      witness_signature:
                        type: string
                        description: Witness signature for the current block
                  transactions:
                    type: array
                    description: Transactions in the current block
                    items:
                      type: object
                      properties:
                        txID:
                          type: string
                        raw_data:
                          type: object
                        signature:
                          type: array
                          items:
                            type: string
                  blockSize:
                    type: integer
                    description: Size of the current block in bytes
                    example: 1024

````