refactor: consolidate blockchain explorer into single app and update backup ignore patterns
- Remove standalone explorer-web app (README, HTML, package files) - Add /web endpoint to blockchain-explorer for web interface access - Update .gitignore to exclude application backup archives (*.tar.gz, *.zip) - Add backup documentation files to .gitignore (BACKUP_INDEX.md, README.md) - Consolidate explorer functionality into main blockchain-explorer application
This commit is contained in:
76
test_multichain_genesis.yaml
Normal file
76
test_multichain_genesis.yaml
Normal file
@@ -0,0 +1,76 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user