@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.
- package/dist/test-utils/wallet-config.d.ts.map +1 -1
- package/dist/test-utils.global.js +1 -2
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +1 -2
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +1 -2
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +15 -15
package/dist/test-utils.mjs
CHANGED
@@ -8651,7 +8651,6 @@ var WalletConfig = class {
|
|
8651
8651
|
return generatedWallets;
|
8652
8652
|
};
|
8653
8653
|
constructor(baseAssetId, config) {
|
8654
|
-
const BASE_ASSET_ID = baseAssetId.startsWith("0x") ? baseAssetId : `0x${baseAssetId}`;
|
8655
8654
|
WalletConfig.validate(config);
|
8656
8655
|
this.options = config;
|
8657
8656
|
const { assets: assets2, coinsPerAsset, amountPerCoin, messages } = this.options;
|
@@ -8660,7 +8659,7 @@ var WalletConfig = class {
|
|
8660
8659
|
messages: WalletConfig.createMessages(this.wallets, messages),
|
8661
8660
|
coins: WalletConfig.createCoins(
|
8662
8661
|
this.wallets,
|
8663
|
-
|
8662
|
+
baseAssetId,
|
8664
8663
|
assets2,
|
8665
8664
|
coinsPerAsset,
|
8666
8665
|
amountPerCoin
|