|
1 | | -# Environment Variables for Unichain Sepolia Deployment |
| 1 | +# LedgerFlow Environment Variables |
2 | 2 | # Copy this file to .env and fill in your actual values |
3 | | -# WARNING: Never commit .env file with real private keys to version control! |
| 3 | +# IMPORTANT: Never commit .env to version control! |
4 | 4 |
|
5 | | -# Your wallet private key (required for deployment) |
6 | | -PRIVATE_KEY=your_private_key_here |
| 5 | +# Sui Private Key for transaction signing |
| 6 | +# Get this from: sui keytool export <key-id> --export-private-key-hex |
| 7 | +SUI_PRIVATE_KEY= |
| 8 | + |
| 9 | +# Optional: Override server configuration |
| 10 | +# HOST=0.0.0.0 |
| 11 | +# PORT=3402 |
| 12 | + |
| 13 | +# Optional: Override gas settings |
| 14 | +# GAS_BUDGET=100000000 |
| 15 | + |
| 16 | +# Optional: Override network URLs |
| 17 | +# SUI_TESTNET_GRPC_URL=https://sui-testnet-rpc.publicnode.com |
| 18 | +# SUI_DEVNET_GRPC_URL=https://fullnode.devnet.sui.io:443 |
| 19 | +# SUI_MAINNET_GRPC_URL=https://fullnode.mainnet.sui.io:443 |
| 20 | + |
| 21 | +# EVM-related settings (for EVM components) |
| 22 | +# Your wallet private key (required for EVM deployment) |
| 23 | +PRIVATE_KEY= |
7 | 24 |
|
8 | 25 | # Etherscan API key for contract verification (optional) |
9 | 26 | # Get it from https://etherscan.io/apis |
10 | | -ETHERSCAN_API_KEY=your_etherscan_api_key_here |
| 27 | +ETHERSCAN_API_KEY= |
11 | 28 |
|
12 | 29 | # Deployed contract address (required for verification) |
13 | | -CONTRACT_ADDRESS=deployed_contract_address_here |
14 | | - |
15 | | -# Example usage: |
16 | | -# 1. Copy this file: cp .env.example .env |
17 | | -# 2. Edit .env with your actual values |
18 | | -# 3. Load environment: source .env |
19 | | -# 4. Deploy: make deploy-unichain-sepolia |
| 30 | +CONTRACT_ADDRESS= |
0 commit comments