-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorg-deploy-config.json
More file actions
65 lines (65 loc) · 1.67 KB
/
Copy pathorg-deploy-config.json
File metadata and controls
65 lines (65 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
64
65
{
"orgName": "My DAO",
"description": "A decentralized organization built on POP",
"links": [
{ "name": "Website", "url": "https://example.com" },
{ "name": "Discord", "url": "https://discord.gg/example" }
],
"autoUpgrade": true,
"hybridVoting": {
"thresholdPct": 51,
"classes": [
{
"strategy": "DIRECT",
"slicePct": 50,
"quadratic": false,
"hatIds": []
},
{
"strategy": "ERC20_BAL",
"slicePct": 50,
"quadratic": false,
"minBalance": "1",
"hatIds": []
}
]
},
"directDemocracy": {
"thresholdPct": 51
},
"roles": [
{
"name": "Admin",
"canVote": true,
"defaults": { "eligible": true, "standing": true },
"distribution": { "mintToDeployer": true },
"hatConfig": { "maxSupply": 10, "mutableHat": true }
},
{
"name": "Member",
"canVote": true,
"defaults": { "eligible": true, "standing": true },
"distribution": { "mintToDeployer": true },
"hatConfig": { "maxSupply": 1000, "mutableHat": true }
},
{
"name": "Contributor",
"canVote": false,
"defaults": { "eligible": true, "standing": true },
"distribution": { "mintToDeployer": false },
"hatConfig": { "maxSupply": 1000, "mutableHat": true }
}
],
"roleAssignments": {
"quickJoinRoles": [1],
"tokenMemberRoles": [0, 1, 2],
"tokenApproverRoles": [0],
"taskCreatorRoles": [0, 1],
"educationCreatorRoles": [0],
"educationMemberRoles": [0, 1, 2],
"hybridProposalCreatorRoles": [0, 1],
"ddVotingRoles": [0, 1],
"ddCreatorRoles": [0, 1]
},
"educationHub": { "enabled": true }
}