@kynesyslabs/demosdk 4.0.4 → 4.0.6
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/build/l2ps/l2ps.d.ts +9 -0
- package/build/l2ps/l2ps.js +43 -4
- package/build/l2ps/l2ps.js.map +1 -1
- package/build/multichain/websdk/solana.d.ts +1 -1
- package/package.json +19 -19
package/build/l2ps/l2ps.d.ts
CHANGED
|
@@ -37,6 +37,15 @@ export interface L2PSEncryptedPayload {
|
|
|
37
37
|
tag: string;
|
|
38
38
|
/** Hash of the original transaction for integrity verification */
|
|
39
39
|
original_hash: string;
|
|
40
|
+
/**
|
|
41
|
+
* Base64-encoded AES-GCM nonce (12 bytes) used for this specific
|
|
42
|
+
* encryption. Required for AES-GCM safety: nonce reuse under the
|
|
43
|
+
* same key catastrophically breaks confidentiality + authentication.
|
|
44
|
+
* Optional in the type for backward compatibility — payloads written
|
|
45
|
+
* by older SDKs predating the per-call-nonce fix do not include it
|
|
46
|
+
* and `decryptTx` falls back to the instance IV for those.
|
|
47
|
+
*/
|
|
48
|
+
nonce?: string;
|
|
40
49
|
}
|
|
41
50
|
/**
|
|
42
51
|
* L2PS (Layer 2 Private Subnets) class for encrypted transaction processing.
|
package/build/l2ps/l2ps.js
CHANGED
|
@@ -139,7 +139,20 @@ class L2PS {
|
|
|
139
139
|
const txString = JSON.stringify(tx);
|
|
140
140
|
const txBuffer = forge.util.createBuffer(txString);
|
|
141
141
|
const cipher = forge.cipher.createCipher('AES-GCM', this.privateKey);
|
|
142
|
-
|
|
142
|
+
// Fresh 96-bit nonce per encryption — the instance IV is no
|
|
143
|
+
// longer used for new ciphertexts. AES-GCM nonce reuse under
|
|
144
|
+
// the same key is catastrophic (loses confidentiality + auth),
|
|
145
|
+
// so this MUST be unique per call.
|
|
146
|
+
//
|
|
147
|
+
// The nonce is also bound into the authenticated envelope as
|
|
148
|
+
// AAD. AES-GCM authentication covers ciphertext + AAD but not
|
|
149
|
+
// the IV itself, so without this an attacker who can modify
|
|
150
|
+
// the stored payload could flip the `nonce` field and force
|
|
151
|
+
// decryption to fail — a targeted DoS against specific
|
|
152
|
+
// ciphertexts. Decrypt mirrors this binding when a per-call
|
|
153
|
+
// nonce is present on the wire.
|
|
154
|
+
const nonce = forge.random.getBytesSync(12);
|
|
155
|
+
cipher.start({ iv: nonce, additionalData: nonce });
|
|
143
156
|
cipher.update(txBuffer);
|
|
144
157
|
if (!cipher.finish()) {
|
|
145
158
|
throw new Error('Failed to encrypt transaction');
|
|
@@ -148,7 +161,8 @@ class L2PS {
|
|
|
148
161
|
l2ps_uid: this.config?.uid || this.id,
|
|
149
162
|
encrypted_data: forge.util.encode64(cipher.output.getBytes()),
|
|
150
163
|
tag: forge.util.encode64(cipher.mode.tag.getBytes()),
|
|
151
|
-
original_hash: tx.hash
|
|
164
|
+
original_hash: tx.hash,
|
|
165
|
+
nonce: forge.util.encode64(nonce)
|
|
152
166
|
};
|
|
153
167
|
const encryptedTxContent = {
|
|
154
168
|
type: "l2psEncryptedTx",
|
|
@@ -212,10 +226,35 @@ class L2PS {
|
|
|
212
226
|
// TODO Verify the signature of the encrypted transaction
|
|
213
227
|
const encryptedData = forge.util.createBuffer(forge.util.decode64(encryptedPayload.encrypted_data));
|
|
214
228
|
const tag = forge.util.createBuffer(forge.util.decode64(encryptedPayload.tag));
|
|
229
|
+
// Per-call nonce (new path) when present in payload; fall
|
|
230
|
+
// back to the instance IV for legacy ciphertexts encrypted
|
|
231
|
+
// before the per-call-nonce fix.
|
|
232
|
+
//
|
|
233
|
+
// `nonce === undefined` is the only legacy signal — any other
|
|
234
|
+
// value (including `""`) is rejected so a malformed payload
|
|
235
|
+
// does not silently fall through to the legacy IV. The decoded
|
|
236
|
+
// nonce MUST be exactly 12 bytes per the AES-GCM contract.
|
|
237
|
+
let iv;
|
|
238
|
+
if (encryptedPayload.nonce === undefined) {
|
|
239
|
+
iv = this.iv;
|
|
240
|
+
}
|
|
241
|
+
else {
|
|
242
|
+
iv = forge.util.decode64(encryptedPayload.nonce);
|
|
243
|
+
if (iv.length !== 12) {
|
|
244
|
+
throw new Error('Invalid encrypted payload nonce: expected a base64-encoded 12-byte value');
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
// Bind the nonce as AAD on the new path so the auth tag
|
|
248
|
+
// covers it — see the matching block in `encryptTx`. Legacy
|
|
249
|
+
// payloads were encrypted without AAD, so we leave it off
|
|
250
|
+
// when falling back to the instance IV.
|
|
215
251
|
const decipher = forge.cipher.createDecipher('AES-GCM', this.privateKey);
|
|
216
252
|
decipher.start({
|
|
217
|
-
iv
|
|
218
|
-
tag
|
|
253
|
+
iv,
|
|
254
|
+
tag,
|
|
255
|
+
...(encryptedPayload.nonce !== undefined
|
|
256
|
+
? { additionalData: iv }
|
|
257
|
+
: {})
|
|
219
258
|
});
|
|
220
259
|
decipher.update(encryptedData);
|
|
221
260
|
if (!decipher.finish()) {
|
package/build/l2ps/l2ps.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"l2ps.js","sourceRoot":"","sources":["../../../src/l2ps/l2ps.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAGH,OAAO,KAAK,MAAM,YAAY,CAAC;AAC/B,OAAO,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"l2ps.js","sourceRoot":"","sources":["../../../src/l2ps/l2ps.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAGH,OAAO,KAAK,MAAM,YAAY,CAAC;AAC/B,OAAO,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AA4C/C;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAqB,IAAI;IAgBrB;;;;;;;;OAQG;IACH,YAAoB,UAAuB,EAAE,EAAe;QACxD,IAAI,CAAC,UAAU,IAAI,CAAC,EAAE,EAAE,CAAC;YACrB,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;QACvD,CAAC;QAED,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;QACrC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;IACtC,CAAC;IAED;;;;;;;;;;;;;;;;OAgBG;IACH,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,UAAmB,EAAE,EAAW;QAChD,MAAM,GAAG,GAAG,UAAU,IAAI,KAAK,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;QACxD,MAAM,UAAU,GAAG,EAAE,IAAI,KAAK,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;QACvD,OAAO,IAAI,IAAI,CAAC,GAAG,EAAE,UAAU,CAAC,CAAC;IACrC,CAAC;IAED;;;;;OAKG;IACH,MAAM,CAAC,WAAW,CAAC,EAAU;QACzB,OAAO,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAClC,CAAC;IAED;;;;OAIG;IACH,MAAM,CAAC,YAAY;QACf,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,CAAC;IAC/C,CAAC;IAED;;;;;OAKG;IACH,MAAM,CAAC,WAAW,CAAC,EAAU;QACzB,OAAO,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAClC,CAAC;IAED;;;;;OAKG;IACH,MAAM,CAAC,cAAc,CAAC,EAAU;QAC5B,OAAO,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IACrC,CAAC;IAED;;;;;;;;;;;;;;;;;;;OAmBG;IACH,KAAK,CAAC,SAAS,CAAC,EAAe,EAAE,cAAoB;QACjD,IAAI,CAAC,EAAE,EAAE,CAAC;YACN,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;QAC9D,CAAC;QAED,IAAI,CAAC;YACD,MAAM,QAAQ,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;YACpC,MAAM,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;YACnD,MAAM,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,YAAY,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;YAErE,4DAA4D;YAC5D,6DAA6D;YAC7D,+DAA+D;YAC/D,mCAAmC;YACnC,EAAE;YACF,6DAA6D;YAC7D,8DAA8D;YAC9D,4DAA4D;YAC5D,4DAA4D;YAC5D,uDAAuD;YACvD,4DAA4D;YAC5D,gCAAgC;YAChC,MAAM,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;YAC5C,MAAM,CAAC,KAAK,CAAC,EAAE,EAAE,EAAE,KAAK,EAAE,cAAc,EAAE,KAAK,EAAE,CAAC,CAAC;YACnD,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;YAExB,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC;gBACnB,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;YACrD,CAAC;YAED,MAAM,gBAAgB,GAAyB;gBAC3C,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE,GAAG,IAAI,IAAI,CAAC,EAAE;gBACrC,cAAc,EAAE,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC;gBAC7D,GAAG,EAAE,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;gBACpD,aAAa,EAAE,EAAE,CAAC,IAAI;gBACtB,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;aACpC,CAAC;YAEF,MAAM,kBAAkB,GAA2B;gBAC/C,IAAI,EAAE,iBAAiB;gBACvB,IAAI,EAAE,cAAc,IAAI,EAAE,CAAC,OAAO,CAAC,IAAI;gBACvC,EAAE,EAAE,EAAE,CAAC,OAAO,CAAC,EAAE;gBACjB,oBAAoB,EAAE,EAAE,CAAC,OAAO,CAAC,oBAAoB;gBACrD,MAAM,EAAE,CAAC;gBACT,IAAI,EAAE,CAAC,iBAAiB,EAAE,gBAAgB,CAAC;gBAC3C,SAAS,EAAE,EAAE;gBACb,KAAK,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK;gBACvB,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE;gBACrB,eAAe,EAAE,EAAE,CAAC,OAAO,CAAC,eAAe;aAC9C,CAAC;YAEF,MAAM,WAAW,GAAoB;gBACjC,OAAO,EAAE,kBAAkB;gBAC3B,iBAAiB,EAAE,EAAE,CAAC,iBAAiB;gBACvC,SAAS,EAAE,IAAI;gBACf,IAAI,EAAE,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,kBAAkB,CAAC,CAAC;gBACxD,MAAM,EAAE,SAAS;gBACjB,WAAW,EAAE,IAAI;aACpB,CAAC;YAEF,OAAO,WAAW,CAAC;QACvB,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YAClB,MAAM,IAAI,KAAK,CAAC,sBAAsB,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC;QAC3D,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;;;;;;;;OAmBG;IACH,KAAK,CAAC,SAAS,CAAC,WAA4B;QACxC,IAAI,CAAC,WAAW,IAAI,WAAW,CAAC,OAAO,CAAC,IAAI,KAAK,iBAAiB,EAAE,CAAC;YACjE,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;QACnE,CAAC;QAED,IAAI,CAAC;YACD,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC,GAAG,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC;YACrD,IAAI,QAAQ,KAAK,iBAAiB,EAAE,CAAC;gBACjC,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;YAC/D,CAAC;YAED,MAAM,gBAAgB,GAAG,OAA+B,CAAC;YAEzD,IAAI,gBAAgB,CAAC,QAAQ,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,IAAI,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC;gBAC9D,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;YAChE,CAAC;YAED,yDAAyD;YAEzD,MAAM,aAAa,GAAG,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC,CAAC;YACpG,MAAM,GAAG,GAAG,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,CAAC;YAE/E,0DAA0D;YAC1D,2DAA2D;YAC3D,iCAAiC;YACjC,EAAE;YACF,8DAA8D;YAC9D,4DAA4D;YAC5D,+DAA+D;YAC/D,2DAA2D;YAC3D,IAAI,EAAe,CAAC;YACpB,IAAI,gBAAgB,CAAC,KAAK,KAAK,SAAS,EAAE,CAAC;gBACvC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;YACjB,CAAC;iBAAM,CAAC;gBACJ,EAAE,GAAG,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;gBACjD,IAAI,EAAE,CAAC,MAAM,KAAK,EAAE,EAAE,CAAC;oBACnB,MAAM,IAAI,KAAK,CACX,0EAA0E,CAC7E,CAAC;gBACN,CAAC;YACL,CAAC;YAED,wDAAwD;YACxD,4DAA4D;YAC5D,0DAA0D;YAC1D,wCAAwC;YACxC,MAAM,QAAQ,GAAG,KAAK,CAAC,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;YACzE,QAAQ,CAAC,KAAK,CAAC;gBACX,EAAE;gBACF,GAAG;gBACH,GAAG,CAAC,gBAAgB,CAAC,KAAK,KAAK,SAAS;oBACpC,CAAC,CAAC,EAAE,cAAc,EAAE,EAAE,EAAE;oBACxB,CAAC,CAAC,EAAE,CAAC;aACZ,CAAC,CAAC;YAEH,QAAQ,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;YAE/B,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,EAAE,CAAC;gBACrB,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;YAC7E,CAAC;YAED,MAAM,eAAe,GAAG,QAAQ,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC;YACnD,MAAM,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,eAAe,CAAgB,CAAC;YAE9D,IAAI,UAAU,CAAC,IAAI,KAAK,gBAAgB,CAAC,aAAa,EAAE,CAAC;gBACrD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;YAC3D,CAAC;YAED,OAAO,UAAU,CAAC;QACtB,CAAC;QAAC,OAAO,KAAU,EAAE,CAAC;YAClB,MAAM,IAAI,KAAK,CAAC,sBAAsB,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC;QAC3D,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK;QACD,OAAO,IAAI,CAAC,EAAE,CAAC;IACnB,CAAC;IAED;;;;OAIG;IACH,SAAS;QACL,OAAO,IAAI,CAAC,MAAM,CAAC;IACvB,CAAC;IAED;;;;;OAKG;IACH,SAAS,CAAC,MAAkB;QACxB,IAAI,CAAC,MAAM,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC;YACzB,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;QAChE,CAAC;QACD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACzB,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,iBAAiB;QACnB,OAAO,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;IAC5D,CAAC;;AA7TD,6DAA6D;AAC9C,cAAS,GAAsB,IAAI,GAAG,EAAE,CAAC;eAFvC,IAAI"}
|
|
@@ -13,6 +13,6 @@ export declare class SOLANA extends SolanaCore {
|
|
|
13
13
|
* @returns The wallet object
|
|
14
14
|
*/
|
|
15
15
|
connectWallet(privateKey?: string): Promise<Keypair | PhantomProvider>;
|
|
16
|
-
signTransactions(transactions: VersionedTransaction[], options?: SolanaSignTxOptions): Promise<
|
|
16
|
+
signTransactions(transactions: VersionedTransaction[], options?: SolanaSignTxOptions): Promise<Uint8Array<ArrayBufferLike>[] | Buffer<ArrayBufferLike>[]>;
|
|
17
17
|
disconnect(): Promise<boolean>;
|
|
18
18
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kynesyslabs/demosdk",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Demosdk is a JavaScript/TypeScript SDK that provides a unified interface for interacting with Demos network",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -115,19 +115,19 @@
|
|
|
115
115
|
"@noble/post-quantum": "^0.4.1",
|
|
116
116
|
"@project-serum/anchor": "^0.26.0",
|
|
117
117
|
"@roamhq/wrtc": "^0.8.0",
|
|
118
|
-
"@scure/bip39": "^2.0
|
|
118
|
+
"@scure/bip39": "^2.2.0",
|
|
119
119
|
"@simplewebauthn/browser": "^11.0.0",
|
|
120
120
|
"@simplewebauthn/server": "^11.0.0",
|
|
121
121
|
"@solana/buffer-layout": "^4.0.1",
|
|
122
122
|
"@solana/web3.js": "1.98.0",
|
|
123
|
-
"@ton/core": "^0.62.
|
|
123
|
+
"@ton/core": "^0.62.1",
|
|
124
124
|
"@ton/crypto": "^3.3.0",
|
|
125
|
-
"@ton/ton": "^16.
|
|
126
|
-
"@types/simple-peer": "^9.11.
|
|
127
|
-
"axios": "^1.
|
|
125
|
+
"@ton/ton": "^16.2.4",
|
|
126
|
+
"@types/simple-peer": "^9.11.9",
|
|
127
|
+
"axios": "^1.16.1",
|
|
128
128
|
"big-integer": "^1.6.52",
|
|
129
129
|
"bignumber.js": "^9.3.1",
|
|
130
|
-
"bip32": "^5.0.
|
|
130
|
+
"bip32": "^5.0.1",
|
|
131
131
|
"bip39": "^3.1.0",
|
|
132
132
|
"bitcoinjs-lib": "^6.1.7",
|
|
133
133
|
"bitcoinjs-message": "^2.2.0",
|
|
@@ -135,32 +135,32 @@
|
|
|
135
135
|
"buffer": "^6.0.3",
|
|
136
136
|
"comlink": "^4.4.2",
|
|
137
137
|
"dotenv": "^16.6.1",
|
|
138
|
-
"ecpair": "^3.0.
|
|
138
|
+
"ecpair": "^3.0.1",
|
|
139
139
|
"ed25519-hd-key": "^1.3.0",
|
|
140
|
-
"ethers": "^6.
|
|
140
|
+
"ethers": "^6.16.0",
|
|
141
141
|
"falcon-js": "^1.0.0",
|
|
142
142
|
"falcon-sign": "^1.0.4",
|
|
143
143
|
"js-sha256": "^0.11.1",
|
|
144
144
|
"js-sha3": "^0.9.3",
|
|
145
|
-
"libsodium-wrappers-sumo": "^0.7.
|
|
146
|
-
"lodash": "^4.
|
|
145
|
+
"libsodium-wrappers-sumo": "^0.7.16",
|
|
146
|
+
"lodash": "^4.18.1",
|
|
147
147
|
"micro-ed25519-hdkey": "^0.1.2",
|
|
148
|
-
"mlkem": "^2.
|
|
148
|
+
"mlkem": "^2.7.0",
|
|
149
149
|
"near-api-js": "^4.0.4",
|
|
150
|
-
"node-forge": "^1.
|
|
150
|
+
"node-forge": "^1.4.0",
|
|
151
151
|
"node-seal": "^5.1.7",
|
|
152
152
|
"ntru": "^4.0.4",
|
|
153
153
|
"poseidon-lite": "^0.3.0",
|
|
154
154
|
"pqcrypto": "^1.0.1",
|
|
155
|
-
"protobufjs": "^7.
|
|
155
|
+
"protobufjs": "^7.6.2",
|
|
156
156
|
"ripple-keypairs": "^2.0.0",
|
|
157
157
|
"rubic-sdk": "^5.57.4",
|
|
158
158
|
"simple-peer": "^9.11.1",
|
|
159
|
-
"socket.io-client": "^4.8.
|
|
159
|
+
"socket.io-client": "^4.8.3",
|
|
160
160
|
"sphincs": "^3.0.4",
|
|
161
161
|
"superdilithium": "^2.0.6",
|
|
162
162
|
"tlsn-js": "0.1.0-alpha.12.0",
|
|
163
|
-
"tronweb": "^6.
|
|
163
|
+
"tronweb": "^6.3.0",
|
|
164
164
|
"web3": "^4.16.0",
|
|
165
165
|
"xrpl": "^3.1.0"
|
|
166
166
|
},
|
|
@@ -168,14 +168,14 @@
|
|
|
168
168
|
"@orbs-network/ton-access": "^2.3.3",
|
|
169
169
|
"@types/cors": "^2.8.19",
|
|
170
170
|
"@types/jest": "^29.5.14",
|
|
171
|
-
"@types/node": "^20.19.
|
|
171
|
+
"@types/node": "^20.19.41",
|
|
172
172
|
"@types/node-forge": "^1.3.14",
|
|
173
173
|
"jest": "^29.7.0",
|
|
174
174
|
"resolve-tspaths": "^0.8.23",
|
|
175
|
-
"ts-jest": "^29.4.
|
|
175
|
+
"ts-jest": "^29.4.11",
|
|
176
176
|
"ts-node": "^10.9.2",
|
|
177
177
|
"tsconfig-paths": "^4.2.0",
|
|
178
178
|
"typedoc": "^0.26.11",
|
|
179
|
-
"typescript": "^5.9.
|
|
179
|
+
"typescript": "^5.9.3"
|
|
180
180
|
}
|
|
181
181
|
}
|