@vleap/warps-adapter-fastset 0.1.0-beta.48 → 0.1.0-beta.49

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
@@ -1935,7 +1935,7 @@ import {
1935
1935
 
1936
1936
  // src/providers/MnemonicWalletProvider.ts
1937
1937
  import * as bip39 from "@scure/bip39";
1938
- import { wordlist } from "@scure/bip39/wordlists/english.js";
1938
+ import { wordlist } from "@scure/bip39/wordlists/english";
1939
1939
  import { getWarpWalletMnemonicFromConfig } from "@vleap/warps";
1940
1940
 
1941
1941
  // src/sdk/ed25519-setup.ts
@@ -2569,7 +2569,7 @@ var WarpFastsetWallet = class {
2569
2569
  async sendTransactions(txs) {
2570
2570
  return Promise.all(txs.map(async (tx) => this.sendTransaction(tx)));
2571
2571
  }
2572
- create(mnemonic, provider) {
2572
+ create(provider, mnemonic) {
2573
2573
  const walletProvider = this.createProviderForOperation(provider);
2574
2574
  return walletProvider.create(mnemonic);
2575
2575
  }