Neon EVM (NEON)
Popular Contracts
Create collection of unique NFTs.
Release ERC1155 tokens for a set price.
Info
neonevm.org
Chain ID
245022934
Native Token
Neon (NEON)
RPC
https://neon-evm.rpc.thirdweb.com
Block Height
0
Latency
0 ms
Explorers
neonscan
neonscan.org
native
neon.blockscout.com
Getting Started with Neon EVM Mainnet
Choose a language:
Install the latest version of the SDK:
npm install @thirdweb-dev/sdk ethers@5
Initialize the SDK and contract on your project:
import { NeonEvm } from "@thirdweb-dev/chains";import { ThirdwebSDK } from "@thirdweb-dev/sdk";
// If used on the FRONTEND pass your 'clientId'const sdk = new ThirdwebSDK(NeonEvm, { clientId: "YOUR_CLIENT_ID",});// --- OR ---// If used on the BACKEND pass your 'secretKey'const sdk = new ThirdwebSDK(NeonEvm, { secretKey: "YOUR_SECRET_KEY",});
const contract = await sdk.getContract("0x0000000000000000000000000000000000000000");
You will need to pass a client ID/secret key to use thirdweb's infrastructure services. If you don't have any API keys yet you can create one for free from the dashboard settings.