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
/*
 * 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.
 */

use crate::{mutations::Mutation, Config, Locks, Module, RawEvent};
use frame_support::{
    traits::{BalanceStatus, LockIdentifier},
    IterableStorageDoubleMap, StorageDoubleMap,
};
use governance_os_support::traits::{Currencies, LockableCurrencies, ReservableCurrencies};
use sp_runtime::{
    traits::{Saturating, Zero},
    DispatchError, DispatchResult,
};

impl<T: Config> Currencies<T::AccountId> for Module<T> {
    type CurrencyId = T::CurrencyId;
    type Balance = T::Balance;

    fn total_issuance(currency_id: Self::CurrencyId) -> Self::Balance {
        Self::total_issuances(currency_id)
    }

    fn burn(
        currency_id: Self::CurrencyId,
        who: &T::AccountId,
        amount: Self::Balance,
    ) -> DispatchResult {
        let mut mutation = Mutation::<T>::new_for_currency(currency_id);
        mutation.sub_free_balance(who, amount)?;
        mutation.apply()?;

        Self::deposit_event(RawEvent::CurrencyBurned(currency_id, who.clone(), amount));
        Ok(())
    }

    fn mint(
        currency_id: Self::CurrencyId,
        who: &T::AccountId,
        amount: Self::Balance,
    ) -> DispatchResult {
        let mut mutation = Mutation::<T>::new_for_currency(currency_id);
        mutation.add_free_balance(who, amount)?;
        mutation.apply()?;

        Ok(())
    }

    fn free_balance(currency_id: Self::CurrencyId, who: &T::AccountId) -> Self::Balance {
        Self::get_currency_account(currency_id, who).free
    }

    fn total_balance(currency_id: Self::CurrencyId, who: &T::AccountId) -> Self::Balance {
        Self::get_currency_account(currency_id, who).total()
    }

    fn ensure_can_withdraw(
        currency_id: Self::CurrencyId,
        who: &T::AccountId,
        amount: Self::Balance,
    ) -> DispatchResult {
        // We simulate a withdrawal but never executes it and rather returns any error that
        // happens along the way
        let mut mutation = Mutation::<T>::new_for_currency(currency_id);
        mutation.ensure_must_be_transferable_for(who)?;
        mutation.sub_free_balance(who, amount)?;

        Ok(())
    }

    fn transfer(
        currency_id: Self::CurrencyId,
        source: &T::AccountId,
        dest: &T::AccountId,
        amount: Self::Balance,
    ) -> DispatchResult {
        let mut mutation = Mutation::<T>::new_for_currency(currency_id);
        mutation.ensure_must_be_transferable_for(source)?;
        mutation.sub_free_balance(source, amount)?;
        mutation.add_free_balance(dest, amount)?;
        mutation.apply()?;

        Self::deposit_event(RawEvent::CurrencyTransferred(
            currency_id,
            source.clone(),
            dest.clone(),
            amount,
        ));
        Ok(())
    }
}

impl<T: Config> ReservableCurrencies<T::AccountId> for Module<T> {
    fn can_reserve(
        currency_id: Self::CurrencyId,
        who: &T::AccountId,
        amount: Self::Balance,
    ) -> bool {
        Self::ensure_can_withdraw(currency_id, who, amount).is_ok()
    }

    fn slash_reserved(
        currency_id: Self::CurrencyId,
        who: &T::AccountId,
        value: Self::Balance,
    ) -> Self::Balance {
        let mut mutation = Mutation::<T>::new_for_currency(currency_id);
        let actual = mutation.sub_up_to_reserved_balance(who, value);
        mutation
            .apply()
            .expect("we assume the coins were created and added to the total issuance previously");

        // Return whatever we couldn't slash
        value - actual
    }

    fn reserved_balance(currency_id: Self::CurrencyId, who: &T::AccountId) -> Self::Balance {
        Self::get_currency_account(currency_id, who).reserved
    }

    fn reserve(
        currency_id: Self::CurrencyId,
        who: &T::AccountId,
        amount: Self::Balance,
    ) -> DispatchResult {
        // We do not require the asset to be transferable, it is assumed that it is acceptable
        // to reserve non transferable currencies
        let mut mutation = Mutation::<T>::new_for_currency(currency_id);
        mutation.sub_free_balance(who, amount)?;
        mutation.add_reserved_balance(who, amount)?;
        mutation.apply()?;

        Ok(())
    }

    fn unreserve(
        currency_id: Self::CurrencyId,
        who: &T::AccountId,
        amount: Self::Balance,
    ) -> Self::Balance {
        let mut mutation = Mutation::<T>::new_for_currency(currency_id);
        let unreserved = mutation.sub_up_to_reserved_balance(who, amount);
        mutation
            .add_free_balance(who, unreserved)
            .expect("we are merely reallocating balances");
        mutation
            .apply()
            .expect("we are not modifiying the total issuance and thus do not expect any errors");

        // Return the amount of coins we couldn't unreserve
        amount - unreserved
    }

