@fuel-ts/account 0.0.0-rc-1356-20240515085856 → 0.0.0-rc-1356-20240515090422

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.

@@ -8687,9 +8687,15 @@ var WalletConfig = class {
8687
8687
  }
8688
8688
  };
8689
8689
  }
8690
+ /**
8691
+ * Create messages for the wallets in the format that the chain expects.
8692
+ */
8690
8693
  static createMessages(wallets, messages) {
8691
8694
  return messages.map((msg) => wallets.map((wallet) => msg.toChainMessage(wallet.address))).flatMap((x) => x);
8692
8695
  }
8696
+ /**
8697
+ * Create coins for the wallets in the format that the chain expects.
8698
+ */
8693
8699
  static createCoins(wallets, baseAssetId, assets2, coinsPerAsset, amountPerCoin) {
8694
8700
  const coins = [];
8695
8701
  let assetIds = [baseAssetId];