@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/test-utils.js
CHANGED
@@ -341,6 +341,7 @@ var MessageProofFragmentDoc = import_graphql_tag.default`
|
|
341
341
|
proofIndex
|
342
342
|
}
|
343
343
|
messageBlockHeader {
|
344
|
+
version
|
344
345
|
id
|
345
346
|
daHeight
|
346
347
|
consensusParametersVersion
|
@@ -356,6 +357,7 @@ var MessageProofFragmentDoc = import_graphql_tag.default`
|
|
356
357
|
applicationHash
|
357
358
|
}
|
358
359
|
commitBlockHeader {
|
360
|
+
version
|
359
361
|
id
|
360
362
|
daHeight
|
361
363
|
consensusParametersVersion
|
@@ -542,6 +544,9 @@ var GasCostsFragmentDoc = import_graphql_tag.default`
|
|
542
544
|
wqmm
|
543
545
|
xor
|
544
546
|
xori
|
547
|
+
alocDependentCost {
|
548
|
+
...DependentCostFragment
|
549
|
+
}
|
545
550
|
call {
|
546
551
|
...DependentCostFragment
|
547
552
|
}
|
@@ -920,8 +925,12 @@ var GetRelayedTransactionStatusDocument = import_graphql_tag.default`
|
|
920
925
|
}
|
921
926
|
${RelayedTransactionStatusFragmentDoc}`;
|
922
927
|
var DryRunDocument = import_graphql_tag.default`
|
923
|
-
mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean) {
|
924
|
-
dryRun(
|
928
|
+
mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean, $gasPrice: U64) {
|
929
|
+
dryRun(
|
930
|
+
txs: $encodedTransactions
|
931
|
+
utxoValidation: $utxoValidation
|
932
|
+
gasPrice: $gasPrice
|
933
|
+
) {
|
925
934
|
...dryRunTransactionExecutionStatusFragment
|
926
935
|
}
|
927
936
|
}
|
@@ -4904,8 +4913,8 @@ var CHAIN_IDS = {
|
|
4904
4913
|
foundry: 31337
|
4905
4914
|
},
|
4906
4915
|
fuel: {
|
4907
|
-
|
4908
|
-
|
4916
|
+
beta5: 0,
|
4917
|
+
devnet: 10
|
4909
4918
|
}
|
4910
4919
|
};
|
4911
4920
|
|
@@ -4953,15 +4962,15 @@ var rawAssets = [
|
|
4953
4962
|
},
|
4954
4963
|
{
|
4955
4964
|
type: "fuel",
|
4956
|
-
chainId: CHAIN_IDS.fuel.
|
4965
|
+
chainId: CHAIN_IDS.fuel.beta5,
|
4957
4966
|
decimals: 9,
|
4958
|
-
assetId: "
|
4967
|
+
assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
4959
4968
|
},
|
4960
4969
|
{
|
4961
4970
|
type: "fuel",
|
4962
|
-
chainId: CHAIN_IDS.fuel.
|
4971
|
+
chainId: CHAIN_IDS.fuel.devnet,
|
4963
4972
|
decimals: 9,
|
4964
|
-
assetId: "
|
4973
|
+
assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
4965
4974
|
}
|
4966
4975
|
]
|
4967
4976
|
}
|