Chiliz Chain developer docs
Developer documentation for Chiliz Chain, the EVM-compatible SportFi blockchain. Build Fan Token apps, NFTs, prediction markets, and more with 70+ major IP partners.
Last updated
Was this helpful?

Developer documentation for Chiliz Chain, the EVM-compatible SportFi blockchain. Build Fan Token apps, NFTs, prediction markets, and more with 70+ major IP partners.
Dive into Chiliz Chain, the dedicated blockchain leading the Sports & Entertainment revolution.
With Chiliz Chain, you can provide fans with experiences that ignite passion and push the boundaries of engagement.
Build a Fan Token gate, create a prediction market, mint Sports NFTs, etc. Get inspired!
Build EVM-compatible SportFi apps with 70+ major IP partners, and get direct access to passionate fanbases!
Works with your toolset MetaMask, Hardhat, Moralis, thirdweb, Nodit, Remix, Magic, Privy, and many more...
To stay up to date with the latest developments of Chiliz Chain, follow us on our X.com/Twitter or join us on Discord and Telegram.
Last updated
Was this helpful?
Was this helpful?
// hardhat.config.js
module.exports = {
solidity: "0.8.24",
networks: {
chiliz_testnet: {
url: "https://spicy-rpc.chiliz.com/",
chainId: 88882,
accounts: [process.env.PRIVATE_KEY]
},
chiliz_mainnet: {
url: "https://rpc.ankr.com/chiliz",
chainId: 88888,
accounts: [process.env.PRIVATE_KEY]
}
}
};