forked from hiero-ledger/hiero-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
29 lines (23 loc) · 1.05 KB
/
env.example
File metadata and controls
29 lines (23 loc) · 1.05 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
# Hiero SDK JS - Local Development Environment Configuration
# Copy this file to .env and update with your local values
# Run ./scripts/solo-setup.js to automatically generate .env with proper values
# Network Configuration
# Options: local-node, testnet, previewnet, mainnet
HEDERA_NETWORK=local-node
# Optional: Path to a configuration file
# CONFIG_FILE=
# Standard Test Account (ECDSA) - Use this for most integration tests
# These values will be automatically generated by solo-setup.js
OPERATOR_ID=0.0.1001
OPERATOR_KEY=302e020100300506032b657004220420your-private-key-here
# Genesis Account - Only use for genesis-specific tests
# Default Solo genesis account (DO NOT use for regular tests)
GENESIS_OPERATOR_ID=0.0.2
GENESIS_OPERATOR_KEY=302e020100300506032b65700422042091132178e72057a1d7528025956fe39b0b847f200ab59b2fdd367017f3087137
# Node Endpoints
NODE1_ENDPOINT=127.0.0.1:50211
NODE2_ENDPOINT=127.0.0.1:51211
# Mirror Node Endpoints
MIRROR_REST_ENDPOINT=http://localhost:5551
MIRROR_WEB3_ENDPOINT=http://localhost:8545
MIRROR_GRPC_ENDPOINT=localhost:5600