@fuel-ts/account 0.0.0-rc-2432-20240610171540 → 0.0.0-rc-2491-20240611075910
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 +2 -2
- package/dist/configs.d.ts.map +1 -1
- package/dist/configs.global.js +2 -2
- package/dist/configs.global.js.map +1 -1
- package/dist/configs.js +6 -6
- package/dist/configs.js.map +1 -1
- package/dist/configs.mjs +4 -4
- package/dist/configs.mjs.map +1 -1
- package/dist/index.global.js +19 -10
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +18 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -9
- package/dist/index.mjs.map +1 -1
- package/dist/providers/__generated__/operations.d.ts +52 -0
- package/dist/providers/__generated__/operations.d.ts.map +1 -1
- package/dist/providers/chains.d.ts +1 -1
- package/dist/test-utils.global.js +24 -9
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +17 -8
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +17 -8
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +15 -15
package/dist/index.mjs
CHANGED
@@ -309,6 +309,7 @@ var MessageProofFragmentDoc = gql`
|
|
309
309
|
proofIndex
|
310
310
|
}
|
311
311
|
messageBlockHeader {
|
312
|
+
version
|
312
313
|
id
|
313
314
|
daHeight
|
314
315
|
consensusParametersVersion
|
@@ -324,6 +325,7 @@ var MessageProofFragmentDoc = gql`
|
|
324
325
|
applicationHash
|
325
326
|
}
|
326
327
|
commitBlockHeader {
|
328
|
+
version
|
327
329
|
id
|
328
330
|
daHeight
|
329
331
|
consensusParametersVersion
|
@@ -510,6 +512,9 @@ var GasCostsFragmentDoc = gql`
|
|
510
512
|
wqmm
|
511
513
|
xor
|
512
514
|
xori
|
515
|
+
alocDependentCost {
|
516
|
+
...DependentCostFragment
|
517
|
+
}
|
513
518
|
call {
|
514
519
|
...DependentCostFragment
|
515
520
|
}
|
@@ -888,8 +893,12 @@ var GetRelayedTransactionStatusDocument = gql`
|
|
888
893
|
}
|
889
894
|
${RelayedTransactionStatusFragmentDoc}`;
|
890
895
|
var DryRunDocument = gql`
|
891
|
-
mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean) {
|
892
|
-
dryRun(
|
896
|
+
mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean, $gasPrice: U64) {
|
897
|
+
dryRun(
|
898
|
+
txs: $encodedTransactions
|
899
|
+
utxoValidation: $utxoValidation
|
900
|
+
gasPrice: $gasPrice
|
901
|
+
) {
|
893
902
|
...dryRunTransactionExecutionStatusFragment
|
894
903
|
}
|
895
904
|
}
|
@@ -5149,8 +5158,8 @@ var CHAIN_IDS = {
|
|
5149
5158
|
foundry: 31337
|
5150
5159
|
},
|
5151
5160
|
fuel: {
|
5152
|
-
|
5153
|
-
|
5161
|
+
beta5: 0,
|
5162
|
+
devnet: 10
|
5154
5163
|
}
|
5155
5164
|
};
|
5156
5165
|
|
@@ -5160,7 +5169,7 @@ var getDefaultChainId = (networkType) => {
|
|
5160
5169
|
return CHAIN_IDS.eth.sepolia;
|
5161
5170
|
}
|
5162
5171
|
if (networkType === "fuel") {
|
5163
|
-
return CHAIN_IDS.fuel.
|
5172
|
+
return CHAIN_IDS.fuel.devnet;
|
5164
5173
|
}
|
5165
5174
|
return void 0;
|
5166
5175
|
};
|
@@ -5252,15 +5261,15 @@ var rawAssets = [
|
|
5252
5261
|
},
|
5253
5262
|
{
|
5254
5263
|
type: "fuel",
|
5255
|
-
chainId: CHAIN_IDS.fuel.
|
5264
|
+
chainId: CHAIN_IDS.fuel.beta5,
|
5256
5265
|
decimals: 9,
|
5257
|
-
assetId: "
|
5266
|
+
assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
5258
5267
|
},
|
5259
5268
|
{
|
5260
5269
|
type: "fuel",
|
5261
|
-
chainId: CHAIN_IDS.fuel.
|
5270
|
+
chainId: CHAIN_IDS.fuel.devnet,
|
5262
5271
|
decimals: 9,
|
5263
|
-
assetId: "
|
5272
|
+
assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
5264
5273
|
}
|
5265
5274
|
]
|
5266
5275
|
}
|