@dynamic-labs-wallet/core 0.0.74 → 0.0.75-preview.1
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 +4 -3
- package/index.esm.js +4 -3
- package/package.json +1 -1
- package/src/constants.d.ts +3 -3
- package/src/types.d.ts +135 -1
- package/src/types.d.ts.map +1 -1
package/index.cjs.js
CHANGED
|
@@ -58,9 +58,9 @@ var BackupLocation = /*#__PURE__*/ function(BackupLocation) {
|
|
|
58
58
|
return BackupLocation;
|
|
59
59
|
}({});
|
|
60
60
|
const IFRAME_DOMAIN_MAP = {
|
|
61
|
-
development: 'http://localhost:
|
|
62
|
-
preprod: 'https://
|
|
63
|
-
production: 'https://
|
|
61
|
+
development: 'http://localhost:4200',
|
|
62
|
+
preprod: 'https://app.dynamic-preprod.xyz',
|
|
63
|
+
production: 'https://app.dynamicauth.com'
|
|
64
64
|
};
|
|
65
65
|
const ChainEnumToVerifiedCredentialName = {
|
|
66
66
|
BTC: 'bip122',
|
|
@@ -454,6 +454,7 @@ var SuccessEventType = /*#__PURE__*/ function(SuccessEventType) {
|
|
|
454
454
|
SuccessEventType["CeremonyComplete"] = "ceremony_complete";
|
|
455
455
|
return SuccessEventType;
|
|
456
456
|
}({});
|
|
457
|
+
// iframe communication types end
|
|
457
458
|
|
|
458
459
|
/**
|
|
459
460
|
* Creates a promise that resolves when a specific event is received from an event stream.
|
package/index.esm.js
CHANGED
|
@@ -56,9 +56,9 @@ var BackupLocation = /*#__PURE__*/ function(BackupLocation) {
|
|
|
56
56
|
return BackupLocation;
|
|
57
57
|
}({});
|
|
58
58
|
const IFRAME_DOMAIN_MAP = {
|
|
59
|
-
development: 'http://localhost:
|
|
60
|
-
preprod: 'https://
|
|
61
|
-
production: 'https://
|
|
59
|
+
development: 'http://localhost:4200',
|
|
60
|
+
preprod: 'https://app.dynamic-preprod.xyz',
|
|
61
|
+
production: 'https://app.dynamicauth.com'
|
|
62
62
|
};
|
|
63
63
|
const ChainEnumToVerifiedCredentialName = {
|
|
64
64
|
BTC: 'bip122',
|
|
@@ -452,6 +452,7 @@ var SuccessEventType = /*#__PURE__*/ function(SuccessEventType) {
|
|
|
452
452
|
SuccessEventType["CeremonyComplete"] = "ceremony_complete";
|
|
453
453
|
return SuccessEventType;
|
|
454
454
|
}({});
|
|
455
|
+
// iframe communication types end
|
|
455
456
|
|
|
456
457
|
/**
|
|
457
458
|
* Creates a promise that resolves when a specific event is received from an event stream.
|
package/package.json
CHANGED
package/src/constants.d.ts
CHANGED
|
@@ -51,9 +51,9 @@ export declare enum BackupLocation {
|
|
|
51
51
|
EXTERNAL = "external"
|
|
52
52
|
}
|
|
53
53
|
export declare const IFRAME_DOMAIN_MAP: {
|
|
54
|
-
readonly development: "http://localhost:
|
|
55
|
-
readonly preprod: "https://
|
|
56
|
-
readonly production: "https://
|
|
54
|
+
readonly development: "http://localhost:4200";
|
|
55
|
+
readonly preprod: "https://app.dynamic-preprod.xyz";
|
|
56
|
+
readonly production: "https://app.dynamicauth.com";
|
|
57
57
|
};
|
|
58
58
|
export declare const ChainEnumToVerifiedCredentialName: {
|
|
59
59
|
[key: string]: string;
|
package/src/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BackupLocation } from './constants';
|
|
1
|
+
import { BackupLocation, WalletOperation } from './constants';
|
|
2
2
|
import { ThresholdSignatureScheme } from './mpc';
|
|
3
3
|
export type InitKeygenResult = {
|
|
4
4
|
keygenId: string;
|
|
@@ -69,4 +69,138 @@ export type BackupData = {
|
|
|
69
69
|
shareCount: number;
|
|
70
70
|
};
|
|
71
71
|
};
|
|
72
|
+
export type IframeRequestMessages = {
|
|
73
|
+
sendAuthToken: (token: string) => Promise<void>;
|
|
74
|
+
createWalletAccount: (request: CreateWalletAccountRequest) => Promise<CreateWalletAccountResponse>;
|
|
75
|
+
getWallets: (request: GetWalletsRequest) => Promise<GetWalletResponse[]>;
|
|
76
|
+
getWallet: (request: GetWalletRequest) => Promise<GetWalletResponse>;
|
|
77
|
+
signMessage: (request: SignMessageRequest) => Promise<string>;
|
|
78
|
+
signRawMessage: (request: SignRawMessageRequest) => Promise<string>;
|
|
79
|
+
requiresPasswordForOperation: (request: RequiresPasswordForOperationRequest) => Promise<boolean>;
|
|
80
|
+
signTransaction: (request: SignTransactionRequest) => Promise<string>;
|
|
81
|
+
isPasswordEncrypted: (request: IsPasswordEncryptedRequest) => Promise<boolean>;
|
|
82
|
+
backupKeySharesToGoogleDrive: (request: BackupKeySharesToGoogleDriveRequest) => Promise<void>;
|
|
83
|
+
restoreBackupFromGoogleDrive: (request: RestoreBackupFromGoogleDriveRequest) => Promise<void>;
|
|
84
|
+
refreshWalletAccountShares: (request: RefreshWalletAccountSharesRequest) => Promise<void>;
|
|
85
|
+
reshare: (request: ReshareRequest) => Promise<void>;
|
|
86
|
+
exportPrivateKey: (request: ExportPrivateKeyRequest) => Promise<void>;
|
|
87
|
+
verifyPassword: (request: VerifyPasswordRequest) => Promise<void>;
|
|
88
|
+
updatePassword: (request: UpdatePasswordRequest) => Promise<void>;
|
|
89
|
+
importPrivateKey: (request: ImportPrivateKeyRequest) => Promise<CreateWalletAccountResponse>;
|
|
90
|
+
exportClientKeyshares: (request: ExportClientKeysharesRequest) => Promise<void>;
|
|
91
|
+
offlineExportPrivateKey: (request: OfflineExportPrivateKeyRequest) => Promise<OfflineExportPrivateKeyResponse>;
|
|
92
|
+
};
|
|
93
|
+
export type CreateWalletAccountRequest = {
|
|
94
|
+
chainName: string;
|
|
95
|
+
thresholdSignatureScheme: ThresholdSignatureScheme;
|
|
96
|
+
password?: string;
|
|
97
|
+
};
|
|
98
|
+
export type CreateWalletAccountResponse = {
|
|
99
|
+
chainName: string;
|
|
100
|
+
accountAddress: string;
|
|
101
|
+
publicKeyHex: string;
|
|
102
|
+
rawPublicKey: string | Uint8Array | undefined;
|
|
103
|
+
};
|
|
104
|
+
export type GetWalletsRequest = {
|
|
105
|
+
chainName: string;
|
|
106
|
+
};
|
|
107
|
+
export type GetWalletResponse = {
|
|
108
|
+
chainName: string;
|
|
109
|
+
accountAddress: string;
|
|
110
|
+
walletId: string;
|
|
111
|
+
clientKeySharesBackupInfo: KeyShareBackupInfo;
|
|
112
|
+
derivationPath: string;
|
|
113
|
+
thresholdSignatureScheme: ThresholdSignatureScheme;
|
|
114
|
+
};
|
|
115
|
+
export type GetWalletRequest = {
|
|
116
|
+
chainName: string;
|
|
117
|
+
accountAddress: string;
|
|
118
|
+
walletOperation: WalletOperation;
|
|
119
|
+
shareCount?: number;
|
|
120
|
+
password?: string;
|
|
121
|
+
};
|
|
122
|
+
export type SignMessageRequest = {
|
|
123
|
+
chainName: string;
|
|
124
|
+
message: string;
|
|
125
|
+
accountAddress: string;
|
|
126
|
+
password?: string;
|
|
127
|
+
};
|
|
128
|
+
export type SignRawMessageRequest = {
|
|
129
|
+
chainName: string;
|
|
130
|
+
message: string;
|
|
131
|
+
accountAddress: string;
|
|
132
|
+
password?: string;
|
|
133
|
+
};
|
|
134
|
+
export type RequiresPasswordForOperationRequest = {
|
|
135
|
+
chainName: string;
|
|
136
|
+
accountAddress: string;
|
|
137
|
+
walletOperation?: WalletOperation;
|
|
138
|
+
};
|
|
139
|
+
export type SignTransactionRequest = {
|
|
140
|
+
chainName: string;
|
|
141
|
+
senderAddress: string;
|
|
142
|
+
transaction: string;
|
|
143
|
+
password?: string;
|
|
144
|
+
};
|
|
145
|
+
export type IsPasswordEncryptedRequest = {
|
|
146
|
+
chainName: string;
|
|
147
|
+
accountAddress: string;
|
|
148
|
+
};
|
|
149
|
+
export type BackupKeySharesToGoogleDriveRequest = {
|
|
150
|
+
chainName: string;
|
|
151
|
+
accountAddress: string;
|
|
152
|
+
password?: string;
|
|
153
|
+
};
|
|
154
|
+
export type RestoreBackupFromGoogleDriveRequest = {
|
|
155
|
+
chainName: string;
|
|
156
|
+
accountAddress: string;
|
|
157
|
+
password?: string;
|
|
158
|
+
};
|
|
159
|
+
export type RefreshWalletAccountSharesRequest = {
|
|
160
|
+
chainName: string;
|
|
161
|
+
accountAddress: string;
|
|
162
|
+
password?: string;
|
|
163
|
+
};
|
|
164
|
+
export type ReshareRequest = {
|
|
165
|
+
chainName: string;
|
|
166
|
+
accountAddress: string;
|
|
167
|
+
oldThresholdSignatureScheme: ThresholdSignatureScheme;
|
|
168
|
+
newThresholdSignatureScheme: ThresholdSignatureScheme;
|
|
169
|
+
password?: string;
|
|
170
|
+
};
|
|
171
|
+
export type ExportPrivateKeyRequest = {
|
|
172
|
+
chainName: string;
|
|
173
|
+
accountAddress: string;
|
|
174
|
+
password?: string;
|
|
175
|
+
};
|
|
176
|
+
export type VerifyPasswordRequest = {
|
|
177
|
+
chainName: string;
|
|
178
|
+
accountAddress: string;
|
|
179
|
+
password?: string;
|
|
180
|
+
walletOperation?: WalletOperation;
|
|
181
|
+
};
|
|
182
|
+
export type UpdatePasswordRequest = {
|
|
183
|
+
chainName: string;
|
|
184
|
+
accountAddress: string;
|
|
185
|
+
existingPassword: string;
|
|
186
|
+
newPassword: string;
|
|
187
|
+
};
|
|
188
|
+
export type ImportPrivateKeyRequest = {
|
|
189
|
+
chainName: string;
|
|
190
|
+
privateKey: string;
|
|
191
|
+
thresholdSignatureScheme: ThresholdSignatureScheme;
|
|
192
|
+
password?: string;
|
|
193
|
+
};
|
|
194
|
+
export type ExportClientKeysharesRequest = {
|
|
195
|
+
chainName: string;
|
|
196
|
+
accountAddress: string;
|
|
197
|
+
password?: string;
|
|
198
|
+
};
|
|
199
|
+
export type OfflineExportPrivateKeyRequest = {
|
|
200
|
+
chainName: string;
|
|
201
|
+
base64Args: string;
|
|
202
|
+
};
|
|
203
|
+
export type OfflineExportPrivateKeyResponse = {
|
|
204
|
+
derivedPrivateKey: string | undefined;
|
|
205
|
+
};
|
|
72
206
|
//# sourceMappingURL=types.d.ts.map
|
package/src/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../packages/src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../packages/src/types.ts"],"names":[],"mappings":"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"}
|