@fuel-ts/account 0.75.0 → 0.76.1

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.

@@ -28,7 +28,7 @@ export type Scalars = {
28
28
  Nonce: string;
29
29
  Salt: string;
30
30
  Signature: any;
31
- Tai64Timestamp: any;
31
+ Tai64Timestamp: string;
32
32
  TransactionId: string;
33
33
  TxPointer: any;
34
34
  U8: any;
@@ -937,7 +937,7 @@ export type GqlVariableOutput = {
937
937
  };
938
938
  type GqlTransactionStatusFragment_FailureStatus_Fragment = {
939
939
  __typename: 'FailureStatus';
940
- time: any;
940
+ time: string;
941
941
  reason: string;
942
942
  type: 'FailureStatus';
943
943
  block: {
@@ -951,12 +951,12 @@ type GqlTransactionStatusFragment_SqueezedOutStatus_Fragment = {
951
951
  };
952
952
  type GqlTransactionStatusFragment_SubmittedStatus_Fragment = {
953
953
  __typename: 'SubmittedStatus';
954
- time: any;
954
+ time: string;
955
955
  type: 'SubmittedStatus';
956
956
  };
957
957
  type GqlTransactionStatusFragment_SuccessStatus_Fragment = {
958
958
  __typename: 'SuccessStatus';
959
- time: any;
959
+ time: string;
960
960
  type: 'SuccessStatus';
961
961
  block: {
962
962
  __typename: 'Block';
@@ -1013,7 +1013,7 @@ export type GqlTransactionFragmentFragment = {
1013
1013
  }> | null;
1014
1014
  status?: {
1015
1015
  __typename: 'FailureStatus';
1016
- time: any;
1016
+ time: string;
1017
1017
  reason: string;
1018
1018
  type: 'FailureStatus';
1019
1019
  block: {
@@ -1025,11 +1025,11 @@ export type GqlTransactionFragmentFragment = {
1025
1025
  type: 'SqueezedOutStatus';
1026
1026
  } | {
1027
1027
  __typename: 'SubmittedStatus';
1028
- time: any;
1028
+ time: string;
1029
1029
  type: 'SubmittedStatus';
1030
1030
  } | {
1031
1031
  __typename: 'SuccessStatus';
1032
- time: any;
1032
+ time: string;
1033
1033
  type: 'SuccessStatus';
1034
1034
  block: {
1035
1035
  __typename: 'Block';
@@ -1109,7 +1109,7 @@ export type GqlBlockFragmentFragment = {
1109
1109
  header: {
1110
1110
  __typename: 'Header';
1111
1111
  height: any;
1112
- time: any;
1112
+ time: string;
1113
1113
  };
1114
1114
  transactions: Array<{
1115
1115
  __typename: 'Transaction';
@@ -1169,7 +1169,7 @@ export type GqlMessageProofFragmentFragment = {
1169
1169
  transactionsRoot: string;
1170
1170
  height: any;
1171
1171
  prevRoot: string;
1172
- time: any;
1172
+ time: string;
1173
1173
  applicationHash: string;
1174
1174
  messageReceiptRoot: string;
1175
1175
  messageReceiptCount: string;
@@ -1182,7 +1182,7 @@ export type GqlMessageProofFragmentFragment = {
1182
1182
  transactionsRoot: string;
1183
1183
  height: any;
1184
1184
  prevRoot: string;
1185
- time: any;
1185
+ time: string;
1186
1186
  applicationHash: string;
1187
1187
  messageReceiptRoot: string;
1188
1188
  messageReceiptCount: string;
@@ -1826,7 +1826,7 @@ export type GqlChainInfoFragmentFragment = {
1826
1826
  header: {
1827
1827
  __typename: 'Header';
1828
1828
  height: any;
1829
- time: any;
1829
+ time: string;
1830
1830
  };
1831
1831
  transactions: Array<{
1832
1832
  __typename: 'Transaction';
@@ -2222,7 +2222,7 @@ export type GqlGetChainQuery = {
2222
2222
  header: {
2223
2223
  __typename: 'Header';
2224
2224
  height: any;
2225
- time: any;
2225
+ time: string;
2226
2226
  };
2227
2227
  transactions: Array<{
2228
2228
  __typename: 'Transaction';
@@ -2588,7 +2588,7 @@ export type GqlGetTransactionQuery = {
2588
2588
  }> | null;
2589
2589
  status?: {
2590
2590
  __typename: 'FailureStatus';
2591
- time: any;
2591
+ time: string;
2592
2592
  reason: string;
2593
2593
  type: 'FailureStatus';
2594
2594
  block: {
@@ -2600,11 +2600,11 @@ export type GqlGetTransactionQuery = {
2600
2600
  type: 'SqueezedOutStatus';
2601
2601
  } | {
2602
2602
  __typename: 'SubmittedStatus';
2603
- time: any;
2603
+ time: string;
2604
2604
  type: 'SubmittedStatus';
2605
2605
  } | {
2606
2606
  __typename: 'SuccessStatus';
2607
- time: any;
2607
+ time: string;
2608
2608
  type: 'SuccessStatus';
2609
2609
  block: {
2610
2610
  __typename: 'Block';
@@ -2667,7 +2667,7 @@ export type GqlGetTransactionWithReceiptsQuery = {
2667
2667
  }> | null;
2668
2668
  status?: {
2669
2669
  __typename: 'FailureStatus';
2670
- time: any;
2670
+ time: string;
2671
2671
  reason: string;
2672
2672
  type: 'FailureStatus';
2673
2673
  block: {
@@ -2679,11 +2679,11 @@ export type GqlGetTransactionWithReceiptsQuery = {
2679
2679
  type: 'SqueezedOutStatus';
2680
2680
  } | {
2681
2681
  __typename: 'SubmittedStatus';
2682
- time: any;
2682
+ time: string;
2683
2683
  type: 'SubmittedStatus';
2684
2684
  } | {
2685
2685
  __typename: 'SuccessStatus';
2686
- time: any;
2686
+ time: string;
2687
2687
  type: 'SuccessStatus';
2688
2688
  block: {
2689
2689
  __typename: 'Block';
@@ -2753,7 +2753,7 @@ export type GqlGetTransactionsQuery = {
2753
2753
  }> | null;
2754
2754
  status?: {
2755
2755
  __typename: 'FailureStatus';
2756
- time: any;
2756
+ time: string;
2757
2757
  reason: string;
2758
2758
  type: 'FailureStatus';
2759
2759
  block: {
@@ -2765,11 +2765,11 @@ export type GqlGetTransactionsQuery = {
2765
2765
  type: 'SqueezedOutStatus';
2766
2766
  } | {
2767
2767
  __typename: 'SubmittedStatus';
2768
- time: any;
2768
+ time: string;
2769
2769
  type: 'SubmittedStatus';
2770
2770
  } | {
2771
2771
  __typename: 'SuccessStatus';
2772
- time: any;
2772
+ time: string;
2773
2773
  type: 'SuccessStatus';
2774
2774
  block: {
2775
2775
  __typename: 'Block';
@@ -2849,7 +2849,7 @@ export type GqlGetTransactionsByOwnerQuery = {
2849
2849
  }> | null;
2850
2850
  status?: {
2851
2851
  __typename: 'FailureStatus';
2852
- time: any;
2852
+ time: string;
2853
2853
  reason: string;
2854
2854
  type: 'FailureStatus';
2855
2855
  block: {
@@ -2861,11 +2861,11 @@ export type GqlGetTransactionsByOwnerQuery = {
2861
2861
  type: 'SqueezedOutStatus';
2862
2862
  } | {
2863
2863
  __typename: 'SubmittedStatus';
2864
- time: any;
2864
+ time: string;
2865
2865
  type: 'SubmittedStatus';
2866
2866
  } | {
2867
2867
  __typename: 'SuccessStatus';
2868
- time: any;
2868
+ time: string;
2869
2869
  type: 'SuccessStatus';
2870
2870
  block: {
2871
2871
  __typename: 'Block';
@@ -2911,7 +2911,7 @@ export type GqlGetBlockQuery = {
2911
2911
  header: {
2912
2912
  __typename: 'Header';
2913
2913
  height: any;
2914
- time: any;
2914
+ time: string;
2915
2915
  };
2916
2916
  transactions: Array<{
2917
2917
  __typename: 'Transaction';
@@ -2972,7 +2972,7 @@ export type GqlGetBlockWithTransactionsQuery = {
2972
2972
  }> | null;
2973
2973
  status?: {
2974
2974
  __typename: 'FailureStatus';
2975
- time: any;
2975
+ time: string;
2976
2976
  reason: string;
2977
2977
  type: 'FailureStatus';
2978
2978
  block: {
@@ -2984,11 +2984,11 @@ export type GqlGetBlockWithTransactionsQuery = {
2984
2984
  type: 'SqueezedOutStatus';
2985
2985
  } | {
2986
2986
  __typename: 'SubmittedStatus';
2987
- time: any;
2987
+ time: string;
2988
2988
  type: 'SubmittedStatus';
2989
2989
  } | {
2990
2990
  __typename: 'SuccessStatus';
2991
- time: any;
2991
+ time: string;
2992
2992
  type: 'SuccessStatus';
2993
2993
  block: {
2994
2994
  __typename: 'Block';
@@ -3004,7 +3004,7 @@ export type GqlGetBlockWithTransactionsQuery = {
3004
3004
  header: {
3005
3005
  __typename: 'Header';
3006
3006
  height: any;
3007
- time: any;
3007
+ time: string;
3008
3008
  };
3009
3009
  } | null;
3010
3010
  };
@@ -3026,7 +3026,7 @@ export type GqlGetBlocksQuery = {
3026
3026
  header: {
3027
3027
  __typename: 'Header';
3028
3028
  height: any;
3029
- time: any;
3029
+ time: string;
3030
3030
  };
3031
3031
  transactions: Array<{
3032
3032
  __typename: 'Transaction';
@@ -3221,7 +3221,7 @@ export type GqlGetMessageProofQuery = {
3221
3221
  transactionsRoot: string;
3222
3222
  height: any;
3223
3223
  prevRoot: string;
3224
- time: any;
3224
+ time: string;
3225
3225
  applicationHash: string;
3226
3226
  messageReceiptRoot: string;
3227
3227
  messageReceiptCount: string;
@@ -3234,7 +3234,7 @@ export type GqlGetMessageProofQuery = {
3234
3234
  transactionsRoot: string;
3235
3235
  height: any;
3236
3236
  prevRoot: string;
3237
- time: any;
3237
+ time: string;
3238
3238
  applicationHash: string;
3239
3239
  messageReceiptRoot: string;
3240
3240
  messageReceiptCount: string;
@@ -3320,7 +3320,7 @@ export type GqlSubmitAndAwaitSubscription = {
3320
3320
  __typename: 'Subscription';
3321
3321
  submitAndAwait: {
3322
3322
  __typename: 'FailureStatus';
3323
- time: any;
3323
+ time: string;
3324
3324
  reason: string;
3325
3325
  type: 'FailureStatus';
3326
3326
  block: {
@@ -3332,11 +3332,11 @@ export type GqlSubmitAndAwaitSubscription = {
3332
3332
  type: 'SqueezedOutStatus';
3333
3333
  } | {
3334
3334
  __typename: 'SubmittedStatus';
3335
- time: any;
3335
+ time: string;
3336
3336
  type: 'SubmittedStatus';
3337
3337
  } | {
3338
3338
  __typename: 'SuccessStatus';
3339
- time: any;
3339
+ time: string;
3340
3340
  type: 'SuccessStatus';
3341
3341
  block: {
3342
3342
  __typename: 'Block';
@@ -3356,7 +3356,7 @@ export type GqlStatusChangeSubscription = {
3356
3356
  __typename: 'Subscription';
3357
3357
  statusChange: {
3358
3358
  __typename: 'FailureStatus';
3359
- time: any;
3359
+ time: string;
3360
3360
  reason: string;
3361
3361
  type: 'FailureStatus';
3362
3362
  block: {
@@ -3368,11 +3368,11 @@ export type GqlStatusChangeSubscription = {
3368
3368
  type: 'SqueezedOutStatus';
3369
3369
  } | {
3370
3370
  __typename: 'SubmittedStatus';
3371
- time: any;
3371
+ time: string;
3372
3372
  type: 'SubmittedStatus';
3373
3373
  } | {
3374
3374
  __typename: 'SuccessStatus';
3375
- time: any;
3375
+ time: string;
3376
3376
  type: 'SuccessStatus';
3377
3377
  block: {
3378
3378
  __typename: 'Block';