-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.template
More file actions
29 lines (23 loc) · 918 Bytes
/
env.template
File metadata and controls
29 lines (23 loc) · 918 Bytes
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
# Environment variables for AWS Kaia Rewards TypeScript Lambda Integration
# Copy this file to .env and fill in your values
# Kaia Network Configuration
KAIA_NETWORK=testnet # or testnet
# AWS Configuration
CDK_DEFAULT_ACCOUNT=12345678901
CDK_DEFAULT_REGION=ap-southeast-1
AWS_REGION=ap-southeast-1
AWS_ACCOUNT_ID=12345678901
# KMS Key Configuration (Choose one)
# Option 1: Use existing KMS key
KMS_KEY_ID=your-existing-kms-key-id-or-arn
# Option 2: Import private key (creates new KMS key)
# Private key must be 64 characters hex without 0x prefix
PRIVATE_KEY=your_64_character_hex_private_key_without_0x_prefix
# Kaia RPC URLs (Optional)
KAIA_MAINNET_RPC_URL=https://public-en.node.kaia.io
KAIA_TESTNET_RPC_URL=https://archive-en-kairos.node.kaia.io/
CUSTOM_RPC_URL=https://public-en.node.kaia.io
# Multisend address
KAIA_MULTISEND_ADDRESS=0x8e2b5d8b6b44f8e2a72e0837947149d7f9b0ddf7
# Logging
LOG_LEVEL=DEBUG