@originals/sdk 1.8.0 → 1.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (145) hide show
  1. package/dist/utils/hash.js +1 -0
  2. package/package.json +6 -5
  3. package/src/adapters/FeeOracleMock.ts +9 -0
  4. package/src/adapters/index.ts +5 -0
  5. package/src/adapters/providers/OrdHttpProvider.ts +126 -0
  6. package/src/adapters/providers/OrdMockProvider.ts +101 -0
  7. package/src/adapters/types.ts +66 -0
  8. package/src/bitcoin/BitcoinManager.ts +329 -0
  9. package/src/bitcoin/BroadcastClient.ts +54 -0
  10. package/src/bitcoin/OrdinalsClient.ts +120 -0
  11. package/src/bitcoin/PSBTBuilder.ts +106 -0
  12. package/src/bitcoin/fee-calculation.ts +38 -0
  13. package/src/bitcoin/providers/OrdNodeProvider.ts +92 -0
  14. package/src/bitcoin/providers/OrdinalsProvider.ts +56 -0
  15. package/src/bitcoin/providers/types.ts +59 -0
  16. package/src/bitcoin/transactions/commit.ts +465 -0
  17. package/src/bitcoin/transactions/index.ts +13 -0
  18. package/src/bitcoin/transfer.ts +43 -0
  19. package/src/bitcoin/utxo-selection.ts +322 -0
  20. package/src/bitcoin/utxo.ts +113 -0
  21. package/src/cel/ExternalReferenceManager.ts +87 -0
  22. package/src/cel/OriginalsCel.ts +460 -0
  23. package/src/cel/algorithms/createEventLog.ts +68 -0
  24. package/src/cel/algorithms/deactivateEventLog.ts +109 -0
  25. package/src/cel/algorithms/index.ts +11 -0
  26. package/src/cel/algorithms/updateEventLog.ts +99 -0
  27. package/src/cel/algorithms/verifyEventLog.ts +306 -0
  28. package/src/cel/algorithms/witnessEvent.ts +87 -0
  29. package/src/cel/cli/create.ts +330 -0
  30. package/src/cel/cli/index.ts +383 -0
  31. package/src/cel/cli/inspect.ts +549 -0
  32. package/src/cel/cli/migrate.ts +473 -0
  33. package/src/cel/cli/verify.ts +249 -0
  34. package/src/cel/hash.ts +71 -0
  35. package/src/cel/index.ts +16 -0
  36. package/src/cel/layers/BtcoCelManager.ts +408 -0
  37. package/src/cel/layers/PeerCelManager.ts +371 -0
  38. package/src/cel/layers/WebVHCelManager.ts +361 -0
  39. package/src/cel/layers/index.ts +27 -0
  40. package/src/cel/serialization/cbor.ts +189 -0
  41. package/src/cel/serialization/index.ts +10 -0
  42. package/src/cel/serialization/json.ts +209 -0
  43. package/src/cel/types.ts +160 -0
  44. package/src/cel/witnesses/BitcoinWitness.ts +184 -0
  45. package/src/cel/witnesses/HttpWitness.ts +241 -0
  46. package/src/cel/witnesses/WitnessService.ts +51 -0
  47. package/src/cel/witnesses/index.ts +11 -0
  48. package/src/contexts/credentials-v1.json +237 -0
  49. package/src/contexts/credentials-v2-examples.json +5 -0
  50. package/src/contexts/credentials-v2.json +340 -0
  51. package/src/contexts/credentials.json +237 -0
  52. package/src/contexts/data-integrity-v2.json +81 -0
  53. package/src/contexts/dids.json +58 -0
  54. package/src/contexts/ed255192020.json +93 -0
  55. package/src/contexts/ordinals-plus.json +23 -0
  56. package/src/contexts/originals.json +22 -0
  57. package/src/core/OriginalsSDK.ts +420 -0
  58. package/src/crypto/Multikey.ts +194 -0
  59. package/src/crypto/Signer.ts +262 -0
  60. package/src/crypto/noble-init.ts +138 -0
  61. package/src/did/BtcoDidResolver.ts +231 -0
  62. package/src/did/DIDManager.ts +705 -0
  63. package/src/did/Ed25519Verifier.ts +68 -0
  64. package/src/did/KeyManager.ts +239 -0
  65. package/src/did/WebVHManager.ts +499 -0
  66. package/src/did/createBtcoDidDocument.ts +60 -0
  67. package/src/did/providers/OrdinalsClientProviderAdapter.ts +68 -0
  68. package/src/events/EventEmitter.ts +222 -0
  69. package/src/events/index.ts +19 -0
  70. package/src/events/types.ts +331 -0
  71. package/src/examples/basic-usage.ts +78 -0
  72. package/src/examples/create-module-original.ts +435 -0
  73. package/src/examples/full-lifecycle-flow.ts +514 -0
  74. package/src/examples/run.ts +60 -0
  75. package/src/index.ts +204 -0
  76. package/src/kinds/KindRegistry.ts +320 -0
  77. package/src/kinds/index.ts +74 -0
  78. package/src/kinds/types.ts +470 -0
  79. package/src/kinds/validators/AgentValidator.ts +257 -0
  80. package/src/kinds/validators/AppValidator.ts +211 -0
  81. package/src/kinds/validators/DatasetValidator.ts +242 -0
  82. package/src/kinds/validators/DocumentValidator.ts +311 -0
  83. package/src/kinds/validators/MediaValidator.ts +269 -0
  84. package/src/kinds/validators/ModuleValidator.ts +225 -0
  85. package/src/kinds/validators/base.ts +276 -0
  86. package/src/kinds/validators/index.ts +12 -0
  87. package/src/lifecycle/BatchOperations.ts +381 -0
  88. package/src/lifecycle/LifecycleManager.ts +2156 -0
  89. package/src/lifecycle/OriginalsAsset.ts +524 -0
  90. package/src/lifecycle/ProvenanceQuery.ts +280 -0
  91. package/src/lifecycle/ResourceVersioning.ts +163 -0
  92. package/src/migration/MigrationManager.ts +587 -0
  93. package/src/migration/audit/AuditLogger.ts +176 -0
  94. package/src/migration/checkpoint/CheckpointManager.ts +112 -0
  95. package/src/migration/checkpoint/CheckpointStorage.ts +101 -0
  96. package/src/migration/index.ts +33 -0
  97. package/src/migration/operations/BaseMigration.ts +126 -0
  98. package/src/migration/operations/PeerToBtcoMigration.ts +105 -0
  99. package/src/migration/operations/PeerToWebvhMigration.ts +62 -0
  100. package/src/migration/operations/WebvhToBtcoMigration.ts +105 -0
  101. package/src/migration/rollback/RollbackManager.ts +170 -0
  102. package/src/migration/state/StateMachine.ts +92 -0
  103. package/src/migration/state/StateTracker.ts +156 -0
  104. package/src/migration/types.ts +356 -0
  105. package/src/migration/validation/BitcoinValidator.ts +107 -0
  106. package/src/migration/validation/CredentialValidator.ts +62 -0
  107. package/src/migration/validation/DIDCompatibilityValidator.ts +151 -0
  108. package/src/migration/validation/LifecycleValidator.ts +64 -0
  109. package/src/migration/validation/StorageValidator.ts +79 -0
  110. package/src/migration/validation/ValidationPipeline.ts +213 -0
  111. package/src/resources/ResourceManager.ts +655 -0
  112. package/src/resources/index.ts +21 -0
  113. package/src/resources/types.ts +202 -0
  114. package/src/storage/LocalStorageAdapter.ts +64 -0
  115. package/src/storage/MemoryStorageAdapter.ts +29 -0
  116. package/src/storage/StorageAdapter.ts +25 -0
  117. package/src/storage/index.ts +3 -0
  118. package/src/types/bitcoin.ts +98 -0
  119. package/src/types/common.ts +92 -0
  120. package/src/types/credentials.ts +89 -0
  121. package/src/types/did.ts +31 -0
  122. package/src/types/external-shims.d.ts +53 -0
  123. package/src/types/index.ts +7 -0
  124. package/src/types/network.ts +178 -0
  125. package/src/utils/EventLogger.ts +298 -0
  126. package/src/utils/Logger.ts +324 -0
  127. package/src/utils/MetricsCollector.ts +358 -0
  128. package/src/utils/bitcoin-address.ts +132 -0
  129. package/src/utils/cbor.ts +31 -0
  130. package/src/utils/encoding.ts +135 -0
  131. package/src/utils/hash.ts +12 -0
  132. package/src/utils/retry.ts +46 -0
  133. package/src/utils/satoshi-validation.ts +196 -0
  134. package/src/utils/serialization.ts +102 -0
  135. package/src/utils/telemetry.ts +44 -0
  136. package/src/utils/validation.ts +123 -0
  137. package/src/vc/CredentialManager.ts +955 -0
  138. package/src/vc/Issuer.ts +105 -0
  139. package/src/vc/Verifier.ts +54 -0
  140. package/src/vc/cryptosuites/bbs.ts +253 -0
  141. package/src/vc/cryptosuites/bbsSimple.ts +21 -0
  142. package/src/vc/cryptosuites/eddsa.ts +99 -0
  143. package/src/vc/documentLoader.ts +81 -0
  144. package/src/vc/proofs/data-integrity.ts +33 -0
  145. package/src/vc/utils/jsonld.ts +18 -0
