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
/*
 * 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 conviction voting system. With
//! conviction voting, votes accumulate and de-accumulate over time via
//! a half life decay curve.
//! It incentivizes people to vote earlier as their votes will have more
//! value over time (up to a certain limit). In our implementation, we
//! have decided that every new vote's conviction will start at 0 and
//! slowly accumulate to whatever the user staked on the proposal. This
//! means that even if they stake a lot of coins they won't be accounted
//! immediately.

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

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

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

pub use types::{Conviction, ProposalState, VotingParameters};

pub const CONVICTION_VOTING_LOCK_ID: LockIdentifier = *b"convvote";

pub trait Config: frame_system::Config {
    /// Pallet in charge of currencies. Used so that we can lock tokens etc...
    type Currencies: LockableCurrencies<Self::AccountId>;
    /// Decay constant as part of the conviction voting / decay curve formula.
    /// Shared among all organizations relying on this pallet.
    /// Must be expressed in the form `Decay = a * D` where `D` is `10` and
    /// `a` is our decay constant. Check this
    /// [document](https://hackmd.io/@EtCgawsxS2mC6-Q0rCqhAw/rJMvfgOv4?type=view#Solidity-implementation)
    /// for better explanations.
    type Decay: Get<BalanceOf<Self>>;
}

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 ConvictionProposalStateOf<T> = ProposalState<
    <T as frame_system::Config>::AccountId,
    BalanceOf<T>,
    <T as frame_system::Config>::BlockNumber,
    CurrencyIdOf<T>,
>;

decl_storage! {
    trait Store for Module<T: Config> as PlcrVoting {
        pub Proposals get(fn proposals): map hasher(blake2_128_concat) T::Hash => ConvictionProposalStateOf<T>;
        pub Locks get(fn locks): map hasher(blake2_128_concat) (CurrencyIdOf<T>, T::AccountId) => Vec<(T::Hash, bool, BalanceOf<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,
        /// Some requirements for early closure of the proposal were not
        /// met. This typically happens if the proposal did not receive
        /// enough support and is not yet expired.
        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 = Conviction<BalanceOf<T>>;
    type AccountId = T::AccountId;

    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,
                created_on: Self::now(),
                ..Default::default()
            });

            Ok(())
        })?;

        Ok(())
    }

    fn veto(proposal: Self::ProposalId) -> DispatchResult {
        // note the take() function instead of the usual get()
        Self::finalize(proposal, Proposals::<T>::take(proposal))
    }

    fn vote(
        proposal: Self::ProposalId,
        voter: &Self::AccountId,
        data: Self::VoteData,
    ) -> DispatchResult {
        let mut state = Proposals::<T>::get(proposal);

        ensure!(
            data.power < T::Currencies::free_balance(state.parameters.voting_currency, voter),
            Error::<T>::NotEnoughBalance
        );

        let mut locks = Locks::<T>::get((state.parameters.voting_currency, voter));
        locks = locks
            .iter()
            .cloned()
            .filter(|(proposal_hash, _support, _power)| *proposal_hash != proposal)
            .collect::<Vec<_>>();
        locks.push((proposal, data.in_support, data.power));

        Self::rejig_locks(state.parameters.voting_currency, voter, locks)?;

        let mut maybe_previous_conviction = None;
        let mut filtered_convictions = Vec::new();
        for (participant, when, conviction) in state.convictions {
            if &participant != voter {
                filtered_convictions.push((participant, when, conviction));
            } else {
                maybe_previous_conviction = Some(conviction);
            }
        }
        state.convictions = filtered_convictions;
        state
            .convictions
            .push((voter.clone(), Self::now(), data.clone()));

        // Reduce conviction trackers
        if let Some(previous_conviction) = maybe_previous_conviction {
            if previous_conviction.in_support {
                state.conviction_for = state
                    .conviction_for
                    .saturating_sub(previous_conviction.power);
            } else {
                state.conviction_against = state
                    .conviction_against
                    .saturating_sub(previous_conviction.power);
            }
        }

        // Update trackers
        if data.in_support {
            state.conviction_for = state.conviction_for.saturating_add(data.power);
        } else {
            state.conviction_against = state.conviction_against.saturating_add(data.power);
        }

        // Refresh conviction snapshot
        state.mutate_conviction_snapshot(Self::now(), T::Decay::get())?;
        Proposals::<T>::insert(proposal, state);

        Ok(())
    }

    fn close(proposal: Self::ProposalId) -> Result<ProposalResult, DispatchError> {
        let mut state = Proposals::<T>::get(proposal);

        let total_supply = T::Currencies::total_issuance(state.parameters.voting_currency);
        state.mutate_conviction_snapshot(Self::now(), T::Decay::get())?;
        let total_participation = state
            .snapshot
            .favorable
            .saturating_add(state.snapshot.against);

        let enough_participation = total_participation
            > Perbill::from_percent(state.parameters.min_participation) * total_supply;
        let enough_quorum = state.snapshot.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::finalize(proposal, state)?;
        Proposals::<T>::remove(proposal);

        Ok(result)
    }
}

impl<T: Config> Module<T> {
    /// Simple helper function to return the current block number.
    pub fn now() -> T::BlockNumber {
        frame_system::Module::<T>::block_number()
    }

    /// Iterates the `locks` vector and lock the maximum amount of coins needed for
    /// the pair `voting_currency` and `voter`.
    fn rejig_locks(
        voting_currency: CurrencyIdOf<T>,
        voter: &T::AccountId,
        locks: Vec<(T::Hash, bool, BalanceOf<T>)>,
    ) -> DispatchResult {
        let max = locks.iter().cloned().fold(
            Zero::zero(),
            |acc, (_proposal, _support, power)| {
                if acc > power {
                    acc
                } else {
                    power
                }
            },
        );
        if max == Zero::zero() {
            T::Currencies::remove_lock(voting_currency, CONVICTION_VOTING_LOCK_ID, voter)?;
        } else {
            T::Currencies::set_lock(voting_currency, CONVICTION_VOTING_LOCK_ID, voter, max)?;
        }
        if locks.is_empty() {
            Locks::<T>::remove((voting_currency, voter));
        } else {
            Locks::<T>::insert((voting_currency, voter), locks);
        }

        Ok(())
    }

    /// Goes through all the elements related to the passed proposal state and cleans
    /// up any associated storage elements such as locks.
    fn finalize(proposal: T::Hash, state: ConvictionProposalStateOf<T>) -> DispatchResult {
        state
            .convictions
            .iter()
            .try_for_each(|(voter, _when, _conviction)| -> DispatchResult {
                let mut locks = Locks::<T>::get((state.parameters.voting_currency, voter));
                locks = locks
                    .iter()
                    .cloned()
                    .filter(|(proposal_hash, _support, _power)| *proposal_hash != proposal)
                    .collect::<Vec<_>>();
                Self::rejig_locks(state.parameters.voting_currency, voter, locks)?;

                Ok(())
            })?;

        Ok(())
    }
}