    fn repatriate_reserved(
        currency_id: Self::CurrencyId,
        slashed: &T::AccountId,
        beneficiary: &T::AccountId,
        value: Self::Balance,
        status: BalanceStatus,
    ) -> Result<Self::Balance, DispatchError> {
        if slashed == beneficiary {
            return match status {
                BalanceStatus::Free => Ok(Self::unreserve(currency_id, slashed, value)),
                BalanceStatus::Reserved => {
                    // If balance > value saturates to 0
                    Ok(value.saturating_sub(Self::reserved_balance(currency_id, slashed)))
                }
            };
        }

        let mut mutation = Mutation::<T>::new_for_currency(currency_id);
        let actual = mutation.sub_up_to_reserved_balance(slashed, value);
        match status {
            BalanceStatus::Free => {
                mutation.add_free_balance(beneficiary, actual)?;
            }
            BalanceStatus::Reserved => {
                mutation.add_reserved_balance(beneficiary, actual)?;
            }
        };
        mutation.apply()?;

        Ok(value - actual)
    }
}

// Some helper to avoid code repetition when using locks
impl<T: Config> Module<T> {
    fn conditionally_write_lock<Cond: FnOnce(T::Balance) -> bool>(
        currency_id: T::CurrencyId,
        lock_id: LockIdentifier,
        who: &T::AccountId,
        amount: T::Balance,
        condition: Cond,
    ) -> DispatchResult {
        Locks::<T>::try_mutate_exists(
            (who, currency_id),
            lock_id,
            |maybe_existing_lock| -> DispatchResult {
                let mut mutation = Mutation::<T>::new_for_currency(currency_id);

                if maybe_existing_lock.is_none() {
                    // We are creating a new lock. Add a few checks to handle cases when
                    // more than one lock is present.
                    if mutation.frozen(who) < amount {
                        mutation.add_frozen(who, amount)?;
                    }

                    // A new lock is being created, inc the system ref
                    if frame_system::Pallet::<T>::inc_consumers(who).is_err() {
                        log::warn!(
                            target: "runtime::tokens",
                            "Warning: Attempt to introduce lock consumer reference, yet no providers. \
                            This is unexpected but should be safe."
                        );
                    }
                } else {
                    // We are overwriting an existing lock
                    let existing_lock = maybe_existing_lock
                        .take()
                        .expect("we just did a is_none check");

                    // If it isn't necessary to change anything we stop here
                    if !condition(existing_lock) {
                        return Ok(());
                    }

                    // We check that it is needed to increase the locked amounts,
                    // or not.
                    if mutation.frozen(who).saturating_sub(existing_lock) < amount {
                        // We use the fact that the mutation helper keeps things in memory,
                        // so substracting and adding values to a balance does not require
                        // multiple DB reads.
                        mutation.sub_frozen(who, existing_lock)?;
                        mutation.add_frozen(who, amount)?;
                    }
                }

                // Locks do not impact total issuance
                mutation.forget_issuance_changes();

                // Update balance
                mutation.apply()?;

                // Write the lock
                *maybe_existing_lock = Some(amount);

                Ok(())
            },
        )
    }
}

impl<T: Config> LockableCurrencies<T::AccountId> for Module<T> {
    fn locked_balance(currency_id: Self::CurrencyId, who: &T::AccountId) -> Self::Balance {
        Self::get_currency_account(currency_id, who).frozen
    }

    fn set_lock(
        currency_id: Self::CurrencyId,
        lock_id: LockIdentifier,
        who: &T::AccountId,
        amount: Self::Balance,
    ) -> DispatchResult {
        Self::conditionally_write_lock(currency_id, lock_id, who, amount, |_| true)
    }

    fn extend_lock(
        currency_id: Self::CurrencyId,
        lock_id: LockIdentifier,
        who: &T::AccountId,
        amount: Self::Balance,
    ) -> DispatchResult {
        Self::conditionally_write_lock(currency_id, lock_id, who, amount, |existing_lock| {
            existing_lock < amount
        })
    }

    fn remove_lock(
        currency_id: Self::CurrencyId,
        lock_id: LockIdentifier,
        who: &T::AccountId,
    ) -> DispatchResult {
        Locks::<T>::remove((who, currency_id), lock_id);
        frame_system::Pallet::<T>::dec_consumers(who);

        let highest_lock_value = Locks::<T>::iter_prefix((who, currency_id)).fold(
            Zero::zero(),
            |acc, (_lock_id, lock_val)| {
                if acc < lock_val {
                    lock_val
                } else {
                    acc
                }
            },
        );

        let mut mutation = Mutation::<T>::new_for_currency(currency_id);
        mutation.overwrite_frozen_balance(who, highest_lock_value);
        mutation.apply()?;

        Ok(())
    }
}