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

# ZetaChain

## Overview

[ZetaChain](https://www.zetachain.com/) is a blockchain network based on the Cosmos SDK and compatible with the Ethereum Virtual Machine (EVM). Users can effortlessly create wallets and interact with ZetaChain using the Magic SDK.

**As Zetachain 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 Zetachain

<CodeGroup>
  ```js Testnet icon="square-js" theme={null}
  const ZetaChainOptions = {
    rpcUrl: 'https://rpc.ankr.com/zetachain_evm_athens_testnet', // Zetachain testnet RPC URL
    chainId: 7001, // ZetaChain chain id
  };

  // Setting network to point to ZetaChain
  const magic = new Magic('YOUR_PUBLISHABLE_API_KEY', { network: ZetaChainOptions });
  ```

  ```js Mainnet icon="square-js" theme={null}
  const ZetaChainOptions = {
    rpcUrl: 'https://zetachain-evm.blockpi.network/v1/rpc/public', // Zetachain mainnet RPC URL
    chainId: 7000, // ZetaChain chain id
  };

  // Setting network to point to ZetaChain
  const magic = new Magic('YOUR_PUBLISHABLE_API_KEY', { network: ZetaChainOptions });
  ```
</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 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://www.zetachain.com/docs/](https://www.zetachain.com/docs/)
* Block Explorer: [https://explorer.zetachain.com/](https://explorer.zetachain.com/)
* Testnet Faucet: [https://www.zetachain.com/docs/reference/get-testnet-zeta/](https://www.zetachain.com/docs/reference/get-testnet-zeta/)
