mirror of
https://github.com/pezkuwichain/pezkuwi-validator-v1.0.0.git
synced 2026-04-22 10:07:55 +00:00
00acf52e7e
Major upgrade from v1.0.0 to v2.0.0 with complete restructure: Features: - One-command validator setup (setup.sh) - Automated dependency checking (Git, Rust, Node.js, build tools, Nginx) - Shared Pezkuwi-SDK build (single build for all validators) - Single DKSweb frontend with auto-update from GitHub - 8 beta testnet validators (corrected from 10) - Real validator keys from currently running beta testnet - Helper scripts (start.sh, stop.sh, status.sh, logs.sh) - Systemd service management - Nginx-based frontend deployment - Comprehensive README with usage instructions Structure: - validators/validator1-8/ - Individual validator configurations - Each validator has real keys (BABE, GRANDPA, PARA, ASGN, AUDI, BEEF) - Port allocation: RPC 9944-9951, P2P 30333-30340 - Validator 1 acts as bootnode Breaking Changes: - Removed docker support - Removed old installation scripts (linux/windows) - Removed LICENSE file - Complete restructure of directory layout 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
1.7 KiB
Bash
Executable File
41 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# ========================================
|
|
# Validator 1 - Real Beta Testnet Keys
|
|
# ========================================
|
|
# Generated from actual running beta testnet
|
|
# Validator Name: Validator-beta-1 (Bootnode)
|
|
# RPC Port: 9944
|
|
# P2P Port: 30333
|
|
|
|
# BABE Keys (Block Authorship)
|
|
export BABE_SEED="state open glance maze canyon cable cargo parent blind mystery cheese foot"
|
|
export BABE_PUBLIC_KEY="0x9e7490cfe0dd32860282dd4e74b5c40c9237fb6e478066c334c931742308e008"
|
|
|
|
# GRANDPA Keys (Finality)
|
|
export GRAN_SEED="kick surge tube arrange enforce witness mouse spray disease inquiry inch stamp"
|
|
export GRAN_PUBLIC_KEY="0x16da26f049b37e9b03d14439457ac164f14f5174b1f10ddab2e0dc3ef7903675"
|
|
|
|
# PARA Keys (Parachain)
|
|
export PARA_SEED="march cancel try improve lunch phrase rebuild initial theme snap giant dry"
|
|
export PARA_PUBLIC_KEY="0xc62b764ea84411f550818a41a6abacddb9388cefbc22412f2bee335e9709a717"
|
|
|
|
# ASGN Keys (Assignment)
|
|
export ASGN_SEED="nephew dignity smoke sunny access soon breeze inch dove park fault museum"
|
|
export ASGN_PUBLIC_KEY="0xa4c75d886439ae7d764cc600051af1d2128d2a8a1cdf3d642eda76824ccaf518"
|
|
|
|
# AUDI Keys (Authority Discovery)
|
|
export AUDI_SEED="vicious mixed hour wage clog yellow elbow zoo clock better rhythm diagram"
|
|
export AUDI_PUBLIC_KEY="0x66e821a23729878d8b7d04c69ec0fed9b0f5facae48917c1b83a4ad15cf00720"
|
|
|
|
# BEEF Keys (BEEFY)
|
|
export BEEF_SEED="practice cable fog idea rigid hybrid digital snack setup right advance romance"
|
|
export BEEF_PUBLIC_KEY="0x0281ba169080b261add0cd22bfb47477eddab854caa17423b12ddeed6504b04aef"
|
|
|
|
# Validator Configuration
|
|
export VALIDATOR_NAME="Validator-beta-1"
|
|
export RPC_PORT=9944
|
|
export P2P_PORT=30333
|
|
export WS_PORT=9944
|
|
export PROMETHEUS_PORT=9615
|