@dynamic-labs-wallet/browser-wallet-client 0.0.0-beta.154.0 → 0.0.0-beta.154.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/index.cjs.js
CHANGED
|
@@ -74,7 +74,7 @@ class iframeMessageHandler {
|
|
|
74
74
|
return this.requestChannel.request('isPasswordEncrypted', request);
|
|
75
75
|
}
|
|
76
76
|
async backupKeySharesToGoogleDrive(request) {
|
|
77
|
-
|
|
77
|
+
await this.requestChannel.request('backupKeySharesToGoogleDrive', request);
|
|
78
78
|
}
|
|
79
79
|
async restoreBackupFromGoogleDrive(request) {
|
|
80
80
|
return this.requestChannel.request('restoreBackupFromGoogleDrive', request);
|
|
@@ -189,12 +189,11 @@ class DynamicWalletClient {
|
|
|
189
189
|
instanceId: (_this_instanceId = this.instanceId) != null ? _this_instanceId : '',
|
|
190
190
|
hostOrigin: window.location.origin,
|
|
191
191
|
environmentId: this.environmentId,
|
|
192
|
-
authToken: this.authToken,
|
|
193
192
|
baseApiUrl: this.baseApiUrl,
|
|
194
193
|
baseMPCRelayApiUrl: this.baseMPCRelayApiUrl,
|
|
195
194
|
chain: this.chainName
|
|
196
195
|
});
|
|
197
|
-
iframe.src = `${this.iframeDomain}/waas/${this.environmentId}?${params.toString()}`;
|
|
196
|
+
iframe.src = `${this.iframeDomain}/waas-v1/${this.environmentId}?${params.toString()}`;
|
|
198
197
|
this.logger.debug('Creating iframe with src:', iframe.src);
|
|
199
198
|
document.body.appendChild(iframe);
|
|
200
199
|
iframe.onload = ()=>{
|
|
@@ -230,12 +229,11 @@ class DynamicWalletClient {
|
|
|
230
229
|
instanceId: (_this_instanceId = this.instanceId) != null ? _this_instanceId : '',
|
|
231
230
|
hostOrigin: window.location.origin,
|
|
232
231
|
environmentId: this.environmentId,
|
|
233
|
-
authToken: this.authToken,
|
|
234
232
|
baseApiUrl: this.baseApiUrl,
|
|
235
233
|
baseMPCRelayApiUrl: this.baseMPCRelayApiUrl,
|
|
236
234
|
chain: this.chainName
|
|
237
235
|
});
|
|
238
|
-
iframe.src = `${this.iframeDomain}/waas/${this.environmentId}?${params.toString()}`;
|
|
236
|
+
iframe.src = `${this.iframeDomain}/waas-v1/${this.environmentId}?${params.toString()}`;
|
|
239
237
|
this.logger.debug('Creating iframe with src:', iframe.src);
|
|
240
238
|
// Add iframe to the provided container
|
|
241
239
|
container.appendChild(iframe);
|
|
@@ -290,7 +288,7 @@ class DynamicWalletClient {
|
|
|
290
288
|
}
|
|
291
289
|
return this.iframeMessageHandler.getWallets();
|
|
292
290
|
}
|
|
293
|
-
async getWallet({ accountAddress, walletOperation }) {
|
|
291
|
+
async getWallet({ accountAddress, walletOperation = core.WalletOperation.NO_OPERATION }) {
|
|
294
292
|
await this.initializeIframeCommunication();
|
|
295
293
|
if (!this.iframeMessageHandler) {
|
|
296
294
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -307,7 +305,7 @@ class DynamicWalletClient {
|
|
|
307
305
|
}
|
|
308
306
|
return this.iframeMessageHandler.createWalletAccount(thresholdSignatureScheme, password);
|
|
309
307
|
}
|
|
310
|
-
async requiresPasswordForOperation({ accountAddress, walletOperation }) {
|
|
308
|
+
async requiresPasswordForOperation({ accountAddress, walletOperation = core.WalletOperation.REACH_THRESHOLD }) {
|
|
311
309
|
await this.initializeIframeCommunication();
|
|
312
310
|
if (!this.iframeMessageHandler) {
|
|
313
311
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -405,7 +403,7 @@ class DynamicWalletClient {
|
|
|
405
403
|
password
|
|
406
404
|
});
|
|
407
405
|
}
|
|
408
|
-
async verifyPassword({ accountAddress, password, walletOperation }) {
|
|
406
|
+
async verifyPassword({ accountAddress, password, walletOperation = core.WalletOperation.NO_OPERATION }) {
|
|
409
407
|
await this.initializeIframeCommunication();
|
|
410
408
|
if (!this.iframeMessageHandler) {
|
|
411
409
|
throw new Error('Iframe message handler not initialized');
|
package/index.esm.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { parseMessageTransportData, createRequestChannel, applyDefaultMessageOrigin, createMessageTransport } from '@dynamic-labs/message-transport';
|
|
2
2
|
import { Logger } from '@dynamic-labs/logger';
|
|
3
|
-
import { getEnvironmentFromUrl, IFRAME_DOMAIN_MAP } from '@dynamic-labs-wallet/core';
|
|
3
|
+
import { WalletOperation, getEnvironmentFromUrl, IFRAME_DOMAIN_MAP } from '@dynamic-labs-wallet/core';
|
|
4
4
|
export { MPC_RELAY_PREPROD_API_URL, MPC_RELAY_PROD_API_URL, ThresholdSignatureScheme, WalletOperation } from '@dynamic-labs-wallet/core';
|
|
5
5
|
export { BIP340KeygenResult, EcdsaKeygenResult, EcdsaSignature, Ed25519KeygenResult } from './internal/web';
|
|
6
6
|
|
|
@@ -73,7 +73,7 @@ class iframeMessageHandler {
|
|
|
73
73
|
return this.requestChannel.request('isPasswordEncrypted', request);
|
|
74
74
|
}
|
|
75
75
|
async backupKeySharesToGoogleDrive(request) {
|
|
76
|
-
|
|
76
|
+
await this.requestChannel.request('backupKeySharesToGoogleDrive', request);
|
|
77
77
|
}
|
|
78
78
|
async restoreBackupFromGoogleDrive(request) {
|
|
79
79
|
return this.requestChannel.request('restoreBackupFromGoogleDrive', request);
|
|
@@ -188,12 +188,11 @@ class DynamicWalletClient {
|
|
|
188
188
|
instanceId: (_this_instanceId = this.instanceId) != null ? _this_instanceId : '',
|
|
189
189
|
hostOrigin: window.location.origin,
|
|
190
190
|
environmentId: this.environmentId,
|
|
191
|
-
authToken: this.authToken,
|
|
192
191
|
baseApiUrl: this.baseApiUrl,
|
|
193
192
|
baseMPCRelayApiUrl: this.baseMPCRelayApiUrl,
|
|
194
193
|
chain: this.chainName
|
|
195
194
|
});
|
|
196
|
-
iframe.src = `${this.iframeDomain}/waas/${this.environmentId}?${params.toString()}`;
|
|
195
|
+
iframe.src = `${this.iframeDomain}/waas-v1/${this.environmentId}?${params.toString()}`;
|
|
197
196
|
this.logger.debug('Creating iframe with src:', iframe.src);
|
|
198
197
|
document.body.appendChild(iframe);
|
|
199
198
|
iframe.onload = ()=>{
|
|
@@ -229,12 +228,11 @@ class DynamicWalletClient {
|
|
|
229
228
|
instanceId: (_this_instanceId = this.instanceId) != null ? _this_instanceId : '',
|
|
230
229
|
hostOrigin: window.location.origin,
|
|
231
230
|
environmentId: this.environmentId,
|
|
232
|
-
authToken: this.authToken,
|
|
233
231
|
baseApiUrl: this.baseApiUrl,
|
|
234
232
|
baseMPCRelayApiUrl: this.baseMPCRelayApiUrl,
|
|
235
233
|
chain: this.chainName
|
|
236
234
|
});
|
|
237
|
-
iframe.src = `${this.iframeDomain}/waas/${this.environmentId}?${params.toString()}`;
|
|
235
|
+
iframe.src = `${this.iframeDomain}/waas-v1/${this.environmentId}?${params.toString()}`;
|
|
238
236
|
this.logger.debug('Creating iframe with src:', iframe.src);
|
|
239
237
|
// Add iframe to the provided container
|
|
240
238
|
container.appendChild(iframe);
|
|
@@ -289,7 +287,7 @@ class DynamicWalletClient {
|
|
|
289
287
|
}
|
|
290
288
|
return this.iframeMessageHandler.getWallets();
|
|
291
289
|
}
|
|
292
|
-
async getWallet({ accountAddress, walletOperation }) {
|
|
290
|
+
async getWallet({ accountAddress, walletOperation = WalletOperation.NO_OPERATION }) {
|
|
293
291
|
await this.initializeIframeCommunication();
|
|
294
292
|
if (!this.iframeMessageHandler) {
|
|
295
293
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -306,7 +304,7 @@ class DynamicWalletClient {
|
|
|
306
304
|
}
|
|
307
305
|
return this.iframeMessageHandler.createWalletAccount(thresholdSignatureScheme, password);
|
|
308
306
|
}
|
|
309
|
-
async requiresPasswordForOperation({ accountAddress, walletOperation }) {
|
|
307
|
+
async requiresPasswordForOperation({ accountAddress, walletOperation = WalletOperation.REACH_THRESHOLD }) {
|
|
310
308
|
await this.initializeIframeCommunication();
|
|
311
309
|
if (!this.iframeMessageHandler) {
|
|
312
310
|
throw new Error('Iframe message handler not initialized');
|
|
@@ -404,7 +402,7 @@ class DynamicWalletClient {
|
|
|
404
402
|
password
|
|
405
403
|
});
|
|
406
404
|
}
|
|
407
|
-
async verifyPassword({ accountAddress, password, walletOperation }) {
|
|
405
|
+
async verifyPassword({ accountAddress, password, walletOperation = WalletOperation.NO_OPERATION }) {
|
|
408
406
|
await this.initializeIframeCommunication();
|
|
409
407
|
if (!this.iframeMessageHandler) {
|
|
410
408
|
throw new Error('Iframe message handler not initialized');
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs-wallet/browser-wallet-client",
|
|
3
|
-
"version": "0.0.0-beta.154.
|
|
3
|
+
"version": "0.0.0-beta.154.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@
|
|
7
|
-
"@dynamic-labs-wallet/core": "0.0.0-beta.154.0",
|
|
6
|
+
"@dynamic-labs-wallet/core": "0.0.0-beta.154.2",
|
|
8
7
|
"@dynamic-labs/message-transport": "^4.9.9",
|
|
9
8
|
"@dynamic-labs/logger": "^4.9.9",
|
|
10
9
|
"@noble/hashes": "1.7.1"
|
package/src/client/client.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { type MessageTransportWithDefaultOrigin } from '@dynamic-labs/message-transport';
|
|
2
2
|
import { iframeMessageHandler } from '../services/iframeMessageHandler';
|
|
3
|
-
import type { ThresholdSignatureScheme,
|
|
4
|
-
import {
|
|
3
|
+
import type { ThresholdSignatureScheme, GetWalletResponse, CreateWalletAccountResponse, RequiresPasswordForOperationRequest, SignMessageRequest, IsPasswordEncryptedRequest, BackupKeySharesToGoogleDriveRequest, RefreshWalletAccountSharesRequest, ReshareRequest, VerifyPasswordRequest, UpdatePasswordRequest, ImportPrivateKeyRequest, ExportClientKeysharesRequest, OfflineExportPrivateKeyResponse } from '@dynamic-labs-wallet/core';
|
|
4
|
+
import { WalletOperation } from '@dynamic-labs-wallet/core';
|
|
5
|
+
import { EcdsaKeygenResult, Ed25519KeygenResult } from '../../../internal/web';
|
|
5
6
|
export declare class DynamicWalletClient {
|
|
6
7
|
protected chainName: string;
|
|
7
8
|
protected logger: import("@dynamic-labs/logger").Logger;
|
|
@@ -69,7 +70,7 @@ export declare class DynamicWalletClient {
|
|
|
69
70
|
getWallets(): Promise<GetWalletResponse[]>;
|
|
70
71
|
getWallet({ accountAddress, walletOperation, }: {
|
|
71
72
|
accountAddress: string;
|
|
72
|
-
walletOperation
|
|
73
|
+
walletOperation?: WalletOperation;
|
|
73
74
|
}): Promise<GetWalletResponse>;
|
|
74
75
|
createWalletAccount({ thresholdSignatureScheme, password, }: {
|
|
75
76
|
thresholdSignatureScheme: ThresholdSignatureScheme;
|
|
@@ -94,7 +95,7 @@ export declare class DynamicWalletClient {
|
|
|
94
95
|
transaction: string;
|
|
95
96
|
password?: string;
|
|
96
97
|
}): Promise<string>;
|
|
97
|
-
backupKeySharesToGoogleDrive(request: BackupKeySharesToGoogleDriveRequest): Promise<
|
|
98
|
+
backupKeySharesToGoogleDrive(request: BackupKeySharesToGoogleDriveRequest): Promise<void>;
|
|
98
99
|
restoreBackupFromGoogleDrive({ accountAddress, oauthAccountId, displayContainer, name, password, }: {
|
|
99
100
|
accountAddress: string;
|
|
100
101
|
oauthAccountId: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/client/client.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,iCAAiC,EACvC,MAAM,iCAAiC,CAAC;AAEzC,OAAO,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAExE,OAAO,KAAK,EACV,wBAAwB,EACxB,
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/client/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -13,7 +13,7 @@ export declare class iframeMessageHandler {
|
|
|
13
13
|
signMessage(request: SignMessageRequest): Promise<string>;
|
|
14
14
|
signTransaction(request: SignTransactionRequest): Promise<string>;
|
|
15
15
|
isPasswordEncrypted(request: IsPasswordEncryptedRequest): Promise<boolean>;
|
|
16
|
-
backupKeySharesToGoogleDrive(request: BackupKeySharesToGoogleDriveRequest): Promise<
|
|
16
|
+
backupKeySharesToGoogleDrive(request: BackupKeySharesToGoogleDriveRequest): Promise<void>;
|
|
17
17
|
restoreBackupFromGoogleDrive(request: RestoreBackupFromGoogleDriveRequest): Promise<void>;
|
|
18
18
|
refreshWalletAccountShares(request: RefreshWalletAccountSharesRequest): Promise<void>;
|
|
19
19
|
reshare(request: ReshareRequest): Promise<void>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iframeMessageHandler.d.ts","sourceRoot":"","sources":["../../src/services/iframeMessageHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,iCAAiC,EACtC,KAAK,cAAc,EACpB,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EACV,wBAAwB,EACxB,qBAAqB,EACrB,eAAe,EACf,iBAAiB,EACjB,2BAA2B,EAC3B,kBAAkB,EAClB,mCAAmC,EACnC,sBAAsB,EACtB,0BAA0B,EAC1B,mCAAmC,EACnC,mCAAmC,EACnC,iCAAiC,EACjC,cAAc,EACd,uBAAuB,EACvB,qBAAqB,EACrB,qBAAqB,EACrB,uBAAuB,EACvB,4BAA4B,EAC5B,8BAA8B,EAC9B,+BAA+B,EAChC,MAAM,2BAA2B,CAAC;AAEnC,qBAAa,oBAAoB;IAC/B,cAAc,EAAE,cAAc,CAAC,qBAAqB,CAAC,CAAC;gBAE1C,gBAAgB,EAAE,iCAAiC;IAKzD,UAAU,IAAI,OAAO,CAAC,iBAAiB,EAAE,CAAC;IAI1C,SAAS,CAAC,EACd,cAAc,EACd,eAAe,GAChB,EAAE;QACD,cAAc,EAAE,MAAM,CAAC;QACvB,eAAe,EAAE,eAAe,CAAC;KAClC;IAOK,mBAAmB,CACvB,wBAAwB,EAAE,wBAAwB,EAClD,QAAQ,CAAC,EAAE,MAAM,GAChB,OAAO,CAAC,2BAA2B,CAAC;IAOjC,4BAA4B,CAChC,OAAO,EAAE,mCAAmC,GAC3C,OAAO,CAAC,OAAO,CAAC;IAIb,WAAW,CAAC,OAAO,EAAE,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC;IAIzD,eAAe,CAAC,OAAO,EAAE,sBAAsB,GAAG,OAAO,CAAC,MAAM,CAAC;IAIjE,mBAAmB,CACvB,OAAO,EAAE,0BAA0B,GAClC,OAAO,CAAC,OAAO,CAAC;IAIb,4BAA4B,CAChC,OAAO,EAAE,mCAAmC,GAC3C,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"iframeMessageHandler.d.ts","sourceRoot":"","sources":["../../src/services/iframeMessageHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,iCAAiC,EACtC,KAAK,cAAc,EACpB,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EACV,wBAAwB,EACxB,qBAAqB,EACrB,eAAe,EACf,iBAAiB,EACjB,2BAA2B,EAC3B,kBAAkB,EAClB,mCAAmC,EACnC,sBAAsB,EACtB,0BAA0B,EAC1B,mCAAmC,EACnC,mCAAmC,EACnC,iCAAiC,EACjC,cAAc,EACd,uBAAuB,EACvB,qBAAqB,EACrB,qBAAqB,EACrB,uBAAuB,EACvB,4BAA4B,EAC5B,8BAA8B,EAC9B,+BAA+B,EAChC,MAAM,2BAA2B,CAAC;AAEnC,qBAAa,oBAAoB;IAC/B,cAAc,EAAE,cAAc,CAAC,qBAAqB,CAAC,CAAC;gBAE1C,gBAAgB,EAAE,iCAAiC;IAKzD,UAAU,IAAI,OAAO,CAAC,iBAAiB,EAAE,CAAC;IAI1C,SAAS,CAAC,EACd,cAAc,EACd,eAAe,GAChB,EAAE;QACD,cAAc,EAAE,MAAM,CAAC;QACvB,eAAe,EAAE,eAAe,CAAC;KAClC;IAOK,mBAAmB,CACvB,wBAAwB,EAAE,wBAAwB,EAClD,QAAQ,CAAC,EAAE,MAAM,GAChB,OAAO,CAAC,2BAA2B,CAAC;IAOjC,4BAA4B,CAChC,OAAO,EAAE,mCAAmC,GAC3C,OAAO,CAAC,OAAO,CAAC;IAIb,WAAW,CAAC,OAAO,EAAE,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC;IAIzD,eAAe,CAAC,OAAO,EAAE,sBAAsB,GAAG,OAAO,CAAC,MAAM,CAAC;IAIjE,mBAAmB,CACvB,OAAO,EAAE,0BAA0B,GAClC,OAAO,CAAC,OAAO,CAAC;IAIb,4BAA4B,CAChC,OAAO,EAAE,mCAAmC,GAC3C,OAAO,CAAC,IAAI,CAAC;IAIV,4BAA4B,CAChC,OAAO,EAAE,mCAAmC,GAC3C,OAAO,CAAC,IAAI,CAAC;IAIV,0BAA0B,CAC9B,OAAO,EAAE,iCAAiC,GACzC,OAAO,CAAC,IAAI,CAAC;IAIV,OAAO,CAAC,OAAO,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC;IAI/C,gBAAgB,CAAC,OAAO,EAAE,uBAAuB,GAAG,OAAO,CAAC,IAAI,CAAC;IAIjE,cAAc,CAAC,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,IAAI,CAAC;IAI7D,cAAc,CAAC,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,IAAI,CAAC;IAI7D,gBAAgB,CACpB,OAAO,EAAE,uBAAuB,GAC/B,OAAO,CAAC,2BAA2B,CAAC;IAIjC,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAI3C,qBAAqB,CACzB,OAAO,EAAE,4BAA4B,GACpC,OAAO,CAAC,IAAI,CAAC;IAIV,uBAAuB,CAC3B,OAAO,EAAE,8BAA8B,GACtC,OAAO,CAAC,+BAA+B,CAAC;CAG5C"}
|