@fuel-ts/account 0.100.4 → 0.100.6
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.
- package/dist/account.d.ts +1 -1
- package/dist/account.d.ts.map +1 -1
- package/dist/index.global.js +60 -12
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +63 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +61 -11
- package/dist/index.mjs.map +1 -1
- package/dist/providers/__generated__/operations.d.ts +18 -3
- package/dist/providers/__generated__/operations.d.ts.map +1 -1
- package/dist/providers/index.d.ts +1 -0
- package/dist/providers/index.d.ts.map +1 -1
- package/dist/providers/provider.d.ts +5 -0
- package/dist/providers/provider.d.ts.map +1 -1
- package/dist/providers/transaction-request/transaction-request.d.ts +3 -3
- package/dist/providers/transaction-request/transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-response/getAllDecodedLogs.d.ts.map +1 -1
- package/dist/providers/transaction-response/transaction-response.d.ts +17 -5
- package/dist/providers/transaction-response/transaction-response.d.ts.map +1 -1
- package/dist/providers/utils/serialization.d.ts.map +1 -1
- package/dist/providers/utils/transaction-response-serialization.d.ts +9 -0
- package/dist/providers/utils/transaction-response-serialization.d.ts.map +1 -0
- package/dist/test-utils.global.js +23 -12
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +22 -11
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +22 -11
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +14 -14
@@ -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
|
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
|
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:
|
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>;
|