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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
use crate::{
    common::{self, PublicKey, VerificationError},
    util::*,
};

use crate::common::{signatures::ForSigType, Limits};
use codec::{Decode, Encode, MaxEncodedLen};
use frame_support::{
    dispatch::DispatchResult, ensure, weights::Weight, CloneNoBound, DebugNoBound, EqNoBound,
    PartialEqNoBound,
};
use frame_system::ensure_signed;
use sp_std::{
    collections::btree_set::BTreeSet,
    convert::{TryFrom, TryInto},
    fmt::Debug,
    prelude::*,
    vec::Vec,
};
use utils::CheckedDivCeil;

pub use actions::*;
pub use base::{offchain, onchain, signature};
pub use details_aggregator::*;
pub use pallet::*;
use weights::*;

pub use base::*;
pub use controllers::Controller;
pub use keys::{DidKey, UncheckedDidKey, VerRelType};
pub use service_endpoints::{ServiceEndpoint, ServiceEndpointId, ServiceEndpointOrigin};

pub(crate) mod actions;
pub(crate) mod base;
pub(crate) mod controllers;
pub(crate) mod details_aggregator;
pub(crate) mod keys;
pub(crate) mod service_endpoints;
pub(crate) mod weights;

#[cfg(feature = "runtime-benchmarks")]
mod benchmarks;
#[cfg(test)]
pub mod tests;

#[frame_support::pallet]
pub mod pallet {
    use self::common::PolicyValidationError;

    use super::*;
    #[cfg(feature = "std")]
    use alloc::collections::BTreeMap;
    use frame_support::{pallet_prelude::*, Blake2_128Concat, Identity};
    use frame_system::pallet_prelude::*;

    /// The module's configuration trait.
    #[pallet::config]
    pub trait Config: frame_system::Config + Limits {
        /// The handler of a `DID` removal.
        type OnDidRemoval: HandleDidRemoval;

        /// The overarching event type.
        type Event: From<Event<Self>>
            + IsType<<Self as frame_system::Config>::Event>
            + Into<<Self as frame_system::Config>::Event>;
    }

    #[pallet::event]
    pub enum Event<T: Config> {
        OffChainDidAdded(Did, OffChainDidDocRef<T>),
        OffChainDidUpdated(Did, OffChainDidDocRef<T>),
        OffChainDidRemoved(Did),
        OnChainDidAdded(Did),
        DidMethodKeyAdded(DidMethodKey),
        DidKeysAdded(Did),
        DidKeysRemoved(Did),
        DidControllersAdded(Did),
        DidControllersRemoved(Did),
        DidServiceEndpointAdded(Did),
        DidServiceEndpointRemoved(Did),
        OnChainDidRemoved(Did),
    }

    /// Error for the DID module.
    #[pallet::error]
    #[derive(PartialEq, Eq, Clone)]
    pub enum Error<T> {
        /// Given public key is not of the correct size
        PublicKeySizeIncorrect,
        /// There is already a DID with the same value
        DidAlreadyExists,
        /// There is already a DID key with the same value
        DidMethodKeyExists,
        /// There is no such DID registered
        DidDoesNotExist,
        /// The DID is not an off-chain DID
        NotAnOffChainDid,
        /// The DID is not owned by the account
        DidNotOwnedByAccount,
        /// No controller was provided for the DID
        NoControllerProvided,
        /// The provided key type is not compatible with the provided verification relationship
        IncompatibleVerificationRelation,
        /// The DID is expected to be an off-chain DID
        ExpectedOffChainDid,
        /// The DID is expected to be an on-chain DID
        ExpectedOnChainDid,
        /// The provided signature is invalid
        InvalidSignature,
        /// Only the controller of a DID can update the DID Document
        OnlyControllerCanUpdate,
        /// No key found for the DID
        NoKeyForDid,
        /// No controller found for the DID
        NoControllerForDid,
        /// The signer is invalid
        InvalidSigner,
        /// The signature is incompatible with the provided public key
        IncompatibleSignaturePublicKey,
        /// The key does not have the required verification relationship
        InsufficientVerificationRelationship,
        /// The controller is already added for the DID
        ControllerIsAlreadyAdded,
        /// The service endpoint is invalid
        InvalidServiceEndpoint,
        /// The service endpoint already exists
        ServiceEndpointAlreadyExists,
        /// The service endpoint does not exist
        ServiceEndpointDoesNotExist,
        /// Key agreement key cannot be used for signing
        KeyAgreementCantBeUsedForSigning,
        /// Signing key cannot be used for key agreement
        SigningKeyCantBeUsedForKeyAgreement,
        /// A DID was expected
        ExpectedDid,
        /// A DID method key was expected
        ExpectedDidMethodKey,
        /// The provided nonce is invalid
        InvalidNonce,
        /// The on-chain DID does not exist
        OnchainDidDoesntExist,
        /// The entity does not exist
        NoEntity,
        /// The payload is empty
        EmptyPayload,
        /// Conversion failed
        ConversionError,
        /// Not enough signatures provided
        NotEnoughSignatures,
        /// Too many signatures provided
        TooManySignatures,
        /// Policy can't be empty (have zero controllers)
        EmptyPolicy,
        /// Policy can't have so many controllers
        TooManyControllersInPolicy,
    }

