chore: refactor logging module, update genesis timestamp, remove model relationships, and reorganize routers - Rename logging.py to logger.py and update import paths in poa.py and main.py - Update devnet genesis timestamp to 1766828620 - Remove SQLModel Relationship declarations from Block, Transaction, and Receipt models - Add SessionDep type alias and get_session dependency in coordinator-api deps - Reorganize coordinator-api routers: replace explorer/registry with exchange, users, marketplace
24 lines
440 B
JSON
24 lines
440 B
JSON
{
|
|
"accounts": [
|
|
{
|
|
"address": "ait1faucet000000000000000000000000000000000",
|
|
"balance": 1000000000,
|
|
"nonce": 0
|
|
}
|
|
],
|
|
"authorities": [
|
|
{
|
|
"address": "ait1devproposer000000000000000000000000000000",
|
|
"weight": 1
|
|
}
|
|
],
|
|
"chain_id": "ait-devnet",
|
|
"params": {
|
|
"base_fee": 10,
|
|
"coordinator_ratio": 0.05,
|
|
"fee_per_byte": 1,
|
|
"mint_per_unit": 1000
|
|
},
|
|
"timestamp": 1766828620
|
|
}
|