-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (21 loc) · 1.57 KB
/
.env.example
File metadata and controls
24 lines (21 loc) · 1.57 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
# Root workspace .env.example
# Copy to .env and fill in real values. Never commit .env.
#
# This file is read by:
# - devtools/contracts/hardhat.config.ts (dotenv path: '../.env')
# - devtools/contracts/scripts/deploy.ts (dotenv path: '../../.env')
#
# ─── Deployer wallet ──────────────────────────────────────────────────────────
# 0x-prefixed private key for the account that will deploy contracts.
# Must have sufficient CFX on the target network (≥0.5 mainnet, ≥0.1 testnet).
DEPLOYER_PRIVATE_KEY=0x_your_private_key_here
# ─── Target network ───────────────────────────────────────────────────────────
# "mainnet" | "testnet" (default: testnet when unset)
NETWORK=testnet
# ─── RPC overrides (optional) ─────────────────────────────────────────────────
# Defaults are the public endpoints. Override to use a private/premium node.
CONFLUX_ESPACE_MAINNET_RPC=https://evm.confluxrpc.com
CONFLUX_ESPACE_TESTNET_RPC=https://evmtestnet.confluxrpc.com
# ─── ConfluxScan (optional) ───────────────────────────────────────────────────
# API key for source-code verification. Use "no-key" to skip verification.
CONFLUXSCAN_API_KEY=no-key