@dynamic-labs-wallet/browser-wallet-client 0.0.82 → 0.0.83
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/index.cjs.js +21 -14
- package/index.esm.js +21 -14
- package/package.json +2 -2
- package/src/client/client.d.ts +8 -7
- package/src/client/client.d.ts.map +1 -1
package/index.cjs.js
CHANGED
|
@@ -365,7 +365,7 @@ class DynamicWalletClient {
|
|
|
365
365
|
password
|
|
366
366
|
});
|
|
367
367
|
}
|
|
368
|
-
async signRawMessage({ message, accountAddress, password = undefined }) {
|
|
368
|
+
async signRawMessage({ message, accountAddress, password = undefined, signedSessionId }) {
|
|
369
369
|
await this.initializeMessageTransport();
|
|
370
370
|
if (!this.iframeMessageHandler) {
|
|
371
371
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -374,7 +374,8 @@ class DynamicWalletClient {
|
|
|
374
374
|
chainName: this.chainName,
|
|
375
375
|
message,
|
|
376
376
|
accountAddress,
|
|
377
|
-
password
|
|
377
|
+
password,
|
|
378
|
+
signedSessionId
|
|
378
379
|
});
|
|
379
380
|
}
|
|
380
381
|
/**
|
|
@@ -387,7 +388,7 @@ class DynamicWalletClient {
|
|
|
387
388
|
* SUI:
|
|
388
389
|
* const txBytes = await txb.build({ client });
|
|
389
390
|
* const txString = Buffer.from(txBytes).toString("hex");
|
|
390
|
-
*/ async signTransaction({ senderAddress, transaction, password = undefined }) {
|
|
391
|
+
*/ async signTransaction({ senderAddress, transaction, password = undefined, signedSessionId }) {
|
|
391
392
|
await this.initializeMessageTransport();
|
|
392
393
|
if (!this.iframeMessageHandler) {
|
|
393
394
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -396,10 +397,11 @@ class DynamicWalletClient {
|
|
|
396
397
|
chainName: this.chainName,
|
|
397
398
|
senderAddress,
|
|
398
399
|
transaction,
|
|
399
|
-
password
|
|
400
|
+
password,
|
|
401
|
+
signedSessionId
|
|
400
402
|
});
|
|
401
403
|
}
|
|
402
|
-
async backupKeySharesToGoogleDrive({ accountAddress, password = undefined }) {
|
|
404
|
+
async backupKeySharesToGoogleDrive({ accountAddress, password = undefined, signedSessionId }) {
|
|
403
405
|
await this.initializeMessageTransport();
|
|
404
406
|
if (!this.iframeMessageHandler) {
|
|
405
407
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -407,10 +409,11 @@ class DynamicWalletClient {
|
|
|
407
409
|
return this.iframeMessageHandler.backupKeySharesToGoogleDrive({
|
|
408
410
|
chainName: this.chainName,
|
|
409
411
|
accountAddress,
|
|
410
|
-
password
|
|
412
|
+
password,
|
|
413
|
+
signedSessionId
|
|
411
414
|
});
|
|
412
415
|
}
|
|
413
|
-
async restoreBackupFromGoogleDrive({ accountAddress, displayContainer, password }) {
|
|
416
|
+
async restoreBackupFromGoogleDrive({ accountAddress, displayContainer, password, signedSessionId }) {
|
|
414
417
|
const { iframeDisplay } = await this.initializeIframeDisplayForContainer({
|
|
415
418
|
container: displayContainer
|
|
416
419
|
});
|
|
@@ -420,10 +423,11 @@ class DynamicWalletClient {
|
|
|
420
423
|
return iframeDisplay.restoreBackupFromGoogleDrive({
|
|
421
424
|
chainName: this.chainName,
|
|
422
425
|
accountAddress,
|
|
423
|
-
password
|
|
426
|
+
password,
|
|
427
|
+
signedSessionId
|
|
424
428
|
});
|
|
425
429
|
}
|
|
426
|
-
async refreshWalletAccountShares({ accountAddress, password }) {
|
|
430
|
+
async refreshWalletAccountShares({ accountAddress, password, signedSessionId }) {
|
|
427
431
|
await this.initializeMessageTransport();
|
|
428
432
|
if (!this.iframeMessageHandler) {
|
|
429
433
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -431,10 +435,11 @@ class DynamicWalletClient {
|
|
|
431
435
|
return this.iframeMessageHandler.refreshWalletAccountShares({
|
|
432
436
|
chainName: this.chainName,
|
|
433
437
|
accountAddress: accountAddress,
|
|
434
|
-
password: password
|
|
438
|
+
password: password,
|
|
439
|
+
signedSessionId
|
|
435
440
|
});
|
|
436
441
|
}
|
|
437
|
-
async reshare({ accountAddress, oldThresholdSignatureScheme, newThresholdSignatureScheme, password }) {
|
|
442
|
+
async reshare({ accountAddress, oldThresholdSignatureScheme, newThresholdSignatureScheme, password, signedSessionId }) {
|
|
438
443
|
await this.initializeMessageTransport();
|
|
439
444
|
if (!this.iframeMessageHandler) {
|
|
440
445
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -444,7 +449,8 @@ class DynamicWalletClient {
|
|
|
444
449
|
accountAddress,
|
|
445
450
|
oldThresholdSignatureScheme,
|
|
446
451
|
newThresholdSignatureScheme,
|
|
447
|
-
password
|
|
452
|
+
password,
|
|
453
|
+
signedSessionId
|
|
448
454
|
});
|
|
449
455
|
}
|
|
450
456
|
async exportPrivateKey({ accountAddress, displayContainer, password }) {
|
|
@@ -473,7 +479,7 @@ class DynamicWalletClient {
|
|
|
473
479
|
signedSessionId
|
|
474
480
|
});
|
|
475
481
|
}
|
|
476
|
-
async updatePassword({ accountAddress, existingPassword, newPassword }) {
|
|
482
|
+
async updatePassword({ accountAddress, existingPassword, newPassword, signedSessionId }) {
|
|
477
483
|
await this.initializeMessageTransport();
|
|
478
484
|
if (!this.iframeMessageHandler) {
|
|
479
485
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -482,7 +488,8 @@ class DynamicWalletClient {
|
|
|
482
488
|
chainName: this.chainName,
|
|
483
489
|
accountAddress,
|
|
484
490
|
existingPassword,
|
|
485
|
-
newPassword
|
|
491
|
+
newPassword,
|
|
492
|
+
signedSessionId
|
|
486
493
|
});
|
|
487
494
|
}
|
|
488
495
|
async importPrivateKey({ privateKey, thresholdSignatureScheme }) {
|
package/index.esm.js
CHANGED
|
@@ -364,7 +364,7 @@ class DynamicWalletClient {
|
|
|
364
364
|
password
|
|
365
365
|
});
|
|
366
366
|
}
|
|
367
|
-
async signRawMessage({ message, accountAddress, password = undefined }) {
|
|
367
|
+
async signRawMessage({ message, accountAddress, password = undefined, signedSessionId }) {
|
|
368
368
|
await this.initializeMessageTransport();
|
|
369
369
|
if (!this.iframeMessageHandler) {
|
|
370
370
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -373,7 +373,8 @@ class DynamicWalletClient {
|
|
|
373
373
|
chainName: this.chainName,
|
|
374
374
|
message,
|
|
375
375
|
accountAddress,
|
|
376
|
-
password
|
|
376
|
+
password,
|
|
377
|
+
signedSessionId
|
|
377
378
|
});
|
|
378
379
|
}
|
|
379
380
|
/**
|
|
@@ -386,7 +387,7 @@ class DynamicWalletClient {
|
|
|
386
387
|
* SUI:
|
|
387
388
|
* const txBytes = await txb.build({ client });
|
|
388
389
|
* const txString = Buffer.from(txBytes).toString("hex");
|
|
389
|
-
*/ async signTransaction({ senderAddress, transaction, password = undefined }) {
|
|
390
|
+
*/ async signTransaction({ senderAddress, transaction, password = undefined, signedSessionId }) {
|
|
390
391
|
await this.initializeMessageTransport();
|
|
391
392
|
if (!this.iframeMessageHandler) {
|
|
392
393
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -395,10 +396,11 @@ class DynamicWalletClient {
|
|
|
395
396
|
chainName: this.chainName,
|
|
396
397
|
senderAddress,
|
|
397
398
|
transaction,
|
|
398
|
-
password
|
|
399
|
+
password,
|
|
400
|
+
signedSessionId
|
|
399
401
|
});
|
|
400
402
|
}
|
|
401
|
-
async backupKeySharesToGoogleDrive({ accountAddress, password = undefined }) {
|
|
403
|
+
async backupKeySharesToGoogleDrive({ accountAddress, password = undefined, signedSessionId }) {
|
|
402
404
|
await this.initializeMessageTransport();
|
|
403
405
|
if (!this.iframeMessageHandler) {
|
|
404
406
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -406,10 +408,11 @@ class DynamicWalletClient {
|
|
|
406
408
|
return this.iframeMessageHandler.backupKeySharesToGoogleDrive({
|
|
407
409
|
chainName: this.chainName,
|
|
408
410
|
accountAddress,
|
|
409
|
-
password
|
|
411
|
+
password,
|
|
412
|
+
signedSessionId
|
|
410
413
|
});
|
|
411
414
|
}
|
|
412
|
-
async restoreBackupFromGoogleDrive({ accountAddress, displayContainer, password }) {
|
|
415
|
+
async restoreBackupFromGoogleDrive({ accountAddress, displayContainer, password, signedSessionId }) {
|
|
413
416
|
const { iframeDisplay } = await this.initializeIframeDisplayForContainer({
|
|
414
417
|
container: displayContainer
|
|
415
418
|
});
|
|
@@ -419,10 +422,11 @@ class DynamicWalletClient {
|
|
|
419
422
|
return iframeDisplay.restoreBackupFromGoogleDrive({
|
|
420
423
|
chainName: this.chainName,
|
|
421
424
|
accountAddress,
|
|
422
|
-
password
|
|
425
|
+
password,
|
|
426
|
+
signedSessionId
|
|
423
427
|
});
|
|
424
428
|
}
|
|
425
|
-
async refreshWalletAccountShares({ accountAddress, password }) {
|
|
429
|
+
async refreshWalletAccountShares({ accountAddress, password, signedSessionId }) {
|
|
426
430
|
await this.initializeMessageTransport();
|
|
427
431
|
if (!this.iframeMessageHandler) {
|
|
428
432
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -430,10 +434,11 @@ class DynamicWalletClient {
|
|
|
430
434
|
return this.iframeMessageHandler.refreshWalletAccountShares({
|
|
431
435
|
chainName: this.chainName,
|
|
432
436
|
accountAddress: accountAddress,
|
|
433
|
-
password: password
|
|
437
|
+
password: password,
|
|
438
|
+
signedSessionId
|
|
434
439
|
});
|
|
435
440
|
}
|
|
436
|
-
async reshare({ accountAddress, oldThresholdSignatureScheme, newThresholdSignatureScheme, password }) {
|
|
441
|
+
async reshare({ accountAddress, oldThresholdSignatureScheme, newThresholdSignatureScheme, password, signedSessionId }) {
|
|
437
442
|
await this.initializeMessageTransport();
|
|
438
443
|
if (!this.iframeMessageHandler) {
|
|
439
444
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -443,7 +448,8 @@ class DynamicWalletClient {
|
|
|
443
448
|
accountAddress,
|
|
444
449
|
oldThresholdSignatureScheme,
|
|
445
450
|
newThresholdSignatureScheme,
|
|
446
|
-
password
|
|
451
|
+
password,
|
|
452
|
+
signedSessionId
|
|
447
453
|
});
|
|
448
454
|
}
|
|
449
455
|
async exportPrivateKey({ accountAddress, displayContainer, password }) {
|
|
@@ -472,7 +478,7 @@ class DynamicWalletClient {
|
|
|
472
478
|
signedSessionId
|
|
473
479
|
});
|
|
474
480
|
}
|
|
475
|
-
async updatePassword({ accountAddress, existingPassword, newPassword }) {
|
|
481
|
+
async updatePassword({ accountAddress, existingPassword, newPassword, signedSessionId }) {
|
|
476
482
|
await this.initializeMessageTransport();
|
|
477
483
|
if (!this.iframeMessageHandler) {
|
|
478
484
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -481,7 +487,8 @@ class DynamicWalletClient {
|
|
|
481
487
|
chainName: this.chainName,
|
|
482
488
|
accountAddress,
|
|
483
489
|
existingPassword,
|
|
484
|
-
newPassword
|
|
490
|
+
newPassword,
|
|
491
|
+
signedSessionId
|
|
485
492
|
});
|
|
486
493
|
}
|
|
487
494
|
async importPrivateKey({ privateKey, thresholdSignatureScheme }) {
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs-wallet/browser-wallet-client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.83",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@dynamic-labs-wallet/core": "0.0.
|
|
6
|
+
"@dynamic-labs-wallet/core": "0.0.83",
|
|
7
7
|
"@dynamic-labs/message-transport": "^4.9.9",
|
|
8
8
|
"@dynamic-labs/logger": "^4.9.9",
|
|
9
9
|
"@noble/hashes": "1.7.1"
|
package/src/client/client.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ export declare class DynamicWalletClient {
|
|
|
79
79
|
requiresPasswordForOperation({ accountAddress, walletOperation, }: Omit<RequiresPasswordForOperationRequest, 'chainName'>): Promise<boolean>;
|
|
80
80
|
isPasswordEncrypted({ accountAddress, }: Omit<IsPasswordEncryptedRequest, 'chainName'>): Promise<boolean>;
|
|
81
81
|
signMessage({ message, accountAddress, password, }: Omit<SignMessageRequest, 'chainName'>): Promise<string>;
|
|
82
|
-
signRawMessage({ message, accountAddress, password, }: Omit<SignRawMessageRequest, 'chainName'>): Promise<string>;
|
|
82
|
+
signRawMessage({ message, accountAddress, password, signedSessionId, }: Omit<SignRawMessageRequest, 'chainName'>): Promise<string>;
|
|
83
83
|
/**
|
|
84
84
|
* Signs a transaction and returns the signature, @transaction is a string of the serialized transaction
|
|
85
85
|
* EVM:
|
|
@@ -91,22 +91,23 @@ export declare class DynamicWalletClient {
|
|
|
91
91
|
* const txBytes = await txb.build({ client });
|
|
92
92
|
* const txString = Buffer.from(txBytes).toString("hex");
|
|
93
93
|
*/
|
|
94
|
-
signTransaction({ senderAddress, transaction, password, }: Omit<SignTransactionRequest, 'chainName'>): Promise<string>;
|
|
95
|
-
backupKeySharesToGoogleDrive({ accountAddress, password, }: Omit<BackupKeySharesToGoogleDriveRequest, 'chainName'>): Promise<void>;
|
|
96
|
-
restoreBackupFromGoogleDrive({ accountAddress, displayContainer, password, }: {
|
|
94
|
+
signTransaction({ senderAddress, transaction, password, signedSessionId, }: Omit<SignTransactionRequest, 'chainName'>): Promise<string>;
|
|
95
|
+
backupKeySharesToGoogleDrive({ accountAddress, password, signedSessionId, }: Omit<BackupKeySharesToGoogleDriveRequest, 'chainName'>): Promise<void>;
|
|
96
|
+
restoreBackupFromGoogleDrive({ accountAddress, displayContainer, password, signedSessionId, }: {
|
|
97
97
|
accountAddress: string;
|
|
98
98
|
displayContainer: HTMLElement;
|
|
99
99
|
password?: string;
|
|
100
|
+
signedSessionId?: string;
|
|
100
101
|
}): Promise<void>;
|
|
101
|
-
refreshWalletAccountShares({ accountAddress, password, }: Omit<RefreshWalletAccountSharesRequest, 'chainName'>): Promise<void>;
|
|
102
|
-
reshare({ accountAddress, oldThresholdSignatureScheme, newThresholdSignatureScheme, password, }: Omit<ReshareRequest, 'chainName'>): Promise<void>;
|
|
102
|
+
refreshWalletAccountShares({ accountAddress, password, signedSessionId, }: Omit<RefreshWalletAccountSharesRequest, 'chainName'>): Promise<void>;
|
|
103
|
+
reshare({ accountAddress, oldThresholdSignatureScheme, newThresholdSignatureScheme, password, signedSessionId, }: Omit<ReshareRequest, 'chainName'>): Promise<void>;
|
|
103
104
|
exportPrivateKey({ accountAddress, displayContainer, password, }: {
|
|
104
105
|
accountAddress: string;
|
|
105
106
|
displayContainer: HTMLElement;
|
|
106
107
|
password?: string;
|
|
107
108
|
}): Promise<void>;
|
|
108
109
|
verifyPassword({ accountAddress, password, walletOperation, signedSessionId, }: Omit<VerifyPasswordRequest, 'chainName'>): Promise<void>;
|
|
109
|
-
updatePassword({ accountAddress, existingPassword, newPassword, }: Omit<UpdatePasswordRequest, 'chainName'>): Promise<void>;
|
|
110
|
+
updatePassword({ accountAddress, existingPassword, newPassword, signedSessionId, }: Omit<UpdatePasswordRequest, 'chainName'>): Promise<void>;
|
|
110
111
|
importPrivateKey({ privateKey, thresholdSignatureScheme, }: Omit<ImportPrivateKeyRequest, 'chainName'>): Promise<CreateWalletAccountResponse>;
|
|
111
112
|
exportClientKeyshares({ accountAddress, password, signedSessionId, }: Omit<ExportClientKeysharesRequest, 'chainName'>): Promise<void>;
|
|
112
113
|
offlineExportPrivateKey({ keyShares, derivationPath, }: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/client/client.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/client/client.ts"],"names":[],"mappings":"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"}
|