@fuel-ts/account 0.0.0-rc-1356-20240515090957 → 0.0.0-rc-1356-20240515091838

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.

Potentially problematic release.


This version of @fuel-ts/account might be problematic. Click here for more details.

@@ -8661,7 +8661,6 @@ var WalletConfig = class {
8661
8661
  return generatedWallets;
8662
8662
  };
8663
8663
  constructor(baseAssetId, config) {
8664
- const BASE_ASSET_ID = baseAssetId.startsWith("0x") ? baseAssetId : `0x${baseAssetId}`;
8665
8664
  WalletConfig.validate(config);
8666
8665
  this.options = config;
8667
8666
  const { assets: assets2, coinsPerAsset, amountPerCoin, messages } = this.options;
@@ -8670,7 +8669,7 @@ var WalletConfig = class {
8670
8669
  messages: WalletConfig.createMessages(this.wallets, messages),
8671
8670
  coins: WalletConfig.createCoins(
8672
8671
  this.wallets,
8673
- BASE_ASSET_ID,
8672
+ baseAssetId,
8674
8673
  assets2,
8675
8674
  coinsPerAsset,
8676
8675
  amountPerCoin