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

# Solana 블록 및 네트워크 RPC 메서드

> 블록, 슬롯, 에포크, 공급량, 수수료 및 네트워크 Solana RPC 메서드 — getBlock, getSlot, getEpochInfo, getLatestBlockhash, getFeeForMessage 등.

## 이 문서에 대하여

[트랜잭션](/docs/ko/rpc/historical-data), [계정](/docs/ko/rpc/accounts), [토큰 및 NFT](/docs/ko/das-api)를 넘어서, Solana는 블록, 슬롯, 에포크, 공급량, 수수료 및 노드 상태에 대한 RPC 메서드를 제공합니다. 이 페이지는 가장 유용한 것들을 그룹화하고 있으며, 각 카드는 전체 가이드로 연결됩니다.

## 블록 및 슬롯

<CardGroup cols={2}>
  <Card title="getBlock" icon="cube" href="/docs/ko/rpc/guides/getblock">
    확인된 블록에 대한 모든 트랜잭션 및 메타데이터입니다.
  </Card>

  <Card title="getBlocks" icon="cubes" href="/docs/ko/rpc/guides/getblocks">
    두 슬롯 사이의 확인된 블록 목록입니다.
  </Card>

  <Card title="getBlockTime" icon="clock" href="/docs/ko/rpc/guides/getblocktime">
    블록의 예상 생성 시간으로, Unix 타임스탬프 형식입니다.
  </Card>

  <Card title="getSlot" icon="gauge" href="/docs/ko/rpc/guides/getslot">
    주어진 또는 기본 커밋 수준에 도달한 슬롯입니다.
  </Card>
</CardGroup>

## 에포크 및 네트워크

<CardGroup cols={2}>
  <Card title="getEpochInfo" icon="calendar" href="/docs/ko/rpc/guides/getepochinfo">
    현재 에포크에 대한 정보로, 슬롯 진행 상황을 포함합니다.
  </Card>

  <Card title="getClusterNodes" icon="network-wired" href="/docs/ko/rpc/guides/getclusternodes">
    클러스터에 참여하는 모든 노드의 세부 정보입니다.
  </Card>

  <Card title="getVersion" icon="tag" href="/docs/ko/rpc/guides/getversion">
    노드에서 실행 중인 Solana 버전입니다.
  </Card>

  <Card title="getHealth" icon="heart-pulse" href="/docs/ko/rpc/guides/gethealth">
    노드의 현재 상태입니다.
  </Card>
</CardGroup>

## 공급량 및 수수료

<CardGroup cols={2}>
  <Card title="getSupply" icon="coins" href="/docs/ko/rpc/guides/getsupply">
    현재 유통 중인 및 총 SOL 공급량에 대한 정보입니다.
  </Card>

  <Card title="getLatestBlockhash" icon="hashtag" href="/docs/ko/rpc/guides/getlatestblockhash">
    트랜잭션을 작성하고 서명하는 데 필요한 최근 블록 해시입니다.
  </Card>

  <Card title="getFeeForMessage" icon="money-bill" href="/docs/ko/rpc/guides/getfeeformessage">
    제출된 메시지에 대한 수수료입니다.
  </Card>

  <Card title="getRecentPrioritizationFees" icon="gauge-high" href="/docs/ko/rpc/guides/getrecentprioritizationfees">
    최근 우선순위 수수료로, 우선 수수료 설정에 유용합니다. [우선 수수료 API](/docs/ko/priority-fee-api)도 참조하십시오.
  </Card>
</CardGroup>

## 빠른 시작

이 메서드 중 많은 것들은 매개변수가 필요 없습니다. 예를 들어, `getLatestBlockhash`는 트랜잭션을 작성하는 데 사용할 수 있는 블록 해시를 반환합니다:

<CodeGroup>
  ```typescript TypeScript theme={"system"}
  const response = await fetch(`https://mainnet.helius-rpc.com/?api-key=YOUR_API_KEY`, {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
      jsonrpc: '2.0',
      id: '1',
      method: 'getLatestBlockhash',
      params: [{ commitment: 'finalized' }],
    }),
  });

  const { result } = await response.json();
  console.log(result.value.blockhash);
  ```

  ```python Python theme={"system"}
  import requests

  url = "https://mainnet.helius-rpc.com/?api-key=YOUR_API_KEY"
  payload = {
      "jsonrpc": "2.0",
      "id": "1",
      "method": "getLatestBlockhash",
      "params": [{"commitment": "finalized"}],
  }
  print(requests.post(url, json=payload).json()["result"]["value"]["blockhash"])
  ```

  ```bash cURL theme={"system"}
  curl https://mainnet.helius-rpc.com/?api-key=YOUR_API_KEY \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{
      "jsonrpc": "2.0",
      "id": "1",
      "method": "getLatestBlockhash",
      "params": [{ "commitment": "finalized" }]
    }'
  ```
</CodeGroup>

## 다음 단계

<CardGroup cols={2}>
  <Card title="모든 RPC 메서드" icon="server" href="/docs/ko/rpc/guides/overview">
    모든 Solana RPC 메서드에 대한 참조와 가이드를 탐색하십시오.
  </Card>

  <Card title="HTTP 메서드 참조" icon="code" href="/docs/ko/api-reference/rpc/http-methods">
    모든 HTTP RPC 메서드에 대한 공식 요청 및 응답 스키마입니다.
  </Card>

  <Card title="계정" icon="circle-info" href="/docs/ko/rpc/accounts">
    getAccountInfo 등을 사용하여 계정 상태를 읽습니다.
  </Card>

  <Card title="트랜잭션" icon="clock-rotate-left" href="/docs/ko/rpc/historical-data">
    주소에 대한 트랜잭션 및 전송 기록을 조회합니다.
  </Card>
</CardGroup>
