@keyringnetwork/keyring-connect-sdk 1.0.3 → 1.0.4
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/dist/main.js +0 -3
- package/dist/types.d.ts +0 -7
- package/package.json +1 -1
- package/readme.md +1 -7
package/dist/main.js
CHANGED
|
@@ -118,9 +118,6 @@ class KeyringConnect {
|
|
|
118
118
|
onboarding_api_url: config.krn_config.onboarding_api_url,
|
|
119
119
|
datastore_api_url: config.krn_config.datastore_api_url,
|
|
120
120
|
analytics_api_url: config.krn_config.analytics_api_url,
|
|
121
|
-
isolate_proving: config.krn_config.isolate_proving,
|
|
122
|
-
notaryUrl: config.krn_config.notaryUrl,
|
|
123
|
-
notaryWebsocketUrl: config.krn_config.notaryWebsocketUrl,
|
|
124
121
|
}
|
|
125
122
|
: undefined,
|
|
126
123
|
proof_config: config.proof_config,
|
package/dist/types.d.ts
CHANGED
|
@@ -38,9 +38,6 @@ export type ExtensionSDKConfig = {
|
|
|
38
38
|
analytics_api_url?: string;
|
|
39
39
|
auth0_id_token?: string;
|
|
40
40
|
entity_id?: string;
|
|
41
|
-
isolate_proving?: boolean;
|
|
42
|
-
notaryUrl?: string;
|
|
43
|
-
notaryWebsocketUrl?: string;
|
|
44
41
|
};
|
|
45
42
|
};
|
|
46
43
|
export type ExtensionLaunchConfig = {
|
|
@@ -59,9 +56,6 @@ export type ExtensionLaunchConfig = {
|
|
|
59
56
|
onboarding_api_url?: string;
|
|
60
57
|
datastore_api_url?: string;
|
|
61
58
|
analytics_api_url?: string;
|
|
62
|
-
isolate_proving?: boolean;
|
|
63
|
-
notaryUrl?: string;
|
|
64
|
-
notaryWebsocketUrl?: string;
|
|
65
59
|
};
|
|
66
60
|
auth_user?: any;
|
|
67
61
|
};
|
|
@@ -95,7 +89,6 @@ export interface ExtensionState {
|
|
|
95
89
|
manifest?: any;
|
|
96
90
|
error?: string;
|
|
97
91
|
user?: User;
|
|
98
|
-
tlsn_proof?: string;
|
|
99
92
|
}
|
|
100
93
|
export interface DataSource {
|
|
101
94
|
id: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -33,13 +33,7 @@ const extensionConfig = {
|
|
|
33
33
|
};
|
|
34
34
|
|
|
35
35
|
try {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
if (isInstalled) {
|
|
39
|
-
await KeyringConnect.launchExtension(extensionConfig);
|
|
40
|
-
} else {
|
|
41
|
-
// show UI to install extension
|
|
42
|
-
}
|
|
36
|
+
await KeyringConnect.launchExtension(extensionConfig);
|
|
43
37
|
} catch (error) {
|
|
44
38
|
console.error('Failed to launch Keyring Connect:', error);
|
|
45
39
|
}
|