> 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/jp/hajimeni/kaihatsusha-toolbox.md).

# 開発者ツールボックス

## Mainnet および Testnet への接続

Chiliz Chain は、本番プロジェクト向けの Mainnet を提供しており、テスト目的のための Testnet も用意されています。Chiliz の Testnet は Spicy Testnet と呼ばれます。

詳しくは connect-using-rpc のページをご覧ください。

## testnet トークンの入手

faucet を通じて無料のテスト用 CHZ トークンを入手でき、Chiliz Mainnet 上でテストを行う金銭的リスクなしに Spicy Testnet 上で実験できます。

現在、利用可能な faucet は次の 2 つです:

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

faucet の詳細については、専用ページをご覧ください:

obtain-free-testnet-tokens

## コントラクトのデプロイと verify

smart contract の構築は、Chiliz Chain 向けの dApp（あるいは実際にはどんなブロックチェーンでも）につながる創造的プロジェクトに不可欠な要素です。

dApp の smart contract を構築したら、**必ず**通過しなければならない 2 つのステップがあります:

1. コントラクトを Chiliz Chain 上にデプロイする。

deploy-a-smart-contract

2. そのコントラクトを verify する。

verify-a-smart-contract

## Chiliz Chain Node の実行

自分自身の Chiliz Chain node を実行すると、コントロールとプライバシーが得られますが、より高度な技術的スキルとリソースが求められます。

このページでは、node を起動するために不可欠なパラメータを紹介します:

```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="*" \
```

詳しくは、より完全なこちらのページをご確認ください:

run-a-chiliz-chain-node.md

また、Validator node の実行にもご興味があるかもしれません:

running-a-validator-node.md


---

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

```
GET https://docs.chiliz.com/jp/hajimeni/kaihatsusha-toolbox.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