    impl<T: Config> From<NonceError> for Error<T> {
        fn from(NonceError::IncorrectNonce: NonceError) -> Self {
            Self::InvalidNonce
        }
    }

    impl<T: Config> From<VerificationError> for Error<T> {
        fn from(VerificationError::IncompatibleKey: VerificationError) -> Self {
            Self::IncompatibleSignaturePublicKey
        }
    }

    impl<T: Config> From<ActionExecutionError> for Error<T> {
        fn from(error: ActionExecutionError) -> Self {
            match error {
                ActionExecutionError::NoEntity => Self::NoEntity,
                ActionExecutionError::EmptyPayload => Self::EmptyPayload,
                ActionExecutionError::ConversionError => Self::ConversionError,
                ActionExecutionError::InvalidSigner => Self::InvalidSigner,
                ActionExecutionError::NotEnoughSignatures => Self::NotEnoughSignatures,
                ActionExecutionError::TooManySignatures => Self::TooManySignatures,
            }
        }
    }

    impl<T: Config> From<PolicyValidationError> for Error<T> {
        fn from(error: PolicyValidationError) -> Self {
            match error {
                PolicyValidationError::Empty => Self::EmptyPolicy,
                PolicyValidationError::TooManyControllers => Self::TooManyControllersInPolicy,
            }
        }
    }

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

    /// Stores details of off-chain and on-chain DIDs
    #[pallet::storage]
    #[pallet::getter(fn did)]
    pub type Dids<T> = StorageMap<_, Blake2_128Concat, Did, StoredDidDetails<T>>;

    /// Stores nonce for `did:key` DIDs.
    #[pallet::storage]
    #[pallet::getter(fn did_method_key)]
    pub type DidMethodKeys<T> = StorageMap<_, Blake2_128Concat, DidMethodKey, WithNonce<T, ()>>;

    /// Stores keys of a DID as (DID, IncId) -> DidKey. Does not check if the same key is being added multiple times to the same DID.
    #[pallet::storage]
    #[pallet::getter(fn did_key)]
    pub type DidKeys<T> = StorageDoubleMap<_, Blake2_128Concat, Did, Identity, IncId, DidKey>;

    /// Stores controlled - controller pairs of a DID as (DID, DID) -> zero-sized record. If a record exists, then the controller is bound.
    #[pallet::storage]
    #[pallet::getter(fn bound_controller)]
    pub type DidControllers<T> =
        StorageDoubleMap<_, Blake2_128Concat, Did, Blake2_128Concat, Controller, ()>;

    /// Stores service endpoints of a DID as (DID, endpoint id) -> ServiceEndpoint.
    #[pallet::storage]
    #[pallet::getter(fn did_service_endpoint)]
    pub type DidServiceEndpoints<T: Config> = StorageDoubleMap<
        _,
        Blake2_128Concat,
        Did,
        Blake2_128Concat,
        ServiceEndpointId<T>,
        ServiceEndpoint<T>,
    >;

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

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

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

    #[pallet::genesis_build]
    impl<T: Config> GenesisBuild<T> for GenesisConfig<T> {
        fn build(&self) {
            debug_assert!({
                let dedup: BTreeSet<&Did> = self.dids.keys().collect();
                self.dids.len() == dedup.len()
            });
            debug_assert!({ self.dids.iter().all(|(_, key)| key.can_control()) });

            for (did, key) in &self.dids {
                let mut key_id = IncId::new();
                key_id.inc();
                let did_details =
                    StoredOnChainDidDetails::new(OnChainDidDetails::new(key_id, 1u32, 1u32));

                <Pallet<T>>::insert_did_details(*did, did_details);
                DidKeys::<T>::insert(did, key_id, key);
                DidControllers::<T>::insert(did, Controller((*did).into()), ());
            }

            Version::<T>::put(common::StorageVersion::MultiKey);
        }
    }

