-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaether.full.yaml
More file actions
73 lines (65 loc) · 2.77 KB
/
Copy pathaether.full.yaml
File metadata and controls
73 lines (65 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Aether Configuration Example
# Copy this file to aether.yaml and customize as needed
# All settings shown here are the default values
# Network to use
network: emulator # emulator, testnet, or mainnet
# Flow blockchain settings
flow:
new_user_balance: 1000.0 # Initial balance for new accounts in Flow tokens
block_time: 1s # Block time for emulator
init_transactions_folder: "" # Folder containing initialization transactions
init_transactions_interactive: false # Prompt to select folder at startup
# Indexer settings for monitoring blockchain events
indexer:
polling_interval: 200ms # How often to check for new blocks
underflow:
byte_array_as_hex: true # Display byte arrays as hex strings
show_timestamps_as_date: true # Show timestamps in human-readable format
timestamp_format: "2006-01-02 15:04:05 UTC" # Go time format for timestamps
# Port configurations
ports:
emulator:
grpc: 3569 # Flow Emulator gRPC port
rest: 8888 # Flow Emulator REST API port
admin: 8080 # Flow Emulator admin port
debugger: 2345 # Flow Emulator debugger port
dev_wallet: 8701 # Flow Dev Wallet port
evm:
rpc: 8545 # EVM Gateway JSON-RPC port
profiler: 6060 # EVM Gateway profiler port
metrics: 9091 # EVM Gateway metrics port
# EVM gateway settings
evm:
database_path: "evm-gateway-db" # Path to EVM database
delete_database_on_start: true # Delete existing database on startup
# Logging configuration
logging:
level:
global: info # Global log level (trace, debug, info, warn, error)
aether: # Component-specific overrides (empty = inherit global)
emulator:
dev_wallet:
evm_gateway: error
timestamp_format: "15:04:05" # Time format for log timestamps
color: true # Enable colored log output
file:
enabled: false # Enable file logging
path: "" # Path to log file
buffer_size: 1000 # Buffer size for log writer
# UI preferences
ui:
history:
max_transactions: 10000 # Max transactions to keep in history
max_events: 10000 # Max events to keep in history
max_log_lines: 10000 # Max log lines to keep in history
layout:
transactions_split_percent: 50 # Percent width for transactions table
events_split_percent: 50 # Percent width for events table
runner_split_percent: 40 # Percent width for runner table
defaults:
show_event_fields: true # Show event field names in UI
show_raw_addresses: false # Show raw addresses instead of names
time_format: "15:04:05" # Time format for UI timestamps
sort: "desc" # Default sort order (asc/desc)
# Frontend process configuration
#frontend_command: npm run dev # Command to start frontend process (e.g. npm start)