-
Notifications
You must be signed in to change notification settings - Fork 2
/
custom-type.json
44 lines (44 loc) · 1.3 KB
/
custom-type.json
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
{
"runtime_api": {
"DidApi": {
"methods": {
"query": {
"params": [
{
"name": "did",
"type": "AccountId"
}
],
"type": "Option<RawDidLinkedInfo>"
}
},
"types": {
"RawDidLinkedInfo": {
"type": "struct",
"type_mapping": [
[
"identifier",
"AccountId"
],
[
"account",
"AccountId"
],
[
"name",
"Option<Text>"
],
[
"service_endpoints",
"Vec<pallet_did::service_endpoints::DidEndpoint<T>>"
],
[
"details",
"pallet_did::did_details::DidDetails<T>"
]
]
}
}
}
}
}