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
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
use core::{fmt::Debug, marker::PhantomData};
use dock_core::{
    accumulator, common::TypesAndLimits, offchain_signatures, trust_registry::*, util::IncId,
};
pub use dock_core::{
    did::{self, Config},
    runtime_api::CoreModsApi as CoreModsRuntimeApi,
};
use jsonrpsee::{
    core::{async_trait, Error as JsonRpseeError, RpcResult},
    proc_macros::rpc,
    types::{error::CallError, ErrorObject},
};
use sp_api::ProvideRuntimeApi;
use sp_blockchain::HeaderBackend;
use sp_runtime::{generic::BlockId, traits::Block as BlockT};
use std::{
    collections::{BTreeMap, BTreeSet},
    sync::Arc,
};

pub trait ConfigWrapper {
    type T: TypesAndLimits;
}

/// To be used in places where `Serialize`/`Deserialize` bounds required for `Config`.
#[derive(Default, Clone, Copy, Debug, serde::Serialize, serde::Deserialize)]
#[serde(bound(serialize = "T: Sized", deserialize = "T: Sized"))]
pub struct SerializableConfigWrapper<T>(PhantomData<T>);

impl<T: Config> ConfigWrapper for SerializableConfigWrapper<T> {
    type T = T;
}

#[rpc(server, client)]
pub trait CoreModsApi<BlockHash, T>
where
    T: ConfigWrapper,
{
    #[method(name = "core_mods_didDetails")]
    async fn did_details(
        &self,
        did: did::Did,
        params: Option<did::AggregatedDidDetailsRequestParams>,
        at: Option<BlockHash>,
    ) -> RpcResult<Option<did::AggregatedDidDetailsResponse<T::T>>>;

    #[method(name = "core_mods_didListDetails")]
    async fn did_list_details(
        &self,
        dids: Vec<did::Did>,
        params: Option<did::AggregatedDidDetailsRequestParams>,
        at: Option<BlockHash>,
    ) -> RpcResult<Vec<Option<did::AggregatedDidDetailsResponse<T::T>>>>;

    #[method(name = "core_mods_bbsPublicKeyWithParams")]
    async fn bbs_public_key_with_params(
        &self,
        id: offchain_signatures::SignaturePublicKeyStorageKey,
        at: Option<BlockHash>,
    ) -> RpcResult<Option<offchain_signatures::BBSPublicKeyWithParams<T::T>>>;

    #[method(name = "core_mods_bbsParamsByDid")]
    async fn bbs_params_by_did(
        &self,
        owner: offchain_signatures::SignatureParamsOwner,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBSParameters<T::T>>>;

    #[method(name = "core_mods_bbsPublicKeysByDid")]
    async fn bbs_public_keys_by_did(
        &self,
        did: did::Did,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBSPublicKeyWithParams<T::T>>>;

    #[method(name = "core_mods_bbsPlusPublicKeyWithParams")]
    async fn bbs_plus_public_key_with_params(
        &self,
        id: offchain_signatures::SignaturePublicKeyStorageKey,
        at: Option<BlockHash>,
    ) -> RpcResult<Option<offchain_signatures::BBSPlusPublicKeyWithParams<T::T>>>;

    #[method(name = "core_mods_bbsPlusParamsByDid")]
    async fn bbs_plus_params_by_did(
        &self,
        owner: offchain_signatures::SignatureParamsOwner,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBSPlusParameters<T::T>>>;

    #[method(name = "core_mods_bbsPlusPublicKeysByDid")]
    async fn bbs_plus_public_keys_by_did(
        &self,
        did: did::Did,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBSPlusPublicKeyWithParams<T::T>>>;

    #[method(name = "core_mods_psPublicKeyWithParams")]
    async fn ps_public_key_with_params(
        &self,
        id: offchain_signatures::SignaturePublicKeyStorageKey,
        at: Option<BlockHash>,
    ) -> RpcResult<Option<offchain_signatures::PSPublicKeyWithParams<T::T>>>;

    #[method(name = "core_mods_psParamsByDid")]
    async fn ps_params_by_did(
        &self,
        owner: offchain_signatures::SignatureParamsOwner,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::PSParameters<T::T>>>;

    #[method(name = "core_mods_psPublicKeysByDid")]
    async fn ps_public_keys_by_did(
        &self,
        did: did::Did,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::PSPublicKeyWithParams<T::T>>>;

    #[method(name = "core_mods_accumulatorPublicKeyWithParams")]
    async fn accumulator_public_key_with_params(
        &self,
        id: accumulator::AccumPublicKeyStorageKey,
        at: Option<BlockHash>,
    ) -> RpcResult<Option<accumulator::AccumPublicKeyWithParams<T::T>>>;

    #[method(name = "core_mods_accumulatorWithPublicKeyAndParams")]
    async fn accumulator_with_public_key_and_params(
        &self,
        id: accumulator::AccumulatorId,
        at: Option<BlockHash>,
    ) -> RpcResult<Option<(Vec<u8>, Option<accumulator::AccumPublicKeyWithParams<T::T>>)>>;

    #[method(name = "trustRegistry_schemaMetadata")]
    async fn schema_metadata(
        &self,
        id: TrustRegistrySchemaId,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<TrustRegistryId, AggregatedTrustRegistrySchemaMetadata<T::T>>>;

    #[method(name = "trustRegistry_schemaIssuers")]
    async fn schema_issuers(
        &self,
        id: TrustRegistrySchemaId,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<TrustRegistryId, AggregatedTrustRegistrySchemaIssuers<T::T>>>;

    #[method(name = "trustRegistry_schemaVerifiers")]
    async fn schema_verifiers(
        &self,
        id: TrustRegistrySchemaId,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<TrustRegistryId, TrustRegistrySchemaVerifiers<T::T>>>;

    #[method(name = "trustRegistry_schemaMetadataInRegistry")]
    async fn schema_metadata_in_registry(
        &self,
        id: TrustRegistrySchemaId,
        registry_id: TrustRegistryId,
        at: Option<BlockHash>,
    ) -> RpcResult<Option<AggregatedTrustRegistrySchemaMetadata<T::T>>>;

    #[method(name = "trustRegistry_schemaIssuersInRegistry")]
    async fn schema_issuers_in_registry(
        &self,
        id: TrustRegistrySchemaId,
        registry_id: TrustRegistryId,
        at: Option<BlockHash>,
    ) -> RpcResult<Option<AggregatedTrustRegistrySchemaIssuers<T::T>>>;

    #[method(name = "trustRegistry_schemaVerifiersInRegistry")]
    async fn schema_verifiers_in_registry(
        &self,
        id: TrustRegistrySchemaId,
        registry_id: TrustRegistryId,
        at: Option<BlockHash>,
    ) -> RpcResult<Option<TrustRegistrySchemaVerifiers<T::T>>>;

    #[method(name = "trustRegistry_allRegistrySchemaMetadata")]
    async fn all_registry_schema_metadata(
        &self,
        registry_id: TrustRegistryId,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<TrustRegistrySchemaId, AggregatedTrustRegistrySchemaMetadata<T::T>>>;

    #[method(name = "trustRegistry_allRegistrySchemaIssuers")]
    async fn all_registry_schema_issuers(
        &self,
        registry_id: TrustRegistryId,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<TrustRegistrySchemaId, AggregatedTrustRegistrySchemaIssuers<T::T>>>;

    #[method(name = "trustRegistry_allRegistrySchemaVerifiers")]
    async fn all_registry_schema_verifiers(
        &self,
        registry_id: TrustRegistryId,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<TrustRegistrySchemaId, TrustRegistrySchemaVerifiers<T::T>>>;

    #[method(name = "trustRegistry_registriesInfoBy")]
    async fn registries_info_by(
        &self,
        by: QueryTrustRegistriesBy,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<TrustRegistryId, TrustRegistryInfo<T::T>>>;

    #[method(name = "trustRegistry_registrySchemaMetadataBy")]
    async fn registry_schemas_metadata_by(
        &self,
        by: QueryTrustRegistryBy,
        reg_id: TrustRegistryId,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<TrustRegistrySchemaId, AggregatedTrustRegistrySchemaMetadata<T::T>>>;

    #[method(name = "trustRegistry_registriesIdsBy")]
    async fn registries_ids_by(
        &self,
        by: QueryTrustRegistriesBy,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeSet<TrustRegistryId>>;

    #[method(name = "trustRegistry_registrySchemaIdsBy")]
    async fn registry_schemas_ids_by(
        &self,
        by: QueryTrustRegistryBy,
        reg_id: TrustRegistryId,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeSet<TrustRegistrySchemaId>>;

    #[method(name = "core_mods_bbdt16PublicKeyWithParams")]
    async fn bbdt16_public_key_with_params(
        &self,
        id: offchain_signatures::SignaturePublicKeyStorageKey,
        at: Option<BlockHash>,
    ) -> RpcResult<Option<offchain_signatures::BBDT16PublicKeyWithParams<T::T>>>;

    #[method(name = "core_mods_bbdt16ParamsByDid")]
    async fn bbdt16_params_by_did(
        &self,
        owner: offchain_signatures::SignatureParamsOwner,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBDT16Parameters<T::T>>>;

    #[method(name = "core_mods_bbdt16PublicKeysByDid")]
    async fn bbdt16_public_keys_by_did(
        &self,
        did: did::Did,
        at: Option<BlockHash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBDT16PublicKeyWithParams<T::T>>>;
}

/// A struct that implements the [`CoreModsApi`].
pub struct CoreMods<C, P> {
    client: Arc<C>,
    _marker: PhantomData<P>,
}

impl<C, P> CoreMods<C, P> {
    /// Create new `PriceFeed` with the given reference to the client.
    pub fn new(client: Arc<C>) -> Self {
        CoreMods {
            client,
            _marker: Default::default(),
        }
    }
}

#[derive(Debug, Clone)]
struct Error<T>(T);

impl<T: Debug> From<Error<T>> for JsonRpseeError {
    fn from(error: Error<T>) -> Self {
        let data = format!("{:?}", error);

        JsonRpseeError::Call(CallError::Custom(ErrorObject::owned(
            1,
            "Runtime error",
            Some(data),
        )))
    }
}

#[async_trait]
impl<C, Block, T> CoreModsApiServer<<Block as BlockT>::Hash, T> for CoreMods<C, Block>
where
    Block: BlockT,
    T: ConfigWrapper,
    C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>,
    C::Api: CoreModsRuntimeApi<Block, T::T>,
{
    async fn did_details(
        &self,
        did: did::Did,
        params: Option<did::AggregatedDidDetailsRequestParams>,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Option<did::AggregatedDidDetailsResponse<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));

        api.did_details(&at, did, params)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn did_list_details(
        &self,
        dids: Vec<did::Did>,
        params: Option<did::AggregatedDidDetailsRequestParams>,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Vec<Option<did::AggregatedDidDetailsResponse<T::T>>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));

        api.did_list_details(&at, dids, params)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn bbs_public_key_with_params(
        &self,
        id: offchain_signatures::SignaturePublicKeyStorageKey,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Option<offchain_signatures::BBSPublicKeyWithParams<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.bbs_public_key_with_params(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn bbs_params_by_did(
        &self,
        owner: offchain_signatures::SignatureParamsOwner,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBSParameters<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.bbs_params_by_did(&at, owner)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn bbs_public_keys_by_did(
        &self,
        did: did::Did,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBSPublicKeyWithParams<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.bbs_public_keys_by_did(&at, did)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn bbs_plus_public_key_with_params(
        &self,
        id: offchain_signatures::SignaturePublicKeyStorageKey,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Option<offchain_signatures::BBSPlusPublicKeyWithParams<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.bbs_plus_public_key_with_params(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn bbs_plus_params_by_did(
        &self,
        owner: offchain_signatures::SignatureParamsOwner,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBSPlusParameters<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.bbs_plus_params_by_did(&at, owner)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn bbs_plus_public_keys_by_did(
        &self,
        did: did::Did,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBSPlusPublicKeyWithParams<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.bbs_plus_public_keys_by_did(&at, did)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn ps_public_key_with_params(
        &self,
        id: offchain_signatures::SignaturePublicKeyStorageKey,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Option<offchain_signatures::PSPublicKeyWithParams<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.ps_public_key_with_params(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn ps_params_by_did(
        &self,
        owner: offchain_signatures::SignatureParamsOwner,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::PSParameters<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.ps_params_by_did(&at, owner)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn ps_public_keys_by_did(
        &self,
        did: did::Did,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::PSPublicKeyWithParams<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.ps_public_keys_by_did(&at, did)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn accumulator_public_key_with_params(
        &self,
        id: accumulator::AccumPublicKeyStorageKey,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Option<accumulator::AccumPublicKeyWithParams<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.accumulator_public_key_with_params(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn accumulator_with_public_key_and_params(
        &self,
        id: accumulator::AccumulatorId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Option<(Vec<u8>, Option<accumulator::AccumPublicKeyWithParams<T::T>>)>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.accumulator_with_public_key_and_params(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn schema_metadata(
        &self,
        id: TrustRegistrySchemaId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<TrustRegistryId, AggregatedTrustRegistrySchemaMetadata<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.schema_metadata(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn schema_issuers(
        &self,
        id: TrustRegistrySchemaId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<TrustRegistryId, AggregatedTrustRegistrySchemaIssuers<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.schema_issuers(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn schema_verifiers(
        &self,
        id: TrustRegistrySchemaId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<TrustRegistryId, TrustRegistrySchemaVerifiers<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.schema_verifiers(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn schema_metadata_in_registry(
        &self,
        id: TrustRegistrySchemaId,
        registry_id: TrustRegistryId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Option<AggregatedTrustRegistrySchemaMetadata<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.schema_metadata_in_registry(&at, id, registry_id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn schema_issuers_in_registry(
        &self,
        id: TrustRegistrySchemaId,
        registry_id: TrustRegistryId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Option<AggregatedTrustRegistrySchemaIssuers<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.schema_issuers_in_registry(&at, id, registry_id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn schema_verifiers_in_registry(
        &self,
        id: TrustRegistrySchemaId,
        registry_id: TrustRegistryId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Option<TrustRegistrySchemaVerifiers<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.schema_verifiers_in_registry(&at, id, registry_id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn all_registry_schema_metadata(
        &self,
        id: TrustRegistryId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<TrustRegistrySchemaId, AggregatedTrustRegistrySchemaMetadata<T::T>>>
    {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.all_registry_schema_metadata(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn all_registry_schema_issuers(
        &self,
        id: TrustRegistryId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<TrustRegistrySchemaId, AggregatedTrustRegistrySchemaIssuers<T::T>>>
    {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.all_registry_schema_issuers(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn all_registry_schema_verifiers(
        &self,
        id: TrustRegistryId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<TrustRegistrySchemaId, TrustRegistrySchemaVerifiers<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.all_registry_schema_verifiers(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn registries_info_by(
        &self,
        by: QueryTrustRegistriesBy,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<TrustRegistryId, TrustRegistryInfo<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.registries_info_by(&at, by)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn registry_schemas_metadata_by(
        &self,
        by: QueryTrustRegistryBy,
        reg_id: TrustRegistryId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<TrustRegistrySchemaId, AggregatedTrustRegistrySchemaMetadata<T::T>>>
    {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.registry_schemas_metadata_by(&at, by, reg_id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn registries_ids_by(
        &self,
        by: QueryTrustRegistriesBy,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeSet<TrustRegistryId>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.registries_ids_by(&at, by)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn registry_schemas_ids_by(
        &self,
        by: QueryTrustRegistryBy,
        reg_id: TrustRegistryId,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeSet<TrustRegistrySchemaId>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.registry_schemas_ids_by(&at, by, reg_id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn bbdt16_public_key_with_params(
        &self,
        id: offchain_signatures::SignaturePublicKeyStorageKey,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<Option<offchain_signatures::BBDT16PublicKeyWithParams<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.bbdt16_public_key_with_params(&at, id)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn bbdt16_params_by_did(
        &self,
        owner: offchain_signatures::SignatureParamsOwner,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBDT16Parameters<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.bbdt16_params_by_did(&at, owner)
            .map_err(Error)
            .map_err(Into::into)
    }

    async fn bbdt16_public_keys_by_did(
        &self,
        did: did::Did,
        at: Option<<Block as BlockT>::Hash>,
    ) -> RpcResult<BTreeMap<IncId, offchain_signatures::BBDT16PublicKeyWithParams<T::T>>> {
        let api = self.client.runtime_api();
        let at = BlockId::hash(at.unwrap_or_else(||
            // If the block hash is not supplied assume the best block.
            self.client.info().best_hash));
        api.bbdt16_public_keys_by_did(&at, did)
            .map_err(Error)
            .map_err(Into::into)
    }
}