mirror of
https://github.com/pezkuwichain/pezkuwi-validator-v1.0.0.git
synced 2026-04-22 22:27:57 +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>
40 lines
1.6 KiB
Bash
Executable File
40 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# ========================================
|
|
# Validator 2 - Real Beta Testnet Keys
|
|
# ========================================
|
|
# Validator Name: Validator-beta-2
|
|
# RPC Port: 9945
|
|
# P2P Port: 30334
|
|
|
|
# BABE Keys (Block Authorship)
|
|
export BABE_SEED="nature pink baby physical hotel dirt soon meadow coin employ enroll remind"
|
|
export BABE_PUBLIC_KEY="0xbef3df377441fe6ad64b81e84c8d201bc5c0bc2bb2e1a85f1e84927c62c5572b"
|
|
|
|
# GRANDPA Keys (Finality)
|
|
export GRAN_SEED="rent little raven auction error goat error water twice defy hard slab"
|
|
export GRAN_PUBLIC_KEY="0x806cfed7a6d025bc2e7a195bcd5ac50317f824ce6971cf30f95c6a621d6e55bf"
|
|
|
|
# PARA Keys (Parachain)
|
|
export PARA_SEED="mystery rescue elbow update effort path sleep rather deer undo school size"
|
|
export PARA_PUBLIC_KEY="0xfca6fd2976ae3ea397b15cdc5b0b044fe90a2094328edfa013db80cf04ba1a67"
|
|
|
|
# ASGN Keys (Assignment)
|
|
export ASGN_SEED="curious step vast scan couch episode maid trap crazy swap junior slab"
|
|
export ASGN_PUBLIC_KEY="0xfaad0803c450bf084ca3035bd1d69481db58444b32dd0eaa55de69a5314b0559"
|
|
|
|
# AUDI Keys (Authority Discovery)
|
|
export AUDI_SEED="race frequent goose clean labor differ credit lawn lab risk ocean black"
|
|
export AUDI_PUBLIC_KEY="0x7aeed77ed10108ead6c58dd45dd987aba28ea6e9cdf90f8893112c08bb0d4251"
|
|
|
|
# BEEF Keys (BEEFY)
|
|
export BEEF_SEED="industry flush stairs zoo world width dentist special life retire suffer myth"
|
|
export BEEF_PUBLIC_KEY="0x020177ca58f45047c737e6e02adba1ac3520eb881ea38ad39751d32d7c89d5efaa"
|
|
|
|
# Validator Configuration
|
|
export VALIDATOR_NAME="Validator-beta-2"
|
|
export RPC_PORT=9945
|
|
export P2P_PORT=30334
|
|
export WS_PORT=9945
|
|
export PROMETHEUS_PORT=9616
|