> ## Documentation Index
> Fetch the complete documentation index at: https://www.helius.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# IsBlockhashValid

> LaserStream gRPC API를 사용하여 Solana 블록체인에서 블록해시가 여전히 유효한지 확인합니다.

<hide>
  ## Endpoints

  gRPC 서비스는 다음 URL로 메인넷 및 Devnet에서 사용할 수 있습니다:

  * **Mainnet** `https://laserstream-mainnet.helius-rpc.com:443`
  * **Devnet** `https://laserstream-devnet.helius-rpc.com:443`
</hide>

## Authorizations

<ParamField query="x-token" type="string" required>
  귀하의 Helius API 키입니다. 무료로 [대시보드](https://dashboard.helius.dev/api-keys)에서 받을 수 있습니다.
</ParamField>

## Message

<ParamField body="blockhash" type="string" required>
  base-58로 인코딩된 확인할 블록해시입니다.
</ParamField>

## Response

<ResponseField name="valid" type="boolean">
  블록해시가 여전히 유효한지(true) 만료되었는지(false) 여부를 나타냅니다.
</ResponseField>

<RequestExample>
  ```json Empty Request theme={"system"}
  {}
  ```
</RequestExample>

<ResponseExample>
  ```json theme={"system"}
  {
      "slot": "333440972",
      "valid": false
  }
  ```
</ResponseExample>
