forked from AliasAI/aliasai-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (41 loc) · 1.59 KB
/
.env.example
File metadata and controls
52 lines (41 loc) · 1.59 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
# ERC-8004 Validation System Configuration
# ====================================
# RPC Configuration
# ====================================
# Ethereum RPC URL (Sepolia Testnet)
ERC8004_RPC_URL=https://sepolia.gateway.tenderly.co
# ====================================
# Contract Addresses (Sepolia Testnet)
# ====================================
# ValidationRegistry Contract
ERC8004_VALIDATION_REGISTRY=0x8004CB39f29c09145F24Ad9dDe2A108C1A2cdfC5
# StakingValidator Contract
ERC8004_STAKING_VALIDATOR=0x730fb503a2165cf0a31b818522cd15e4611a1fc7
# StakeToken (ALIAS) Contract
ERC8004_STAKE_TOKEN=0x4f49f864b44f10dd19d80eb0ccf738417122eb04
# IdentityRegistry Contract
ERC8004_IDENTITY_REGISTRY=0x8004a6090Cd10A7288092483047B097295Fb8847
# ====================================
# Account Configuration
# ====================================
# Private key for signing transactions (without 0x prefix)
# ⚠️ NEVER commit this file with real private key!
ERC8004_ADMIN_PRIVATE_KEY=your_private_key_here_without_0x_prefix
# ====================================
# Test Parameters
# ====================================
# Default Agent ID for testing (optional)
# Leave empty to automatically register a new Agent
# Set a value to use an existing Agent ID
ERC8004_DEFAULT_AGENT_ID=
# Chain ID (11155111 = Sepolia)
ERC8004_CHAIN_ID=11155111
# ====================================
# Gas Configuration (Optional)
# ====================================
# Gas limit for transactions
# ERC8004_GAS_LIMIT=500000
# Max priority fee per gas (in gwei)
# ERC8004_MAX_PRIORITY_FEE=2
# Max fee per gas (in gwei)
# ERC8004_MAX_FEE=50