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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
use crate::{
    common::{self, CurveType, ForSigType},
    did,
    did::DidOrDidMethodKeySignature,
    util::{ActionWithNonce, ActionWithNonceWrapper, Bytes, IncId},
};
pub use actions::*;
use codec::{Decode, Encode, MaxEncodedLen};
use frame_support::{dispatch::DispatchResult, ensure, weights::Weight};
use sp_std::{fmt::Debug, prelude::*};
use utils::CheckedDivCeil;

pub use pallet::*;
pub use types::*;
use weights::*;

mod actions;
#[cfg(feature = "runtime-benchmarks")]
mod benchmarks;
mod r#impl;
#[cfg(test)]
mod tests;
mod types;
mod weights;

#[frame_support::pallet]
pub mod pallet {
    use super::*;
    use frame_support::pallet_prelude::*;
    use frame_system::pallet_prelude::*;

    // The module's configuration trait.
    #[pallet::config]
    pub trait Config: frame_system::Config + did::Config {
        /// The overarching event type.
        type Event: From<Event>
            + IsType<<Self as frame_system::Config>::Event>
            + Into<<Self as frame_system::Config>::Event>;
    }

    #[pallet::event]
    #[pallet::generate_deposit(pub(super) fn deposit_event)]
    pub enum Event {
        ParamsAdded(AccumulatorOwner, IncId),
        ParamsRemoved(AccumulatorOwner, IncId),
        KeyAdded(AccumulatorOwner, IncId),
        KeyRemoved(AccumulatorOwner, IncId),
        AccumulatorAdded(AccumulatorId, Bytes),
        AccumulatorUpdated(AccumulatorId, Bytes),
        AccumulatorRemoved(AccumulatorId),
    }

    #[pallet::error]
    pub enum Error<T> {
        /// The specified parameters do not exist.
        ParamsDontExist,
        /// The specified public key does not exist.
        PublicKeyDoesntExist,
        /// The accumulated value is too large to be processed.
        AccumulatedTooBig,
        /// The accumulator already exists.
        AccumulatorAlreadyExists,
        /// The specified accumulator does not exist.
        AccumulatorDoesntExist,
        /// The caller is not the owner of the public key.
        NotPublicKeyOwner,
        /// The caller is not the owner of the parameters.
        NotParamsOwner,
        /// The caller is not the owner of the accumulator.
        NotAccumulatorOwner,
        /// The nonce provided is incorrect.
        IncorrectNonce,
    }

    #[pallet::pallet]
    #[pallet::generate_store(pub(super) trait Store)]
    pub struct Pallet<T>(_);

    #[pallet::storage]
    #[pallet::getter(fn did_counters)]
    pub type AccumulatorOwnerCounters<T> = StorageMap<
        _,
        Blake2_128Concat,
        AccumulatorOwner,
        StoredAccumulatorOwnerCounters,
        ValueQuery,
    >;

    #[pallet::storage]
    #[pallet::getter(fn accumulator_params)]
    pub type AccumulatorParams<T> = StorageDoubleMap<
        _,
        Blake2_128Concat,
        AccumulatorOwner,
        Identity,
        IncId,
        AccumulatorParameters<T>,
    >;

    /// Public key storage is kept separate from accumulator storage and a single key can be used to manage
    /// several accumulators. It is assumed that whoever (DID) owns the public key, owns the accumulator as
    /// well and only that DID can update accumulator.
    #[pallet::storage]
    #[pallet::getter(fn accumulator_key)]
    pub type AccumulatorKeys<T> = StorageDoubleMap<
        _,
        Blake2_128Concat,
        AccumulatorOwner,
        Identity,
        IncId,
        AccumulatorPublicKey<T>,
    >;

    /// Stores latest accumulator as key value: accumulator id -> (created_at, last_updated_at, Accumulator)
    /// `created_at` is the block number when the accumulator was created and is intended to serve as a starting
    /// point for anyone looking for all updates to the accumulator. `last_updated_at` is the block number when
    /// the last update was sent. `created_at` and `last_updated_at` together indicate which blocks should be
    /// considered for finding accumulator updates.
    /// Historical values and updates are persisted as events indexed with the accumulator id. The reason for
    /// not storing past values is to save storage in chain state. Another option could have been to store
    /// block numbers for the updates so that each block from `created_at` doesn't need to be scanned but
    /// even that requires large storage as we expect millions of updates.
    /// Just keeping the latest accumulated value allows for any potential on chain verification as well.
    #[pallet::storage]
    #[pallet::getter(fn accumulator)]
    pub type Accumulators<T> =
        StorageMap<_, Blake2_128Concat, AccumulatorId, AccumulatorWithUpdateInfo<T>, OptionQuery>;