@@ -0,0 +1,340 @@
1
+ {
2
+ "@context": {
3
+ "@protected": true,
4
+
5
+ "id": "@id",
6
+ "type": "@type",
7
+
8
+ "description": "https://schema.org/description",
9
+ "digestMultibase": {
10
+ "@id": "https://w3id.org/security#digestMultibase",
11
+ "@type": "https://w3id.org/security#multibase"
12
+ },
13
+ "digestSRI": {
14
+ "@id": "https://www.w3.org/2018/credentials#digestSRI",
15
+ "@type": "https://www.w3.org/2018/credentials#sriString"
16
+ },
17
+ "mediaType": {
18
+ "@id": "https://schema.org/encodingFormat"
19
+ },
20
+ "name": "https://schema.org/name",
21
+
22
+ "VerifiableCredential": {
23
+ "@id": "https://www.w3.org/2018/credentials#VerifiableCredential",
24
+ "@context": {
25
+ "@protected": true,
26
+
27
+ "id": "@id",
28
+ "type": "@type",
29
+
30
+ "confidenceMethod": {
31
+ "@id": "https://www.w3.org/2018/credentials#confidenceMethod",
32
+ "@type": "@id"
33
+ },
34
+ "credentialSchema": {
35
+ "@id": "https://www.w3.org/2018/credentials#credentialSchema",
36
+ "@type": "@id"
37
+ },
38
+ "credentialStatus": {
39
+ "@id": "https://www.w3.org/2018/credentials#credentialStatus",
40
+ "@type": "@id"
41
+ },
42
+ "credentialSubject": {
43
+ "@id": "https://www.w3.org/2018/credentials#credentialSubject",
44
+ "@type": "@id"
45
+ },
46
+ "description": "https://schema.org/description",
47
+ "evidence": {
48
+ "@id": "https://www.w3.org/2018/credentials#evidence",
49
+ "@type": "@id"
50
+ },
51
+ "issuer": {
52
+ "@id": "https://www.w3.org/2018/credentials#issuer",
53
+ "@type": "@id"
54
+ },
55
+ "name": "https://schema.org/name",
56
+ "proof": {
57
+ "@id": "https://w3id.org/security#proof",
58
+ "@type": "@id",
59
+ "@container": "@graph"
60
+ },
61
+ "refreshService": {
62
+ "@id": "https://www.w3.org/2018/credentials#refreshService",
63
+ "@type": "@id"
64
+ },
65
+ "relatedResource": {
66
+ "@id": "https://www.w3.org/2018/credentials#relatedResource",
67
+ "@type": "@id"
68
+ },
69
+ "renderMethod": {
70
+ "@id": "https://www.w3.org/2018/credentials#renderMethod",
71
+ "@type": "@id"
72
+ },
73
+ "termsOfUse": {
74
+ "@id": "https://www.w3.org/2018/credentials#termsOfUse",
75
+ "@type": "@id"
76
+ },
77
+ "validFrom": {
78
+ "@id": "https://www.w3.org/2018/credentials#validFrom",
79
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
80
+ },
81
+ "validUntil": {
82
+ "@id": "https://www.w3.org/2018/credentials#validUntil",
83
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
84
+ }
85
+ }
86
+ },
87
+
88
+ "EnvelopedVerifiableCredential":
89
+ "https://www.w3.org/2018/credentials#EnvelopedVerifiableCredential",
90
+
91
+ "VerifiablePresentation": {
92
+ "@id": "https://www.w3.org/2018/credentials#VerifiablePresentation",
93
+ "@context": {
94
+ "@protected": true,
95
+
96
+ "id": "@id",
97
+ "type": "@type",
98
+
99
+ "holder": {
100
+ "@id": "https://www.w3.org/2018/credentials#holder",
101
+ "@type": "@id"
102
+ },
103
+ "proof": {
104
+ "@id": "https://w3id.org/security#proof",
105
+ "@type": "@id",
106
+ "@container": "@graph"
107
+ },
108
+ "termsOfUse": {
109
+ "@id": "https://www.w3.org/2018/credentials#termsOfUse",
110
+ "@type": "@id"
111
+ },
112
+ "verifiableCredential": {
113
+ "@id": "https://www.w3.org/2018/credentials#verifiableCredential",
114
+ "@type": "@id",
115
+ "@container": "@graph",
116
+ "@context": null
117
+ }
118
+ }
119
+ },
120
+
121
+ "EnvelopedVerifiablePresentation":
122
+ "https://www.w3.org/2018/credentials#EnvelopedVerifiablePresentation",
123
+
124
+ "JsonSchemaCredential":
125
+ "https://www.w3.org/2018/credentials#JsonSchemaCredential",
126
+
127
+ "JsonSchema": {
128
+ "@id": "https://www.w3.org/2018/credentials#JsonSchema",
129
+ "@context": {
130
+ "@protected": true,
131
+
132
+ "id": "@id",
133
+ "type": "@type",
134
+
135
+ "jsonSchema": {
136
+ "@id": "https://www.w3.org/2018/credentials#jsonSchema",
137
+ "@type": "@json"
138
+ }
139
+ }
140
+ },
141
+
142
+ "BitstringStatusListCredential":
143
+ "https://www.w3.org/ns/credentials/status#BitstringStatusListCredential",
144
+
145
+ "BitstringStatusList": {
146
+ "@id": "https://www.w3.org/ns/credentials/status#BitstringStatusList",
147
+ "@context": {
148
+ "@protected": true,
149
+
150
+ "id": "@id",
151
+ "type": "@type",
152
+
153
+ "encodedList": {
154
+ "@id": "https://www.w3.org/ns/credentials/status#encodedList",
155
+ "@type": "https://w3id.org/security#multibase"
156
+ },
157
+ "statusMessage": {
158
+ "@id": "https://www.w3.org/ns/credentials/status#statusMessage",
159
+ "@context": {
160
+ "@protected": true,
161
+
162
+ "id": "@id",
163
+ "type": "@type",
164
+
165
+ "message": "https://www.w3.org/ns/credentials/status#message",
166
+ "status": "https://www.w3.org/ns/credentials/status#status"
167
+ }
168
+ },
169
+ "statusPurpose":
170
+ "https://www.w3.org/ns/credentials/status#statusPurpose",
171
+ "statusReference": {
172
+ "@id": "https://www.w3.org/ns/credentials/status#statusReference",
173
+ "@type": "@id"
174
+ },
175
+ "statusSize": {
176
+ "@id": "https://www.w3.org/ns/credentials/status#statusSize",
177
+ "@type": "https://www.w3.org/2001/XMLSchema#positiveInteger"
178
+ },
179
+ "ttl": "https://www.w3.org/ns/credentials/status#ttl"
180
+ }
181
+ },
182
+
183
+ "BitstringStatusListEntry": {
184
+ "@id":
185
+ "https://www.w3.org/ns/credentials/status#BitstringStatusListEntry",
186
+ "@context": {
187
+ "@protected": true,
188
+
189
+ "id": "@id",
190
+ "type": "@type",
191
+
192
+ "statusListCredential": {
193
+ "@id":
194
+ "https://www.w3.org/ns/credentials/status#statusListCredential",
195
+ "@type": "@id"
196
+ },
197
+ "statusListIndex":
198
+ "https://www.w3.org/ns/credentials/status#statusListIndex",
199
+ "statusPurpose":
200
+ "https://www.w3.org/ns/credentials/status#statusPurpose"
201
+ }
202
+ },
203
+
204
+ "DataIntegrityProof": {
205
+ "@id": "https://w3id.org/security#DataIntegrityProof",
206
+ "@context": {
207
+ "@protected": true,
208
+
209
+ "id": "@id",
210
+ "type": "@type",
211
+
212
+ "challenge": "https://w3id.org/security#challenge",
213
+ "created": {
214
+ "@id": "http://purl.org/dc/terms/created",
215
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
216
+ },
217
+ "cryptosuite": {
218
+ "@id": "https://w3id.org/security#cryptosuite",
219
+ "@type": "https://w3id.org/security#cryptosuiteString"
220
+ },
221
+ "domain": "https://w3id.org/security#domain",
222
+ "expires": {
223
+ "@id": "https://w3id.org/security#expiration",
224
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
225
+ },
226
+ "nonce": "https://w3id.org/security#nonce",
227
+ "previousProof": {
228
+ "@id": "https://w3id.org/security#previousProof",
229
+ "@type": "@id"
230
+ },
231
+ "proofPurpose": {
232
+ "@id": "https://w3id.org/security#proofPurpose",
233
+ "@type": "@vocab",
234
+ "@context": {
235
+ "@protected": true,
236
+
237
+ "id": "@id",
238
+ "type": "@type",
239
+
240
+ "assertionMethod": {
241
+ "@id": "https://w3id.org/security#assertionMethod",
242
+ "@type": "@id",
243
+ "@container": "@set"
244
+ },
245
+ "authentication": {
246
+ "@id": "https://w3id.org/security#authenticationMethod",
247
+ "@type": "@id",
248
+ "@container": "@set"
249
+ },
250
+ "capabilityDelegation": {
251
+ "@id": "https://w3id.org/security#capabilityDelegationMethod",
252
+ "@type": "@id",
253
+ "@container": "@set"
254
+ },
255
+ "capabilityInvocation": {
256
+ "@id": "https://w3id.org/security#capabilityInvocationMethod",
257
+ "@type": "@id",
258
+ "@container": "@set"
259
+ },
260
+ "keyAgreement": {
261
+ "@id": "https://w3id.org/security#keyAgreementMethod",
262
+ "@type": "@id",
263
+ "@container": "@set"
264
+ }
265
+ }
266
+ },
267
+ "proofValue": {
268
+ "@id": "https://w3id.org/security#proofValue",
269
+ "@type": "https://w3id.org/security#multibase"
270
+ },
271
+ "verificationMethod": {
272
+ "@id": "https://w3id.org/security#verificationMethod",
273
+ "@type": "@id"
274
+ }
275
+ }
276
+ },
277
+
278
+ "...": {
279
+ "@id": "https://www.iana.org/assignments/jwt#..."
280
+ },
281
+ "_sd": {
282
+ "@id": "https://www.iana.org/assignments/jwt#_sd",
283
+ "@type": "@json"
284
+ },
285
+ "_sd_alg": {
286
+ "@id": "https://www.iana.org/assignments/jwt#_sd_alg"
287
+ },
288
+ "aud": {
289
+ "@id": "https://www.iana.org/assignments/jwt#aud",
290
+ "@type": "@id"
291
+ },
292
+ "cnf": {
293
+ "@id": "https://www.iana.org/assignments/jwt#cnf",
294
+ "@context": {
295
+ "@protected": true,
296
+
297
+ "kid": {
298
+ "@id": "https://www.iana.org/assignments/jwt#kid",
299
+ "@type": "@id"
300
+ },
301
+ "jwk": {
302
+ "@id": "https://www.iana.org/assignments/jwt#jwk",
303
+ "@type": "@json"
304
+ }
305
+ }
306
+ },
307
+ "exp": {
308
+ "@id": "https://www.iana.org/assignments/jwt#exp",
309
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
310
+ },
311
+ "iat": {
312
+ "@id": "https://www.iana.org/assignments/jwt#iat",
313
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
314
+ },
315
+ "iss": {
316
+ "@id": "https://www.iana.org/assignments/jose#iss",
317
+ "@type": "@id"
318
+ },
319
+ "jku": {
320
+ "@id": "https://www.iana.org/assignments/jose#jku",
321
+ "@type": "@id"
322
+ },
323
+ "kid": {
324
+ "@id": "https://www.iana.org/assignments/jose#kid",
325
+ "@type": "@id"
326
+ },
327
+ "nbf": {
328
+ "@id": "https://www.iana.org/assignments/jwt#nbf",
329
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
330
+ },
331
+ "sub": {
332
+ "@id": "https://www.iana.org/assignments/jose#sub",
333
+ "@type": "@id"
334
+ },
335
+ "x5u": {
336
+ "@id": "https://www.iana.org/assignments/jose#x5u",
337
+ "@type": "@id"
338
+ }
339
+ }
340
+ }
@@ -0,0 +1,237 @@
1
+ {
2
+ "@context": {
3
+ "@version": 1.1,
4
+ "@protected": true,
5
+
6
+ "id": "@id",
7
+ "type": "@type",
8
+
9
+ "VerifiableCredential": {
10
+ "@id": "https://www.w3.org/2018/credentials#VerifiableCredential",
11
+ "@context": {
12
+ "@version": 1.1,
13
+ "@protected": true,
14
+
15
+ "id": "@id",
16
+ "type": "@type",
17
+
18
+ "cred": "https://www.w3.org/2018/credentials#",
19
+ "sec": "https://w3id.org/security#",
20
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
21
+
22
+ "credentialSchema": {
23
+ "@id": "cred:credentialSchema",
24
+ "@type": "@id",
25
+ "@context": {
26
+ "@version": 1.1,
27
+ "@protected": true,
28
+
29
+ "id": "@id",
30
+ "type": "@type",
31
+
32
+ "cred": "https://www.w3.org/2018/credentials#",
33
+
34
+ "JsonSchemaValidator2018": "cred:JsonSchemaValidator2018"
35
+ }
36
+ },
37
+ "credentialStatus": {"@id": "cred:credentialStatus", "@type": "@id"},
38
+ "credentialSubject": {"@id": "cred:credentialSubject", "@type": "@id"},
39
+ "evidence": {"@id": "cred:evidence", "@type": "@id"},
40
+ "expirationDate": {"@id": "cred:expirationDate", "@type": "xsd:dateTime"},
41
+ "holder": {"@id": "cred:holder", "@type": "@id"},
42
+ "issued": {"@id": "cred:issued", "@type": "xsd:dateTime"},
43
+ "issuer": {"@id": "cred:issuer", "@type": "@id"},
44
+ "issuanceDate": {"@id": "cred:issuanceDate", "@type": "xsd:dateTime"},
45
+ "proof": {"@id": "sec:proof", "@type": "@id", "@container": "@graph"},
46
+ "refreshService": {
47
+ "@id": "cred:refreshService",
48
+ "@type": "@id",
49
+ "@context": {
50
+ "@version": 1.1,
51
+ "@protected": true,
52
+
53
+ "id": "@id",
54
+ "type": "@type",
55
+
56
+ "cred": "https://www.w3.org/2018/credentials#",
57
+
58
+ "ManualRefreshService2018": "cred:ManualRefreshService2018"
59
+ }
60
+ },
61
+ "termsOfUse": {"@id": "cred:termsOfUse", "@type": "@id"},
62
+ "validFrom": {"@id": "cred:validFrom", "@type": "xsd:dateTime"},
63
+ "validUntil": {"@id": "cred:validUntil", "@type": "xsd:dateTime"}
64
+ }
65
+ },
66
+
67
+ "VerifiablePresentation": {
68
+ "@id": "https://www.w3.org/2018/credentials#VerifiablePresentation",
69
+ "@context": {
70
+ "@version": 1.1,
71
+ "@protected": true,
72
+
73
+ "id": "@id",
74
+ "type": "@type",
75
+
76
+ "cred": "https://www.w3.org/2018/credentials#",
77
+ "sec": "https://w3id.org/security#",
78
+
79
+ "holder": {"@id": "cred:holder", "@type": "@id"},
80
+ "proof": {"@id": "sec:proof", "@type": "@id", "@container": "@graph"},
81
+ "verifiableCredential": {"@id": "cred:verifiableCredential", "@type": "@id", "@container": "@graph"}
82
+ }
83
+ },
84
+
85
+ "EcdsaSecp256k1Signature2019": {
86
+ "@id": "https://w3id.org/security#EcdsaSecp256k1Signature2019",
87
+ "@context": {
88
+ "@version": 1.1,
89
+ "@protected": true,
90
+
91
+ "id": "@id",
92
+ "type": "@type",
93
+
94
+ "sec": "https://w3id.org/security#",
95
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
96
+
97
+ "challenge": "sec:challenge",
98
+ "created": {"@id": "http://purl.org/dc/terms/created", "@type": "xsd:dateTime"},
99
+ "domain": "sec:domain",
100
+ "expires": {"@id": "sec:expiration", "@type": "xsd:dateTime"},
101
+ "jws": "sec:jws",
102
+ "nonce": "sec:nonce",
103
+ "proofPurpose": {
104
+ "@id": "sec:proofPurpose",
105
+ "@type": "@vocab",
106
+ "@context": {
107
+ "@version": 1.1,
108
+ "@protected": true,
109
+
110
+ "id": "@id",
111
+ "type": "@type",
112
+
113
+ "sec": "https://w3id.org/security#",
114
+
115
+ "assertionMethod": {"@id": "sec:assertionMethod", "@type": "@id", "@container": "@set"},
116
+ "authentication": {"@id": "sec:authenticationMethod", "@type": "@id", "@container": "@set"}
117
+ }
118
+ },
119
+ "proofValue": "sec:proofValue",
120
+ "verificationMethod": {"@id": "sec:verificationMethod", "@type": "@id"}
121
+ }
122
+ },
123
+
124
+ "EcdsaSecp256r1Signature2019": {
125
+ "@id": "https://w3id.org/security#EcdsaSecp256r1Signature2019",
126
+ "@context": {
127
+ "@version": 1.1,
128
+ "@protected": true,
129
+
130
+ "id": "@id",
131
+ "type": "@type",
132
+
133
+ "sec": "https://w3id.org/security#",
134
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
135
+
136
+ "challenge": "sec:challenge",
137
+ "created": {"@id": "http://purl.org/dc/terms/created", "@type": "xsd:dateTime"},
138
+ "domain": "sec:domain",
139
+ "expires": {"@id": "sec:expiration", "@type": "xsd:dateTime"},
140
+ "jws": "sec:jws",
141
+ "nonce": "sec:nonce",
142
+ "proofPurpose": {
143
+ "@id": "sec:proofPurpose",
144
+ "@type": "@vocab",
145
+ "@context": {
146
+ "@version": 1.1,
147
+ "@protected": true,
148
+
149
+ "id": "@id",
150
+ "type": "@type",
151
+
152
+ "sec": "https://w3id.org/security#",
153
+
154
+ "assertionMethod": {"@id": "sec:assertionMethod", "@type": "@id", "@container": "@set"},
155
+ "authentication": {"@id": "sec:authenticationMethod", "@type": "@id", "@container": "@set"}
156
+ }
157
+ },
158
+ "proofValue": "sec:proofValue",
159
+ "verificationMethod": {"@id": "sec:verificationMethod", "@type": "@id"}
160
+ }
161
+ },
162
+
163
+ "Ed25519Signature2018": {
164
+ "@id": "https://w3id.org/security#Ed25519Signature2018",
165
+ "@context": {
166
+ "@version": 1.1,
167
+ "@protected": true,
168
+
169
+ "id": "@id",
170
+ "type": "@type",
171
+
172
+ "sec": "https://w3id.org/security#",
173
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
174
+
175
+ "challenge": "sec:challenge",
176
+ "created": {"@id": "http://purl.org/dc/terms/created", "@type": "xsd:dateTime"},
177
+ "domain": "sec:domain",
178
+ "expires": {"@id": "sec:expiration", "@type": "xsd:dateTime"},
179
+ "jws": "sec:jws",
180
+ "nonce": "sec:nonce",
181
+ "proofPurpose": {
182
+ "@id": "sec:proofPurpose",
183
+ "@type": "@vocab",
184
+ "@context": {
185
+ "@version": 1.1,
186
+ "@protected": true,
187
+
188
+ "id": "@id",
189
+ "type": "@type",
190
+
191
+ "sec": "https://w3id.org/security#",
192
+
193
+ "assertionMethod": {"@id": "sec:assertionMethod", "@type": "@id", "@container": "@set"},
194
+ "authentication": {"@id": "sec:authenticationMethod", "@type": "@id", "@container": "@set"}
195
+ }
196
+ },
197
+ "proofValue": "sec:proofValue",
198
+ "verificationMethod": {"@id": "sec:verificationMethod", "@type": "@id"}
199
+ }
200
+ },
201
+
202
+ "RsaSignature2018": {
203
+ "@id": "https://w3id.org/security#RsaSignature2018",
204
+ "@context": {
205
+ "@version": 1.1,
206
+ "@protected": true,
207
+
208
+ "challenge": "sec:challenge",
209
+ "created": {"@id": "http://purl.org/dc/terms/created", "@type": "xsd:dateTime"},
210
+ "domain": "sec:domain",
211
+ "expires": {"@id": "sec:expiration", "@type": "xsd:dateTime"},
212
+ "jws": "sec:jws",
213
+ "nonce": "sec:nonce",
214
+ "proofPurpose": {
215
+ "@id": "sec:proofPurpose",
216
+ "@type": "@vocab",
217
+ "@context": {
218
+ "@version": 1.1,
219
+ "@protected": true,
220
+
221
+ "id": "@id",
222
+ "type": "@type",
223
+
224
+ "sec": "https://w3id.org/security#",
225
+
226
+ "assertionMethod": {"@id": "sec:assertionMethod", "@type": "@id", "@container": "@set"},
227
+ "authentication": {"@id": "sec:authenticationMethod", "@type": "@id", "@container": "@set"}
228
+ }
229
+ },
230
+ "proofValue": "sec:proofValue",
231
+ "verificationMethod": {"@id": "sec:verificationMethod", "@type": "@id"}
232
+ }
233
+ },
234
+
235
+ "proof": {"@id": "https://w3id.org/security#proof", "@type": "@id", "@container": "@graph"}
236
+ }
237
+ }
@@ -0,0 +1,81 @@
1
+ {
2
+ "@context": {
3
+ "id": "@id",
4
+ "type": "@type",
5
+ "@protected": true,
6
+ "proof": {
7
+ "@id": "https://w3id.org/security#proof",
8
+ "@type": "@id",
9
+ "@container": "@graph"
10
+ },
11
+ "DataIntegrityProof": {
12
+ "@id": "https://w3id.org/security#DataIntegrityProof",
13
+ "@context": {
14
+ "@protected": true,
15
+ "id": "@id",
16
+ "type": "@type",
17
+ "challenge": "https://w3id.org/security#challenge",
18
+ "created": {
19
+ "@id": "http://purl.org/dc/terms/created",
20
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
21
+ },
22
+ "domain": "https://w3id.org/security#domain",
23
+ "expires": {
24
+ "@id": "https://w3id.org/security#expiration",
25
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
26
+ },
27
+ "nonce": "https://w3id.org/security#nonce",
28
+ "previousProof": {
29
+ "@id": "https://w3id.org/security#previousProof",
30
+ "@type": "@id"
31
+ },
32
+ "proofPurpose": {
33
+ "@id": "https://w3id.org/security#proofPurpose",
34
+ "@type": "@vocab",
35
+ "@context": {
36
+ "@protected": true,
37
+ "id": "@id",
38
+ "type": "@type",
39
+ "assertionMethod": {
40
+ "@id": "https://w3id.org/security#assertionMethod",
41
+ "@type": "@id",
42
+ "@container": "@set"
43
+ },
44
+ "authentication": {
45
+ "@id": "https://w3id.org/security#authenticationMethod",
46
+ "@type": "@id",
47
+ "@container": "@set"
48
+ },
49
+ "capabilityInvocation": {
50
+ "@id": "https://w3id.org/security#capabilityInvocationMethod",
51
+ "@type": "@id",
52
+ "@container": "@set"
53
+ },
54
+ "capabilityDelegation": {
55
+ "@id": "https://w3id.org/security#capabilityDelegationMethod",
56
+ "@type": "@id",
57
+ "@container": "@set"
58
+ },
59
+ "keyAgreement": {
60
+ "@id": "https://w3id.org/security#keyAgreementMethod",
61
+ "@type": "@id",
62
+ "@container": "@set"
63
+ }
64
+ }
65
+ },
66
+ "cryptosuite": {
67
+ "@id": "https://w3id.org/security#cryptosuite",
68
+ "@type": "https://w3id.org/security#cryptosuiteString"
69
+ },
70
+ "proofValue": {
71
+ "@id": "https://w3id.org/security#proofValue",
72
+ "@type": "https://w3id.org/security#multibase"
73
+ },
74
+ "verificationMethod": {
75
+ "@id": "https://w3id.org/security#verificationMethod",
76
+ "@type": "@id"
77
+ }
78
+ }
79
+ }
80
+ }
81
+ }