    #[pallet::call]
    impl<T: Config> Pallet<T> {
        /// Creates a new offchain DID (Decentralized Identifier) entry.
        ///
        /// This function is used to create a new offchain DID entry by providing a reference to an offchain DID document.
        ///
        /// # Parameters
        ///
        /// - `origin`: The origin of the call, which determines who is making the request.
        /// - `did`: The decentralized identifier (DID) that uniquely identifies the entity.
        /// - `did_doc_ref`: The new reference to the offchain DID document. It can be one of the following:
        ///   - `CID`: A Content Identifier as per [multiformats/cid](https://github.com/multiformats/cid).
        ///   - `URL`: A URL pointing to the DID document.
        ///   - `Custom`: A custom encoding of the reference.
        #[pallet::weight(SubstrateWeight::<T>::new_offchain(did_doc_ref.len()))]
        pub fn new_offchain(
            origin: OriginFor<T>,
            did: Did,
            did_doc_ref: OffChainDidDocRef<T>,
        ) -> DispatchResult {
            // Only `did_owner` can update or remove this DID
            let did_owner = ensure_signed(origin)?;

            Self::new_offchain_(did_owner, did, did_doc_ref).map_err(Into::into)
        }

        /// Updates the offchain DID document reference for an existing DID.
        ///
        /// This function is used to set or update the reference to the offchain DID document for a given DID. The offchain DID document reference can be one of the following types: CID, URL, or Custom.
        ///
        /// # Parameters
        ///
        /// - `origin`: The origin of the call, which determines who is making the request and their permissions.
        /// - `did`: The decentralized identifier (DID) that uniquely identifies the entity whose DID document reference is being updated.
        /// - `did_doc_ref`: The new reference to the offchain DID document. It can be one of the following:
        ///   - `CID`: A Content Identifier as per [multiformats/cid](https://github.com/multiformats/cid).
        ///   - `URL`: A URL pointing to the DID document.
        ///   - `Custom`: A custom encoding of the reference.
        #[pallet::weight(SubstrateWeight::<T>::set_offchain_did_doc_ref(did_doc_ref.len()))]
        pub fn set_offchain_did_doc_ref(
            origin: OriginFor<T>,
            did: Did,
            did_doc_ref: OffChainDidDocRef<T>,
        ) -> DispatchResult {
            let caller = ensure_signed(origin)?;

            Self::set_offchain_did_doc_ref_(caller, did, did_doc_ref).map_err(Into::into)
        }

        /// Removes an existing offchain DID entry.
        ///
        /// This function is used to remove an offchain DID entry from the system. This operation deletes the DID and its associated offchain DID document reference.
        ///
        /// # Parameters
        ///
        /// - `origin`: The origin of the call, which determines who is making the request and their permissions.
        /// - `did`: The decentralized identifier (DID) that uniquely identifies the entity to be removed.
        #[pallet::weight(SubstrateWeight::<T>::remove_offchain_did())]
        pub fn remove_offchain_did(origin: OriginFor<T>, did: Did) -> DispatchResult {
            let caller = ensure_signed(origin)?;

            Self::remove_offchain_did_(caller, did).map_err(Into::into)
        }

        /// Create new DID.
        /// At least 1 control key or 1 controller must be provided.
        /// If any supplied key has an empty `ver_rel`, then it will use all verification relationships available for its key type.
        #[pallet::weight(SubstrateWeight::<T>::new_onchain(keys.len() as u32, controllers.len() as u32))]
        pub fn new_onchain(
            origin: OriginFor<T>,
            did: Did,
            keys: Vec<UncheckedDidKey>,
            controllers: BTreeSet<Controller>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            Self::new_onchain_(did, keys, controllers).map_err(Into::into)
        }

        /// Add more keys from DID doc.
        /// **Does not** check if the key was already added.
        #[pallet::weight(SubstrateWeight::<T>::add_keys(keys, sig))]
        pub fn add_keys(
            origin: OriginFor<T>,
            keys: AddKeys<T>,
            sig: DidOrDidMethodKeySignature<Controller>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            keys.signed(sig)
                .execute_from_controller(Self::add_keys_)
                .map_err(Into::into)
        }

