forked from Vera3289/votechain-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
54 lines (48 loc) · 2.84 KB
/
Copy path.env.example
File metadata and controls
54 lines (48 loc) · 2.84 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
# =============================================================================
# VoteChain Contracts — Environment Configuration Template
# =============================================================================
# Copy this file to .env and fill in the values for your target environment.
# NEVER commit .env with real secrets.
#
# cp .env.example .env
# =============================================================================
# -----------------------------------------------------------------------------
# Network selection
# Accepted values: local | testnet | mainnet
# -----------------------------------------------------------------------------
NETWORK=local
# -----------------------------------------------------------------------------
# Stellar RPC endpoint for the selected network
# local : http://localhost:8000
# testnet : https://soroban-testnet.stellar.org
# mainnet : https://soroban-mainnet.stellar.org (or your own RPC node)
# -----------------------------------------------------------------------------
STELLAR_RPC_URL=http://localhost:8000
# -----------------------------------------------------------------------------
# Network passphrase — must match the target network exactly
# local : Standalone Network ; February 2017
# testnet : Test SDF Network ; September 2015
# mainnet : Public Global Stellar Network ; September 2015
# -----------------------------------------------------------------------------
STELLAR_NETWORK_PASSPHRASE=Standalone Network ; February 2017
# -----------------------------------------------------------------------------
# Deployer / admin keypair
# STELLAR_SECRET_KEY : the secret key (S...) of the account that will deploy
# and administer the contracts.
# STELLAR_PUBLIC_KEY : the corresponding public key (G...).
# -----------------------------------------------------------------------------
STELLAR_SECRET_KEY=SXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
STELLAR_PUBLIC_KEY=GXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# -----------------------------------------------------------------------------
# Deployed contract addresses (populated after running scripts/deploy.sh)
# Leave as placeholders until deployment is complete.
# -----------------------------------------------------------------------------
GOVERNANCE_CONTRACT_ID=CXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
TOKEN_CONTRACT_ID=CXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# -----------------------------------------------------------------------------
# Governance parameters (used by deploy scripts)
# MIN_PROPOSAL_BALANCE : minimum token balance required to create a proposal (stroops)
# PROPOSAL_COOLDOWN : seconds a proposer must wait between proposals
# -----------------------------------------------------------------------------
MIN_PROPOSAL_BALANCE=0
PROPOSAL_COOLDOWN=0