-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
42 lines (37 loc) · 1.67 KB
/
.env.example
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
# Please delete all the unused variables
NETWORK= # Check SupportedNetwoks
PROTOCOL_VERSION= # Default: v1.0.0 or v1.3.0
PRIVATE_KEY= # Private key of the deployer, mandatory
PINATA_API_KEY= # Pinata API key, mandatory
DAO_SUBDOMAIN= # Subdomain of the DAO, mandatory, must be unique
DAO_URI= # URI of the DAO, optional, Default: ""
DAO_TRUSTED_FORWARDER= # Trusted forwarder, optional, Default: address(0)
##### METADATA #####
DAO_NAME= # DAO name, optional, Default: "Test DAO #{Random Number}"
DAO_DESCRIPTION= # DAO description, optional, Default: "Test DAO description"
DAO_AVATAR= # DAO avatar, optional, Default: ""
##### PLUGINS #####
# One of them must be true
INSTALL_MULTISIG=
INSTALL_TOKEN_VOTING=
##### MULTISIG #####
MULTISIG_ADDRESSES= # Multisig addresses, comma separated, mandatory
MULTISIG_MIN_APPROVALS= # Minimum approvals, optional, Default: ceil(Addresses.length)
MULTISIG_ONLY_LISTED= # Only listed addresses can approve, optional, Default: false
##### TOKEN VOTING #####
# Standard = 0
# EarlyExecution = 1
# VoteReplacement = 2
VOTING_MODE=0 # Default: 0
# 0 => 0%
# 500000 => 50%
# 1000000 => 100%
SUPPORT_THRESHOLD= # between 0 and 1000000
MIN_PARTICIPATION= # Minimim token held to be able to vote
MIN_DURATION= # in seconds, minimum is 3600, default is 3600
MIN_PROPOSER_VOTING_POWER= # Minimum voting power to create a proposal
TOKEN_ADDRESS= # Token address, zero address for new token
TOKEN_NAME= # Token name of the new token if it is created or wrapped
TOKEN_SYMBOL= # Token symbol if the token is created or wrapped
TOKEN_RECEIVERS= # Token receivers comma separated, address1,address2,address3
TOKEN_AMOUNTS= # Token amounts comma separated, amount1,amount2,amount3