getShardBlockProof
TON node API
getShardBlockProof | TON v2
The getShardBlockProof method retrieves the proof of a specific shard block in the TON blockchain. Use it on TON v2 via Chainstack.
GET
getShardBlockProof
The
getShardBlockProof method retrieves the proof of a specific shard block in the TON blockchain. This method is crucial for verifying the authenticity and inclusion of shard blocks within the overall TON blockchain structure.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
TON billing: full or archive by block ageThis method is billed as archive (2 RUs) when the requested block is 128 or more seqno behind the tip, and full (1 RU) otherwise. See Request units — TON method scope.
JSON-RPC examples
Shell
Parameters
workchain(integer, required) — The ID of the workchain. Example:-1for the masterchain.shard(integer, required) — The ID of the shard. Example:-9223372036854775808for the masterchain.seqno(integer, required) — The sequence number of the block. Example:39064874.
Response
masterchain_block_root_hash(string) — The root hash of the masterchain block that includes this shard block.masterchain_block_seq_no(integer) — The sequence number of the masterchain block.links(array of objects) — An array of link objects, each containing:from(string) — The source block hash.to(string) — The destination block hash.dest_proof(string) — The proof of the destination block.proof(string) — The proof of the link.
block_header(string) — The header of the shard block.
Use case
A possible use case for thegetShardBlockProof method in TON is for applications or services that need to verify the authenticity and inclusion of shard blocks within the TON blockchain. This method can be used to:
- Implement light clients that can verify shard blocks without downloading the entire blockchain.
- Provide cryptographic proof of a shard block’s inclusion in the blockchain.
- Verify cross-shard transactions by proving the existence of blocks in different shards.
- Build block explorers that can show detailed proof information for each block.
Query Parameters
The workchain ID
The shard ID
The sequence number of the block
Last modified on June 4, 2026