Some checks failed
Systemd Sync / sync-systemd (push) Waiting to run
CLI Tests / test-cli (push) Has been cancelled
Integration Tests / test-service-integration (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
API Endpoint Tests / test-api-endpoints (push) Has been cancelled
- Change default P2P port from 7070 to 8001 in config and .env.example - Add redis_url configuration option for hub persistence (default: redis://localhost:6379) - Implement DNS-based hub registration/unregistration via HTTPS API endpoints - Add Redis persistence for hub registrations with 1-hour TTL - Add island join request/response protocol with member list and blockchain credentials - Add GPU marketplace tracking (offers, bids, providers) in hub manager - Add
22 lines
502 B
Plaintext
22 lines
502 B
Plaintext
# Blockchain Node Configuration
|
|
# For development use: chain_id=ait-devnet (includes faucet)
|
|
# For production-like testing: chain_id=ait-mainnet (no faucet)
|
|
chain_id=ait-devnet
|
|
supported_chains=ait-devnet
|
|
|
|
rpc_bind_host=0.0.0.0
|
|
rpc_bind_port=8006
|
|
|
|
# Network
|
|
p2p_bind_host=0.0.0.0
|
|
p2p_bind_port=8001
|
|
|
|
proposer_id=aitbc1-proposer
|
|
|
|
# Gossip backend: use broadcast with Redis for cross-node communication
|
|
gossip_backend=broadcast
|
|
gossip_broadcast_url=redis://localhost:6379
|
|
|
|
# Data
|
|
db_path=./data/chain.db
|