@cheqd/sdk 1.5.0-develop.1 → 1.5.0-develop.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.
- package/.github/workflows/test.yml +7 -3
- package/CHANGELOG.md +7 -0
- package/build/index.d.ts +1 -1
- package/build/index.d.ts.map +1 -1
- package/build/index.js +1 -3
- package/build/index.js.map +1 -1
- package/build/modules/did.d.ts +5 -5
- package/build/modules/did.d.ts.map +1 -1
- package/build/modules/did.js +26 -5
- package/build/modules/did.js.map +1 -1
- package/build/modules/resource.d.ts +3 -2
- package/build/modules/resource.d.ts.map +1 -1
- package/build/modules/resource.js +8 -1
- package/build/modules/resource.js.map +1 -1
- package/build/signer.d.ts.map +1 -1
- package/build/signer.js +5 -5
- package/build/signer.js.map +1 -1
- package/build/types.d.ts +237 -3
- package/build/types.d.ts.map +1 -1
- package/build/types.js +127 -2
- package/build/types.js.map +1 -1
- package/build/utils.d.ts +6 -14
- package/build/utils.d.ts.map +1 -1
- package/build/utils.js +47 -69
- package/build/utils.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -3
- package/src/modules/did.ts +28 -12
- package/src/modules/resource.ts +9 -3
- package/src/signer.ts +6 -6
- package/src/types.ts +157 -4
- package/src/utils.ts +58 -82
- package/tests/modules/did.test.ts +66 -8
- package/tests/modules/resource.test.ts +1 -1
- package/tests/signer.test.ts +16 -13
- package/tests/testutils.test.ts +34 -22
- package/tests/utils.test.ts +22 -2
package/build/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CheqdSDK } from ".";
|
|
2
2
|
import { Coin } from "@cosmjs/proto-signing";
|
|
3
3
|
import { Signer } from "did-jwt";
|
|
4
|
-
import { MsgDeactivateDidDocPayload, VerificationMethod } from "@cheqd/ts-proto/cheqd/did/v2";
|
|
4
|
+
import { MsgCreateDidDocPayload, MsgDeactivateDidDocPayload, MsgUpdateDidDocPayload, VerificationMethod } from "@cheqd/ts-proto/cheqd/did/v2";
|
|
5
5
|
export declare enum CheqdNetwork {
|
|
6
6
|
Mainnet = "mainnet",
|
|
7
7
|
Testnet = "testnet"
|
|
@@ -15,7 +15,8 @@ export interface IContext {
|
|
|
15
15
|
sdk: CheqdSDK;
|
|
16
16
|
}
|
|
17
17
|
export declare enum VerificationMethods {
|
|
18
|
-
|
|
18
|
+
Ed255192020 = "Ed25519VerificationKey2020",
|
|
19
|
+
Ed255192018 = "Ed25519VerificationKey2018",
|
|
19
20
|
JWK = "JsonWebKey2020"
|
|
20
21
|
}
|
|
21
22
|
export declare enum MethodSpecificIdAlgo {
|
|
@@ -30,6 +31,9 @@ export interface ISignInputs {
|
|
|
30
31
|
keyType?: 'Ed25519' | 'Secp256k1' | 'P256';
|
|
31
32
|
privateKeyHex: string;
|
|
32
33
|
}
|
|
34
|
+
export declare const ISignInputs: {
|
|
35
|
+
isSignInput(object: Object[]): object is ISignInputs[];
|
|
36
|
+
};
|
|
33
37
|
export interface IKeyPair {
|
|
34
38
|
publicKey: string;
|
|
35
39
|
privateKey: string;
|
|
@@ -55,6 +59,236 @@ export interface DidStdFee {
|
|
|
55
59
|
granter?: string;
|
|
56
60
|
}
|
|
57
61
|
export interface MsgDeactivateDidPayload extends MsgDeactivateDidDocPayload {
|
|
58
|
-
verificationMethod:
|
|
62
|
+
verificationMethod: VerificationMethodPayload[];
|
|
63
|
+
}
|
|
64
|
+
export interface MsgCreateDidPayload extends Omit<MsgCreateDidDocPayload, 'verificationMethod' | 'service'> {
|
|
65
|
+
verificationMethod: VerificationMethodPayload[];
|
|
66
|
+
service: ServicePayload[];
|
|
67
|
+
}
|
|
68
|
+
export declare const MsgCreateDidPayload: {
|
|
69
|
+
transformPayload<I extends {
|
|
70
|
+
verificationMethod?: {
|
|
71
|
+
id?: string | undefined;
|
|
72
|
+
type?: string | undefined;
|
|
73
|
+
controller?: string | undefined;
|
|
74
|
+
publicKeyBase58?: string | undefined;
|
|
75
|
+
publicKeyMultibase?: string | undefined;
|
|
76
|
+
publicKeyJWK?: any;
|
|
77
|
+
}[] | undefined;
|
|
78
|
+
service?: {
|
|
79
|
+
id?: string | undefined;
|
|
80
|
+
type?: string | undefined;
|
|
81
|
+
serviceEndpoint?: string[] | undefined;
|
|
82
|
+
}[] | undefined;
|
|
83
|
+
context?: string[] | undefined;
|
|
84
|
+
id?: string | undefined;
|
|
85
|
+
controller?: string[] | undefined;
|
|
86
|
+
authentication?: string[] | undefined;
|
|
87
|
+
assertionMethod?: string[] | undefined;
|
|
88
|
+
capabilityInvocation?: string[] | undefined;
|
|
89
|
+
capabilityDelegation?: string[] | undefined;
|
|
90
|
+
keyAgreement?: string[] | undefined;
|
|
91
|
+
alsoKnownAs?: string[] | undefined;
|
|
92
|
+
versionId?: string | undefined;
|
|
93
|
+
} & {
|
|
94
|
+
verificationMethod?: ({
|
|
95
|
+
id?: string | undefined;
|
|
96
|
+
type?: string | undefined;
|
|
97
|
+
controller?: string | undefined;
|
|
98
|
+
publicKeyBase58?: string | undefined;
|
|
99
|
+
publicKeyMultibase?: string | undefined;
|
|
100
|
+
publicKeyJWK?: any;
|
|
101
|
+
}[] & ({
|
|
102
|
+
id?: string | undefined;
|
|
103
|
+
type?: string | undefined;
|
|
104
|
+
controller?: string | undefined;
|
|
105
|
+
publicKeyBase58?: string | undefined;
|
|
106
|
+
publicKeyMultibase?: string | undefined;
|
|
107
|
+
publicKeyJWK?: any;
|
|
108
|
+
} & {
|
|
109
|
+
id?: string | undefined;
|
|
110
|
+
type?: string | undefined;
|
|
111
|
+
controller?: string | undefined;
|
|
112
|
+
publicKeyBase58?: string | undefined;
|
|
113
|
+
publicKeyMultibase?: string | undefined;
|
|
114
|
+
publicKeyJWK?: any;
|
|
115
|
+
} & { [K in Exclude<keyof I["verificationMethod"][number], keyof VerificationMethodPayload>]: never; })[] & { [K_1 in Exclude<keyof I["verificationMethod"], keyof {
|
|
116
|
+
id?: string | undefined;
|
|
117
|
+
type?: string | undefined;
|
|
118
|
+
controller?: string | undefined;
|
|
119
|
+
publicKeyBase58?: string | undefined;
|
|
120
|
+
publicKeyMultibase?: string | undefined;
|
|
121
|
+
publicKeyJWK?: any;
|
|
122
|
+
}[]>]: never; }) | undefined;
|
|
123
|
+
service?: ({
|
|
124
|
+
id?: string | undefined;
|
|
125
|
+
type?: string | undefined;
|
|
126
|
+
serviceEndpoint?: string[] | undefined;
|
|
127
|
+
}[] & ({
|
|
128
|
+
id?: string | undefined;
|
|
129
|
+
type?: string | undefined;
|
|
130
|
+
serviceEndpoint?: string[] | undefined;
|
|
131
|
+
} & {
|
|
132
|
+
id?: string | undefined;
|
|
133
|
+
type?: string | undefined;
|
|
134
|
+
serviceEndpoint?: (string[] & string[] & { [K_2 in Exclude<keyof I["service"][number]["serviceEndpoint"], keyof string[]>]: never; }) | undefined;
|
|
135
|
+
} & { [K_3 in Exclude<keyof I["service"][number], keyof ServicePayload>]: never; })[] & { [K_4 in Exclude<keyof I["service"], keyof {
|
|
136
|
+
id?: string | undefined;
|
|
137
|
+
type?: string | undefined;
|
|
138
|
+
serviceEndpoint?: string[] | undefined;
|
|
139
|
+
}[]>]: never; }) | undefined;
|
|
140
|
+
context?: (string[] & string[] & { [K_5 in Exclude<keyof I["context"], keyof string[]>]: never; }) | undefined;
|
|
141
|
+
id?: string | undefined;
|
|
142
|
+
controller?: (string[] & string[] & { [K_6 in Exclude<keyof I["controller"], keyof string[]>]: never; }) | undefined;
|
|
143
|
+
authentication?: (string[] & string[] & { [K_7 in Exclude<keyof I["authentication"], keyof string[]>]: never; }) | undefined;
|
|
144
|
+
assertionMethod?: (string[] & string[] & { [K_8 in Exclude<keyof I["assertionMethod"], keyof string[]>]: never; }) | undefined;
|
|
145
|
+
capabilityInvocation?: (string[] & string[] & { [K_9 in Exclude<keyof I["capabilityInvocation"], keyof string[]>]: never; }) | undefined;
|
|
146
|
+
capabilityDelegation?: (string[] & string[] & { [K_10 in Exclude<keyof I["capabilityDelegation"], keyof string[]>]: never; }) | undefined;
|
|
147
|
+
keyAgreement?: (string[] & string[] & { [K_11 in Exclude<keyof I["keyAgreement"], keyof string[]>]: never; }) | undefined;
|
|
148
|
+
alsoKnownAs?: (string[] & string[] & { [K_12 in Exclude<keyof I["alsoKnownAs"], keyof string[]>]: never; }) | undefined;
|
|
149
|
+
versionId?: string | undefined;
|
|
150
|
+
} & { [K_13 in Exclude<keyof I, keyof MsgCreateDidPayload>]: never; }>(message: I): MsgCreateDidDocPayload;
|
|
151
|
+
fromPartial<I_1 extends {
|
|
152
|
+
verificationMethod?: {
|
|
153
|
+
id?: string | undefined;
|
|
154
|
+
type?: string | undefined;
|
|
155
|
+
controller?: string | undefined;
|
|
156
|
+
publicKeyBase58?: string | undefined;
|
|
157
|
+
publicKeyMultibase?: string | undefined;
|
|
158
|
+
publicKeyJWK?: any;
|
|
159
|
+
}[] | undefined;
|
|
160
|
+
service?: {
|
|
161
|
+
id?: string | undefined;
|
|
162
|
+
type?: string | undefined;
|
|
163
|
+
serviceEndpoint?: string[] | undefined;
|
|
164
|
+
}[] | undefined;
|
|
165
|
+
context?: string[] | undefined;
|
|
166
|
+
id?: string | undefined;
|
|
167
|
+
controller?: string[] | undefined;
|
|
168
|
+
authentication?: string[] | undefined;
|
|
169
|
+
assertionMethod?: string[] | undefined;
|
|
170
|
+
capabilityInvocation?: string[] | undefined;
|
|
171
|
+
capabilityDelegation?: string[] | undefined;
|
|
172
|
+
keyAgreement?: string[] | undefined;
|
|
173
|
+
alsoKnownAs?: string[] | undefined;
|
|
174
|
+
versionId?: string | undefined;
|
|
175
|
+
} & {
|
|
176
|
+
verificationMethod?: ({
|
|
177
|
+
id?: string | undefined;
|
|
178
|
+
type?: string | undefined;
|
|
179
|
+
controller?: string | undefined;
|
|
180
|
+
publicKeyBase58?: string | undefined;
|
|
181
|
+
publicKeyMultibase?: string | undefined;
|
|
182
|
+
publicKeyJWK?: any;
|
|
183
|
+
}[] & ({
|
|
184
|
+
id?: string | undefined;
|
|
185
|
+
type?: string | undefined;
|
|
186
|
+
controller?: string | undefined;
|
|
187
|
+
publicKeyBase58?: string | undefined;
|
|
188
|
+
publicKeyMultibase?: string | undefined;
|
|
189
|
+
publicKeyJWK?: any;
|
|
190
|
+
} & {
|
|
191
|
+
id?: string | undefined;
|
|
192
|
+
type?: string | undefined;
|
|
193
|
+
controller?: string | undefined;
|
|
194
|
+
publicKeyBase58?: string | undefined;
|
|
195
|
+
publicKeyMultibase?: string | undefined;
|
|
196
|
+
publicKeyJWK?: any;
|
|
197
|
+
} & { [K_14 in Exclude<keyof I_1["verificationMethod"][number], keyof VerificationMethodPayload>]: never; })[] & { [K_15 in Exclude<keyof I_1["verificationMethod"], keyof {
|
|
198
|
+
id?: string | undefined;
|
|
199
|
+
type?: string | undefined;
|
|
200
|
+
controller?: string | undefined;
|
|
201
|
+
publicKeyBase58?: string | undefined;
|
|
202
|
+
publicKeyMultibase?: string | undefined;
|
|
203
|
+
publicKeyJWK?: any;
|
|
204
|
+
}[]>]: never; }) | undefined;
|
|
205
|
+
service?: ({
|
|
206
|
+
id?: string | undefined;
|
|
207
|
+
type?: string | undefined;
|
|
208
|
+
serviceEndpoint?: string[] | undefined;
|
|
209
|
+
}[] & ({
|
|
210
|
+
id?: string | undefined;
|
|
211
|
+
type?: string | undefined;
|
|
212
|
+
serviceEndpoint?: string[] | undefined;
|
|
213
|
+
} & {
|
|
214
|
+
id?: string | undefined;
|
|
215
|
+
type?: string | undefined;
|
|
216
|
+
serviceEndpoint?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["service"][number]["serviceEndpoint"], keyof string[]>]: never; }) | undefined;
|
|
217
|
+
} & { [K_17 in Exclude<keyof I_1["service"][number], keyof ServicePayload>]: never; })[] & { [K_18 in Exclude<keyof I_1["service"], keyof {
|
|
218
|
+
id?: string | undefined;
|
|
219
|
+
type?: string | undefined;
|
|
220
|
+
serviceEndpoint?: string[] | undefined;
|
|
221
|
+
}[]>]: never; }) | undefined;
|
|
222
|
+
context?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["context"], keyof string[]>]: never; }) | undefined;
|
|
223
|
+
id?: string | undefined;
|
|
224
|
+
controller?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["controller"], keyof string[]>]: never; }) | undefined;
|
|
225
|
+
authentication?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["authentication"], keyof string[]>]: never; }) | undefined;
|
|
226
|
+
assertionMethod?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["assertionMethod"], keyof string[]>]: never; }) | undefined;
|
|
227
|
+
capabilityInvocation?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["capabilityInvocation"], keyof string[]>]: never; }) | undefined;
|
|
228
|
+
capabilityDelegation?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["capabilityDelegation"], keyof string[]>]: never; }) | undefined;
|
|
229
|
+
keyAgreement?: (string[] & string[] & { [K_25 in Exclude<keyof I_1["keyAgreement"], keyof string[]>]: never; }) | undefined;
|
|
230
|
+
alsoKnownAs?: (string[] & string[] & { [K_26 in Exclude<keyof I_1["alsoKnownAs"], keyof string[]>]: never; }) | undefined;
|
|
231
|
+
versionId?: string | undefined;
|
|
232
|
+
} & { [K_27 in Exclude<keyof I_1, keyof MsgCreateDidPayload>]: never; }>(object: I_1): MsgCreateDidPayload;
|
|
233
|
+
};
|
|
234
|
+
export interface VerificationMethodPayload {
|
|
235
|
+
id: string;
|
|
236
|
+
type: string;
|
|
237
|
+
controller: string;
|
|
238
|
+
publicKeyBase58?: string;
|
|
239
|
+
publicKeyMultibase?: string;
|
|
240
|
+
publicKeyJWK?: any;
|
|
241
|
+
}
|
|
242
|
+
export declare const VerificationMethodPayload: {
|
|
243
|
+
fromPartial<I extends {
|
|
244
|
+
id?: string | undefined;
|
|
245
|
+
type?: string | undefined;
|
|
246
|
+
controller?: string | undefined;
|
|
247
|
+
publicKeyBase58?: string | undefined;
|
|
248
|
+
publicKeyMultibase?: string | undefined;
|
|
249
|
+
publicKeyJWK?: any;
|
|
250
|
+
} & {
|
|
251
|
+
id?: string | undefined;
|
|
252
|
+
type?: string | undefined;
|
|
253
|
+
controller?: string | undefined;
|
|
254
|
+
publicKeyBase58?: string | undefined;
|
|
255
|
+
publicKeyMultibase?: string | undefined;
|
|
256
|
+
publicKeyJWK?: any;
|
|
257
|
+
} & { [K in Exclude<keyof I, keyof VerificationMethodPayload>]: never; }>(object: I): VerificationMethodPayload;
|
|
258
|
+
transformPayload<I_1 extends {
|
|
259
|
+
id?: string | undefined;
|
|
260
|
+
type?: string | undefined;
|
|
261
|
+
controller?: string | undefined;
|
|
262
|
+
publicKeyBase58?: string | undefined;
|
|
263
|
+
publicKeyMultibase?: string | undefined;
|
|
264
|
+
publicKeyJWK?: any;
|
|
265
|
+
} & {
|
|
266
|
+
id?: string | undefined;
|
|
267
|
+
type?: string | undefined;
|
|
268
|
+
controller?: string | undefined;
|
|
269
|
+
publicKeyBase58?: string | undefined;
|
|
270
|
+
publicKeyMultibase?: string | undefined;
|
|
271
|
+
publicKeyJWK?: any;
|
|
272
|
+
} & { [K_1 in Exclude<keyof I_1, keyof VerificationMethodPayload>]: never; }>(payload: I_1): VerificationMethod;
|
|
273
|
+
};
|
|
274
|
+
export interface ServicePayload {
|
|
275
|
+
id: string;
|
|
276
|
+
type: string;
|
|
277
|
+
serviceEndpoint: string[];
|
|
278
|
+
}
|
|
279
|
+
export declare const ServicePayload: {
|
|
280
|
+
fromPartial<I extends {
|
|
281
|
+
id?: string | undefined;
|
|
282
|
+
type?: string | undefined;
|
|
283
|
+
serviceEndpoint?: string[] | undefined;
|
|
284
|
+
} & {
|
|
285
|
+
id?: string | undefined;
|
|
286
|
+
type?: string | undefined;
|
|
287
|
+
serviceEndpoint?: (string[] & string[] & { [K in Exclude<keyof I["serviceEndpoint"], keyof string[]>]: never; }) | undefined;
|
|
288
|
+
} & { [K_1 in Exclude<keyof I, keyof ServicePayload>]: never; }>(object: I): ServicePayload;
|
|
289
|
+
};
|
|
290
|
+
export interface MsgUpdateDidPayload extends Omit<MsgUpdateDidDocPayload, 'verificationMethod' | 'service'> {
|
|
291
|
+
verificationMethod: VerificationMethodPayload[];
|
|
292
|
+
service: ServicePayload[];
|
|
59
293
|
}
|
|
60
294
|
//# sourceMappingURL=types.d.ts.map
|
package/build/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,GAAG,CAAA;AAC5B,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAA;AAC5C,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAA;AAChC,OAAO,EAAE,0BAA0B,EAAE,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,GAAG,CAAA;AAC5B,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAA;AAC5C,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAA;AAChC,OAAO,EAAE,sBAAsB,EAAE,0BAA0B,EAAE,sBAAsB,EAAE,kBAAkB,EAAW,MAAM,8BAA8B,CAAA;AAGtJ,oBAAY,YAAY;IACpB,OAAO,YAAY;IACnB,OAAO,YAAY;CACtB;AAED,MAAM,WAAW,aAAa;IAC1B,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,OAAO,CAAC,GAAG,CAAC,CAAA;CACjC;AAED,MAAM,WAAW,gBAAiB,SAAQ,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC;CAAG;AAE1E,MAAM,WAAW,QAAQ;IACrB,GAAG,EAAE,QAAQ,CAAA;CAChB;AAED,oBAAY,mBAAmB;IAC3B,WAAW,+BAA+B;IAC1C,WAAW,+BAA+B;IAC1C,GAAG,mBAAmB;CACzB;AAED,oBAAY,oBAAoB;IAC5B,MAAM,cAAc;IACpB,IAAI,SAAS;CAChB;AAED,MAAM,MAAM,WAAW,GAAG;KACrB,GAAG,IAAI,mBAAmB,IAAI,MAAM,CAAC,CAAC,EAAE,CAAC,SAAS,EAAE,UAAU,KAAK,MAAM;CAC7E,CAAA;AAED,MAAM,WAAW,WAAW;IACxB,oBAAoB,EAAE,MAAM,CAAA;IAC5B,OAAO,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,MAAM,CAAA;IAC1C,aAAa,EAAE,MAAM,CAAA;CACxB;AAED,eAAO,MAAM,WAAW;wBACF,MAAM,EAAE;CAG7B,CAAA;AAED,MAAM,WAAW,QAAQ;IACrB,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,oBAAoB,CAAA;CAC9B;AAED,MAAM,WAAW,aAAa;IAC1B,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,GAAG,CAAA;CACb;AAED,MAAM,MAAM,sBAAsB,GAAG,MAAM,CAAA;AAE3C,MAAM,MAAM,gBAAgB,CAAC,CAAC,SAAS,sBAAsB,EAAE,CAAC,SAAS,MAAM,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,CAAA;AAE9F,MAAM,WAAW,iBAAiB;IAC9B,QAAQ,CAAC,gBAAgB,EAAE,iBAAiB,CAAA;IAC5C,QAAQ,CAAC,MAAM,EAAE,aAAa,YAAY,IAAI,iBAAiB,CAAC,kBAAkB,CAAC,EAAE,SAAS,MAAM,GAAG,MAAM,GAAG,KAAK,CAAA;IACrH,QAAQ,CAAC,KAAK,EAAE,GAAG,iBAAiB,CAAC,QAAQ,CAAC,IAAI,gBAAgB,CAAC,sBAAsB,EAAE,MAAM,CAAC,EAAE,CAAA;IACpG,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;CAC7B;AAED,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAA;AAEtC,MAAM,WAAW,SAAS;IACtB,QAAQ,CAAC,MAAM,EAAE,SAAS,IAAI,EAAE,CAAA;IAChC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAA;IACpB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,WAAW,uBAAwB,SAAQ,0BAA0B;IACvE,kBAAkB,EAAE,yBAAyB,EAAE,CAAA;CAClD;AAED,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,sBAAsB,EAAE,oBAAoB,GAAG,SAAS,CAAC;IACvG,kBAAkB,EAAE,yBAAyB,EAAE,CAAA;IAC/C,OAAO,EAAE,cAAc,EAAE,CAAA;CAC5B;AAED,eAAO,MAAM,mBAAmB;;;;;;;;2BAkFb,GAAG;;;;;;;;;;;;;;;;;;;;;;;;2BAAH,GAAG;;;;;;;2BAAH,GAAG;;;;;;;2BAAH,GAAG;;;;;;;2BAAH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wFAjFkE,sBAAsB;;;;;;;;2BAiF3F,GAAG;;;;;;;;;;;;;;;;;;;;;;;;2BAAH,GAAG;;;;;;;2BAAH,GAAG;;;;;;;2BAAH,GAAG;;;;;;;2BAAH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2FA1C4D,mBAAmB;CAiBpG,CAAA;AAmBD,MAAM,WAAW,yBAAyB;IACtC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,YAAY,CAAC,EAAE,GAAG,CAAC;CACtB;AAED,eAAO,MAAM,yBAAyB;;;;;;;uBAHnB,GAAG;;;;;;;uBAAH,GAAG;0FAIkE,yBAAyB;;;;;;;uBAJ9F,GAAG;;;;;;;uBAAH,GAAG;iGAmBwE,kBAAkB;CAQ/G,CAAA;AAMD,MAAM,WAAW,cAAc;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,eAAe,EAAE,MAAM,EAAE,CAAC;CAC7B;AAED,eAAO,MAAM,cAAc;;;;;;;;;iFACkD,cAAc;CAO1F,CAAA;AAMD,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,sBAAsB,EAAE,oBAAoB,GAAG,SAAS,CAAC;IACvG,kBAAkB,EAAE,yBAAyB,EAAE,CAAA;IAC/C,OAAO,EAAE,cAAc,EAAE,CAAA;CAC5B"}
|
package/build/types.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MethodSpecificIdAlgo = exports.VerificationMethods = exports.CheqdNetwork = void 0;
|
|
3
|
+
exports.ServicePayload = exports.VerificationMethodPayload = exports.MsgCreateDidPayload = exports.ISignInputs = exports.MethodSpecificIdAlgo = exports.VerificationMethods = exports.CheqdNetwork = void 0;
|
|
4
|
+
const v2_1 = require("@cheqd/ts-proto/cheqd/did/v2");
|
|
4
5
|
var CheqdNetwork;
|
|
5
6
|
(function (CheqdNetwork) {
|
|
6
7
|
CheqdNetwork["Mainnet"] = "mainnet";
|
|
@@ -8,7 +9,8 @@ var CheqdNetwork;
|
|
|
8
9
|
})(CheqdNetwork = exports.CheqdNetwork || (exports.CheqdNetwork = {}));
|
|
9
10
|
var VerificationMethods;
|
|
10
11
|
(function (VerificationMethods) {
|
|
11
|
-
VerificationMethods["
|
|
12
|
+
VerificationMethods["Ed255192020"] = "Ed25519VerificationKey2020";
|
|
13
|
+
VerificationMethods["Ed255192018"] = "Ed25519VerificationKey2018";
|
|
12
14
|
VerificationMethods["JWK"] = "JsonWebKey2020";
|
|
13
15
|
})(VerificationMethods = exports.VerificationMethods || (exports.VerificationMethods = {}));
|
|
14
16
|
var MethodSpecificIdAlgo;
|
|
@@ -16,4 +18,127 @@ var MethodSpecificIdAlgo;
|
|
|
16
18
|
MethodSpecificIdAlgo["Base58"] = "base58btc";
|
|
17
19
|
MethodSpecificIdAlgo["Uuid"] = "uuid";
|
|
18
20
|
})(MethodSpecificIdAlgo = exports.MethodSpecificIdAlgo || (exports.MethodSpecificIdAlgo = {}));
|
|
21
|
+
exports.ISignInputs = {
|
|
22
|
+
isSignInput(object) {
|
|
23
|
+
return object.some((x) => 'privateKeyHex' in x);
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
exports.MsgCreateDidPayload = {
|
|
27
|
+
transformPayload(message) {
|
|
28
|
+
const obj = {};
|
|
29
|
+
if (message.context) {
|
|
30
|
+
obj.context = message.context;
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
obj.context = [];
|
|
34
|
+
}
|
|
35
|
+
message.id !== undefined && (obj.id = message.id);
|
|
36
|
+
if (message.controller) {
|
|
37
|
+
obj.controller = message.controller;
|
|
38
|
+
}
|
|
39
|
+
if (message.verificationMethod) {
|
|
40
|
+
obj.verificationMethod = message.verificationMethod.map((e) => e ? exports.VerificationMethodPayload.transformPayload(e) : undefined);
|
|
41
|
+
}
|
|
42
|
+
if (message.authentication) {
|
|
43
|
+
obj.authentication = message.authentication;
|
|
44
|
+
}
|
|
45
|
+
if (message.assertionMethod) {
|
|
46
|
+
obj.assertionMethod = message.assertionMethod;
|
|
47
|
+
}
|
|
48
|
+
if (message.capabilityInvocation) {
|
|
49
|
+
obj.capabilityInvocation = message.capabilityInvocation;
|
|
50
|
+
}
|
|
51
|
+
if (message.capabilityDelegation) {
|
|
52
|
+
obj.capabilityDelegation = message.capabilityDelegation;
|
|
53
|
+
}
|
|
54
|
+
if (message.keyAgreement) {
|
|
55
|
+
obj.keyAgreement = message.keyAgreement;
|
|
56
|
+
}
|
|
57
|
+
if (message.alsoKnownAs) {
|
|
58
|
+
obj.alsoKnownAs = message.alsoKnownAs;
|
|
59
|
+
}
|
|
60
|
+
if (message.service) {
|
|
61
|
+
obj.service = message.service.map((e) => e ? { id: e.id, serviceEndpoint: e.serviceEndpoint, serviceType: e.type } : undefined);
|
|
62
|
+
}
|
|
63
|
+
message.versionId !== undefined && (obj.versionId = message.versionId);
|
|
64
|
+
return v2_1.MsgCreateDidDocPayload.fromPartial(obj);
|
|
65
|
+
},
|
|
66
|
+
fromPartial(object) {
|
|
67
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
|
68
|
+
const message = createBaseMsgCreateDidPayload();
|
|
69
|
+
message.context = ((_a = object.context) === null || _a === void 0 ? void 0 : _a.map((e) => e)) || [];
|
|
70
|
+
message.id = (_b = object.id) !== null && _b !== void 0 ? _b : "";
|
|
71
|
+
message.controller = ((_c = object.controller) === null || _c === void 0 ? void 0 : _c.map((e) => e)) || [];
|
|
72
|
+
message.verificationMethod = ((_d = object.verificationMethod) === null || _d === void 0 ? void 0 : _d.map((e) => exports.VerificationMethodPayload.fromPartial(e))) || [];
|
|
73
|
+
message.authentication = ((_e = object.authentication) === null || _e === void 0 ? void 0 : _e.map((e) => e)) || [];
|
|
74
|
+
message.assertionMethod = ((_f = object.assertionMethod) === null || _f === void 0 ? void 0 : _f.map((e) => e)) || [];
|
|
75
|
+
message.capabilityInvocation = ((_g = object.capabilityInvocation) === null || _g === void 0 ? void 0 : _g.map((e) => e)) || [];
|
|
76
|
+
message.capabilityDelegation = ((_h = object.capabilityDelegation) === null || _h === void 0 ? void 0 : _h.map((e) => e)) || [];
|
|
77
|
+
message.keyAgreement = ((_j = object.keyAgreement) === null || _j === void 0 ? void 0 : _j.map((e) => e)) || [];
|
|
78
|
+
message.alsoKnownAs = ((_k = object.alsoKnownAs) === null || _k === void 0 ? void 0 : _k.map((e) => e)) || [];
|
|
79
|
+
message.service = ((_l = object.service) === null || _l === void 0 ? void 0 : _l.map((e) => exports.ServicePayload.fromPartial(e))) || [];
|
|
80
|
+
message.versionId = (_m = object.versionId) !== null && _m !== void 0 ? _m : "";
|
|
81
|
+
return message;
|
|
82
|
+
},
|
|
83
|
+
};
|
|
84
|
+
function createBaseMsgCreateDidPayload() {
|
|
85
|
+
return {
|
|
86
|
+
context: [],
|
|
87
|
+
id: "",
|
|
88
|
+
controller: [],
|
|
89
|
+
verificationMethod: [],
|
|
90
|
+
authentication: [],
|
|
91
|
+
assertionMethod: [],
|
|
92
|
+
capabilityInvocation: [],
|
|
93
|
+
capabilityDelegation: [],
|
|
94
|
+
keyAgreement: [],
|
|
95
|
+
alsoKnownAs: [],
|
|
96
|
+
service: [],
|
|
97
|
+
versionId: "",
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
exports.VerificationMethodPayload = {
|
|
101
|
+
fromPartial(object) {
|
|
102
|
+
var _a, _b, _c;
|
|
103
|
+
const message = createBaseVerificationMethod();
|
|
104
|
+
message.id = (_a = object.id) !== null && _a !== void 0 ? _a : "";
|
|
105
|
+
message.type = (_b = object.type) !== null && _b !== void 0 ? _b : "";
|
|
106
|
+
message.controller = (_c = object.controller) !== null && _c !== void 0 ? _c : "";
|
|
107
|
+
if (object.publicKeyMultibase) {
|
|
108
|
+
message.publicKeyMultibase = object.publicKeyMultibase;
|
|
109
|
+
}
|
|
110
|
+
else if (object.publicKeyBase58) {
|
|
111
|
+
message.publicKeyBase58 = object.publicKeyBase58;
|
|
112
|
+
}
|
|
113
|
+
else if (object.publicKeyJWK) {
|
|
114
|
+
message.publicKeyJWK = object.publicKeyJWK;
|
|
115
|
+
}
|
|
116
|
+
return message;
|
|
117
|
+
},
|
|
118
|
+
transformPayload(payload) {
|
|
119
|
+
var _a, _b, _c;
|
|
120
|
+
return {
|
|
121
|
+
id: (_a = payload.id) !== null && _a !== void 0 ? _a : "",
|
|
122
|
+
controller: (_b = payload.controller) !== null && _b !== void 0 ? _b : "",
|
|
123
|
+
verificationMethodType: (_c = payload.type) !== null && _c !== void 0 ? _c : "",
|
|
124
|
+
verificationMaterial: payload.publicKeyBase58 || payload.publicKeyMultibase || JSON.stringify(payload.publicKeyJWK) || ""
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
};
|
|
128
|
+
function createBaseVerificationMethod() {
|
|
129
|
+
return { id: "", type: "", controller: "" };
|
|
130
|
+
}
|
|
131
|
+
exports.ServicePayload = {
|
|
132
|
+
fromPartial(object) {
|
|
133
|
+
var _a, _b, _c;
|
|
134
|
+
const message = createBaseService();
|
|
135
|
+
message.id = (_a = object.id) !== null && _a !== void 0 ? _a : "";
|
|
136
|
+
message.type = (_b = object.type) !== null && _b !== void 0 ? _b : "";
|
|
137
|
+
message.serviceEndpoint = ((_c = object.serviceEndpoint) === null || _c === void 0 ? void 0 : _c.map((e) => e)) || [];
|
|
138
|
+
return message;
|
|
139
|
+
},
|
|
140
|
+
};
|
|
141
|
+
function createBaseService() {
|
|
142
|
+
return { id: "", type: "", serviceEndpoint: [] };
|
|
143
|
+
}
|
|
19
144
|
//# sourceMappingURL=types.js.map
|
package/build/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/build/utils.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { IKeyPair, IKeyValuePair, ISignInputs, VerificationMethods, MethodSpecificIdAlgo, TVerificationKey, TVerificationKeyPrefix, CheqdNetwork, IVerificationKeys } from "./types";
|
|
1
|
+
import { IKeyPair, IKeyValuePair, ISignInputs, VerificationMethods, MethodSpecificIdAlgo, TVerificationKey, TVerificationKeyPrefix, CheqdNetwork, IVerificationKeys, MsgCreateDidPayload, VerificationMethodPayload, MsgUpdateDidPayload } from "./types";
|
|
3
2
|
import { KeyPair } from '@stablelib/ed25519';
|
|
4
3
|
export type TImportableEd25519Key = {
|
|
5
4
|
publicKeyHex: string;
|
|
@@ -7,20 +6,13 @@ export type TImportableEd25519Key = {
|
|
|
7
6
|
kid: string;
|
|
8
7
|
type: "Ed25519";
|
|
9
8
|
};
|
|
10
|
-
export type IdentifierPayload = Partial<
|
|
9
|
+
export type IdentifierPayload = Partial<MsgCreateDidPayload> | Partial<MsgUpdateDidPayload>;
|
|
11
10
|
export declare function isEqualKeyValuePair(kv1: IKeyValuePair[], kv2: IKeyValuePair[]): boolean;
|
|
12
|
-
export declare function createSignInputsFromImportableEd25519Key(key: TImportableEd25519Key, verificationMethod:
|
|
11
|
+
export declare function createSignInputsFromImportableEd25519Key(key: TImportableEd25519Key, verificationMethod: VerificationMethodPayload[]): ISignInputs;
|
|
13
12
|
export declare function createKeyPairRaw(seed?: string): KeyPair;
|
|
14
13
|
export declare function createKeyPairBase64(seed?: string): IKeyPair;
|
|
15
14
|
export declare function createKeyPairHex(seed?: string): IKeyPair;
|
|
16
|
-
export declare function createVerificationKeys(
|
|
17
|
-
export declare function createDidVerificationMethod(verificationMethodTypes: VerificationMethods[], verificationKeys: IVerificationKeys[]):
|
|
18
|
-
export declare function createDidPayload(verificationMethods:
|
|
19
|
-
export declare function createDidPayloadWithSignInputs(seed?: string, keys?: IKeyPair[]): {
|
|
20
|
-
didPayload: MsgCreateDidDocPayload;
|
|
21
|
-
keys: IKeyPair[];
|
|
22
|
-
signInputs: ISignInputs[];
|
|
23
|
-
};
|
|
24
|
-
export declare function convertKeyPairtoTImportableEd25519Key(keyPair: IKeyPair): TImportableEd25519Key;
|
|
25
|
-
export declare function createSignInputsFromKeyPair(didDocument: IdentifierPayload, keys: IKeyPair[]): ISignInputs[];
|
|
15
|
+
export declare function createVerificationKeys(publicKey: string, algo: MethodSpecificIdAlgo, key: TVerificationKey<TVerificationKeyPrefix, number>, network?: CheqdNetwork): IVerificationKeys;
|
|
16
|
+
export declare function createDidVerificationMethod(verificationMethodTypes: VerificationMethods[], verificationKeys: IVerificationKeys[]): VerificationMethodPayload[];
|
|
17
|
+
export declare function createDidPayload(verificationMethods: VerificationMethodPayload[], verificationKeys: IVerificationKeys[]): MsgCreateDidPayload;
|
|
26
18
|
//# sourceMappingURL=utils.d.ts.map
|
package/build/utils.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,QAAQ,EACR,aAAa,EACb,WAAW,EACX,mBAAmB,EAEnB,oBAAoB,EACpB,gBAAgB,EAChB,sBAAsB,EACtB,YAAY,EACZ,iBAAiB,EACjB,mBAAmB,EACnB,yBAAyB,EACzB,mBAAmB,EACtB,MAAM,SAAS,CAAA;AAIhB,OAAO,EAA4C,OAAO,EAAE,MAAM,oBAAoB,CAAA;AAItF,MAAM,MAAM,qBAAqB,GAAG;IAChC,YAAY,EAAE,MAAM,CAAA;IACpB,aAAa,EAAE,MAAM,CAAA;IACrB,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,SAAS,CAAA;CAClB,CAAA;AAKD,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,mBAAmB,CAAC,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAA;AAE3F,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,aAAa,EAAE,EAAE,GAAG,EAAE,aAAa,EAAE,GAAG,OAAO,CAEvF;AAED,wBAAgB,wCAAwC,CAAC,GAAG,EAAE,qBAAqB,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,GAAG,WAAW,CA2CjJ;AAED,wBAAgB,gBAAgB,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAEvD;AAED,wBAAgB,mBAAmB,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,QAAQ,CAM3D;AAED,wBAAgB,gBAAgB,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,QAAQ,CAMxD;AAED,wBAAgB,sBAAsB,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,oBAAoB,EAAE,GAAG,EAAE,gBAAgB,CAAC,sBAAsB,EAAE,MAAM,CAAC,EAAE,OAAO,GAAE,YAAmC,GAAG,iBAAiB,CAyB5M;AAID,wBAAgB,2BAA2B,CAAC,uBAAuB,EAAE,mBAAmB,EAAE,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,GAAG,yBAAyB,EAAE,CAgC9J;AAED,wBAAgB,gBAAgB,CAAC,mBAAmB,EAAE,yBAAyB,EAAE,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,GAAG,mBAAmB,CAgB7I"}
|