> For the complete documentation index, see [llms.txt](https://docs.chiliz.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.chiliz.com/ko/ppareun-sijak/gaebalja-doja.md).

# 개발자 도구함

## Mainnet 및 Testnet 연결

Chiliz Chain은 프로덕션 프로젝트를 위한 Mainnet과 테스트 목적의 Testnet을 제공합니다. Chiliz Testnet은 Spicy Testnet이라고 합니다.

{% tabs %}
{% tab title="Chiliz Chain Mainnet" %}

<table><thead><tr><th width="253">Parameter</th><th width="346">Value</th></tr></thead><tbody><tr><td>Network Name</td><td>Chiliz Chain</td></tr><tr><td>RPC endpoint</td><td>Recommended:<br><a href="https://rpc.ankr.com/chiliz">https://rpc.ankr.com/chiliz</a><br><br>Alternatives:<br><a href="https://chiliz-mainnet.gateway.tatum.io">https://chiliz-mainnet.gateway.tatum.io</a><br><a href="https://chiliz-rpc.publicnode.com">https://chiliz-rpc.publicnode.com</a></td></tr><tr><td>RPC Websocket</td><td>wss://chiliz-rpc.publicnode.com</td></tr><tr><td>Chain ID</td><td>88888</td></tr><tr><td>Currency Symbol</td><td>CHZ</td></tr><tr><td>Chiliz Block Explorer URL</td><td>Recommended:<br><a href="https://chiliscan.com">https://chiliscan.com</a><br><br>Alternative:<br><a href="https://scan.chiliz.com">https://scan.chiliz.com</a></td></tr></tbody></table>
{% endtab %}

{% tab title="Spicy Testnet" %}

<table><thead><tr><th width="253">Parameter</th><th width="312">Value</th></tr></thead><tbody><tr><td>Network Name</td><td>Spicy Testnet</td></tr><tr><td>RPC endpoint</td><td>Recommended:<br><a href="https://spicy-rpc.chiliz.com/">https://spicy-rpc.chiliz.com/</a><br><br>Alternatives:<br><a href="https://chiliz-testnet.gateway.tatum.io">https://chiliz-testnet.gateway.tatum.io</a><br><a href="https://chiliz-spicy-rpc.publicnode.com">https://chiliz-spicy-rpc.publicnode.com</a></td></tr><tr><td>RPC Websocket</td><td>Recommended:<br>wss://spicy-rpc-ws.chiliz.com/<br><br>Alternative:<br>wss://chiliz-spicy-rpc.publicnode.com</td></tr><tr><td>Chain ID</td><td>88882</td></tr><tr><td>Currency Symbol</td><td>CHZ</td></tr><tr><td>Spicy Block Explorer URL</td><td><p>Recommended:<br><a href="https://testnet.chiliscan.com/">https://testnet.chiliscan.com/</a></p><p><br>Alternative:<br><a href="https://spicy-explorer.chiliz.com/">https://spicy-explorer.chiliz.com/</a></p></td></tr></tbody></table>
{% endtab %}
{% endtabs %}

자세한 내용은 [RPC로 연결](/ko/gaebal/gibon/chiliz-chain-yeongyeol/rpc-yeongyeol.md) 페이지를 참조하세요.

## Testnet 토큰 받기

Faucet를 통해 무료 테스트 CHZ 토큰을 받아 Chiliz Mainnet의 재정적 위험 없이 Spicy Testnet에서 실험할 수 있습니다.

현재 두 가지 Faucet가 제공됩니다:

* [Spicy Faucet](https://spicy-faucet.chiliz.com/)
* [Tatum's Chiliz Faucet for Testnet](https://tatum.io/faucets/chiliz)

자세한 내용은 전용 페이지를 참조하세요:

{% content-ref url="/pages/qiix4G9ofyknkfg1PvVE" %}
[무료 Testnet 토큰 받기](/ko/gaebal/gibon/teseuteuseunet-token.md)
{% endcontent-ref %}

## 스마트 컨트랙트 배포 및 검증

스마트 컨트랙트 구축은 Chiliz Chain용 dApp을 만드는 창의적인 프로젝트의 핵심 단계입니다.

dApp의 스마트 컨트랙트를 구축한 후 반드시 거쳐야 할 두 가지 단계가 있습니다:

1. Chiliz Chain에 컨트랙트 배포하기.

{% content-ref url="/pages/zeEtydOU4PCe2pXKpDvV" %}
[스마트 컨트랙트 배포](/ko/gaebal/gibon/seumateu-keonteulaekteu-baepoe.md)
{% endcontent-ref %}

2. 해당 컨트랙트 검증하기.

{% content-ref url="/pages/nsWrQabw0Uxfup8ISrim" %}
[스마트 컨트랙트 검증](/ko/gaebal/gibon/seumateu-keonteulaekteu-geomjeung.md)
{% endcontent-ref %}

## Solidity 및 EVM 버전

Chiliz Chain용 컨트랙트를 작성하고 컴파일할 때는 권장 Solidity 및 EVM 버전을 사용하세요:

{% hint style="info" %}
**Chiliz Chain 권장 Solidity 및 EVM 버전:**

* **Solidity 컴파일러 버전:** `0.8.30` (또는 그 이하)
* **대상 EVM 버전:** `prague`
  {% endhint %}

## Chiliz Chain 노드 실행

자체 Chiliz Chain 노드를 운영하면 제어권과 프라이버시를 확보할 수 있지만, 더 많은 기술적 역량과 리소스가 필요합니다.

이 페이지에서는 노드를 실행하기 위한 필수 파라미터를 제공합니다:

```bash
docker run \
-v $(pwd)/my-datadir:/datadir \
--name ccv2-node \
-p 8545:8545 \
-p 8546:8546 \
chilizchain/ccv2-geth:latest \
--chiliz \ # for Chiliz Mainnet. Use --spicy for Spicy Testnet.
--datadir=/datadir \
--ipcdisable \
--http \
--http.addr=0.0.0.0 \
--http.api=eth,net,web3,debug,txpool \
--http.port=8545 \
--http.corsdomain="*" \
--http.vhosts="*" \
--ws \
--ws.addr=0.0.0.0 \
--ws.api=eth,net,web3,debug,txpool \
--ws.port=8546 \
--ws.origins="*" \
```

자세한 내용은 다음 페이지를 참조하세요:

{% content-ref url="/pages/4J5VVIjrVgTebFY7nYx2" %}
[Chiliz Chain 노드 실행](/ko/gaebal/gibon/chiliz-chain-yeongyeol/node-silhaeng.md)
{% endcontent-ref %}

검증자 노드 실행에도 관심이 있으시다면:

{% content-ref url="/pages/c1Ro85twOyMdCGnQ4SYI" %}
[검증자 노드 운영](/ko/baeuggi/geomjeungja/geomjeungja-node-unyeong.md)
{% endcontent-ref %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.chiliz.com/ko/ppareun-sijak/gaebalja-doja.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