        /// Remove keys from DID doc. This is an atomic operation meaning that it will either remove all keys or do nothing.
        /// **Note that removing all keys might make DID unusable**.
        #[pallet::weight(SubstrateWeight::<T>::remove_keys(keys, sig))]
        pub fn remove_keys(
            origin: OriginFor<T>,
            keys: RemoveKeys<T>,
            sig: DidOrDidMethodKeySignature<Controller>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            keys.signed(sig)
                .execute_from_controller(Self::remove_keys_)
                .map_err(Into::into)
        }

        /// Add new controllers to the signer DID.
        /// **Does not** require provided controllers to
        /// - have any key
        /// - exist on- or off-chain
        #[pallet::weight(SubstrateWeight::<T>::add_controllers(controllers, sig))]
        pub fn add_controllers(
            origin: OriginFor<T>,
            controllers: AddControllers<T>,
            sig: DidOrDidMethodKeySignature<Controller>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            controllers
                .signed(sig)
                .execute_from_controller(Self::add_controllers_)
                .map_err(Into::into)
        }

        /// Remove controllers from the signer DID.
        /// This is an atomic operation meaning that it will either remove all keys or do nothing.
        /// **Note that removing all controllers might make DID unusable**.
        #[pallet::weight(SubstrateWeight::<T>::remove_controllers(controllers, sig))]
        pub fn remove_controllers(
            origin: OriginFor<T>,
            controllers: RemoveControllers<T>,
            sig: DidOrDidMethodKeySignature<Controller>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            controllers
                .signed(sig)
                .execute_from_controller(Self::remove_controllers_)
                .map_err(Into::into)
        }

        /// Add a single service endpoint to the signer DID.
        #[pallet::weight(SubstrateWeight::<T>::add_service_endpoint(service_endpoint, sig))]
        pub fn add_service_endpoint(
            origin: OriginFor<T>,
            service_endpoint: AddServiceEndpoint<T>,
            sig: DidOrDidMethodKeySignature<Controller>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            service_endpoint
                .signed(sig)
                .execute_from_controller(Self::add_service_endpoint_)
                .map_err(Into::into)
        }

        /// Remove a single service endpoint.
        #[pallet::weight(SubstrateWeight::<T>::remove_service_endpoint(service_endpoint, sig))]
        pub fn remove_service_endpoint(
            origin: OriginFor<T>,
            service_endpoint: RemoveServiceEndpoint<T>,
            sig: DidOrDidMethodKeySignature<Controller>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            service_endpoint
                .signed(sig)
                .execute_from_controller(Self::remove_service_endpoint_)
                .map_err(Into::into)
        }

        /// Remove the on-chain DID along with its keys, controllers, service endpoints and BBS+ keys.
        /// Other DID-controlled entities won't be removed.
        /// However, the authorization logic ensures that once a DID is removed, it loses its ability to control any DID.
        #[pallet::weight(SubstrateWeight::<T>::remove_onchain_did(removal, sig))]
        pub fn remove_onchain_did(
            origin: OriginFor<T>,
            removal: DidRemoval<T>,
            sig: DidOrDidMethodKeySignature<Controller>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            removal
                .signed(sig)
                .execute_removable_from_controller(Self::remove_onchain_did_)
                .map_err(Into::into)
        }

        /// Adds an on-chain state storing the nonce for the provided DID method key.
        /// After this state is set, this DID method key will be able to submit a DID transaction.
        #[pallet::weight(T::DbWeight::get().reads_writes(1, 1))]
        pub fn new_did_method_key(origin: OriginFor<T>, did_key: DidMethodKey) -> DispatchResult {
            ensure_signed(origin)?;

            Self::new_did_method_key_(did_key).map_err(Into::into)
        }

        /// Adds `StateChange` and `AggregatedDidDetailsResponse` to the metadata.
        #[doc(hidden)]
        #[pallet::weight(<T as frame_system::Config>::DbWeight::get().writes(10))]
        pub fn noop(
            _o: OriginFor<T>,
            _s: common::StateChange<'static, T>,
            _d: AggregatedDidDetailsResponse<T>,
            _qi: crate::trust_registry::QueryTrustRegistryBy,
            _qy: crate::trust_registry::QueryTrustRegistriesBy,
            _a: crate::trust_registry::AggregatedTrustRegistrySchemaMetadata<T>,
        ) -> DispatchResult {
            Err(DispatchError::BadOrigin)
        }
    }
}

