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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/*
 * Copyright 2020 Nuclei Studio OÜ
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

//! This pallet can be used to deploy a coin voting system. It supports direct,
//! simple coin voting as well as the possibility to configure it to support
//! quadratic voting.

#![cfg_attr(not(feature = "std"), no_std)]

use frame_support::{decl_error, decl_module, decl_storage, ensure, traits::LockIdentifier};
use governance_os_support::traits::{
    Currencies, LockableCurrencies, ProposalResult, StandardizedVoting,
};
use sp_runtime::{
    traits::{Saturating, Zero},
    DispatchError, DispatchResult, Perbill,
};
use sp_std::{prelude::*, vec::Vec};
use types::ProposalState;

#[cfg(test)]
mod tests;
mod types;

pub use types::{VoteCountingStrategy, VoteData, VotingParameters};

pub const COIN_VOTING_LOCK_ID: LockIdentifier = *b"coinvote";

pub trait Config: frame_system::Config {
    /// Pallet in charge of currencies. Used so that we can lock tokens etc...
    type Currencies: LockableCurrencies<Self::AccountId>;
}

type BalanceOf<T> =
    <<T as Config>::Currencies as Currencies<<T as frame_system::Config>::AccountId>>::Balance;
type CurrencyIdOf<T> =
    <<T as Config>::Currencies as Currencies<<T as frame_system::Config>::AccountId>>::CurrencyId;
type LockDataOf<T> = (
    <T as frame_system::Config>::Hash,
    bool,
    BalanceOf<T>,
    VoteCountingStrategy,
);
type LockIdentifierOf<T> = (CurrencyIdOf<T>, <T as frame_system::Config>::AccountId);
type CoinProposalStateOf<T> = ProposalState<
    BalanceOf<T>,
    <T as frame_system::Config>::BlockNumber,
    CurrencyIdOf<T>,
    LockIdentifierOf<T>,
>;

decl_storage! {
    trait Store for Module<T: Config> as CoinVoting {
        /// Proposals actively opened and linked to this voting implementation. Erased when closed or vetoed.
        pub Proposals get(fn proposals): map hasher(blake2_128_concat) T::Hash => CoinProposalStateOf<T>;
        /// Keeps track of locks set on user's balances and to which proposal they were linked to.
        pub Locks get(fn locks): map hasher(blake2_128_concat) LockIdentifierOf<T> => Vec<LockDataOf<T>>;
    }
}

decl_error! {
    pub enum Error for Module<T: Config> {
        /// There are not enough tokens in the user's balance to proceed
        /// to this action.
        NotEnoughBalance,
        /// Proposal cannot be closed yet, it is likely too early.
        CannotClose,
    }
}

decl_module! {
    pub struct Module<T: Config> for enum Call where origin: T::Origin {
    }
}

impl<T: Config> StandardizedVoting for Module<T> {
    type ProposalId = T::Hash;
    type Parameters = VotingParameters<T::BlockNumber, CurrencyIdOf<T>>;
    type VoteData = VoteData<BalanceOf<T>>;
    type AccountId = T::AccountId;

    /// Register the proposal in our storage. Does not make any attempt at preventing duplicates
    /// as we assume this is handled by the calling pallet.
    fn initiate(proposal: Self::ProposalId, parameters: Self::Parameters) -> DispatchResult {
        Proposals::<T>::try_mutate_exists(proposal, |maybe_existing_state| -> DispatchResult {
            // no duplicates, we can create a new state
            *maybe_existing_state = Some(ProposalState {
                parameters,
                total_against: Zero::zero(),
                total_favorable: Zero::zero(),
                locks: vec![],
                created_on: Self::now(),
            });

            Ok(())
        })?;

        Ok(())
    }

    /// Record a new vote and set any locks or reserved coins in place.
    fn vote(
        proposal: Self::ProposalId,
        voter: &Self::AccountId,
        data: Self::VoteData,
    ) -> DispatchResult {
        let mut state = Self::proposals(proposal);

        // We want to prevent votes for user with less coins than they'd like to lock.
        ensure!(
            T::Currencies::free_balance(state.parameters.voting_currency, voter) >= data.power,
            Error::<T>::NotEnoughBalance
        );
        let mut this_vote_is_a_duplicate = false;
        Self::update_locks(
            state.parameters.voting_currency,
            voter,
            proposal,
            data.in_support,
            data.power,
            state.parameters.vote_counting_strategy,
            |_proposal, old_support, old_power, _strategy| {
                // We found a duplicated vote, thus we need to remove it from our precomputed
                // state to avoid mistakes
                state.unrecord_vote(old_support, old_power);
                this_vote_is_a_duplicate = true;
            },
        )?;

        if !this_vote_is_a_duplicate {
            state
                .locks
                .push((state.parameters.voting_currency, voter.clone()));
        }

        state.record_vote(data.in_support, data.power);

        Proposals::<T>::insert(proposal, state);

        Ok(())
    }

    /// Simply unlock all the coins related to votes for or against a given proposal. Also
    /// frees any storage associated to it.
    fn veto(proposal: Self::ProposalId) -> DispatchResult {
        // note the use of take instead of get which also deletes the storage
        Self::unlock(Proposals::<T>::take(proposal).locks, proposal)
    }

    /// Checks wether a proposal is passing or not. Then unlock all coins related to it
    /// and clean the storage.
    fn close(proposal: Self::ProposalId) -> Result<ProposalResult, DispatchError> {
        let state = Proposals::<T>::get(proposal);

        let total_supply = T::Currencies::total_issuance(state.parameters.voting_currency);
        let total_participation = state.total_against.saturating_add(state.total_favorable);

        let enough_participation = total_participation
            > Perbill::from_percent(state.parameters.min_participation) * total_supply;
        let enough_quorum = state.total_favorable
            > Perbill::from_percent(state.parameters.min_quorum) * total_participation;

        let result = if enough_participation && enough_quorum {
            ProposalResult::Passing
        } else {
            ProposalResult::Failing
        };

        let can_close = state.created_on.saturating_add(state.parameters.ttl) < Self::now();
        ensure!(
            can_close || result == ProposalResult::Passing,
            Error::<T>::CannotClose
        );

        Self::unlock(state.locks, proposal)?;

        Proposals::<T>::remove(proposal);
        Ok(result)
    }
}

impl<T: Config> Module<T> {
    /// Modify the locks related to the `voter` and `proposal`. We provide a hook `on_duplicate_vote_found`
    /// used to handle cases where we have a similar lock in place.
    fn update_locks<F>(
        voting_currency: CurrencyIdOf<T>,
        voter: &T::AccountId,
        proposal: T::Hash,
        support: bool,
        power: BalanceOf<T>,
        strategy: VoteCountingStrategy,
        mut on_duplicate_vote_found: F,
    ) -> DispatchResult
    where
        F: FnMut(T::Hash, bool, BalanceOf<T>, VoteCountingStrategy),
    {
        Locks::<T>::try_mutate((voting_currency, voter), |locks| -> DispatchResult {
            // because we use iterators we have to first create a vec for
            // a use with chain() later on
            let locks_addition = vec![(proposal, support, power, strategy)];

            // Filter and remove any duplicate votes
            *locks = locks
                .iter()
                .cloned()
                .filter(|&(maybe_duplicate_proposal, support, power, strategy)| {
                    if maybe_duplicate_proposal != proposal {
                        true
                    } else {
                        // callback
                        on_duplicate_vote_found(maybe_duplicate_proposal, support, power, strategy);
                        //continue
                        false
                    }
                })
                .chain(locks_addition.iter().cloned())
                .collect();

            Self::rejig_locks(locks.to_vec(), voting_currency, voter)?;
            Ok(())
        })?;

        Ok(())
    }

    /// Unlock all the coins related to the `proposal`.
    fn unlock(locks: Vec<LockIdentifierOf<T>>, proposal: T::Hash) -> DispatchResult {
        locks
            .iter()
            .try_for_each(|lock_identifier| -> DispatchResult {
                let lock_data = Locks::<T>::get(lock_identifier);

                let new_lock_data: Vec<LockDataOf<T>> = lock_data
                    .iter()
                    .cloned()
                    .filter(|(prop, _, _, _)| prop != &proposal)
                    .collect();

                if !new_lock_data.is_empty() {
                    Locks::<T>::insert(lock_identifier, new_lock_data.clone());
                } else {
                    Locks::<T>::remove(lock_identifier);
                }

                Self::rejig_locks(new_lock_data, lock_identifier.0, &lock_identifier.1)?;
                Ok(())
            })?;

        Ok(())
    }

    /// Recompute locks from the `locks` vector. We do not mix locks between the different voting
    /// strategies and rather sum them up. In general you can consider that we lock the maximum
    /// amount of coins as listed in `locks`.
    fn rejig_locks(
        locks: Vec<LockDataOf<T>>,
        voting_currency: CurrencyIdOf<T>,
        who: &T::AccountId,
    ) -> DispatchResult {
        let max_to_lock_with_simple_voting: BalanceOf<T> = locks
            .iter()
            .cloned()
            .filter(|(_proposal, _support, _power, strategy)| {
                strategy == &VoteCountingStrategy::Simple
            })
            .fold(
                Zero::zero(),
                |acc, (_proposal, _support, power, _strategy)| {
                    if power > acc {
                        power
                    } else {
                        acc
                    }
                },
            );

        let max_to_lock_with_quadratic_voting: BalanceOf<T> = locks
            .iter()
            .cloned()
            .filter(|(_proposal, _support, _power, strategy)| {
                strategy == &VoteCountingStrategy::Quadratic
            })
            .fold(
                Zero::zero(),
                |acc, (_proposal, _support, power, _strategy)| acc.saturating_add(power),
            );

        let max_to_lock =
            max_to_lock_with_simple_voting.saturating_add(max_to_lock_with_quadratic_voting);

        if max_to_lock == Zero::zero() {
            T::Currencies::remove_lock(voting_currency, COIN_VOTING_LOCK_ID, who)?;
        } else {
            T::Currencies::set_lock(voting_currency, COIN_VOTING_LOCK_ID, who, max_to_lock)?;
        }

        Ok(())
    }

    /// Just a helper function to return the current block number. Simply sexier
    /// than calling the actual `frame_system::Module::<T>::block_number()` function.
    fn now() -> T::BlockNumber {
        frame_system::Module::<T>::block_number()
    }
}