Overview

ZetaChain 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 documentation to send your first transaction and utilize all other features.

Configure Zetachain

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 });

Compatibility

  • All Auth, User and most Wallet module methods*
  • All EVM Provider functionality to respond to supported 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.

Resources & Tools