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 3 - Real Beta Testnet Keys
|
|
# ========================================
|
|
# Validator Name: Validator-beta-3
|
|
# RPC Port: 9946
|
|
# P2P Port: 30335
|
|
|
|
# BABE Keys (Block Authorship)
|
|
export BABE_SEED="cycle judge gentle cute spirit crunch build flee popular cube wagon void"
|
|
export BABE_PUBLIC_KEY="0x2825cb78cb345b078a189e6a280916f7771df991113e587b9a0694df33abe909"
|
|
|
|
# GRANDPA Keys (Finality)
|
|
export GRAN_SEED="prefer sugar friend wagon about love blouse coast table future lonely slice"
|
|
export GRAN_PUBLIC_KEY="0xcf2862bbfabf42dfc361e2fd0ee860e55e80f093ad767679d9687e822a04c7a4"
|
|
|
|
# PARA Keys (Parachain)
|
|
export PARA_SEED="where reject camp tail clock plate library apple draw once float ranch"
|
|
export PARA_PUBLIC_KEY="0x4cdb404f66b7409a6e7fee2eab92aa738c8cbd37d1343b0e0818deb4637d3e0e"
|
|
|
|
# ASGN Keys (Assignment)
|
|
export ASGN_SEED="craft hill receive alarm inner use cereal assume boost castle enhance culture"
|
|
export ASGN_PUBLIC_KEY="0xf054e7834c042696fbbf56d17247924836a6957cc6ec8366455c9b459b51fa4d"
|
|
|
|
# AUDI Keys (Authority Discovery)
|
|
export AUDI_SEED="fatal hazard federal cushion cousin spend weapon script boil vicious delay fire"
|
|
export AUDI_PUBLIC_KEY="0xd2c4ffc56fd8504f5fde789d3ba895f65c0c7200f68cfe789a4316e68277e72f"
|
|
|
|
# BEEF Keys (BEEFY)
|
|
export BEEF_SEED="kiss foil assist bind duty concert van fold reveal weird design rescue"
|
|
export BEEF_PUBLIC_KEY="0x023792b160a004c98d56afc29843ee9aa567a80129794373df9b3f4d883cfd4dfc"
|
|
|
|
# Validator Configuration
|
|
export VALIDATOR_NAME="Validator-beta-3"
|
|
export RPC_PORT=9946
|
|
export P2P_PORT=30335
|
|
export WS_PORT=9946
|
|
export PROMETHEUS_PORT=9617
|