    #[pallet::storage]
    #[pallet::getter(fn version)]
    pub type Version<T> = StorageValue<_, common::StorageVersion, ValueQuery>;

    #[pallet::genesis_config]
    pub struct GenesisConfig<T: Config> {
        pub _marker: PhantomData<T>,
    }

    #[cfg(feature = "std")]
    impl<T: Config> Default for GenesisConfig<T> {
        fn default() -> Self {
            GenesisConfig {
                _marker: PhantomData,
            }
        }
    }

    #[pallet::genesis_build]
    impl<T: Config> GenesisBuild<T> for GenesisConfig<T> {
        fn build(&self) {
            Version::<T>::put(common::StorageVersion::MultiKey);
        }
    }

    #[pallet::call]
    impl<T: Config> Pallet<T> {
        #[pallet::weight(SubstrateWeight::<T>::add_params(params, signature))]
        pub fn add_params(
            origin: OriginFor<T>,
            params: AddAccumulatorParams<T>,
            signature: DidOrDidMethodKeySignature<AccumulatorOwner>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            params
                .signed_with_signer_target(signature)?
                .execute(ActionWithNonceWrapper::wrap_fn(Self::add_params_))
                .map_err(Into::into)
        }

        #[pallet::weight(SubstrateWeight::<T>::add_public(public_key, signature))]
        pub fn add_public_key(
            origin: OriginFor<T>,
            public_key: AddAccumulatorPublicKey<T>,
            signature: DidOrDidMethodKeySignature<AccumulatorOwner>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            public_key
                .signed_with_signer_target(signature)?
                .execute(ActionWithNonceWrapper::wrap_fn(Self::add_public_key_))
                .map_err(Into::into)
        }

        #[pallet::weight(SubstrateWeight::<T>::remove_params(remove, signature))]
        pub fn remove_params(
            origin: OriginFor<T>,
            remove: RemoveAccumulatorParams<T>,
            signature: DidOrDidMethodKeySignature<AccumulatorOwner>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            remove
                .signed(signature)
                .execute_removable(Self::remove_params_)
                .map_err(Into::into)
        }

        #[pallet::weight(SubstrateWeight::<T>::remove_public(remove, signature))]
        pub fn remove_public_key(
            origin: OriginFor<T>,
            remove: RemoveAccumulatorPublicKey<T>,
            signature: DidOrDidMethodKeySignature<AccumulatorOwner>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            remove
                .signed(signature)
                .execute_removable(Self::remove_public_key_)
                .map_err(Into::into)
        }

        /// Add a new accumulator with the initial accumulated value. Each accumulator has a unique id and it
        /// refers to a public key. It is assumed that the accumulator is owned by the DID that owns the public key.
        /// It logs an event with the accumulator id and accumulated value. For each new accumulator, its creation block
        /// is recorded in state to indicate from which block, the chain should be scanned for the accumulator's updates.
        /// Note: Weight is same for both kinds of accumulator even when universal takes a bit more space
        #[pallet::weight(SubstrateWeight::<T>::add_accumulator(add_accumulator, signature))]
        pub fn add_accumulator(
            origin: OriginFor<T>,
            add_accumulator: AddAccumulator<T>,
            signature: DidOrDidMethodKeySignature<AccumulatorOwner>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            add_accumulator
                .signed(signature)
                .execute_removable(Self::add_accumulator_)
                .map_err(Into::into)
        }

        /// Update an existing accumulator. The update contains the new accumulated value, the updates themselves
        /// and the witness updated info. The updates and witness update info are optional as the owner might be
        /// privately communicating the updated witnesses. It logs an event with the accumulator id and the new
        /// accumulated value which is sufficient for a verifier. But the prover (who has a witness to update) needs
        /// the updates and the witness update info and is expected to look into the corresponding extrinsic arguments.
        #[pallet::weight(SubstrateWeight::<T>::update_accumulator(update, signature))]
        pub fn update_accumulator(
            origin: OriginFor<T>,
            update: UpdateAccumulator<T>,
            signature: DidOrDidMethodKeySignature<AccumulatorOwner>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            update
                .signed(signature)
                .execute(Self::update_accumulator_)
                .map_err(Into::into)
        }

        #[pallet::weight(SubstrateWeight::<T>::remove_accumulator(remove, signature))]
        pub fn remove_accumulator(
            origin: OriginFor<T>,
            remove: RemoveAccumulator<T>,
            signature: DidOrDidMethodKeySignature<AccumulatorOwner>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            remove
                .signed(signature)
                .execute_removable(Self::remove_accumulator_)
                .map_err(Into::into)
        }
    }
}

