@joai/warps-adapter-fastset 1.0.0-beta.58 → 1.0.0-beta.59

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.js CHANGED
@@ -2701,6 +2701,7 @@ var WarpFastsetWallet = class {
2701
2701
  const wallet = this.config.user?.wallets?.[this.chain.name];
2702
2702
  if (!wallet) return null;
2703
2703
  if (typeof wallet === "string") return new ReadOnlyWalletProvider(this.config, this.chain);
2704
+ if (!wallet.provider) return new ReadOnlyWalletProvider(this.config, this.chain);
2704
2705
  return this.createProviderForOperation(wallet.provider);
2705
2706
  }
2706
2707
  initializeCache() {