@vleap/warps-adapter-fastset 0.1.0-beta.53 → 0.1.0-beta.54

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/index.mjs CHANGED
@@ -2657,12 +2657,12 @@ var WarpFastsetWallet = class {
2657
2657
  async sendTransactions(txs) {
2658
2658
  return Promise.all(txs.map(async (tx) => this.sendTransaction(tx)));
2659
2659
  }
2660
- async importFromMnemonic(provider, mnemonic) {
2661
- const walletProvider = this.createProviderForOperation(provider);
2660
+ async importFromMnemonic(mnemonic) {
2661
+ const walletProvider = this.createProviderForOperation("mnemonic");
2662
2662
  return await walletProvider.importFromMnemonic(mnemonic);
2663
2663
  }
2664
- async importFromPrivateKey(provider, privateKey) {
2665
- const walletProvider = this.createProviderForOperation(provider);
2664
+ async importFromPrivateKey(privateKey) {
2665
+ const walletProvider = this.createProviderForOperation("privateKey");
2666
2666
  return await walletProvider.importFromPrivateKey(privateKey);
2667
2667
  }
2668
2668
  async export(provider) {