impl<T: Config> SubstrateWeight<T> {
    fn add_params(
        add_params: &AddAccumulatorParams<T>,
        sig: &DidOrDidMethodKeySignature<AccumulatorOwner>,
    ) -> Weight {
        let bytes_len = add_params.params.bytes.len() as u32;
        let label_len = add_params.params.label.as_ref().map_or(0, |v| v.len()) as u32;

        sig.weight_for_sig_type::<T>(
            || Self::add_params_sr25519(bytes_len, label_len),
            || Self::add_params_ed25519(bytes_len, label_len),
            || Self::add_params_secp256k1(bytes_len, label_len),
        )
    }

    fn add_public(
        public_key: &AddAccumulatorPublicKey<T>,
        sig: &DidOrDidMethodKeySignature<AccumulatorOwner>,
    ) -> Weight {
        let bytes_len = public_key.public_key.bytes.len() as u32;

        sig.weight_for_sig_type::<T>(
            || Self::add_public_sr25519(bytes_len),
            || Self::add_public_ed25519(bytes_len),
            || Self::add_public_secp256k1(bytes_len),
        )
    }

    fn remove_params(
        _: &RemoveAccumulatorParams<T>,
        sig: &DidOrDidMethodKeySignature<AccumulatorOwner>,
    ) -> Weight {
        sig.weight_for_sig_type::<T>(
            Self::remove_params_sr25519,
            Self::remove_params_ed25519,
            Self::remove_params_secp256k1,
        )
    }

    fn remove_public(
        _: &RemoveAccumulatorPublicKey<T>,
        sig: &DidOrDidMethodKeySignature<AccumulatorOwner>,
    ) -> Weight {
        sig.weight_for_sig_type::<T>(
            Self::remove_public_sr25519,
            Self::remove_public_ed25519,
            Self::remove_public_secp256k1,
        )
    }

    fn add_accumulator(
        acc: &AddAccumulator<T>,
        sig: &DidOrDidMethodKeySignature<AccumulatorOwner>,
    ) -> Weight {
        let len = acc.accumulator.accumulated().len() as u32;

        sig.weight_for_sig_type::<T>(
            || Self::add_accumulator_sr25519(len),
            || Self::add_accumulator_ed25519(len),
            || Self::add_accumulator_secp256k1(len),
        )
    }

    fn remove_accumulator(
        _: &RemoveAccumulator<T>,
        sig: &DidOrDidMethodKeySignature<AccumulatorOwner>,
    ) -> Weight {
        sig.weight_for_sig_type::<T>(
            Self::remove_accumulator_sr25519,
            Self::remove_accumulator_ed25519,
            Self::remove_accumulator_secp256k1,
        )
    }

    fn update_accumulator(
        acc: &UpdateAccumulator<T>,
        sig: &DidOrDidMethodKeySignature<AccumulatorOwner>,
    ) -> Weight {
        let acc_len = acc.new_accumulated.len() as u32;
        let add_len = acc.additions.as_ref().map_or(0, |v| v.len()) as u32;
        let add_avg_len = acc
            .additions
            .iter()
            .flatten()
            .map(|v| v.len() as u32)
            .sum::<u32>()
            .checked_div_ceil(acc.additions.as_ref().map_or(0, |v| v.len()) as u32)
            .unwrap_or(0);

        let rem_len = acc.removals.as_ref().map_or(0, |v| v.len()) as u32;
        let rem_avg_len = acc
            .removals
            .iter()
            .flatten()
            .map(|v| v.len() as u32)
            .sum::<u32>()
            .checked_div_ceil(acc.removals.as_ref().map_or(0, |v| v.len()) as u32)
            .unwrap_or(0);
        let wit_len = acc.witness_update_info.as_ref().map_or(0, |v| v.len()) as u32;

        sig.weight_for_sig_type::<T>(
            || {
                Self::update_accumulator_sr25519(
                    acc_len,
                    add_len,
                    add_avg_len,
                    rem_len,
                    rem_avg_len,
                    wit_len,
                )
            },
            || {
                Self::update_accumulator_ed25519(
                    acc_len,
                    add_len,
                    add_avg_len,
                    rem_len,
                    rem_avg_len,
                    wit_len,
                )
            },
            || {
                Self::update_accumulator_secp256k1(
                    acc_len,
                    add_len,
                    add_avg_len,
                    rem_len,
                    rem_avg_len,
                    wit_len,
                )
            },
        )
    }
}