@fuel-ts/account 0.0.0-rc-2432-20240610171540 → 0.0.0-rc-2485-20240610194352
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/configs.d.ts +0 -1
- package/dist/configs.d.ts.map +1 -1
- package/dist/configs.global.js +0 -1
- package/dist/configs.global.js.map +1 -1
- package/dist/configs.js +0 -3
- package/dist/configs.js.map +1 -1
- package/dist/configs.mjs +0 -2
- package/dist/configs.mjs.map +1 -1
- package/dist/index.global.js +7 -15
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +1 -1
- package/dist/providers/chains.d.ts +1 -1
- package/dist/test-utils.global.js +6 -14
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +6 -6
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +6 -6
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +15 -15
@@ -35208,14 +35208,6 @@ If you are attempting to transform a hex value, please make sure it is being pas
|
|
35208
35208
|
`function ${nameOrSignatureOrSelector} not found: ${JSON.stringify(fn)}.`
|
35209
35209
|
);
|
35210
35210
|
}
|
35211
|
-
decodeFunctionData(functionFragment, data) {
|
35212
|
-
const fragment = typeof functionFragment === "string" ? this.getFunction(functionFragment) : functionFragment;
|
35213
|
-
return fragment.decodeArguments(data);
|
35214
|
-
}
|
35215
|
-
encodeFunctionData(functionFragment, values) {
|
35216
|
-
const fragment = typeof functionFragment === "string" ? this.getFunction(functionFragment) : functionFragment;
|
35217
|
-
return fragment.encodeArguments(values);
|
35218
|
-
}
|
35219
35211
|
// Decode the result of a function call
|
35220
35212
|
decodeFunctionResult(functionFragment, data) {
|
35221
35213
|
const fragment = typeof functionFragment === "string" ? this.getFunction(functionFragment) : functionFragment;
|
@@ -45257,8 +45249,8 @@ Supported fuel-core version: ${supportedVersion}.`
|
|
45257
45249
|
foundry: 31337
|
45258
45250
|
},
|
45259
45251
|
fuel: {
|
45260
|
-
|
45261
|
-
|
45252
|
+
beta5: 0,
|
45253
|
+
devnet: 10
|
45262
45254
|
}
|
45263
45255
|
};
|
45264
45256
|
|
@@ -45306,15 +45298,15 @@ Supported fuel-core version: ${supportedVersion}.`
|
|
45306
45298
|
},
|
45307
45299
|
{
|
45308
45300
|
type: "fuel",
|
45309
|
-
chainId: CHAIN_IDS.fuel.
|
45301
|
+
chainId: CHAIN_IDS.fuel.beta5,
|
45310
45302
|
decimals: 9,
|
45311
|
-
assetId: "
|
45303
|
+
assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
45312
45304
|
},
|
45313
45305
|
{
|
45314
45306
|
type: "fuel",
|
45315
|
-
chainId: CHAIN_IDS.fuel.
|
45307
|
+
chainId: CHAIN_IDS.fuel.devnet,
|
45316
45308
|
decimals: 9,
|
45317
|
-
assetId: "
|
45309
|
+
assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
45318
45310
|
}
|
45319
45311
|
]
|
45320
45312
|
}
|