# Boîte à outils du développeur

## Se connecter au Mainnet et au Testnet

Chiliz Chain est disponible via un Mainnet pour vos projets de production, et dispose d’un Testnet à des fins de test. Le Chiliz Testnet s’appelle Spicy Testnet.

Pour plus d’informations, consultez la [Se connecter via RPC](/fr-ai/develop/basics/connect-to-chiliz-chain/connect-using-rpc.md) page.

## Obtenir des jetons du testnet

Vous pouvez obtenir gratuitement des jetons test CHZ via un faucet, ce qui vous permet d’expérimenter sur Spicy Testnet sans le risque financier de tester sur le Chiliz Mainnet.

Il existe actuellement deux faucets disponibles :

* [Spicy Faucet](https://spicy-faucet.chiliz.com/).
* [Le Faucet Chiliz de Tatum pour Testnet](https://tatum.io/faucets/chiliz).

Pour plus de détails sur les faucets, rendez-vous sur notre page dédiée :

{% content-ref url="/pages/7bdad2784d1166dec8dd1109628bd487af79f83d" %}
[Obtenir des jetons de testnet gratuits](/fr-ai/develop/basics/obtain-free-testnet-tokens.md)
{% endcontent-ref %}

## Déployer et vérifier un contrat

La création d’un smart contract est une partie essentielle du projet créatif qui mène à une dApp pour Chiliz Chain — ou pour n’importe quelle blockchain, en réalité.

Il y a deux étapes que vous **doit** devez suivre une fois que vous avez créé le smart contract de votre dApp :

1. Déployer le contrat sur Chiliz Chain.

{% content-ref url="/pages/2d3ea193927ea1dc664794a3a5e0e23eb17eb26c" %}
[Déployer un contrat intelligent](/fr-ai/develop/basics/deploy-a-smart-contract.md)
{% endcontent-ref %}

2. Vérifier ce contrat.

{% content-ref url="/pages/a738e5357d90cb06e9f575af3b44caf6cdb096f2" %}
[Vérifier un contrat intelligent](/fr-ai/develop/basics/verifiy-a-smart-contract.md)
{% endcontent-ref %}

## Exécuter un nœud Chiliz Chain

Faire fonctionner votre propre nœud Chiliz Chain offre contrôle et confidentialité, mais exige davantage de compétences techniques et de ressources.

Cette page vous fournit les paramètres essentiels pour lancer votre nœud :

```bash
docker run \
-v $(pwd)/my-datadir:/datadir \
--name ccv2-node \
-p 8545:8545 \
-p 8546:8546 \
chilizchain/ccv2-geth:latest \
--chiliz \ # pour Chiliz Mainnet. Utilisez --spicy pour 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="*" \
```

Pour plus de détails, consultez cette page plus complète :

{% content-ref url="/pages/2a33ef217af8515280c10e039dcfd894de4ff678" %}
[Exécuter un nœud Chiliz Chain](/fr-ai/develop/basics/connect-to-chiliz-chain/run-a-chiliz-chain-node.md)
{% endcontent-ref %}

Vous pourriez aussi être intéressé par l’exécution d’un nœud Validateur :

{% content-ref url="/pages/ae95987c53cbeb800d5677383c02af0838c480b8" %}
[Exécuter un nœud validateur](/fr-ai/learn/about-validators/running-a-validator-node.md)
{% endcontent-ref %}


---

# Agent Instructions: 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/fr-ai/quick-start/developer-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.
