@dynamic-labs-wallet/svm 1.0.89 → 1.0.91
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 +1 -1
- package/index.esm.js +1 -1
- package/package.json +2 -2
package/index.cjs
CHANGED
|
@@ -125,7 +125,7 @@ class DynamicSvmWalletClient extends browser.DynamicWalletClient {
|
|
|
125
125
|
const base58Signature = bs58.encode(signatureEd25519);
|
|
126
126
|
return base58Signature;
|
|
127
127
|
} catch (error) {
|
|
128
|
-
this.
|
|
128
|
+
this.logOperationFailure(browser.ERROR_SIGN_MESSAGE, error);
|
|
129
129
|
throw new Error(browser.ERROR_SIGN_MESSAGE, {
|
|
130
130
|
cause: error
|
|
131
131
|
});
|
package/index.esm.js
CHANGED
|
@@ -123,7 +123,7 @@ class DynamicSvmWalletClient extends DynamicWalletClient {
|
|
|
123
123
|
const base58Signature = bs58.encode(signatureEd25519);
|
|
124
124
|
return base58Signature;
|
|
125
125
|
} catch (error) {
|
|
126
|
-
this.
|
|
126
|
+
this.logOperationFailure(ERROR_SIGN_MESSAGE, error);
|
|
127
127
|
throw new Error(ERROR_SIGN_MESSAGE, {
|
|
128
128
|
cause: error
|
|
129
129
|
});
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs-wallet/svm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.91",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@dynamic-labs-wallet/browser": "1.0.
|
|
7
|
+
"@dynamic-labs-wallet/browser": "1.0.91",
|
|
8
8
|
"@solana/web3.js": "^1.98.2",
|
|
9
9
|
"bs58": "^6.0.0",
|
|
10
10
|
"@dynamic-labs/sdk-api-core": "^0.0.1093"
|