@waiaas/daemon 2.6.0 → 2.7.0-rc

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.
Files changed (43) hide show
  1. package/dist/api/routes/actions.d.ts.map +1 -1
  2. package/dist/api/routes/actions.js +12 -2
  3. package/dist/api/routes/actions.js.map +1 -1
  4. package/dist/api/routes/admin.d.ts.map +1 -1
  5. package/dist/api/routes/admin.js +1 -0
  6. package/dist/api/routes/admin.js.map +1 -1
  7. package/dist/api/routes/openapi-schemas.d.ts +345 -0
  8. package/dist/api/routes/openapi-schemas.d.ts.map +1 -1
  9. package/dist/api/routes/openapi-schemas.js +25 -0
  10. package/dist/api/routes/openapi-schemas.js.map +1 -1
  11. package/dist/api/routes/transactions.d.ts.map +1 -1
  12. package/dist/api/routes/transactions.js +3 -2
  13. package/dist/api/routes/transactions.js.map +1 -1
  14. package/dist/api/server.d.ts.map +1 -1
  15. package/dist/api/server.js +8 -1
  16. package/dist/api/server.js.map +1 -1
  17. package/dist/infrastructure/settings/setting-keys.d.ts +1 -1
  18. package/dist/infrastructure/settings/setting-keys.d.ts.map +1 -1
  19. package/dist/infrastructure/settings/setting-keys.js +7 -0
  20. package/dist/infrastructure/settings/setting-keys.js.map +1 -1
  21. package/dist/lifecycle/daemon.d.ts +15 -0
  22. package/dist/lifecycle/daemon.d.ts.map +1 -1
  23. package/dist/lifecycle/daemon.js +125 -1
  24. package/dist/lifecycle/daemon.js.map +1 -1
  25. package/dist/pipeline/gas-condition-tracker.d.ts +73 -0
  26. package/dist/pipeline/gas-condition-tracker.d.ts.map +1 -0
  27. package/dist/pipeline/gas-condition-tracker.js +214 -0
  28. package/dist/pipeline/gas-condition-tracker.js.map +1 -0
  29. package/dist/pipeline/pipeline.d.ts.map +1 -1
  30. package/dist/pipeline/pipeline.js +3 -2
  31. package/dist/pipeline/pipeline.js.map +1 -1
  32. package/dist/pipeline/stages.d.ts +15 -0
  33. package/dist/pipeline/stages.d.ts.map +1 -1
  34. package/dist/pipeline/stages.js +152 -1
  35. package/dist/pipeline/stages.js.map +1 -1
  36. package/dist/services/async-polling-service.d.ts +2 -0
  37. package/dist/services/async-polling-service.d.ts.map +1 -1
  38. package/dist/services/async-polling-service.js +33 -0
  39. package/dist/services/async-polling-service.js.map +1 -1
  40. package/package.json +5 -5
  41. package/public/admin/assets/index-C0nLGE6n.js +1 -0
  42. package/public/admin/index.html +1 -1
  43. package/public/admin/assets/index-Bz0Tqa8H.js +0 -1
@@ -701,7 +701,46 @@ export declare const UpdatePolicyRequestOpenAPI: z.ZodObject<{
701
701
  rules?: Record<string, unknown> | undefined;
702
702
  priority?: number | undefined;
703
703
  }>;
