@fuel-ts/account 0.100.4 → 0.100.5

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.
@@ -2761,6 +2761,11 @@ export type GqlChainInfoFragment = {
2761
2761
  };
2762
2762
  };
2763
2763
  };
2764
+ latestBlock: {
2765
+ header: {
2766
+ consensusParametersVersion: string;
2767
+ };
2768
+ };
2764
2769
  };
2765
2770
  export type GqlContractBalanceFragment = {
2766
2771
  contract: string;
@@ -2897,6 +2902,11 @@ export type GqlGetChainQuery = {
2897
2902
  };
2898
2903
  };
2899
2904
  };
2905
+ latestBlock: {
2906
+ header: {
2907
+ consensusParametersVersion: string;
2908
+ };
2909
+ };
2900
2910
  };
2901
2911
  };
2902
2912
  export type GqlGetChainAndNodeInfoQueryVariables = Exact<{
@@ -2982,6 +2992,11 @@ export type GqlGetChainAndNodeInfoQuery = {
2982
2992
  };
2983
2993
  };
2984
2994
  };
2995
+ latestBlock: {
2996
+ header: {
2997
+ consensusParametersVersion: string;
2998
+ };
2999
+ };
2985
3000
  };
2986
3001
  nodeInfo: {
2987
3002
  utxoValidation: boolean;
@@ -4004,12 +4019,12 @@ export type GqlAssembleTxQuery = {
4004
4019
  };
4005
4020
  };
4006
4021
  };
4007
- export type GqlDryRunMutationVariables = Exact<{
4022
+ export type GqlDryRunQueryVariables = Exact<{
4008
4023
  encodedTransactions: Array<Scalars['HexString']['input']> | Scalars['HexString']['input'];
4009
4024
  utxoValidation?: InputMaybe<Scalars['Boolean']['input']>;
4010
4025
  gasPrice?: InputMaybe<Scalars['U64']['input']>;
4011
4026
  }>;
4012
- export type GqlDryRunMutation = {
4027
+ export type GqlDryRunQuery = {
4013
4028
  dryRun: Array<{
4014
4029
  id: string;
4015
4030
  status: {
@@ -4829,7 +4844,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
4829
4844
  getRelayedTransactionStatus(variables: GqlGetRelayedTransactionStatusQueryVariables, options?: C): Promise<GqlGetRelayedTransactionStatusQuery>;
4830
4845
  getAssetDetails(variables: GqlGetAssetDetailsQueryVariables, options?: C): Promise<GqlGetAssetDetailsQuery>;
4831
4846
  assembleTx(variables: GqlAssembleTxQueryVariables, options?: C): Promise<GqlAssembleTxQuery>;
4832
- dryRun(variables: GqlDryRunMutationVariables, options?: C): Promise<GqlDryRunMutation>;
4847
+ dryRun(variables: GqlDryRunQueryVariables, options?: C): Promise<GqlDryRunQuery>;
4833
4848
  submit(variables: GqlSubmitMutationVariables, options?: C): Promise<GqlSubmitMutation>;
4834
4849
  produceBlocks(variables: GqlProduceBlocksMutationVariables, options?: C): Promise<GqlProduceBlocksMutation>;
4835
4850
  getMessageByNonce(variables: GqlGetMessageByNonceQueryVariables, options?: C): Promise<GqlGetMessageByNonceQuery>;