pub trait HandleDidRemoval {
    fn on_did_removal(did: Did) -> Weight;
}

impl HandleDidRemoval for () {
    fn on_did_removal(_: Did) -> Weight {
        Default::default()
    }
}

crate::impl_tuple!(HandleDidRemoval::on_did_removal(did: Did) -> Weight => using saturating_add for A B);
crate::impl_tuple!(HandleDidRemoval::on_did_removal(did: Did) -> Weight => using saturating_add for A B C);
crate::impl_tuple!(HandleDidRemoval::on_did_removal(did: Did) -> Weight => using saturating_add for A B C D);
crate::impl_tuple!(HandleDidRemoval::on_did_removal(did: Did) -> Weight => using saturating_add for A B C D E);

impl<T: Config> SubstrateWeight<T> {
    fn add_keys(keys: &AddKeys<T>, sig: &DidOrDidMethodKeySignature<Controller>) -> Weight {
        sig.weight_for_sig_type::<T>(
            || Self::add_keys_sr25519(keys.len()),
            || Self::add_keys_ed25519(keys.len()),
            || Self::add_keys_secp256k1(keys.len()),
        )
    }

    fn remove_keys(keys: &RemoveKeys<T>, sig: &DidOrDidMethodKeySignature<Controller>) -> Weight {
        sig.weight_for_sig_type::<T>(
            || Self::remove_keys_sr25519(keys.len()),
            || Self::remove_keys_ed25519(keys.len()),
            || Self::remove_keys_secp256k1(keys.len()),
        )
    }

    fn add_controllers(
        controllers: &AddControllers<T>,
        sig: &DidOrDidMethodKeySignature<Controller>,
    ) -> Weight {
        sig.weight_for_sig_type::<T>(
            || Self::add_controllers_sr25519(controllers.len()),
            || Self::add_controllers_ed25519(controllers.len()),
            || Self::add_controllers_secp256k1(controllers.len()),
        )
    }

    fn remove_controllers(
        controllers: &RemoveControllers<T>,
        sig: &DidOrDidMethodKeySignature<Controller>,
    ) -> Weight {
        sig.weight_for_sig_type::<T>(
            || Self::remove_controllers_sr25519(controllers.len()),
            || Self::remove_controllers_ed25519(controllers.len()),
            || Self::remove_controllers_secp256k1(controllers.len()),
        )
    }

    fn add_service_endpoint(
        AddServiceEndpoint { id, endpoint, .. }: &AddServiceEndpoint<T>,
        sig: &DidOrDidMethodKeySignature<Controller>,
    ) -> Weight {
        let end_avg_origin = endpoint
            .origins
            .iter()
            .map(|v| v.len() as u32)
            .sum::<u32>()
            .checked_div_ceil(endpoint.origins.len() as u32)
            .unwrap_or(0);

        sig.weight_for_sig_type::<T>(
            || {
                Self::add_service_endpoint_sr25519(
                    endpoint.origins.len() as u32,
                    end_avg_origin,
                    id.len() as u32,
                )
            },
            || {
                Self::add_service_endpoint_ed25519(
                    endpoint.origins.len() as u32,
                    end_avg_origin,
                    id.len() as u32,
                )
            },
            || {
                Self::add_service_endpoint_secp256k1(
                    endpoint.origins.len() as u32,
                    end_avg_origin,
                    id.len() as u32,
                )
            },
        )
    }

    fn remove_service_endpoint(
        RemoveServiceEndpoint { id, .. }: &RemoveServiceEndpoint<T>,
        sig: &DidOrDidMethodKeySignature<Controller>,
    ) -> Weight {
        sig.weight_for_sig_type::<T>(
            || Self::remove_service_endpoint_sr25519(id.len() as u32),
            || Self::remove_service_endpoint_ed25519(id.len() as u32),
            || Self::remove_service_endpoint_secp256k1(id.len() as u32),
        )
    }

    fn remove_onchain_did(
        _: &DidRemoval<T>,
        sig: &DidOrDidMethodKeySignature<Controller>,
    ) -> Weight {
        sig.weight_for_sig_type::<T>(
            Self::remove_onchain_did_sr25519,
            Self::remove_onchain_did_ed25519,
            Self::remove_onchain_did_secp256k1,
        )
    }
}