@cheqd/sdk-esm 5.3.4-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.
Files changed (68) hide show
  1. package/build/index.d.ts +140 -0
  2. package/build/index.d.ts.map +1 -0
  3. package/build/index.js +182 -0
  4. package/build/index.js.map +1 -0
  5. package/build/modules/_.d.ts +62 -0
  6. package/build/modules/_.d.ts.map +1 -0
  7. package/build/modules/_.js +75 -0
  8. package/build/modules/_.js.map +1 -0
  9. package/build/modules/did.d.ts +386 -0
  10. package/build/modules/did.d.ts.map +1 -0
  11. package/build/modules/did.js +1013 -0
  12. package/build/modules/did.js.map +1 -0
  13. package/build/modules/feeabstraction.d.ts +409 -0
  14. package/build/modules/feeabstraction.d.ts.map +1 -0
  15. package/build/modules/feeabstraction.js +462 -0
  16. package/build/modules/feeabstraction.js.map +1 -0
  17. package/build/modules/feemarket.d.ts +242 -0
  18. package/build/modules/feemarket.d.ts.map +1 -0
  19. package/build/modules/feemarket.js +296 -0
  20. package/build/modules/feemarket.js.map +1 -0
  21. package/build/modules/resource.d.ts +204 -0
  22. package/build/modules/resource.d.ts.map +1 -0
  23. package/build/modules/resource.js +297 -0
  24. package/build/modules/resource.js.map +1 -0
  25. package/build/package.json +64 -0
  26. package/build/querier.d.ts +62 -0
  27. package/build/querier.d.ts.map +1 -0
  28. package/build/querier.js +86 -0
  29. package/build/querier.js.map +1 -0
  30. package/build/registry.d.ts +18 -0
  31. package/build/registry.d.ts.map +1 -0
  32. package/build/registry.js +23 -0
  33. package/build/registry.js.map +1 -0
  34. package/build/signer.d.ts +190 -0
  35. package/build/signer.d.ts.map +1 -0
  36. package/build/signer.js +547 -0
  37. package/build/signer.js.map +1 -0
  38. package/build/types/index.d.ts +140 -0
  39. package/build/types/index.d.ts.map +1 -0
  40. package/build/types/modules/_.d.ts +62 -0
  41. package/build/types/modules/_.d.ts.map +1 -0
  42. package/build/types/modules/did.d.ts +386 -0
  43. package/build/types/modules/did.d.ts.map +1 -0
  44. package/build/types/modules/feeabstraction.d.ts +409 -0
  45. package/build/types/modules/feeabstraction.d.ts.map +1 -0
  46. package/build/types/modules/feemarket.d.ts +242 -0
  47. package/build/types/modules/feemarket.d.ts.map +1 -0
  48. package/build/types/modules/resource.d.ts +204 -0
  49. package/build/types/modules/resource.d.ts.map +1 -0
  50. package/build/types/querier.d.ts +62 -0
  51. package/build/types/querier.d.ts.map +1 -0
  52. package/build/types/registry.d.ts +18 -0
  53. package/build/types/registry.d.ts.map +1 -0
  54. package/build/types/signer.d.ts +190 -0
  55. package/build/types/signer.d.ts.map +1 -0
  56. package/build/types/types.d.ts +196 -0
  57. package/build/types/types.d.ts.map +1 -0
  58. package/build/types/utils.d.ts +223 -0
  59. package/build/types/utils.d.ts.map +1 -0
  60. package/build/types.d.ts +196 -0
  61. package/build/types.d.ts.map +1 -0
  62. package/build/types.js +43 -0
  63. package/build/types.js.map +1 -0
  64. package/build/utils.d.ts +223 -0
  65. package/build/utils.d.ts.map +1 -0
  66. package/build/utils.js +541 -0
  67. package/build/utils.js.map +1 -0
  68. package/package.json +64 -0
