-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
131 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ store.json | |
manifesto.json | ||
nftAbi.json | ||
govAbi.json | ||
.DS_Store | ||
|
||
#Hardhat files | ||
cache | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
export const firstMembers = [ | ||
"0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977", // First members. Super important. | ||
"0xe61A1a5278290B6520f0CEf3F2c71Ba70CF5cf4C" | ||
]; | ||
|
||
// DAO config | ||
export const daoName = "Our DAO" // Give your DAO a name. | ||
export const votingDelay = 1 // Just 1 block voting delay by default. | ||
export const votingPeriod = 300 // Depends on the network you're deploying to. | ||
export const quorum = 20 // Classic 20% quorum by default. | ||
export const votingThreshold = 0 // 0 allows non-members to submit proposals. | ||
|
||
// NFT config | ||
export const nftSymbol = "MEMBER" // NFT symbol | ||
export const nftDescription = "This is us." // Nft description | ||
|
||
// set to false if you don't want any specific attributes to the membership NFT | ||
export const attributes = true | ||
|
||
// Attributes: relevant only when attributes is true | ||
export const participationRate = "100%" | ||
export const daoAddress = "unset" | ||
export const nickname = "unset" | ||
export const contribs = 0 | ||
export const role = "Hacker" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters