-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
97 lines (75 loc) · 3.55 KB
/
.env.example
File metadata and controls
97 lines (75 loc) · 3.55 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# ============================================================
# NECTIQ PLATFORM - .env.example FILE
# ============================================================
# Copy this file to .env and fill in your values
# ============================================================
# Server Configuration
PORT=5003
NODE_ENV=production
# Database (PostgreSQL/Neon)
DATABASE_URL=postgresql://user:password@host:5432/database?sslmode=require
# Blockchain API Keys
ETHERSCAN_API_KEY=your_etherscan_api_key_here
POLYGONSCAN_API_KEY=your_polygonscan_api_key_here
# Wallet Configuration
ADMIN_WALLET_ADDRESSES=0x_Your_Admin_Wallet_Address
DEPOSIT_WALLET_ADDRESS=0x_Your_Deposit_Wallet_Address
# Session Secret (Generate with: openssl rand -base64 32)
SESSION_SECRET=change_this_to_a_random_secret
# Private Keys (NO 0x PREFIX)
DEPLOYER_PRIVATE_KEY=your_deployer_private_key_without_0x_prefix
ADMIN_PRIVATE_KEY=your_admin_private_key_without_0x_prefix
PRIVATE_KEY=your_private_key_without_0x_prefix
# Backend Signer for Transactions
BACKEND_SIGNER_ADDRESS=0x_Your_Backend_Signer_Address
BACKEND_SIGNER_PRIVATE_KEY=your_backend_signer_private_key_without_0x_prefix
# Network Configuration
POLYGON_AMOY_RPC_URL=https://rpc-amoy.polygon.technology
# Auto Withdrawal Settings
ENABLE_AUTO_WITHDRAWALS=true
WITHDRAWAL_CHECK_INTERVAL=5
# ============================================================
# SMART CONTRACT ADDRESSES (POLYGON AMOY TESTNET)
# ============================================================
# NTIQ Token (Active)
NTIQ_TOKEN_ADDRESS=0x_Your_NTIQ_Token_Address
VITE_NTIQ_TOKEN_ADDRESS=0x_Your_NTIQ_Token_Address
# Enhanced Staking Contracts (Active)
ENHANCED_PREDICTION_STAKING_ADDRESS=0x_Your_Enhanced_Prediction_Staking_Address
VITE_ENHANCED_PREDICTION_STAKING_ADDRESS=0x_Your_Enhanced_Prediction_Staking_Address
ENHANCED_PARLAY_STAKING_ADDRESS=0x_Your_Enhanced_Parlay_Staking_Address
VITE_ENHANCED_PARLAY_STAKING_ADDRESS=0x_Your_Enhanced_Parlay_Staking_Address
# Battle Escrow (Active)
BATTLE_ESCROW_ADDRESS=0x_Your_Battle_Escrow_Address
VITE_BATTLE_ESCROW_ADDRESS=0x_Your_Battle_Escrow_Address
# Multi-Token Vault (Active)
MULTI_TOKEN_VAULT_ADDRESS=0x_Your_Multi_Token_Vault_Address
VITE_MULTI_TOKEN_VAULT_ADDRESS=0x_Your_Multi_Token_Vault_Address
# New Feature Contracts (Active)
PREDICTION_INSURANCE_ADDRESS=0x_Your_Prediction_Insurance_Address
VITE_PREDICTION_INSURANCE_ADDRESS=0x_Your_Prediction_Insurance_Address
REFERRAL_SYSTEM_ADDRESS=0x_Your_Referral_System_Address
VITE_REFERRAL_SYSTEM_ADDRESS=0x_Your_Referral_System_Address
NFT_ACHIEVEMENT_SYSTEM_ADDRESS=0x_Your_NFT_Achievement_System_Address
VITE_NFT_ACHIEVEMENT_SYSTEM_ADDRESS=0x_Your_NFT_Achievement_System_Address
# ============================================================
# TOKEN ADDRESSES (POLYGON AMOY TESTNET)
# ============================================================
# Standard Token Addresses
AMOY_WETH_ADDRESS=0x_Your_WETH_Token_Address
AMOY_USDC_ADDRESS=0x_Your_USDC_Token_Address
AMOY_LINK_ADDRESS=0x_Your_LINK_Token_Address
# Frontend Token Addresses
VITE_AMOY_WETH_ADDRESS=0x_Your_WETH_Token_Address
VITE_AMOY_USDC_ADDRESS=0x_Your_USDC_Token_Address
VITE_AMOY_LINK_ADDRESS=0x_Your_LINK_Token_Address
# ============================================================
# DEPLOYMENT INFO
# ============================================================
# Network: Polygon Amoy Testnet (Chain ID: 80002)
# Status: Active contracts only
#
# For current deployed contract addresses, see:
# - README.md (Smart Contracts section)
# - SMART_CONTRACTS.md (Detailed documentation)
# - deployments/polygonAmoy.json (Deployment artifacts)