-
Notifications
You must be signed in to change notification settings - Fork 404
feat(examples): DAO to propose polls and vote #4082
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
🛠 PR Checks SummaryAll Automated Checks passed. ✅ Manual Checks (for Reviewers):
Read More🤖 This bot helps streamline PR reviews by verifying automated checks and providing guidance for contributors and reviewers. ✅ Automated Checks (for Contributors):🟢 Maintainers must be able to edit this pull request (more info) ☑️ Contributor Actions:
☑️ Reviewer Actions:
📚 Resources:Debug
|
Codecov ReportAll modified and coverable lines are covered by tests ✅ 📢 Thoughts on this report? Let us know! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, left some preliminary comments :)
func ParseQuery(path string) (daoID string, showStats bool) { | ||
parts := strings.Split(path, "?") | ||
if len(parts) < 2 { | ||
return "", false | ||
} | ||
|
||
args := strings.Split(parts[1], "&") | ||
for _, arg := range args { | ||
if strings.HasPrefix(arg, "dao=") { | ||
daoID = arg[len("dao="):] | ||
} else if arg == "stats" { | ||
showStats = true | ||
} | ||
} | ||
return | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this package seems like general utils package, but then you see that it's actually not, as it has things replated to your specific app. When you separate code like this, it also makes sense to think about how other people might use your code.
In this case, I have two things to say:
- maybe this utils package should be under
r/moonia/home/utils
, or/internal
- for handling queries and paths, you can use the
p/demo/mux
package. Check this tutorial out: https://gno.land/r/docs/routing
// Admin Methods // | ||
|
||
func IsAdmin(addr std.Address) bool { | ||
return ds.DAO.IsAdmin(addr) | ||
} | ||
|
||
func SetAdmin() string { | ||
return ds.DAO.SetAdmin() | ||
} | ||
|
||
func TransferAdmin(addr std.Address) string { | ||
return ds.DAO.TransferAdmin(addr) | ||
} | ||
|
||
func KickMember(addr std.Address) string { | ||
return ds.DAO.KickMember(addr) | ||
} | ||
|
||
func AddMember(addr std.Address) string { | ||
return ds.DAO.AddMember(addr) | ||
} | ||
|
||
func ListMembers() map[std.Address]bool { | ||
return ds.DAO.Whitelist | ||
} | ||
|
||
func AcceptRequest(addr std.Address) string { | ||
return ds.DAO.AcceptRequest(addr) | ||
} | ||
|
||
func DeclineRequest(addr std.Address) string { | ||
return ds.DAO.DeclineRequest(addr) | ||
} | ||
|
||
func ListRequests() map[std.Address]bool { | ||
return ds.DAO.ListRequests() | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a lot of boilerplate code. Check out the safe object examples such as ownable
, and try to make a top-level struct that is safe to expose, and also automatically gives you the getters and setters you need.
A simple DAO that allows members to create polls (proposals) and vote on them.
Add the following:
Realms:
r/moonia/home
: Renders the DAO dashboard listing all existing DAOs and exposes user-facing actions.p/moonia/utils
: Provides helper functions for caller identification and safe index parsingPure:
p/moonia/dao
: Core logic of the DAO. Includes membership, proposal creation and deletion, voting.p/moonia/admin
: Manage admin rights and actions.I'm also looking for suggestions on file organization. 🚀