704
+ /**
705
+ * OpenAPI schema for gas condition. Documents the optional gasCondition field
706
+ * available on all 5 transaction request types. Actual validation is handled
707
+ * by @waiaas/core GasConditionSchema (Zod SSoT) in stage1Validate.
708
+ */
709
+ export declare const GasConditionOpenAPI: z.ZodObject<{
710
+ maxGasPrice: z.ZodOptional<z.ZodString>;
711
+ maxPriorityFee: z.ZodOptional<z.ZodString>;
712
+ timeout: z.ZodOptional<z.ZodNumber>;
713
+ }, "strip", z.ZodTypeAny, {
714
+ timeout?: number | undefined;
715
+ maxGasPrice?: string | undefined;
716
+ maxPriorityFee?: string | undefined;
717
+ }, {
718
+ timeout?: number | undefined;
719
+ maxGasPrice?: string | undefined;
720
+ maxPriorityFee?: string | undefined;
721
+ }>;
704
722
  export declare const TransferRequestOpenAPI: z.ZodObject<{
723
+ gasCondition: z.ZodOptional<z.ZodEffects<z.ZodObject<{
724
+ maxGasPrice: z.ZodOptional<z.ZodString>;
725
+ maxPriorityFee: z.ZodOptional<z.ZodString>;
726
+ timeout: z.ZodOptional<z.ZodNumber>;
727
+ }, "strip", z.ZodTypeAny, {
728
+ maxGasPrice?: string | undefined;
729
+ maxPriorityFee?: string | undefined;
730
+ timeout?: number | undefined;
731
+ }, {
732
+ maxGasPrice?: string | undefined;
733
+ maxPriorityFee?: string | undefined;
734
+ timeout?: number | undefined;
735
+ }>, {
736
+ maxGasPrice?: string | undefined;
737
+ maxPriorityFee?: string | undefined;
738
+ timeout?: number | undefined;
739
+ }, {
740
+ maxGasPrice?: string | undefined;
741
+ maxPriorityFee?: string | undefined;
742
+ timeout?: number | undefined;
743
+ }>>;
705
744
  type: z.ZodLiteral<"TRANSFER">;
706
745
  to: z.ZodString;
707
746
  amount: z.ZodString;
@@ -713,14 +752,45 @@ export declare const TransferRequestOpenAPI: z.ZodObject<{
713
752
  to: string;
714
753
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
715
754
  memo?: string | undefined;
755
+ gasCondition?: {
756
+ maxGasPrice?: string | undefined;
757
+ maxPriorityFee?: string | undefined;
758
+ timeout?: number | undefined;
759
+ } | undefined;
716
760
  }, {
717
761
  type: "TRANSFER";
718
762
  amount: string;
719
763
  to: string;
720
764
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
721
765
  memo?: string | undefined;
766
+ gasCondition?: {
767
+ maxGasPrice?: string | undefined;
768
+ maxPriorityFee?: string | undefined;
769
+ timeout?: number | undefined;
770
+ } | undefined;
722
771
  }>;
723
772
  export declare const TokenTransferRequestOpenAPI: z.ZodObject<{
773
+ gasCondition: z.ZodOptional<z.ZodEffects<z.ZodObject<{
774
+ maxGasPrice: z.ZodOptional<z.ZodString>;
775
+ maxPriorityFee: z.ZodOptional<z.ZodString>;
776
+ timeout: z.ZodOptional<z.ZodNumber>;
777
+ }, "strip", z.ZodTypeAny, {
778
+ maxGasPrice?: string | undefined;
779
+ maxPriorityFee?: string | undefined;
780
+ timeout?: number | undefined;
781
+ }, {
782
+ maxGasPrice?: string | undefined;
783
+ maxPriorityFee?: string | undefined;
784
+ timeout?: number | undefined;
785
+ }>, {
786
+ maxGasPrice?: string | undefined;
787
+ maxPriorityFee?: string | undefined;
788
+ timeout?: number | undefined;
789
+ }, {
790
+ maxGasPrice?: string | undefined;
791
+ maxPriorityFee?: string | undefined;
792
+ timeout?: number | undefined;
793
+ }>>;
724
794
  type: z.ZodLiteral<"TOKEN_TRANSFER">;
725
795
  to: z.ZodString;
726
796
  amount: z.ZodString;
@@ -764,6 +834,11 @@ export declare const TokenTransferRequestOpenAPI: z.ZodObject<{
764
834
  to: string;
765
835
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
766
836
  memo?: string | undefined;
837
+ gasCondition?: {
838
+ maxGasPrice?: string | undefined;
839
+ maxPriorityFee?: string | undefined;
840
+ timeout?: number | undefined;
841
+ } | undefined;
767
842
  }, {
768
843
  type: "TOKEN_TRANSFER";
769
844
  token: {
@@ -776,8 +851,34 @@ export declare const TokenTransferRequestOpenAPI: z.ZodObject<{
776
851
  to: string;
777
852
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
778
853
  memo?: string | undefined;
854
+ gasCondition?: {
855
+ maxGasPrice?: string | undefined;
856
+ maxPriorityFee?: string | undefined;
857
+ timeout?: number | undefined;
858
+ } | undefined;
779
859
  }>;
780
860
  export declare const ContractCallRequestOpenAPI: z.ZodObject<{
861
+ gasCondition: z.ZodOptional<z.ZodEffects<z.ZodObject<{
862
+ maxGasPrice: z.ZodOptional<z.ZodString>;
863
+ maxPriorityFee: z.ZodOptional<z.ZodString>;
864
+ timeout: z.ZodOptional<z.ZodNumber>;
865
+ }, "strip", z.ZodTypeAny, {
866
+ maxGasPrice?: string | undefined;
867
+ maxPriorityFee?: string | undefined;
868
+ timeout?: number | undefined;
869
+ }, {
870
+ maxGasPrice?: string | undefined;
871
+ maxPriorityFee?: string | undefined;
872
+ timeout?: number | undefined;
873
+ }>, {
874
+ maxGasPrice?: string | undefined;
875
+ maxPriorityFee?: string | undefined;
876
+ timeout?: number | undefined;
877
+ }, {
878
+ maxGasPrice?: string | undefined;
879
+ maxPriorityFee?: string | undefined;
880
+ timeout?: number | undefined;
881
+ }>>;
781
882
  type: z.ZodLiteral<"CONTRACT_CALL">;
782
883
  to: z.ZodString;
783
884
  calldata: z.ZodOptional<z.ZodString>;
@@ -805,6 +906,11 @@ export declare const ContractCallRequestOpenAPI: z.ZodObject<{
805
906
  to: string;
806
907
  value?: string | undefined;
807
908
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
909
+ gasCondition?: {
910
+ maxGasPrice?: string | undefined;
911
+ maxPriorityFee?: string | undefined;
912
+ timeout?: number | undefined;
913
+ } | undefined;
808
914
  calldata?: string | undefined;
809
915
  abi?: Record<string, unknown>[] | undefined;
810
916
  programId?: string | undefined;
@@ -820,6 +926,11 @@ export declare const ContractCallRequestOpenAPI: z.ZodObject<{
820
926
  to: string;
821
927
  value?: string | undefined;
822
928
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
929
+ gasCondition?: {
930
+ maxGasPrice?: string | undefined;
931
+ maxPriorityFee?: string | undefined;
932
+ timeout?: number | undefined;
933
+ } | undefined;
823
934
  calldata?: string | undefined;
824
935
  abi?: Record<string, unknown>[] | undefined;
825
936
  programId?: string | undefined;
@@ -832,6 +943,27 @@ export declare const ContractCallRequestOpenAPI: z.ZodObject<{
832
943
  actionProvider?: string | undefined;
833
944
  }>;
834
945
  export declare const ApproveRequestOpenAPI: z.ZodObject<{
946
+ gasCondition: z.ZodOptional<z.ZodEffects<z.ZodObject<{
947
+ maxGasPrice: z.ZodOptional<z.ZodString>;
948
+ maxPriorityFee: z.ZodOptional<z.ZodString>;
949
+ timeout: z.ZodOptional<z.ZodNumber>;
950
+ }, "strip", z.ZodTypeAny, {
951
+ maxGasPrice?: string | undefined;
952
+ maxPriorityFee?: string | undefined;
953
+ timeout?: number | undefined;
954
+ }, {
955
+ maxGasPrice?: string | undefined;
956
+ maxPriorityFee?: string | undefined;
957
+ timeout?: number | undefined;
958
+ }>, {
959
+ maxGasPrice?: string | undefined;
960
+ maxPriorityFee?: string | undefined;
961
+ timeout?: number | undefined;
962
+ }, {
963
+ maxGasPrice?: string | undefined;
964
+ maxPriorityFee?: string | undefined;
965
+ timeout?: number | undefined;
966
+ }>>;
835
967
  type: z.ZodLiteral<"APPROVE">;
836
968
  spender: z.ZodString;
837
969
  token: z.ZodEffects<z.ZodObject<{
@@ -873,6 +1005,11 @@ export declare const ApproveRequestOpenAPI: z.ZodObject<{
873
1005
  amount: string;
874
1006
  spender: string;
875
1007
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1008
+ gasCondition?: {
1009
+ maxGasPrice?: string | undefined;
1010
+ maxPriorityFee?: string | undefined;
1011
+ timeout?: number | undefined;
1012
+ } | undefined;
876
1013
  }, {
877
1014
  type: "APPROVE";
878
1015
  token: {
@@ -884,10 +1021,57 @@ export declare const ApproveRequestOpenAPI: z.ZodObject<{
884
1021
  amount: string;
885
1022
  spender: string;
886
1023
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1024
+ gasCondition?: {
1025
+ maxGasPrice?: string | undefined;
1026
+ maxPriorityFee?: string | undefined;
1027
+ timeout?: number | undefined;
1028
+ } | undefined;
887
1029
  }>;
888
1030
  export declare const BatchRequestOpenAPI: z.ZodObject<{
1031
+ gasCondition: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1032
+ maxGasPrice: z.ZodOptional<z.ZodString>;
1033
+ maxPriorityFee: z.ZodOptional<z.ZodString>;
1034
+ timeout: z.ZodOptional<z.ZodNumber>;
1035
+ }, "strip", z.ZodTypeAny, {
1036
+ maxGasPrice?: string | undefined;
1037
+ maxPriorityFee?: string | undefined;
1038
+ timeout?: number | undefined;
1039
+ }, {
1040
+ maxGasPrice?: string | undefined;
1041
+ maxPriorityFee?: string | undefined;
1042
+ timeout?: number | undefined;
1043
+ }>, {
1044
+ maxGasPrice?: string | undefined;
1045
+ maxPriorityFee?: string | undefined;
1046
+ timeout?: number | undefined;
1047
+ }, {
1048
+ maxGasPrice?: string | undefined;
1049
+ maxPriorityFee?: string | undefined;
1050
+ timeout?: number | undefined;
1051
+ }>>;
889
1052
  type: z.ZodLiteral<"BATCH">;
890
1053
  instructions: z.ZodArray<z.ZodUnion<[z.ZodObject<Omit<{
1054
+ gasCondition: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1055
+ maxGasPrice: z.ZodOptional<z.ZodString>;
1056
+ maxPriorityFee: z.ZodOptional<z.ZodString>;
1057
+ timeout: z.ZodOptional<z.ZodNumber>;
1058
+ }, "strip", z.ZodTypeAny, {
1059
+ maxGasPrice?: string | undefined;
1060
+ maxPriorityFee?: string | undefined;
1061
+ timeout?: number | undefined;
1062
+ }, {
1063
+ maxGasPrice?: string | undefined;
1064
+ maxPriorityFee?: string | undefined;
1065
+ timeout?: number | undefined;
1066
+ }>, {
1067
+ maxGasPrice?: string | undefined;
1068
+ maxPriorityFee?: string | undefined;
1069
+ timeout?: number | undefined;
1070
+ }, {
1071
+ maxGasPrice?: string | undefined;
1072
+ maxPriorityFee?: string | undefined;
1073
+ timeout?: number | undefined;
1074
+ }>>;
891
1075
  type: z.ZodLiteral<"TRANSFER">;
892
1076
  to: z.ZodString;
893
1077
  amount: z.ZodString;
@@ -898,12 +1082,43 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
898
1082
  to: string;
899
1083
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
900
1084
  memo?: string | undefined;
1085
+ gasCondition?: {
1086
+ maxGasPrice?: string | undefined;
1087
+ maxPriorityFee?: string | undefined;
1088
+ timeout?: number | undefined;
1089
+ } | undefined;
901
1090
  }, {
902
1091
  amount: string;
903
1092
  to: string;
904
1093
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
905
1094
  memo?: string | undefined;
1095
+ gasCondition?: {
1096
+ maxGasPrice?: string | undefined;
1097
+ maxPriorityFee?: string | undefined;
1098
+ timeout?: number | undefined;
1099
+ } | undefined;
906
1100
  }>, z.ZodObject<Omit<{
1101
+ gasCondition: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1102
+ maxGasPrice: z.ZodOptional<z.ZodString>;
1103
+ maxPriorityFee: z.ZodOptional<z.ZodString>;
1104
+ timeout: z.ZodOptional<z.ZodNumber>;
1105
+ }, "strip", z.ZodTypeAny, {
1106
+ maxGasPrice?: string | undefined;
1107
+ maxPriorityFee?: string | undefined;
1108
+ timeout?: number | undefined;
1109
+ }, {
1110
+ maxGasPrice?: string | undefined;
1111
+ maxPriorityFee?: string | undefined;
1112
+ timeout?: number | undefined;
1113
+ }>, {
1114
+ maxGasPrice?: string | undefined;
1115
+ maxPriorityFee?: string | undefined;
1116
+ timeout?: number | undefined;
1117
+ }, {
1118
+ maxGasPrice?: string | undefined;
1119
+ maxPriorityFee?: string | undefined;
1120
+ timeout?: number | undefined;
1121
+ }>>;
907
1122
  type: z.ZodLiteral<"TOKEN_TRANSFER">;
908
1123
  to: z.ZodString;
909
1124
  amount: z.ZodString;
@@ -946,6 +1161,11 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
946
1161
  to: string;
947
1162
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
948
1163
  memo?: string | undefined;
1164
+ gasCondition?: {
1165
+ maxGasPrice?: string | undefined;
1166
+ maxPriorityFee?: string | undefined;
1167
+ timeout?: number | undefined;
1168
+ } | undefined;
949
1169
  }, {
950
1170
  token: {
951
1171
  symbol: string;
@@ -957,7 +1177,33 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
957
1177
  to: string;
958
1178
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
959
1179
  memo?: string | undefined;
1180
+ gasCondition?: {
1181
+ maxGasPrice?: string | undefined;
1182
+ maxPriorityFee?: string | undefined;
1183
+ timeout?: number | undefined;
1184
+ } | undefined;
960
1185
  }>, z.ZodObject<Omit<{
1186
+ gasCondition: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1187
+ maxGasPrice: z.ZodOptional<z.ZodString>;
1188
+ maxPriorityFee: z.ZodOptional<z.ZodString>;
1189
+ timeout: z.ZodOptional<z.ZodNumber>;
1190
+ }, "strip", z.ZodTypeAny, {
1191
+ maxGasPrice?: string | undefined;
1192
+ maxPriorityFee?: string | undefined;
1193
+ timeout?: number | undefined;
1194
+ }, {
1195
+ maxGasPrice?: string | undefined;
1196
+ maxPriorityFee?: string | undefined;
1197
+ timeout?: number | undefined;
1198
+ }>, {
1199
+ maxGasPrice?: string | undefined;
1200
+ maxPriorityFee?: string | undefined;
1201
+ timeout?: number | undefined;
1202
+ }, {
1203
+ maxGasPrice?: string | undefined;
1204
+ maxPriorityFee?: string | undefined;
1205
+ timeout?: number | undefined;
1206
+ }>>;
961
1207
  type: z.ZodLiteral<"CONTRACT_CALL">;
962
1208
  to: z.ZodString;
963
1209
  calldata: z.ZodOptional<z.ZodString>;
@@ -984,6 +1230,11 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
984
1230
  to: string;
985
1231
  value?: string | undefined;
986
1232
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1233
+ gasCondition?: {
1234
+ maxGasPrice?: string | undefined;
1235
+ maxPriorityFee?: string | undefined;
1236
+ timeout?: number | undefined;
1237
+ } | undefined;
987
1238
  calldata?: string | undefined;
988
1239
  abi?: Record<string, unknown>[] | undefined;
989
1240
  programId?: string | undefined;
@@ -998,6 +1249,11 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
998
1249
  to: string;
999
1250
  value?: string | undefined;
1000
1251
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1252
+ gasCondition?: {
1253
+ maxGasPrice?: string | undefined;
1254
+ maxPriorityFee?: string | undefined;
1255
+ timeout?: number | undefined;
1256
+ } | undefined;
1001
1257
  calldata?: string | undefined;
1002
1258
  abi?: Record<string, unknown>[] | undefined;
1003
1259
  programId?: string | undefined;
@@ -1009,6 +1265,27 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
1009
1265
  }[] | undefined;
1010
1266
  actionProvider?: string | undefined;
1011
1267
  }>, z.ZodObject<Omit<{
1268
+ gasCondition: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1269
+ maxGasPrice: z.ZodOptional<z.ZodString>;
1270
+ maxPriorityFee: z.ZodOptional<z.ZodString>;
1271
+ timeout: z.ZodOptional<z.ZodNumber>;
1272
+ }, "strip", z.ZodTypeAny, {
1273
+ maxGasPrice?: string | undefined;
1274
+ maxPriorityFee?: string | undefined;
1275
+ timeout?: number | undefined;
1276
+ }, {
1277
+ maxGasPrice?: string | undefined;
1278
+ maxPriorityFee?: string | undefined;
1279
+ timeout?: number | undefined;
1280
+ }>, {
1281
+ maxGasPrice?: string | undefined;
1282
+ maxPriorityFee?: string | undefined;
1283
+ timeout?: number | undefined;
1284
+ }, {
1285
+ maxGasPrice?: string | undefined;
1286
+ maxPriorityFee?: string | undefined;
1287
+ timeout?: number | undefined;
1288
+ }>>;
1012
1289
  type: z.ZodLiteral<"APPROVE">;
1013
1290
  spender: z.ZodString;
1014
1291
  token: z.ZodEffects<z.ZodObject<{
@@ -1049,6 +1326,11 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
1049
1326
  amount: string;
1050
1327
  spender: string;
1051
1328
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1329
+ gasCondition?: {
1330
+ maxGasPrice?: string | undefined;
1331
+ maxPriorityFee?: string | undefined;
1332
+ timeout?: number | undefined;
1333
+ } | undefined;
1052
1334
  }, {
1053
1335
  token: {
1054
1336
  symbol: string;
@@ -1059,6 +1341,11 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
1059
1341
  amount: string;
1060
1342
  spender: string;
1061
1343
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1344
+ gasCondition?: {
1345
+ maxGasPrice?: string | undefined;
1346
+ maxPriorityFee?: string | undefined;
1347
+ timeout?: number | undefined;
1348
+ } | undefined;
1062
1349
  }>]>, "many">;
1063
1350
  network: z.ZodOptional<z.ZodEnum<["mainnet", "devnet", "testnet", "ethereum-mainnet", "ethereum-sepolia", "polygon-mainnet", "polygon-amoy", "arbitrum-mainnet", "arbitrum-sepolia", "optimism-mainnet", "optimism-sepolia", "base-mainnet", "base-sepolia"]>>;
1064
1351
  }, "strip", z.ZodTypeAny, {
@@ -1068,6 +1355,11 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
1068
1355
  to: string;
1069
1356
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1070
1357
  memo?: string | undefined;
1358
+ gasCondition?: {
1359
+ maxGasPrice?: string | undefined;
1360
+ maxPriorityFee?: string | undefined;
1361
+ timeout?: number | undefined;
1362
+ } | undefined;
1071
1363
  } | {
1072
1364
  token: {
1073
1365
  symbol: string;
@@ -1079,10 +1371,20 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
1079
1371
  to: string;
1080
1372
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1081
1373
  memo?: string | undefined;
1374
+ gasCondition?: {
1375
+ maxGasPrice?: string | undefined;
1376
+ maxPriorityFee?: string | undefined;
1377
+ timeout?: number | undefined;
1378
+ } | undefined;
1082
1379
  } | {
1083
1380
  to: string;
1084
1381
  value?: string | undefined;
1085
1382
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1383
+ gasCondition?: {
1384
+ maxGasPrice?: string | undefined;
1385
+ maxPriorityFee?: string | undefined;
1386
+ timeout?: number | undefined;
1387
+ } | undefined;
1086
1388
  calldata?: string | undefined;
1087
1389
  abi?: Record<string, unknown>[] | undefined;
1088
1390
  programId?: string | undefined;
@@ -1103,8 +1405,18 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
1103
1405
  amount: string;
1104
1406
  spender: string;
1105
1407
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1408
+ gasCondition?: {
1409
+ maxGasPrice?: string | undefined;
1410
+ maxPriorityFee?: string | undefined;
1411
+ timeout?: number | undefined;
1412
+ } | undefined;
1106
1413
  })[];
1107
1414
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1415
+ gasCondition?: {
1416
+ maxGasPrice?: string | undefined;
1417
+ maxPriorityFee?: string | undefined;
1418
+ timeout?: number | undefined;
1419
+ } | undefined;
1108
1420
  }, {
1109
1421
  type: "BATCH";
1110
1422
  instructions: ({
@@ -1112,6 +1424,11 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
1112
1424
  to: string;
1113
1425
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1114
1426
  memo?: string | undefined;
1427
+ gasCondition?: {
1428
+ maxGasPrice?: string | undefined;
1429
+ maxPriorityFee?: string | undefined;
1430
+ timeout?: number | undefined;
1431
+ } | undefined;
1115
1432
  } | {
1116
1433
  token: {
1117
1434
  symbol: string;
@@ -1123,10 +1440,20 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
1123
1440
  to: string;
1124
1441
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1125
1442
  memo?: string | undefined;
1443
+ gasCondition?: {
1444
+ maxGasPrice?: string | undefined;
1445
+ maxPriorityFee?: string | undefined;
1446
+ timeout?: number | undefined;
1447
+ } | undefined;
1126
1448
  } | {
1127
1449
  to: string;
1128
1450
  value?: string | undefined;
1129
1451
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1452
+ gasCondition?: {
1453
+ maxGasPrice?: string | undefined;
1454
+ maxPriorityFee?: string | undefined;
1455
+ timeout?: number | undefined;
1456
+ } | undefined;
1130
1457
  calldata?: string | undefined;
1131
1458
  abi?: Record<string, unknown>[] | undefined;
1132
1459
  programId?: string | undefined;
@@ -1147,8 +1474,18 @@ export declare const BatchRequestOpenAPI: z.ZodObject<{
1147
1474
  amount: string;
1148
1475
  spender: string;
1149
1476
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1477
+ gasCondition?: {
1478
+ maxGasPrice?: string | undefined;
1479
+ maxPriorityFee?: string | undefined;
1480
+ timeout?: number | undefined;
1481
+ } | undefined;
1150
1482
  })[];
1151
1483
  network?: "mainnet" | "devnet" | "testnet" | "ethereum-mainnet" | "ethereum-sepolia" | "polygon-mainnet" | "polygon-amoy" | "arbitrum-mainnet" | "arbitrum-sepolia" | "optimism-mainnet" | "optimism-sepolia" | "base-mainnet" | "base-sepolia" | undefined;
1484
+ gasCondition?: {
1485
+ maxGasPrice?: string | undefined;
1486
+ maxPriorityFee?: string | undefined;
1487
+ timeout?: number | undefined;
1488
+ } | undefined;
1152
1489
  }>;
1153
1490
  /**
1154
1491
  * Loose passthrough schema for the send transaction route.
@@ -2175,6 +2512,7 @@ export declare const SettingsResponseSchema: z.ZodObject<{
2175
2512
  monitoring: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
2176
2513
  telegram: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
2177
2514
  signing_sdk: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
2515
+ gas_condition: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
2178
2516
  }, "strip", z.ZodTypeAny, {
2179
2517
  daemon: Record<string, string | boolean>;
2180
2518
  rpc: Record<string, string | boolean>;
@@ -2187,6 +2525,7 @@ export declare const SettingsResponseSchema: z.ZodObject<{
2187
2525
  autostop: Record<string, string | boolean>;
2188
2526
  monitoring: Record<string, string | boolean>;
2189
2527
  signing_sdk: Record<string, string | boolean>;
2528
+ gas_condition: Record<string, string | boolean>;
2190
2529
  }, {
2191
2530
  daemon: Record<string, string | boolean>;
2192
2531
  rpc: Record<string, string | boolean>;
@@ -2199,6 +2538,7 @@ export declare const SettingsResponseSchema: z.ZodObject<{
2199
2538
  autostop: Record<string, string | boolean>;
2200
2539
  monitoring: Record<string, string | boolean>;
2201
2540
  signing_sdk: Record<string, string | boolean>;
2541
+ gas_condition: Record<string, string | boolean>;
2202
2542
  }>;
2203
2543
  export declare const SettingsUpdateRequestSchema: z.ZodObject<{
2204
2544
  settings: z.ZodArray<z.ZodObject<{
@@ -2236,6 +2576,7 @@ export declare const SettingsUpdateResponseSchema: z.ZodObject<{
2236
2576
  monitoring: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
2237
2577
  telegram: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
2238
2578
  signing_sdk: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
2579
+ gas_condition: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>;
2239
2580
  }, "strip", z.ZodTypeAny, {
2240
2581
  daemon: Record<string, string | boolean>;
2241
2582
  rpc: Record<string, string | boolean>;
@@ -2248,6 +2589,7 @@ export declare const SettingsUpdateResponseSchema: z.ZodObject<{
2248
2589
  autostop: Record<string, string | boolean>;
2249
2590
  monitoring: Record<string, string | boolean>;
2250
2591
  signing_sdk: Record<string, string | boolean>;
2592
+ gas_condition: Record<string, string | boolean>;
2251
2593
  }, {
2252
2594
  daemon: Record<string, string | boolean>;
2253
2595
  rpc: Record<string, string | boolean>;
@@ -2260,6 +2602,7 @@ export declare const SettingsUpdateResponseSchema: z.ZodObject<{
2260
2602
  autostop: Record<string, string | boolean>;
2261
2603
  monitoring: Record<string, string | boolean>;
2262
2604
  signing_sdk: Record<string, string | boolean>;
2605
+ gas_condition: Record<string, string | boolean>;
2263
2606
  }>;
2264
2607
  }, "strip", z.ZodTypeAny, {
2265
2608
  settings: {
@@ -2274,6 +2617,7 @@ export declare const SettingsUpdateResponseSchema: z.ZodObject<{
2274
2617
  autostop: Record<string, string | boolean>;
2275
2618
  monitoring: Record<string, string | boolean>;
2276
2619
  signing_sdk: Record<string, string | boolean>;
2620
+ gas_condition: Record<string, string | boolean>;
2277
2621
  };
2278
2622
  updated: number;
2279
2623
  }, {
@@ -2289,6 +2633,7 @@ export declare const SettingsUpdateResponseSchema: z.ZodObject<{
2289
2633
  autostop: Record<string, string | boolean>;
2290
2634
  monitoring: Record<string, string | boolean>;
2291
2635
  signing_sdk: Record<string, string | boolean>;
2636
+ gas_condition: Record<string, string | boolean>;
2292
2637
  };
2293
2638
  updated: number;
2294
2639
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"openapi-schemas.d.ts","sourceRoot":"","sources":["../../../src/api/routes/openapi-schemas.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"openapi-schemas.d.ts","sourceRoot":"","sources":["../../../src/api/routes/openapi-schemas.ts"],"names":[],"mappings":"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"}