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

# Chiliz

## Overview

[Chiliz](https://www.chiliz.com/) is a Layer 1 blockchain network that's compatible with the Ethereum Virtual Machine (EVM), specifically designed to revolutionize the world of sports. Through the Magic SDK, users can easily create wallets and engage with Chiliz Chain, enabling teams, fans, and developers to craft Web3 products and experiences that unite fans and brands like never before.

**As Chiliz is EVM compatible**, you can follow the [Ethereum](/embedded-wallets/blockchains/ethereum/javascript) documentation to send your first transaction and utilize all other features.

## Configure Chiliz

Ensure you have installed the Magic SDK and have access to your API key, follow the [quickstart](/embedded-wallets/quickstart/overview) to get started. You can use Magic's network aliases to connect to either testnet or mainnet on Chiliz. For more network information, see [here](https://docs.chiliz.com/chiliz-chain-mainnet).

<CodeGroup>
  ```js Testnet icon="square-js" theme={null}
  // Setting network to point to Chiliz testnet
  const magic = new Magic('YOUR_PUBLISHABLE_API_KEY', {
    network: {
      rpcUrl: 'https://spicy-rpc.chiliz.com',
      chainId: 88882,
    }
  });
  ```

  ```js Mainnet icon="square-js" theme={null}
  // Setting network to point to Chiliz mainnet
  const magic = new Magic('YOUR_PUBLISHABLE_API_KEY', {
    network: {
      rpcUrl: 'https://rpc.ankr.com/chiliz',
      chainId: 88888,
    }
  });
  ```
</CodeGroup>

## Compatibility

* All `Auth`, `User` and most `Wallet` module methods\*
* All EVM Provider functionality to respond to supported [RPC methods](/embedded-wallets/sdk/client-side/javascript#evm-rpc-methods)

*\*Some Widget UI features are not yet compatible such as NFT Viewer and Fiat On-ramps.*

*Need a feature or see a problem?* File an issue on our [github repo](https://github.com/magiclabs/magic-js).

## Resources & Tools

* Documentation: [https://docs.chiliz.com/](https://docs.chiliz.com/)
* Block Explorer:
  * [https://scan.chiliz.com/](https://scan.chiliz.com/) (Mainnet)
  * [https://spicy-explorer.chiliz.com/](https://spicy-explorer.chiliz.com/) (Testnet)
* Testnet Faucet: [https://spicy-faucet.chiliz.com/](https://spicy-faucet.chiliz.com/)
