@dynamic-labs-wallet/svm 0.0.65 → 0.0.67

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
@@ -177,7 +177,7 @@ class DynamicSvmWalletClient extends browser.DynamicWalletClient {
177
177
  const { iframeDisplay } = await this.initializeIframeDisplayForContainer({
178
178
  container: displayContainer
179
179
  });
180
- iframeDisplay.displayPrivateKey(accountAddress, encodedPrivateKey);
180
+ iframeDisplay.displayPrivateKey(encodedPrivateKey);
181
181
  }
182
182
  /**
183
183
  * Exports the private key for a given account address
package/index.esm.js CHANGED
@@ -175,7 +175,7 @@ class DynamicSvmWalletClient extends DynamicWalletClient {
175
175
  const { iframeDisplay } = await this.initializeIframeDisplayForContainer({
176
176
  container: displayContainer
177
177
  });
178
- iframeDisplay.displayPrivateKey(accountAddress, encodedPrivateKey);
178
+ iframeDisplay.displayPrivateKey(encodedPrivateKey);
179
179
  }
180
180
  /**
181
181
  * Exports the private key for a given account address
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@dynamic-labs-wallet/svm",
3
- "version": "0.0.65",
3
+ "version": "0.0.67",
4
4
  "license": "MIT",
5
5
  "dependencies": {
6
- "@dynamic-labs-wallet/browser": "0.0.65",
6
+ "@dynamic-labs-wallet/browser": "0.0.67",
7
7
  "@solana/web3.js": "^1.98.2",
8
8
  "bs58": "^6.0.0"
9
9
  },