Skip to content

Latest commit

 

History

History
92 lines (70 loc) · 3.11 KB

Home.md

File metadata and controls

92 lines (70 loc) · 3.11 KB

CENNZnet

Community

Join the official CENNZnet Discord server 🤗

  • Get CENNZnet technical support 🛠
  • Meet startups and DApp developers 👯‍♂️
  • Learn more about CENNZnet and blockchain 🙌
  • Get updates on CENNZnet bounties and grants 💰
  • Hear about the latest hackathons, meetups and more 👩‍💻

Join the Discord server by clicking on the badge below!

Support Server

Ecosystem Apps

Faucet🚰
Test token faucet

App Hub ✨
Swap, liquidity, bridge

Litho Marketplace
Create, buy, and sell NFTs

Block Explorer
View network blocks and transactions

CENNZnet UI
Staking, web wallet & dev tools

Telemetry
View network node status and metrics

Quick Start

start CENNZnet dev node

docker run -p 9933:9933 cennznet/cennznet:2.1.0 --dev --tmp

setup hardhat config 👷‍♀️

// hardhat.config.js
  networks: {
    cennznet: {
      // CENNZnet default RPC port
      url: "http://localhost:9933",
      // CENNZnet dev chainId
      chainId: 2999,
      // CENNZnet dev seed
      accounts: ["0xcb6df9de1efca7a3998a8ead4e02159d5fa99c3e0d4fd6432667390bb4726854"],
    },
  },

That's it! you can run scripts and deploy contracts just like a regular Ethereum node.

?> Keep reading to learn more about building on the CENNZnet EVM

Operator Quick Start

Start a full node named my-node and connect it to the CENNZnet MainNet:

# via docker
$ docker run cennznet/cennznet:2.1.0 \
    --chain=/cennznet/genesis/azalea.raw.json \
    --name=my-node \
    --telemetry-url 'ws://cennznet-telemetry.centrality.me:1024 0'

# via source
git clone https://github.com/cennznet/cennznet && git checkout release/2.1.0
cd cennznet && cargo build --release
./target/release/cennznet \
    --chain=./genesis/azalea.raw.json \
    --name=my-node \
    --telemetry-url 'ws://cennznet-telemetry.centrality.me:8000/submit 0'

Check my-node is running here.

For more details on running a node, see Running a Full Node.

Network Snapshots

Mainnet - Validator / Archive 💾
Mainnet - Full 💾

Websocket Endpoints

CENNZnet core team hosted fullnode endpoints for use with @cennznet/api.js
Mainnet: wss://cennznet.unfrastructure.io/public/ws
TestNet (Nikau 🌴): wss://nikau.centrality.me/public/ws
TestNet (Rata): wss://rata.centrality.me/public/ws