-
Notifications
You must be signed in to change notification settings - Fork 142
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
Bounties contract #714
Comments
It's possible to have this be usable with out |
hey @JakeHartnell couple Q's:
Thoughts? I'm down to help on this |
Great questions! Forgot about It would need to handle funds. They would be mapped to the bounties and sent when the bounties are created. Perhaps a fun thing to add in a V2 would be the ability for others to add more to the bounty (for example, if 1337 makes a bounty that would also be useful to the Osmosis team, they could add extra funds on top). |
A bounty contract is special type of escrow that takes an owner and holds funds for an
On bounty creation the funds are taken, on update funds are added or removed and bounty details can be updated, on removal funds are returned to the bounties contract owner.
Typical usage would involve a SubDAO with open proposal submission. Bounty hunters would be able to see a list of bounties, work on one and make a proposal to claim it.
Managing the contract owner (handling updates, etc.) should be done via
cw-ownable
.Example interfaces:
V2 could include milestones in the bounty, which would allow for breaking up bounties into claimable parts.
The text was updated successfully, but these errors were encountered: