-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (36 loc) · 2.04 KB
/
.env.example
File metadata and controls
40 lines (36 loc) · 2.04 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
# ============================================================
# AAS — Agent Attestation Service on Polkadot
# Copy this file to .env and fill in your values.
# ============================================================
# ── Deployment ───────────────────────────────────────────────
# Private key of the deployer wallet (with leading 0x).
# Fund it with testnet PAS from https://faucet.polkadot.io/
DEPLOYER_PRIVATE_KEY=0x<your_private_key_here>
# ── Polkadot Hub TestNet (Paseo Asset Hub) ───────────────────
# Default RPC is already set in hardhat.config.ts.
# Override here only if you need a custom endpoint (e.g. your
# own node or a paid RPC provider).
# POLKADOT_HUB_RPC=https://eth-rpc-testnet.polkadot.io/
#
# Network parameters (for reference — set in hardhat.config.ts):
# baseFee = 1000 gwei (EIP-1559; Hardhat auto-fetches correct fee)
# gasLimit = 6_000_000 (hardcoded — enough for HonkVerifier ~4.5M gas)
# ── Contract Verification (Blockscout) ───────────────────────
# Blockscout on Polkadot Hub testnet does not require a real
# API key, but the field must be non-empty.
# Leave as "dummy" for testnet; set a real key for mainnet.
BLOCKSCOUT_API_KEY=dummy
# ── Deployed Contract Addresses ──────────────────────────────
# These are written automatically to deployments/polkadot-hub.json
# by the deploy scripts (npm run deploy:polkadot:all).
# You can also set them here if you want to reuse an existing
# deployment without re-running the deploy scripts.
#
# Required before running deploy:polkadot:all — deploy HonkVerifier.sol via Remix
# then paste the address here (scripts/polkadot/03 and 04 will read it).
HONK_VERIFIER_ADDRESS=0x
#
# The rest are written automatically by the deploy scripts:
# PERFORMANCE_ORACLE_ADDRESS=0x...
# ATTESTATION_REGISTRY_ADDRESS=0x...
# XCM_BRIDGE_ADDRESS=0x...