@dynamic-labs-wallet/node-svm 1.0.77 → 1.0.78

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 CHANGED
@@ -154,7 +154,9 @@ class DynamicSvmWalletClient extends node.DynamicWalletClient {
154
154
  error: error,
155
155
  context: {}
156
156
  });
157
- throw new Error(ERROR_CREATE_WALLET_ACCOUNT);
157
+ throw new Error(ERROR_CREATE_WALLET_ACCOUNT, {
158
+ cause: error
159
+ });
158
160
  }
159
161
  }
160
162
  // Function to properly derive account address
package/index.esm.js CHANGED
@@ -152,7 +152,9 @@ class DynamicSvmWalletClient extends DynamicWalletClient {
152
152
  error: error,
153
153
  context: {}
154
154
  });
155
- throw new Error(ERROR_CREATE_WALLET_ACCOUNT);
155
+ throw new Error(ERROR_CREATE_WALLET_ACCOUNT, {
156
+ cause: error
157
+ });
156
158
  }
157
159
  }
158
160
  // Function to properly derive account address
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@dynamic-labs-wallet/node-svm",
3
- "version": "1.0.77",
3
+ "version": "1.0.78",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "dependencies": {
7
- "@dynamic-labs-wallet/node": "1.0.77",
7
+ "@dynamic-labs-wallet/node": "1.0.78",
8
8
  "@solana/web3.js": "^1.98.2"
9
9
  },
10
10
  "publishConfig": {