-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.rs
executable file
·237 lines (206 loc) · 8.35 KB
/
lib.rs
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#![cfg_attr(not(feature = "std"), no_std, no_main)]
// # ✒️ Challenge 2: Implement voter registration, proposal management, and voting in your Dao.
//
// - **Difficulty**: Mid
// - **Submission Criteria:** ink! contract must
// - Use a storage-optimized data-structure `Mapping` or `StorageVec`
// - Store registered members, member votes, and proposals to vote on.
// - Have method to register and de-register members.
// - Implement the `GovernanceDao` trait methods.
// - Have methods to create proposals and a method to vote on proposals.
// - Unit tests for adding members, votes, and proposals.
// - **Submission Guidelines:**
// - Verify with R0GUE DevRel, and post on X.
// - **Prize:** sub0 merch
#[ink::contract]
mod dao {
use ink::{
prelude::string::String,
storage::{Mapping, StorageVec},
};
use minidao_common::*;
#[derive(Clone)]
#[cfg_attr(
feature = "std",
derive(Debug, PartialEq, Eq, ink::storage::traits::StorageLayout)
)]
#[ink::scale_derive(Encode, Decode, TypeInfo)]
pub struct BasicProposal {
pub vote_count: u32,
}
#[ink(storage)]
pub struct Dao {
name: String,
voters: StorageVec<AccountId>,
votes: Mapping<AccountId, u32>,
proposals: Mapping<u32, BasicProposal>,
next_proposal_id: u32,
}
impl Dao {
// Constructor that initializes the values for the contract.
#[ink(constructor)]
pub fn new(name: String) -> Self {
Self {
name,
voters: StorageVec::new(),
proposals: Mapping::new(),
next_proposal_id: 0,
votes: Mapping::new(),
}
}
#[ink(message)]
pub fn get_name(&self) -> String {
// - Returns the name of the Dao
self.name.clone()
}
#[ink(message)]
pub fn register_voter(&mut self) -> Result<(), DaoError> {
let caller = self.env().caller();
// - Error: Throw error `DaoError::VoterAlreadyRegistered` if the voter is registered
if self.has_voter(caller) {
return Err(DaoError::VoterAlreadyRegistered);
}
// - Success: Register a new `voter` to the Dao
self.voters.push(&caller);
Ok(())
}
#[ink(message)]
pub fn deregister_voter(&mut self) -> Result<(), DaoError> {
let caller = self.env().caller();
// - Error: Throw error `DaoError::VoterNotRegistered` if the voter is not registered
if !self.has_voter(caller) {
return Err(DaoError::VoterNotRegistered);
}
// - Success: Deregister a new `voter` from the Dao
for i in 0..self.voters.len() {
if let Some(voter) = self.voters.get(i) {
if voter == caller {
self.voters.clear_at(i);
}
}
}
Ok(())
}
#[ink(message)]
pub fn has_voter(&self, voter: AccountId) -> bool {
let mut registered = false;
for i in 0..self.voters.len() {
if let Some(v) = self.voters.get(i) {
if v == voter {
registered = true;
break;
}
}
}
registered
}
#[ink(message)]
pub fn create_proposal(&mut self) -> Result<(), DaoError> {
let caller = self.env().caller();
// - Error: Throw error `DaoError::VoterNotRegistered` if the voter is not registered
if !self.has_voter(caller) {
return Err(DaoError::VoterNotRegistered);
}
// - Success: Create a new proposal that stores `votes` from `voters`
self.proposals
.insert(self.next_proposal_id, &BasicProposal { vote_count: 0 });
self.next_proposal_id = self.next_proposal_id.saturating_add(1);
Ok(())
}
#[ink(message)]
pub fn remove_proposal(&mut self, proposal_id: u32) -> Result<(), DaoError> {
let caller = self.env().caller();
// - Error: Throw error `DaoError::VoterNotRegistered` if the voter is not registered
if !self.has_voter(caller) {
return Err(DaoError::VoterNotRegistered);
}
// - Error: Throw error `DaoError::ProposalDoesNotExist` if the proposal is not created
if self.proposals.get(&proposal_id).is_none() {
return Err(DaoError::ProposalDoesNotExist);
}
// - Success: Create a new proposal that stores `votes` from `voters`
self.proposals.remove(proposal_id);
Ok(())
}
#[ink(message)]
pub fn get_proposal(&self, proposal_id: u32) -> Option<BasicProposal> {
// - Success: Returns the proposal detail
self.proposals.get(proposal_id)
}
#[ink(message)]
pub fn vote(&mut self, proposal_id: u32) -> Result<(), DaoError> {
let caller = self.env().caller();
// - Error: Throw error `DaoError::VoterNotRegistered` if the voter is not registered
if !self.has_voter(caller) {
return Err(DaoError::VoterNotRegistered);
}
let mut vote = self.votes.take(caller).unwrap_or_default();
// - Error: Throw error `Error::ProposalDoesNotExist` if the proposal is not created
let mut proposal = self
.proposals
.take(proposal_id)
.ok_or(DaoError::ProposalDoesNotExist)
.unwrap();
// - Success: Vote on the proposal
proposal.vote_count = proposal.vote_count.saturating_add(1);
self.proposals.insert(proposal_id, &proposal);
vote = vote.saturating_add(1);
self.votes.insert(caller, &vote);
Ok(())
}
#[ink(message)]
pub fn vote_count(&self, voter: AccountId) -> u32 {
// - Returns the number of `votes` a Dao `voter` voted
self.votes.get(voter).unwrap_or_default()
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::dao::Dao;
#[ink::test]
fn test_voter_registration() {
let mut dao = Dao::default();
let accounts = ink::env::test::default_accounts::<Environment>();
ink::env::test::set_caller::<ink::env::DefaultEnvironment>(accounts.alice);
assert!(dao.register_voter().is_ok());
assert_eq!(dao.register_voter(), Err(DaoError::VoterAlreadyRegistered));
assert_eq!(dao.voters.len(), 1);
assert!(dao.has_voter(accounts.alice));
ink::env::test::set_caller::<ink::env::DefaultEnvironment>(accounts.alice);
assert!(dao.deregister_voter().is_ok());
assert_eq!(dao.deregister_voter(), Err(DaoError::VoterNotRegistered));
assert_eq!(dao.voters.get(0), None);
assert!(!dao.has_voter(accounts.alice));
}
#[ink::test]
fn test_proposal_management() {
let mut dao = Dao::default();
let proposal = 0;
let accounts = ink::env::test::default_accounts::<Environment>();
ink::env::test::set_caller::<ink::env::DefaultEnvironment>(accounts.alice);
assert!(dao.register_voter().is_ok());
assert!(dao.create_proposal().is_ok());
assert_eq!(
dao.get_proposal(proposal),
Some(BasicProposal { vote_count: 0 })
);
assert!(dao.remove_proposal(proposal).is_ok());
assert_eq!(dao.get_proposal(proposal), None);
}
#[ink::test]
fn test_vote() {
let mut dao = Dao::default();
let proposal = 0;
let accounts = ink::env::test::default_accounts::<Environment>();
ink::env::test::set_caller::<ink::env::DefaultEnvironment>(accounts.alice);
assert!(dao.register_voter().is_ok());
assert!(dao.create_proposal().is_ok());
assert!(dao.vote(proposal).is_ok());
assert_eq!(
dao.get_proposal(proposal),
Some(BasicProposal { vote_count: 1 })
);
}
}
}