package/build/types.js ADDED
@@ -0,0 +1,43 @@
1
+ /** Supported Cheqd blockchain networks */
2
+ export var CheqdNetwork;
3
+ (function (CheqdNetwork) {
4
+ /** Production network for live transactions */
5
+ CheqdNetwork["Mainnet"] = "mainnet";
6
+ /** Test network for development and testing */
7
+ CheqdNetwork["Testnet"] = "testnet";
8
+ })(CheqdNetwork || (CheqdNetwork = {}));
9
+ /** Supported verification method types for DID documents */
10
+ export var VerificationMethods;
11
+ (function (VerificationMethods) {
12
+ /** Ed25519 verification key (2020 specification) */
13
+ VerificationMethods["Ed255192020"] = "Ed25519VerificationKey2020";
14
+ /** Ed25519 verification key (2018 specification) */
15
+ VerificationMethods["Ed255192018"] = "Ed25519VerificationKey2018";
16
+ /** JSON Web Key (2020 specification) */
17
+ VerificationMethods["JWK"] = "JsonWebKey2020";
18
+ })(VerificationMethods || (VerificationMethods = {}));
19
+ /** Supported algorithms for generating method-specific identifiers */
20
+ export var MethodSpecificIdAlgo;
21
+ (function (MethodSpecificIdAlgo) {
22
+ /** Base58 Bitcoin encoding */
23
+ MethodSpecificIdAlgo["Base58"] = "base58btc";
24
+ /** UUID format */
25
+ MethodSpecificIdAlgo["Uuid"] = "uuid";
26
+ })(MethodSpecificIdAlgo || (MethodSpecificIdAlgo = {}));
27
+ /**
28
+ * Utility object providing type guard functions for ISignInputs validation.
29
+ * Contains helper methods to validate and type-check signing input objects.
30
+ */
31
+ export const ISignInputs = {
32
+ /** Type guard function to check if an object array contains valid ISignInputs */
33
+ isSignInput(object) {
34
+ return object.some((x) => 'privateKeyHex' in x);
35
+ },
36
+ };
37
+ /** Enumeration of supported service types for DID documents */
38
+ export var ServiceType;
39
+ (function (ServiceType) {
40
+ /** Service type for linking domain names to DIDs */
41
+ ServiceType["LinkedDomains"] = "LinkedDomains";
42
+ })(ServiceType || (ServiceType = {}));
43
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAkBA,0CAA0C;AAC1C,MAAM,CAAN,IAAY,YAKX;AALD,WAAY,YAAY;IACvB,+CAA+C;IAC/C,mCAAmB,CAAA;IACnB,+CAA+C;IAC/C,mCAAmB,CAAA;AACpB,CAAC,EALW,YAAY,KAAZ,YAAY,QAKvB;AA8FD,4DAA4D;AAC5D,MAAM,CAAN,IAAY,mBAOX;AAPD,WAAY,mBAAmB;IAC9B,oDAAoD;IACpD,iEAA0C,CAAA;IAC1C,oDAAoD;IACpD,iEAA0C,CAAA;IAC1C,wCAAwC;IACxC,6CAAsB,CAAA;AACvB,CAAC,EAPW,mBAAmB,KAAnB,mBAAmB,QAO9B;AAED,sEAAsE;AACtE,MAAM,CAAN,IAAY,oBAKX;AALD,WAAY,oBAAoB;IAC/B,8BAA8B;IAC9B,4CAAoB,CAAA;IACpB,kBAAkB;IAClB,qCAAa,CAAA;AACd,CAAC,EALW,oBAAoB,KAApB,oBAAoB,QAK/B;AAiFD;;;GAGG;AACH,MAAM,CAAC,MAAM,WAAW,GAAG;IAC1B,iFAAiF;IACjF,WAAW,CAAC,MAAgB;QAC3B,OAAO,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,eAAe,IAAI,CAAC,CAAC,CAAC;IACjD,CAAC;CACD,CAAC;AAEF,+DAA+D;AAC/D,MAAM,CAAN,IAAY,WAGX;AAHD,WAAY,WAAW;IACtB,oDAAoD;IACpD,8CAA+B,CAAA;AAChC,CAAC,EAHW,WAAW,KAAX,WAAW,QAGtB"}
@@ -0,0 +1,223 @@
1
+ import { IKeyPair, IKeyValuePair, ISignInputs, VerificationMethods, TMethodSpecificId, MethodSpecificIdAlgo, TVerificationKey, TVerificationKeyPrefix, CheqdNetwork, IVerificationKeys, VerificationMethod, DIDDocument, SpecValidationResult, Service } from './types.js';
2
+ import { KeyPair } from '@stablelib/ed25519';
3
+ import { DirectSecp256k1HdWallet, DirectSecp256k1Wallet } from '@cosmjs/proto-signing';
4
+ import { EnglishMnemonic as _ } from '@cosmjs/crypto';
5
+ import { Service as ProtoService, DidDoc } from '@cheqd/ts-proto/cheqd/did/v2/index.js';
6
+ import { MsgCreateResourcePayload } from '@cheqd/ts-proto/cheqd/resource/v2/index.js';
7
+ import { Coin } from 'cosmjs-types/cosmos/base/v1beta1/coin';
8
+ import { BackoffOptions } from 'exponential-backoff';
9
+ /**
10
+ * Represents an importable Ed25519 key with hexadecimal encoding.
11
+ * This type ensures type safety for Ed25519 key operations.
12
+ */
13
+ export type TImportableEd25519Key = {
14
+ /** Public key in hexadecimal format */
15
+ publicKeyHex: string;
16
+ /** Private key in hexadecimal format */
17
+ privateKeyHex: string;
18
+ /** Key identifier */
19
+ kid: string;
20
+ /** Key type, must be 'Ed25519' */
21
+ type: 'Ed25519';
22
+ };
23
+ /**
24
+ * Utility object for validating TImportableEd25519Key objects.
25
+ * Provides type guard functionality to ensure key structure integrity.
26
+ */
27
+ export declare const TImportableEd25519Key: {
28
+ /**
29
+ * Type guard to validate if an object is a valid TImportableEd25519Key.
30
+ *
31
+ * @param key - Object to validate
32
+ * @returns True if the object is a valid TImportableEd25519Key
33
+ */
34
+ isValid(key: any): key is TImportableEd25519Key;
35
+ };
36
+ /**
37
+ * Compares two arrays of key-value pairs for equality.
38
+ *
39
+ * @param kv1 - First array of key-value pairs
40
+ * @param kv2 - Second array of key-value pairs
41
+ * @returns True if both arrays contain identical key-value pairs in the same order
42
+ */
43
+ export declare function isEqualKeyValuePair(kv1: IKeyValuePair[], kv2: IKeyValuePair[]): boolean;
44
+ /**
45
+ * Extended English mnemonic class with additional validation patterns.
46
+ * Provides regex pattern matching for mnemonic phrase validation.
47
+ */
48
+ export declare class EnglishMnemonic extends _ {
49
+ /** Regular expression pattern for validating English mnemonic phrases */
50
+ static readonly _mnemonicMatcher: RegExp;
51
+ }
52
+ /**
53
+ * Creates signing inputs from an importable Ed25519 key by matching it with verification methods.
54
+ * Supports multiple verification method types and key formats.
55
+ *
56
+ * @param key - The Ed25519 key to create signing inputs from
57
+ * @param verificationMethod - Array of verification methods to match against
58
+ * @returns Signing inputs containing verification method ID and private key
59
+ * @throws Error if key validation fails or no matching verification method is found
60
+ */
61
+ export declare function createSignInputsFromImportableEd25519Key(key: TImportableEd25519Key, verificationMethod: VerificationMethod[]): ISignInputs;
62
+ /**
63
+ * Creates a raw Ed25519 key pair using the StableLib library.
64
+ *
65
+ * @param seed - Optional seed string for deterministic key generation
66
+ * @returns Raw KeyPair object with publicKey and secretKey as Uint8Arrays
67
+ */
68
+ export declare function createKeyPairRaw(seed?: string): KeyPair;
69
+ /**
70
+ * Creates an Ed25519 key pair with Base64-encoded keys.
71
+ *
72
+ * @param seed - Optional seed string for deterministic key generation
73
+ * @returns Key pair with Base64-encoded public and private keys
74
+ */
75
+ export declare function createKeyPairBase64(seed?: string): IKeyPair;
76
+ /**
77
+ * Creates an Ed25519 key pair with hexadecimal-encoded keys.
78
+ *
79
+ * @param seed - Optional seed string for deterministic key generation
80
+ * @returns Key pair with hexadecimal-encoded public and private keys
81
+ */
82
+ export declare function createKeyPairHex(seed?: string): IKeyPair;
83
+ /**
84
+ * Creates verification keys structure with DID URLs and key identifiers.
85
+ * Supports multiple algorithm types and network configurations.
86
+ *
87
+ * @param publicKey - Public key in base64 or hex format
88
+ * @param algo - Algorithm for method-specific ID generation
89
+ * @param keyFragment - Key fragment for the verification key identifier
90
+ * @param network - Cheqd network (defaults to Testnet)
91
+ * @param methodSpecificId - Optional pre-computed method-specific ID
92
+ * @param didUrl - Optional pre-computed DID URL
93
+ * @returns Verification keys structure with all identifiers
94
+ * @throws Error if public key format is invalid
95
+ */
96
+ export declare function createVerificationKeys(publicKey: string, algo: MethodSpecificIdAlgo, keyFragment: TVerificationKey<TVerificationKeyPrefix, number>, network?: CheqdNetwork, methodSpecificId?: TMethodSpecificId, didUrl?: string): IVerificationKeys;
97
+ /**
98
+ * Creates DID verification methods from verification method types and keys.
99
+ * Supports Ed25519 keys in multiple formats (multibase, base58, JWK).
100
+ *
101
+ * @param verificationMethodTypes - Array of verification method types to create
102
+ * @param verificationKeys - Array of verification keys corresponding to each type
103
+ * @returns Array of formatted verification methods for DID documents
104
+ */
105
+ export declare function createDidVerificationMethod(verificationMethodTypes: VerificationMethods[], verificationKeys: IVerificationKeys[]): VerificationMethod[];
106
+ /**
107
+ * Creates a complete DID document payload with verification methods and controllers.
108
+ *
109
+ * @param verificationMethods - Array of verification methods for the DID
110
+ * @param verificationKeys - Array of verification keys for authentication
111
+ * @param controller - Optional array of controller DIDs (defaults to self-controlled)
112
+ * @returns Complete DID document with all required fields
113
+ * @throws Error if verification methods or keys are missing
114
+ */
115
+ export declare function createDidPayload(verificationMethods: VerificationMethod[], verificationKeys: IVerificationKeys[], controller?: string[]): DIDDocument;
116
+ /**
117
+ * Validates a DID document against the Cheqd specification and converts to protobuf format.
118
+ * Ensures all required fields are present and verification methods are supported.
119
+ *
120
+ * @param didDocument - DID document to validate
121
+ * @returns Validation result with protobuf conversion or error details
122
+ */
123
+ export declare function validateSpecCompliantPayload(didDocument: DIDDocument): SpecValidationResult;
124
+ /**
125
+ * Creates a Cosmos wallet from a seed phrase or private key.
126
+ * Supports both HD wallets from mnemonics and direct key wallets.
127
+ *
128
+ * @param cosmosPayerSeed - Mnemonic phrase or private key hex string
129
+ * @returns Promise resolving to either HD wallet or direct key wallet
130
+ */
131
+ export declare function createCosmosPayerWallet(cosmosPayerSeed: string): Promise<DirectSecp256k1HdWallet | DirectSecp256k1Wallet>;
132
+ /**
133
+ * Converts a raw Ed25519 public key to multibase format with proper multicodec header.
134
+ *
135
+ * @param key - Raw Ed25519 public key as Uint8Array
136
+ * @returns Multibase-encoded string with Ed25519 multicodec prefix
137
+ */
138
+ export declare function toMultibaseRaw(key: Uint8Array): string;
139
+ /**
140
+ * Creates a MsgCreateDidDoc payload ready for signing.
141
+ * Validates the DID document and converts it to protobuf format.
142
+ *
143
+ * @param didPayload - DID document to create message payload from
144
+ * @param versionId - Version identifier for the DID document
145
+ * @returns Encoded message payload bytes ready for signing
146
+ */
147
+ export declare function createMsgCreateDidDocPayloadToSign(didPayload: DIDDocument, versionId: string): Promise<Uint8Array<ArrayBuffer>>;
148
+ /** Alias for createMsgCreateDidDocPayloadToSign - used for DID document updates */
149
+ export declare const createMsgUpdateDidDocPayloadToSign: typeof createMsgCreateDidDocPayloadToSign;
150
+ /**
151
+ * Creates a MsgDeactivateDidDoc payload ready for signing.
152
+ *
153
+ * @param didPayload - DID document containing the ID to deactivate
154
+ * @param versionId - Optional version identifier for the DID document
155
+ * @returns Encoded message payload bytes ready for signing
156
+ */
157
+ export declare function createMsgDeactivateDidDocPayloadToSign(didPayload: DIDDocument, versionId?: string): Uint8Array<ArrayBuffer>;
158
+ /**
159
+ * Creates a resource payload ready for signing.
160
+ *
161
+ * @param payload - Resource payload to encode
162
+ * @returns Encoded resource payload bytes ready for signing
163
+ */
164
+ export declare function createMsgResourcePayloadToSign(payload: Partial<MsgCreateResourcePayload> | MsgCreateResourcePayload): Uint8Array<ArrayBuffer>;
165
+ /**
166
+ * Converts a public key to a Cosmos account address.
167
+ *
168
+ * @param publicKeyHex - Public key in hexadecimal format
169
+ * @returns Bech32-encoded Cosmos account address with 'cheqd' prefix
170
+ */
171
+ export declare function getCosmosAccount(publicKeyHex: string): string;
172
+ /**
173
+ * Checks the balance of all coins for a given address on the blockchain.
174
+ *
175
+ * @param address - Bech32-encoded account address to check balance for
176
+ * @param rpcAddress - RPC endpoint URL of the blockchain node
177
+ * @returns Promise resolving to array of coin balances
178
+ */
179
+ export declare function checkBalance(address: string, rpcAddress: string): Promise<readonly Coin[]>;
180
+ /**
181
+ * Checks if a given input is valid JSON.
182
+ *
183
+ * @param input - Input to validate as JSON
184
+ * @returns True if the input is a valid JSON string
185
+ */
186
+ export declare function isJSON(input: any): boolean;
187
+ /** Default configuration options for exponential backoff retry logic */
188
+ export declare const DefaultBackoffOptions: BackoffOptions;
189
+ export declare function retry<T>(fn: () => Promise<T>, options?: BackoffOptions): Promise<T | undefined>;
190
+ /**
191
+ * Normalizes the authentication property of a DID document to an array of strings.
192
+ * Extracts authentication method identifiers from mixed string/object format.
193
+ *
194
+ * @param didDocument - DID document to normalize authentication for
195
+ * @returns Array of authentication method identifiers
196
+ * @throws Error if authentication section is missing
197
+ */
198
+ export declare function normalizeAuthentication(didDocument: DIDDocument): string[];
199
+ /**
200
+ * Normalizes the controller property of a DID document to an array of strings.
201
+ * Defaults to self-controlled if no controller is specified.
202
+ *
203
+ * @param didDocument - DID document to normalize controller for
204
+ * @returns Array of controller DID identifiers
205
+ */
206
+ export declare function normalizeController(didDocument: DIDDocument): string[];
207
+ /**
208
+ * Normalizes DID document services to protobuf format.
209
+ * Converts service endpoints to arrays and includes optional properties.
210
+ *
211
+ * @param didDocument - DID document containing services to normalize
212
+ * @returns Array of protobuf-formatted services or undefined if no services
213
+ */
214
+ export declare function normalizeService(didDocument: DIDDocument): ProtoService[] | undefined;
215
+ /**
216
+ * Converts protobuf services back to standard DID document service format.
217
+ * Handles special context requirements for LinkedDomains services.
218
+ *
219
+ * @param didDocument - Protobuf DID document containing services to denormalize
220
+ * @returns Array of standard DID document services
221
+ */
222
+ export declare function denormalizeService(didDocument: DidDoc): Service[];
223
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"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"}