# KUZADESIGN Staking Environment Configuration
# Copy this file to .env and fill in your values

# =====================================================
# BLOCKCHAIN CONFIGURATION
# =====================================================

# BSC RPC URLs (default values work for testnet)
BSC_TESTNET_RPC=https://bsc-testnet-rpc.publicnode.com
BSC_MAINNET_RPC=https://bsc-rpc.publicnode.com

# Your wallet private key (JANGAN SHARE!)
# Get from MetaMask: Settings > Security & Privacy > Show Private Key
PRIVATE_KEY=b6aa112fc337ef78e9375417d51670d050ef990a4d7518126dff3b1cebb1238d

# BSCScan API Key (optional, untuk verify contract)
# Get from: https://bscscan.com/myapikey
BSCSCAN_API_KEY=RSS6KEQEGX7ZT2NQCXKVPEUJZHS18N5ZGY

# =====================================================
# CONTRACT ADDRESSES
# =====================================================
# Isi setelah deploy contracts

# KZD Token Contract Address
KZD_TOKEN_ADDRESS=0xD038B30e69Ac230450Ee26C1475D7A83DD16D69f
NEXT_PUBLIC_KZD_TOKEN_ADDRESS=0xD038B30e69Ac230450Ee26C1475D7A83DD16D69f

# Staking Contract Address
STAKING_CONTRACT_ADDRESS=0xbc125F4eFd23A7bd6cc5B7abB8c6e87D0f14800F
NEXT_PUBLIC_STAKING_CONTRACT_ADDRESS=0xbc125F4eFd23A7bd6cc5B7abB8c6e87D0f14800F

# =====================================================
# DATABASE CONFIGURATION
# =====================================================

# MongoDB Connection String
MONGODB_URI=mongodb://localhost:27017/kuzastaking

# =====================================================
# ADMIN CONFIGURATION
# =====================================================

# Owner Wallet Address (for admin access)
# This is the wallet that deployed the contracts
# Owner Wallet Address (for admin access)
# This is the wallet that deployed the contracts
OWNER_WALLET=0x2Cb10eBF939AEb95D19fd86a39aC29bEc6Aa6ed3
NEXT_PUBLIC_OWNER_WALLET=0x2Cb10eBF939AEb95D19fd86a39aC29bEc6Aa6ed3


# =====================================================
# NEXT.JS CONFIGURATION
# =====================================================

# Web URL (for production deployment)
NEXT_PUBLIC_WEB_URL=http://localhost:3000

# Environment (development / production)
NODE_ENV=development
