- Change file mode from 644 to 755 for all project files - Add chain_id parameter to get_balance RPC endpoint with default "ait-devnet" - Rename Miner.extra_meta_data to extra_metadata for consistency
77 lines
2.3 KiB
YAML
Executable File
77 lines
2.3 KiB
YAML
Executable File
# Multi-Chain Genesis Configuration Example
|
|
chains:
|
|
ait-devnet:
|
|
genesis:
|
|
chain_id: "ait-devnet"
|
|
chain_type: "main"
|
|
purpose: "development"
|
|
name: "AITBC Development Network"
|
|
description: "Development network for AITBC multi-chain testing"
|
|
timestamp: "2026-03-06T18:00:00Z"
|
|
parent_hash: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
|
gas_limit: 10000000
|
|
gas_price: 1000000000
|
|
consensus:
|
|
algorithm: "poa"
|
|
validators:
|
|
- "ait1devproposer000000000000000000000000000000"
|
|
accounts:
|
|
- address: "aitbc1genesis"
|
|
balance: 1000000
|
|
- address: "aitbc1faucet"
|
|
balance: 100000
|
|
parameters:
|
|
block_time: 5
|
|
max_block_size: 1048576
|
|
min_stake: 1000
|
|
|
|
ait-testnet:
|
|
genesis:
|
|
chain_id: "ait-testnet"
|
|
chain_type: "topic"
|
|
purpose: "testing"
|
|
name: "AITBC Test Network"
|
|
description: "Test network for AITBC multi-chain validation"
|
|
timestamp: "2026-03-06T18:00:00Z"
|
|
parent_hash: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
|
gas_limit: 5000000
|
|
gas_price: 2000000000
|
|
consensus:
|
|
algorithm: "poa"
|
|
validators:
|
|
- "ait1testproposer000000000000000000000000000000"
|
|
accounts:
|
|
- address: "aitbc1testgenesis"
|
|
balance: 500000
|
|
- address: "aitbc1testfaucet"
|
|
balance: 50000
|
|
parameters:
|
|
block_time: 10
|
|
max_block_size: 524288
|
|
min_stake: 500
|
|
|
|
ait-mainnet:
|
|
genesis:
|
|
chain_id: "ait-mainnet"
|
|
chain_type: "main"
|
|
purpose: "production"
|
|
name: "AITBC Main Network"
|
|
description: "Main production network for AITBC"
|
|
timestamp: "2026-03-06T18:00:00Z"
|
|
parent_hash: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
|
gas_limit: 20000000
|
|
gas_price: 500000000
|
|
consensus:
|
|
algorithm: "pos"
|
|
validators:
|
|
- "ait1mainvalidator000000000000000000000000000000"
|
|
accounts:
|
|
- address: "aitbc1maingenesis"
|
|
balance: 2100000000
|
|
- address: "aitbc1mainfaucet"
|
|
balance: 1000000
|
|
parameters:
|
|
block_time: 15
|
|
max_block_size: 2097152
|
|
min_stake: 10000
|