@mimicprotocol/sdk 0.0.1 → 0.1.0
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/axia/ProposalSigner.d.ts +1 -1
- package/dist/axia/ProposalSigner.d.ts.map +1 -1
- package/dist/axia/validators.d.ts +556 -293
- package/dist/axia/validators.d.ts.map +1 -1
- package/dist/axia/validators.js +8 -4
- package/dist/axia/validators.js.map +1 -1
- package/dist/client/domains/IntentsClient.d.ts +34 -27
- package/dist/client/domains/IntentsClient.d.ts.map +1 -1
- package/dist/client/domains/IntentsClient.js +35 -24
- package/dist/client/domains/IntentsClient.js.map +1 -1
- package/dist/registry/TriggerSigner.d.ts +2 -2
- package/dist/registry/TriggerSigner.d.ts.map +1 -1
- package/dist/registry/TriggerSigner.js +4 -4
- package/dist/registry/TriggerSigner.js.map +1 -1
- package/dist/registry/validators.d.ts +4 -4
- package/dist/relayer/eip712Types.d.ts +5 -1
- package/dist/relayer/eip712Types.d.ts.map +1 -1
- package/dist/relayer/validators.d.ts +2009 -1530
- package/dist/relayer/validators.d.ts.map +1 -1
- package/dist/relayer/validators.js +1 -6
- package/dist/relayer/validators.js.map +1 -1
- package/dist/runner/validators.d.ts +4 -4
- package/dist/settler/svm/Controller.d.ts +4 -0
- package/dist/settler/svm/Controller.d.ts.map +1 -1
- package/dist/settler/svm/Controller.js +11 -0
- package/dist/settler/svm/Controller.js.map +1 -1
- package/dist/settler/svm/Settler.d.ts +16 -4
- package/dist/settler/svm/Settler.d.ts.map +1 -1
- package/dist/settler/svm/Settler.js +64 -15
- package/dist/settler/svm/Settler.js.map +1 -1
- package/dist/settler/svm/types.d.ts +9 -5
- package/dist/settler/svm/types.d.ts.map +1 -1
- package/dist/shared/codec/chains/evm.d.ts +9 -7
- package/dist/shared/codec/chains/evm.d.ts.map +1 -1
- package/dist/shared/codec/chains/evm.js +96 -41
- package/dist/shared/codec/chains/evm.js.map +1 -1
- package/dist/shared/codec/chains/svm.d.ts +12 -11
- package/dist/shared/codec/chains/svm.d.ts.map +1 -1
- package/dist/shared/codec/chains/svm.js +68 -48
- package/dist/shared/codec/chains/svm.js.map +1 -1
- package/dist/shared/codec/decoder.d.ts +13 -7
- package/dist/shared/codec/decoder.d.ts.map +1 -1
- package/dist/shared/codec/decoder.js +42 -26
- package/dist/shared/codec/decoder.js.map +1 -1
- package/dist/shared/codec/encoder.d.ts +54 -49
- package/dist/shared/codec/encoder.d.ts.map +1 -1
- package/dist/shared/codec/encoder.js +58 -24
- package/dist/shared/codec/encoder.js.map +1 -1
- package/dist/shared/codec/index.d.ts +1 -1
- package/dist/shared/codec/index.d.ts.map +1 -1
- package/dist/shared/codec/index.js +5 -5
- package/dist/shared/codec/index.js.map +1 -1
- package/dist/shared/eip712Types/index.d.ts +12 -5
- package/dist/shared/eip712Types/index.d.ts.map +1 -1
- package/dist/shared/eip712Types/index.js +24 -16
- package/dist/shared/eip712Types/index.js.map +1 -1
- package/dist/shared/types/intents.d.ts +23 -16
- package/dist/shared/types/intents.d.ts.map +1 -1
- package/dist/shared/utils/addresses.d.ts +1 -1
- package/dist/shared/utils/addresses.js +1 -1
- package/dist/shared/utils/tokens.d.ts +3 -0
- package/dist/shared/utils/tokens.d.ts.map +1 -1
- package/dist/shared/utils/tokens.js +6 -1
- package/dist/shared/utils/tokens.js.map +1 -1
- package/dist/shared/validators/executions.d.ts +6 -6
- package/dist/shared/validators/intents.d.ts +1491 -275
- package/dist/shared/validators/intents.d.ts.map +1 -1
- package/dist/shared/validators/intents.js +69 -28
- package/dist/shared/validators/intents.js.map +1 -1
- package/package.json +1 -1
|
@@ -28,7 +28,7 @@ export declare const IntentLogValidator: z.ZodObject<{
|
|
|
28
28
|
}>;
|
|
29
29
|
export declare const AxiaProposalValidator: z.ZodObject<{
|
|
30
30
|
solver: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
31
|
-
|
|
31
|
+
datas: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">;
|
|
32
32
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
33
33
|
fees: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
34
34
|
feeUsd: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -47,8 +47,8 @@ export declare const AxiaProposalValidator: z.ZodObject<{
|
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
|
48
48
|
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
49
49
|
deadline: string;
|
|
50
|
-
data: string;
|
|
51
50
|
solver: string;
|
|
51
|
+
datas: string[];
|
|
52
52
|
fees: string[];
|
|
53
53
|
feeUsd: string;
|
|
54
54
|
signatures: string[];
|
|
@@ -58,8 +58,8 @@ export declare const AxiaProposalValidator: z.ZodObject<{
|
|
|
58
58
|
}, {
|
|
59
59
|
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
60
60
|
deadline: string;
|
|
61
|
-
data: string;
|
|
62
61
|
solver: string;
|
|
62
|
+
datas: string[];
|
|
63
63
|
fees: string[];
|
|
64
64
|
feeUsd: string;
|
|
65
65
|
signatures: string[];
|
|
@@ -68,17 +68,10 @@ export declare const AxiaProposalValidator: z.ZodObject<{
|
|
|
68
68
|
destTransactionHash?: string | undefined;
|
|
69
69
|
}>;
|
|
70
70
|
export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
71
|
-
|
|
72
|
-
readonly Swap: 0;
|
|
73
|
-
readonly Transfer: 1;
|
|
74
|
-
readonly EvmCall: 2;
|
|
75
|
-
readonly SvmCall: 3;
|
|
76
|
-
}>;
|
|
77
|
-
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
71
|
+
feePayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
78
72
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
79
73
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
80
74
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
81
|
-
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
82
75
|
maxFees: z.ZodArray<z.ZodObject<{
|
|
83
76
|
token: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
84
77
|
amount: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -89,18 +82,46 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
89
82
|
token: string;
|
|
90
83
|
amount: string;
|
|
91
84
|
}>, "many">;
|
|
92
|
-
|
|
93
|
-
|
|
85
|
+
triggerSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
86
|
+
minValidations: z.ZodNumber;
|
|
87
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
88
|
+
opType: z.ZodNativeEnum<{
|
|
89
|
+
readonly Swap: 0;
|
|
90
|
+
readonly Transfer: 1;
|
|
91
|
+
readonly EvmCall: 2;
|
|
92
|
+
readonly CrossChainSwap: 3;
|
|
93
|
+
readonly EvmDynamicCall: 4;
|
|
94
|
+
readonly SvmCall: 5;
|
|
95
|
+
}>;
|
|
96
|
+
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
94
97
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
98
|
+
events: z.ZodArray<z.ZodObject<{
|
|
99
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
100
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
101
|
+
}, "strip", z.ZodTypeAny, {
|
|
102
|
+
data: string;
|
|
103
|
+
topic: string;
|
|
104
|
+
}, {
|
|
105
|
+
data: string;
|
|
106
|
+
topic: string;
|
|
107
|
+
}>, "many">;
|
|
95
108
|
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
110
|
+
user: string;
|
|
96
111
|
data: string;
|
|
97
|
-
|
|
112
|
+
events: {
|
|
113
|
+
data: string;
|
|
114
|
+
topic: string;
|
|
115
|
+
}[];
|
|
98
116
|
}, {
|
|
117
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
118
|
+
user: string;
|
|
99
119
|
data: string;
|
|
100
|
-
|
|
120
|
+
events: {
|
|
121
|
+
data: string;
|
|
122
|
+
topic: string;
|
|
123
|
+
}[];
|
|
101
124
|
}>, "many">;
|
|
102
|
-
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
103
|
-
minValidations: z.ZodNumber;
|
|
104
125
|
}, {
|
|
105
126
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
106
127
|
executionHash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -115,7 +136,7 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
115
136
|
}>;
|
|
116
137
|
proposals: z.ZodArray<z.ZodObject<{
|
|
117
138
|
solver: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
118
|
-
|
|
139
|
+
datas: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">;
|
|
119
140
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
120
141
|
fees: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
121
142
|
feeUsd: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -134,8 +155,8 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
134
155
|
}, "strip", z.ZodTypeAny, {
|
|
135
156
|
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
136
157
|
deadline: string;
|
|
137
|
-
data: string;
|
|
138
158
|
solver: string;
|
|
159
|
+
datas: string[];
|
|
139
160
|
fees: string[];
|
|
140
161
|
feeUsd: string;
|
|
141
162
|
signatures: string[];
|
|
@@ -145,8 +166,8 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
145
166
|
}, {
|
|
146
167
|
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
147
168
|
deadline: string;
|
|
148
|
-
data: string;
|
|
149
169
|
solver: string;
|
|
170
|
+
datas: string[];
|
|
150
171
|
fees: string[];
|
|
151
172
|
feeUsd: string;
|
|
152
173
|
signatures: string[];
|
|
@@ -173,29 +194,32 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
173
194
|
}>, "many">;
|
|
174
195
|
}>, "strip", z.ZodTypeAny, {
|
|
175
196
|
status: "succeeded" | "failed" | "created" | "enqueued" | "discarded" | "submitted" | "expired";
|
|
176
|
-
|
|
177
|
-
user: string;
|
|
197
|
+
feePayer: string;
|
|
178
198
|
settler: string;
|
|
179
199
|
nonce: string;
|
|
180
200
|
deadline: string;
|
|
181
|
-
data: string;
|
|
182
201
|
maxFees: {
|
|
183
202
|
token: string;
|
|
184
203
|
amount: string;
|
|
185
204
|
}[];
|
|
186
|
-
|
|
205
|
+
triggerSig: string;
|
|
206
|
+
minValidations: number;
|
|
207
|
+
operations: {
|
|
208
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
209
|
+
user: string;
|
|
187
210
|
data: string;
|
|
188
|
-
|
|
211
|
+
events: {
|
|
212
|
+
data: string;
|
|
213
|
+
topic: string;
|
|
214
|
+
}[];
|
|
189
215
|
}[];
|
|
190
|
-
configSig: string;
|
|
191
|
-
minValidations: number;
|
|
192
216
|
hash: string;
|
|
193
217
|
executionHash: string;
|
|
194
218
|
proposals: {
|
|
195
219
|
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
196
220
|
deadline: string;
|
|
197
|
-
data: string;
|
|
198
221
|
solver: string;
|
|
222
|
+
datas: string[];
|
|
199
223
|
fees: string[];
|
|
200
224
|
feeUsd: string;
|
|
201
225
|
signatures: string[];
|
|
@@ -210,29 +234,32 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
210
234
|
}[];
|
|
211
235
|
}, {
|
|
212
236
|
status: "succeeded" | "failed" | "created" | "enqueued" | "discarded" | "submitted" | "expired";
|
|
213
|
-
|
|
214
|
-
user: string;
|
|
237
|
+
feePayer: string;
|
|
215
238
|
settler: string;
|
|
216
239
|
nonce: string;
|
|
217
240
|
deadline: string;
|
|
218
|
-
data: string;
|
|
219
241
|
maxFees: {
|
|
220
242
|
token: string;
|
|
221
243
|
amount: string;
|
|
222
244
|
}[];
|
|
223
|
-
|
|
245
|
+
triggerSig: string;
|
|
246
|
+
minValidations: number;
|
|
247
|
+
operations: {
|
|
248
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
249
|
+
user: string;
|
|
224
250
|
data: string;
|
|
225
|
-
|
|
251
|
+
events: {
|
|
252
|
+
data: string;
|
|
253
|
+
topic: string;
|
|
254
|
+
}[];
|
|
226
255
|
}[];
|
|
227
|
-
configSig: string;
|
|
228
|
-
minValidations: number;
|
|
229
256
|
hash: string;
|
|
230
257
|
executionHash: string;
|
|
231
258
|
proposals: {
|
|
232
259
|
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
233
260
|
deadline: string;
|
|
234
|
-
data: string;
|
|
235
261
|
solver: string;
|
|
262
|
+
datas: string[];
|
|
236
263
|
fees: string[];
|
|
237
264
|
feeUsd: string;
|
|
238
265
|
signatures: string[];
|
|
@@ -246,18 +273,11 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
246
273
|
level: "info" | "success" | "error";
|
|
247
274
|
}[];
|
|
248
275
|
}>;
|
|
249
|
-
export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
250
|
-
|
|
251
|
-
readonly Swap: 0;
|
|
252
|
-
readonly Transfer: 1;
|
|
253
|
-
readonly EvmCall: 2;
|
|
254
|
-
readonly SvmCall: 3;
|
|
255
|
-
}>;
|
|
256
|
-
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
276
|
+
export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
277
|
+
feePayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
257
278
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
258
279
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
259
280
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
260
|
-
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
261
281
|
maxFees: z.ZodArray<z.ZodObject<{
|
|
262
282
|
token: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
263
283
|
amount: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -268,145 +288,235 @@ export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
268
288
|
token: string;
|
|
269
289
|
amount: string;
|
|
270
290
|
}>, "many">;
|
|
271
|
-
|
|
272
|
-
|
|
291
|
+
triggerSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
292
|
+
minValidations: z.ZodNumber;
|
|
293
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
294
|
+
opType: z.ZodNativeEnum<{
|
|
295
|
+
readonly Swap: 0;
|
|
296
|
+
readonly Transfer: 1;
|
|
297
|
+
readonly EvmCall: 2;
|
|
298
|
+
readonly CrossChainSwap: 3;
|
|
299
|
+
readonly EvmDynamicCall: 4;
|
|
300
|
+
readonly SvmCall: 5;
|
|
301
|
+
}>;
|
|
302
|
+
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
273
303
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
304
|
+
events: z.ZodArray<z.ZodObject<{
|
|
305
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
306
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
307
|
+
}, "strip", z.ZodTypeAny, {
|
|
308
|
+
data: string;
|
|
309
|
+
topic: string;
|
|
310
|
+
}, {
|
|
311
|
+
data: string;
|
|
312
|
+
topic: string;
|
|
313
|
+
}>, "many">;
|
|
274
314
|
}, "strip", z.ZodTypeAny, {
|
|
315
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
316
|
+
user: string;
|
|
275
317
|
data: string;
|
|
276
|
-
|
|
318
|
+
events: {
|
|
319
|
+
data: string;
|
|
320
|
+
topic: string;
|
|
321
|
+
}[];
|
|
277
322
|
}, {
|
|
323
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
324
|
+
user: string;
|
|
278
325
|
data: string;
|
|
279
|
-
|
|
326
|
+
events: {
|
|
327
|
+
data: string;
|
|
328
|
+
topic: string;
|
|
329
|
+
}[];
|
|
280
330
|
}>, "many">;
|
|
281
|
-
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
282
|
-
minValidations: z.ZodNumber;
|
|
283
331
|
}, {
|
|
284
332
|
validations: z.ZodArray<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">, "many">;
|
|
285
333
|
}>, {
|
|
286
334
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
287
335
|
}>, "strip", z.ZodTypeAny, {
|
|
288
|
-
|
|
289
|
-
user: string;
|
|
336
|
+
feePayer: string;
|
|
290
337
|
settler: string;
|
|
291
338
|
nonce: string;
|
|
292
339
|
deadline: string;
|
|
293
|
-
data: string;
|
|
294
340
|
maxFees: {
|
|
295
341
|
token: string;
|
|
296
342
|
amount: string;
|
|
297
343
|
}[];
|
|
298
|
-
|
|
344
|
+
triggerSig: string;
|
|
345
|
+
minValidations: number;
|
|
346
|
+
operations: {
|
|
347
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
348
|
+
user: string;
|
|
299
349
|
data: string;
|
|
300
|
-
|
|
350
|
+
events: {
|
|
351
|
+
data: string;
|
|
352
|
+
topic: string;
|
|
353
|
+
}[];
|
|
301
354
|
}[];
|
|
302
|
-
configSig: string;
|
|
303
|
-
minValidations: number;
|
|
304
355
|
hash: string;
|
|
305
356
|
validations: string[][];
|
|
306
357
|
}, {
|
|
307
|
-
|
|
308
|
-
user: string;
|
|
358
|
+
feePayer: string;
|
|
309
359
|
settler: string;
|
|
310
360
|
nonce: string;
|
|
311
361
|
deadline: string;
|
|
312
|
-
data: string;
|
|
313
362
|
maxFees: {
|
|
314
363
|
token: string;
|
|
315
364
|
amount: string;
|
|
316
365
|
}[];
|
|
317
|
-
|
|
366
|
+
triggerSig: string;
|
|
367
|
+
minValidations: number;
|
|
368
|
+
operations: {
|
|
369
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
370
|
+
user: string;
|
|
318
371
|
data: string;
|
|
319
|
-
|
|
372
|
+
events: {
|
|
373
|
+
data: string;
|
|
374
|
+
topic: string;
|
|
375
|
+
}[];
|
|
320
376
|
}[];
|
|
321
|
-
configSig: string;
|
|
322
|
-
minValidations: number;
|
|
323
377
|
hash: string;
|
|
324
378
|
validations: string[][];
|
|
325
379
|
}>, {
|
|
326
|
-
|
|
327
|
-
|
|
380
|
+
feePayer: string;
|
|
381
|
+
settler: string;
|
|
382
|
+
nonce: string;
|
|
383
|
+
deadline: string;
|
|
384
|
+
maxFees: {
|
|
385
|
+
token: string;
|
|
386
|
+
amount: string;
|
|
387
|
+
}[];
|
|
388
|
+
triggerSig: string;
|
|
389
|
+
minValidations: number;
|
|
390
|
+
operations: {
|
|
391
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
392
|
+
user: string;
|
|
393
|
+
data: string;
|
|
394
|
+
events: {
|
|
395
|
+
data: string;
|
|
396
|
+
topic: string;
|
|
397
|
+
}[];
|
|
398
|
+
}[];
|
|
399
|
+
hash: string;
|
|
400
|
+
validations: string[][];
|
|
401
|
+
}, {
|
|
402
|
+
feePayer: string;
|
|
328
403
|
settler: string;
|
|
329
404
|
nonce: string;
|
|
330
405
|
deadline: string;
|
|
331
|
-
data: string;
|
|
332
406
|
maxFees: {
|
|
333
407
|
token: string;
|
|
334
408
|
amount: string;
|
|
335
409
|
}[];
|
|
336
|
-
|
|
410
|
+
triggerSig: string;
|
|
411
|
+
minValidations: number;
|
|
412
|
+
operations: {
|
|
413
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
414
|
+
user: string;
|
|
337
415
|
data: string;
|
|
338
|
-
|
|
416
|
+
events: {
|
|
417
|
+
data: string;
|
|
418
|
+
topic: string;
|
|
419
|
+
}[];
|
|
339
420
|
}[];
|
|
340
|
-
|
|
421
|
+
hash: string;
|
|
422
|
+
validations: string[][];
|
|
423
|
+
}>, {
|
|
424
|
+
feePayer: string;
|
|
425
|
+
settler: string;
|
|
426
|
+
nonce: string;
|
|
427
|
+
deadline: string;
|
|
428
|
+
maxFees: {
|
|
429
|
+
token: string;
|
|
430
|
+
amount: string;
|
|
431
|
+
}[];
|
|
432
|
+
triggerSig: string;
|
|
341
433
|
minValidations: number;
|
|
434
|
+
operations: {
|
|
435
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
436
|
+
user: string;
|
|
437
|
+
data: string;
|
|
438
|
+
events: {
|
|
439
|
+
data: string;
|
|
440
|
+
topic: string;
|
|
441
|
+
}[];
|
|
442
|
+
}[];
|
|
342
443
|
hash: string;
|
|
343
444
|
validations: string[][];
|
|
344
445
|
}, {
|
|
345
|
-
|
|
346
|
-
user: string;
|
|
446
|
+
feePayer: string;
|
|
347
447
|
settler: string;
|
|
348
448
|
nonce: string;
|
|
349
449
|
deadline: string;
|
|
350
|
-
data: string;
|
|
351
450
|
maxFees: {
|
|
352
451
|
token: string;
|
|
353
452
|
amount: string;
|
|
354
453
|
}[];
|
|
355
|
-
|
|
454
|
+
triggerSig: string;
|
|
455
|
+
minValidations: number;
|
|
456
|
+
operations: {
|
|
457
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
458
|
+
user: string;
|
|
356
459
|
data: string;
|
|
357
|
-
|
|
460
|
+
events: {
|
|
461
|
+
data: string;
|
|
462
|
+
topic: string;
|
|
463
|
+
}[];
|
|
358
464
|
}[];
|
|
359
|
-
configSig: string;
|
|
360
|
-
minValidations: number;
|
|
361
465
|
hash: string;
|
|
362
466
|
validations: string[][];
|
|
363
467
|
}>, {
|
|
364
|
-
|
|
365
|
-
user: string;
|
|
468
|
+
feePayer: string;
|
|
366
469
|
settler: string;
|
|
367
470
|
nonce: string;
|
|
368
471
|
deadline: string;
|
|
369
|
-
data: string;
|
|
370
472
|
maxFees: {
|
|
371
473
|
token: string;
|
|
372
474
|
amount: string;
|
|
373
475
|
}[];
|
|
374
|
-
|
|
476
|
+
triggerSig: string;
|
|
477
|
+
minValidations: number;
|
|
478
|
+
operations: {
|
|
479
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
480
|
+
user: string;
|
|
375
481
|
data: string;
|
|
376
|
-
|
|
482
|
+
events: {
|
|
483
|
+
data: string;
|
|
484
|
+
topic: string;
|
|
485
|
+
}[];
|
|
377
486
|
}[];
|
|
378
|
-
configSig: string;
|
|
379
|
-
minValidations: number;
|
|
380
487
|
hash: string;
|
|
381
488
|
validations: string[][];
|
|
382
489
|
}, {
|
|
383
|
-
|
|
384
|
-
user: string;
|
|
490
|
+
feePayer: string;
|
|
385
491
|
settler: string;
|
|
386
492
|
nonce: string;
|
|
387
493
|
deadline: string;
|
|
388
|
-
data: string;
|
|
389
494
|
maxFees: {
|
|
390
495
|
token: string;
|
|
391
496
|
amount: string;
|
|
392
497
|
}[];
|
|
393
|
-
|
|
498
|
+
triggerSig: string;
|
|
499
|
+
minValidations: number;
|
|
500
|
+
operations: {
|
|
501
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
502
|
+
user: string;
|
|
394
503
|
data: string;
|
|
395
|
-
|
|
504
|
+
events: {
|
|
505
|
+
data: string;
|
|
506
|
+
topic: string;
|
|
507
|
+
}[];
|
|
396
508
|
}[];
|
|
397
|
-
configSig: string;
|
|
398
|
-
minValidations: number;
|
|
399
509
|
hash: string;
|
|
400
510
|
validations: string[][];
|
|
401
511
|
}>;
|
|
402
512
|
export declare const IntentQuoteValidator: z.ZodObject<{
|
|
403
|
-
|
|
513
|
+
datas: z.ZodArray<z.ZodString, "many">;
|
|
404
514
|
fees: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
405
515
|
}, "strip", z.ZodTypeAny, {
|
|
406
|
-
|
|
516
|
+
datas: string[];
|
|
407
517
|
fees: string[];
|
|
408
518
|
}, {
|
|
409
|
-
|
|
519
|
+
datas: string[];
|
|
410
520
|
fees: string[];
|
|
411
521
|
}>;
|
|
412
522
|
export declare const IntentSubmitRequestValidator: z.ZodObject<{
|
|
@@ -430,21 +540,21 @@ export declare const IntentSubmitValidator: z.ZodObject<{
|
|
|
430
540
|
received: boolean;
|
|
431
541
|
}>;
|
|
432
542
|
export declare const IntentsGetRequestValidator: z.ZodObject<{
|
|
433
|
-
|
|
543
|
+
feePayer: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
434
544
|
deadlineAfter: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
435
545
|
deadlineBefore: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
436
546
|
settler: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
437
547
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
438
548
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
439
549
|
}, "strip", z.ZodTypeAny, {
|
|
440
|
-
|
|
550
|
+
feePayer?: string | undefined;
|
|
441
551
|
settler?: string | undefined;
|
|
442
552
|
offset?: number | undefined;
|
|
443
553
|
limit?: number | undefined;
|
|
444
554
|
deadlineAfter?: string | undefined;
|
|
445
555
|
deadlineBefore?: string | undefined;
|
|
446
556
|
}, {
|
|
447
|
-
|
|
557
|
+
feePayer?: string | undefined;
|
|
448
558
|
settler?: string | undefined;
|
|
449
559
|
offset?: number | undefined;
|
|
450
560
|
limit?: number | undefined;
|
|
@@ -452,17 +562,10 @@ export declare const IntentsGetRequestValidator: z.ZodObject<{
|
|
|
452
562
|
deadlineBefore?: string | undefined;
|
|
453
563
|
}>;
|
|
454
564
|
export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
455
|
-
|
|
456
|
-
readonly Swap: 0;
|
|
457
|
-
readonly Transfer: 1;
|
|
458
|
-
readonly EvmCall: 2;
|
|
459
|
-
readonly SvmCall: 3;
|
|
460
|
-
}>;
|
|
461
|
-
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
565
|
+
feePayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
462
566
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
463
567
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
464
568
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
465
|
-
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
466
569
|
maxFees: z.ZodArray<z.ZodObject<{
|
|
467
570
|
token: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
468
571
|
amount: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -473,18 +576,46 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
473
576
|
token: string;
|
|
474
577
|
amount: string;
|
|
475
578
|
}>, "many">;
|
|
476
|
-
|
|
477
|
-
|
|
579
|
+
triggerSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
580
|
+
minValidations: z.ZodNumber;
|
|
581
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
582
|
+
opType: z.ZodNativeEnum<{
|
|
583
|
+
readonly Swap: 0;
|
|
584
|
+
readonly Transfer: 1;
|
|
585
|
+
readonly EvmCall: 2;
|
|
586
|
+
readonly CrossChainSwap: 3;
|
|
587
|
+
readonly EvmDynamicCall: 4;
|
|
588
|
+
readonly SvmCall: 5;
|
|
589
|
+
}>;
|
|
590
|
+
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
478
591
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
592
|
+
events: z.ZodArray<z.ZodObject<{
|
|
593
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
594
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
595
|
+
}, "strip", z.ZodTypeAny, {
|
|
596
|
+
data: string;
|
|
597
|
+
topic: string;
|
|
598
|
+
}, {
|
|
599
|
+
data: string;
|
|
600
|
+
topic: string;
|
|
601
|
+
}>, "many">;
|
|
479
602
|
}, "strip", z.ZodTypeAny, {
|
|
603
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
604
|
+
user: string;
|
|
480
605
|
data: string;
|
|
481
|
-
|
|
606
|
+
events: {
|
|
607
|
+
data: string;
|
|
608
|
+
topic: string;
|
|
609
|
+
}[];
|
|
482
610
|
}, {
|
|
611
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
612
|
+
user: string;
|
|
483
613
|
data: string;
|
|
484
|
-
|
|
614
|
+
events: {
|
|
615
|
+
data: string;
|
|
616
|
+
topic: string;
|
|
617
|
+
}[];
|
|
485
618
|
}>, "many">;
|
|
486
|
-
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
487
|
-
minValidations: z.ZodNumber;
|
|
488
619
|
}, {
|
|
489
620
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
490
621
|
executionHash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -499,7 +630,7 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
499
630
|
}>;
|
|
500
631
|
proposals: z.ZodArray<z.ZodObject<{
|
|
501
632
|
solver: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
502
|
-
|
|
633
|
+
datas: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">;
|
|
503
634
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
504
635
|
fees: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
505
636
|
feeUsd: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -518,8 +649,8 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
518
649
|
}, "strip", z.ZodTypeAny, {
|
|
519
650
|
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
520
651
|
deadline: string;
|
|
521
|
-
data: string;
|
|
522
652
|
solver: string;
|
|
653
|
+
datas: string[];
|
|
523
654
|
fees: string[];
|
|
524
655
|
feeUsd: string;
|
|
525
656
|
signatures: string[];
|
|
@@ -529,8 +660,8 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
529
660
|
}, {
|
|
530
661
|
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
531
662
|
deadline: string;
|
|
532
|
-
data: string;
|
|
533
663
|
solver: string;
|
|
664
|
+
datas: string[];
|
|
534
665
|
fees: string[];
|
|
535
666
|
feeUsd: string;
|
|
536
667
|
signatures: string[];
|
|
@@ -557,29 +688,32 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
557
688
|
}>, "many">;
|
|
558
689
|
}>, "strip", z.ZodTypeAny, {
|
|
559
690
|
status: "succeeded" | "failed" | "created" | "enqueued" | "discarded" | "submitted" | "expired";
|
|
560
|
-
|
|
561
|
-
user: string;
|
|
691
|
+
feePayer: string;
|
|
562
692
|
settler: string;
|
|
563
693
|
nonce: string;
|
|
564
694
|
deadline: string;
|
|
565
|
-
data: string;
|
|
566
695
|
maxFees: {
|
|
567
696
|
token: string;
|
|
568
697
|
amount: string;
|
|
569
698
|
}[];
|
|
570
|
-
|
|
699
|
+
triggerSig: string;
|
|
700
|
+
minValidations: number;
|
|
701
|
+
operations: {
|
|
702
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
703
|
+
user: string;
|
|
571
704
|
data: string;
|
|
572
|
-
|
|
705
|
+
events: {
|
|
706
|
+
data: string;
|
|
707
|
+
topic: string;
|
|
708
|
+
}[];
|
|
573
709
|
}[];
|
|
574
|
-
configSig: string;
|
|
575
|
-
minValidations: number;
|
|
576
710
|
hash: string;
|
|
577
711
|
executionHash: string;
|
|
578
712
|
proposals: {
|
|
579
713
|
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
580
714
|
deadline: string;
|
|
581
|
-
data: string;
|
|
582
715
|
solver: string;
|
|
716
|
+
datas: string[];
|
|
583
717
|
fees: string[];
|
|
584
718
|
feeUsd: string;
|
|
585
719
|
signatures: string[];
|
|
@@ -594,29 +728,32 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
594
728
|
}[];
|
|
595
729
|
}, {
|
|
596
730
|
status: "succeeded" | "failed" | "created" | "enqueued" | "discarded" | "submitted" | "expired";
|
|
597
|
-
|
|
598
|
-
user: string;
|
|
731
|
+
feePayer: string;
|
|
599
732
|
settler: string;
|
|
600
733
|
nonce: string;
|
|
601
734
|
deadline: string;
|
|
602
|
-
data: string;
|
|
603
735
|
maxFees: {
|
|
604
736
|
token: string;
|
|
605
737
|
amount: string;
|
|
606
738
|
}[];
|
|
607
|
-
|
|
739
|
+
triggerSig: string;
|
|
740
|
+
minValidations: number;
|
|
741
|
+
operations: {
|
|
742
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
743
|
+
user: string;
|
|
608
744
|
data: string;
|
|
609
|
-
|
|
745
|
+
events: {
|
|
746
|
+
data: string;
|
|
747
|
+
topic: string;
|
|
748
|
+
}[];
|
|
610
749
|
}[];
|
|
611
|
-
configSig: string;
|
|
612
|
-
minValidations: number;
|
|
613
750
|
hash: string;
|
|
614
751
|
executionHash: string;
|
|
615
752
|
proposals: {
|
|
616
753
|
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
617
754
|
deadline: string;
|
|
618
|
-
data: string;
|
|
619
755
|
solver: string;
|
|
756
|
+
datas: string[];
|
|
620
757
|
fees: string[];
|
|
621
758
|
feeUsd: string;
|
|
622
759
|
signatures: string[];
|
|
@@ -657,17 +794,10 @@ export declare const SettlersValidator: z.ZodArray<z.ZodObject<{
|
|
|
657
794
|
createdAt: Date;
|
|
658
795
|
}>, "many">;
|
|
659
796
|
export declare const ExecutionIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
660
|
-
|
|
661
|
-
readonly Swap: 0;
|
|
662
|
-
readonly Transfer: 1;
|
|
663
|
-
readonly EvmCall: 2;
|
|
664
|
-
readonly SvmCall: 3;
|
|
665
|
-
}>;
|
|
666
|
-
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
797
|
+
feePayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
667
798
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
668
799
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
669
800
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
670
|
-
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
671
801
|
maxFees: z.ZodArray<z.ZodObject<{
|
|
672
802
|
token: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
673
803
|
amount: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -678,55 +808,89 @@ export declare const ExecutionIntentValidator: z.ZodObject<z.objectUtil.extendSh
|
|
|
678
808
|
token: string;
|
|
679
809
|
amount: string;
|
|
680
810
|
}>, "many">;
|
|
681
|
-
|
|
682
|
-
|
|
811
|
+
triggerSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
812
|
+
minValidations: z.ZodNumber;
|
|
813
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
814
|
+
opType: z.ZodNativeEnum<{
|
|
815
|
+
readonly Swap: 0;
|
|
816
|
+
readonly Transfer: 1;
|
|
817
|
+
readonly EvmCall: 2;
|
|
818
|
+
readonly CrossChainSwap: 3;
|
|
819
|
+
readonly EvmDynamicCall: 4;
|
|
820
|
+
readonly SvmCall: 5;
|
|
821
|
+
}>;
|
|
822
|
+
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
683
823
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
824
|
+
events: z.ZodArray<z.ZodObject<{
|
|
825
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
826
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
827
|
+
}, "strip", z.ZodTypeAny, {
|
|
828
|
+
data: string;
|
|
829
|
+
topic: string;
|
|
830
|
+
}, {
|
|
831
|
+
data: string;
|
|
832
|
+
topic: string;
|
|
833
|
+
}>, "many">;
|
|
684
834
|
}, "strip", z.ZodTypeAny, {
|
|
835
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
836
|
+
user: string;
|
|
685
837
|
data: string;
|
|
686
|
-
|
|
838
|
+
events: {
|
|
839
|
+
data: string;
|
|
840
|
+
topic: string;
|
|
841
|
+
}[];
|
|
687
842
|
}, {
|
|
843
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
844
|
+
user: string;
|
|
688
845
|
data: string;
|
|
689
|
-
|
|
846
|
+
events: {
|
|
847
|
+
data: string;
|
|
848
|
+
topic: string;
|
|
849
|
+
}[];
|
|
690
850
|
}>, "many">;
|
|
691
|
-
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
692
|
-
minValidations: z.ZodNumber;
|
|
693
851
|
}, {
|
|
694
852
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
695
853
|
}>, "strip", z.ZodTypeAny, {
|
|
696
|
-
|
|
697
|
-
user: string;
|
|
854
|
+
feePayer: string;
|
|
698
855
|
settler: string;
|
|
699
856
|
nonce: string;
|
|
700
857
|
deadline: string;
|
|
701
|
-
data: string;
|
|
702
858
|
maxFees: {
|
|
703
859
|
token: string;
|
|
704
860
|
amount: string;
|
|
705
861
|
}[];
|
|
706
|
-
|
|
862
|
+
triggerSig: string;
|
|
863
|
+
minValidations: number;
|
|
864
|
+
operations: {
|
|
865
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
866
|
+
user: string;
|
|
707
867
|
data: string;
|
|
708
|
-
|
|
868
|
+
events: {
|
|
869
|
+
data: string;
|
|
870
|
+
topic: string;
|
|
871
|
+
}[];
|
|
709
872
|
}[];
|
|
710
|
-
configSig: string;
|
|
711
|
-
minValidations: number;
|
|
712
873
|
hash: string;
|
|
713
874
|
}, {
|
|
714
|
-
|
|
715
|
-
user: string;
|
|
875
|
+
feePayer: string;
|
|
716
876
|
settler: string;
|
|
717
877
|
nonce: string;
|
|
718
878
|
deadline: string;
|
|
719
|
-
data: string;
|
|
720
879
|
maxFees: {
|
|
721
880
|
token: string;
|
|
722
881
|
amount: string;
|
|
723
882
|
}[];
|
|
724
|
-
|
|
883
|
+
triggerSig: string;
|
|
884
|
+
minValidations: number;
|
|
885
|
+
operations: {
|
|
886
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
887
|
+
user: string;
|
|
725
888
|
data: string;
|
|
726
|
-
|
|
889
|
+
events: {
|
|
890
|
+
data: string;
|
|
891
|
+
topic: string;
|
|
892
|
+
}[];
|
|
727
893
|
}[];
|
|
728
|
-
configSig: string;
|
|
729
|
-
minValidations: number;
|
|
730
894
|
hash: string;
|
|
731
895
|
}>;
|
|
732
896
|
export declare const ExecutionsGetRequestValidator: z.ZodObject<{
|
|
@@ -741,16 +905,16 @@ export declare const ExecutionsGetRequestValidator: z.ZodObject<{
|
|
|
741
905
|
}>, 1 | -1, unknown>>;
|
|
742
906
|
}, "strip", z.ZodTypeAny, {
|
|
743
907
|
sort?: 1 | -1 | undefined;
|
|
908
|
+
triggerSig?: string | undefined;
|
|
744
909
|
offset?: number | undefined;
|
|
745
910
|
limit?: number | undefined;
|
|
746
|
-
triggerSig?: string | undefined;
|
|
747
911
|
createdAfter?: number | undefined;
|
|
748
912
|
createdBefore?: number | undefined;
|
|
749
913
|
}, {
|
|
750
914
|
sort?: unknown;
|
|
915
|
+
triggerSig?: string | undefined;
|
|
751
916
|
offset?: number | undefined;
|
|
752
917
|
limit?: number | undefined;
|
|
753
|
-
triggerSig?: string | undefined;
|
|
754
918
|
createdAfter?: number | undefined;
|
|
755
919
|
createdBefore?: number | undefined;
|
|
756
920
|
}>;
|
|
@@ -1364,17 +1528,10 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
1364
1528
|
signature: string;
|
|
1365
1529
|
}>]>, "many">;
|
|
1366
1530
|
outputs: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
1367
|
-
|
|
1368
|
-
readonly Swap: 0;
|
|
1369
|
-
readonly Transfer: 1;
|
|
1370
|
-
readonly EvmCall: 2;
|
|
1371
|
-
readonly SvmCall: 3;
|
|
1372
|
-
}>;
|
|
1373
|
-
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1531
|
+
feePayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1374
1532
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1375
1533
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1376
1534
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
1377
|
-
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1378
1535
|
maxFees: z.ZodArray<z.ZodObject<{
|
|
1379
1536
|
token: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1380
1537
|
amount: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1385,55 +1542,89 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
1385
1542
|
token: string;
|
|
1386
1543
|
amount: string;
|
|
1387
1544
|
}>, "many">;
|
|
1388
|
-
|
|
1389
|
-
|
|
1545
|
+
triggerSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1546
|
+
minValidations: z.ZodNumber;
|
|
1547
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
1548
|
+
opType: z.ZodNativeEnum<{
|
|
1549
|
+
readonly Swap: 0;
|
|
1550
|
+
readonly Transfer: 1;
|
|
1551
|
+
readonly EvmCall: 2;
|
|
1552
|
+
readonly CrossChainSwap: 3;
|
|
1553
|
+
readonly EvmDynamicCall: 4;
|
|
1554
|
+
readonly SvmCall: 5;
|
|
1555
|
+
}>;
|
|
1556
|
+
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1390
1557
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1558
|
+
events: z.ZodArray<z.ZodObject<{
|
|
1559
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1560
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1561
|
+
}, "strip", z.ZodTypeAny, {
|
|
1562
|
+
data: string;
|
|
1563
|
+
topic: string;
|
|
1564
|
+
}, {
|
|
1565
|
+
data: string;
|
|
1566
|
+
topic: string;
|
|
1567
|
+
}>, "many">;
|
|
1391
1568
|
}, "strip", z.ZodTypeAny, {
|
|
1569
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
1570
|
+
user: string;
|
|
1392
1571
|
data: string;
|
|
1393
|
-
|
|
1572
|
+
events: {
|
|
1573
|
+
data: string;
|
|
1574
|
+
topic: string;
|
|
1575
|
+
}[];
|
|
1394
1576
|
}, {
|
|
1577
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
1578
|
+
user: string;
|
|
1395
1579
|
data: string;
|
|
1396
|
-
|
|
1580
|
+
events: {
|
|
1581
|
+
data: string;
|
|
1582
|
+
topic: string;
|
|
1583
|
+
}[];
|
|
1397
1584
|
}>, "many">;
|
|
1398
|
-
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1399
|
-
minValidations: z.ZodNumber;
|
|
1400
1585
|
}, {
|
|
1401
1586
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1402
1587
|
}>, "strip", z.ZodTypeAny, {
|
|
1403
|
-
|
|
1404
|
-
user: string;
|
|
1588
|
+
feePayer: string;
|
|
1405
1589
|
settler: string;
|
|
1406
1590
|
nonce: string;
|
|
1407
1591
|
deadline: string;
|
|
1408
|
-
data: string;
|
|
1409
1592
|
maxFees: {
|
|
1410
1593
|
token: string;
|
|
1411
1594
|
amount: string;
|
|
1412
1595
|
}[];
|
|
1413
|
-
|
|
1596
|
+
triggerSig: string;
|
|
1597
|
+
minValidations: number;
|
|
1598
|
+
operations: {
|
|
1599
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
1600
|
+
user: string;
|
|
1414
1601
|
data: string;
|
|
1415
|
-
|
|
1602
|
+
events: {
|
|
1603
|
+
data: string;
|
|
1604
|
+
topic: string;
|
|
1605
|
+
}[];
|
|
1416
1606
|
}[];
|
|
1417
|
-
configSig: string;
|
|
1418
|
-
minValidations: number;
|
|
1419
1607
|
hash: string;
|
|
1420
1608
|
}, {
|
|
1421
|
-
|
|
1422
|
-
user: string;
|
|
1609
|
+
feePayer: string;
|
|
1423
1610
|
settler: string;
|
|
1424
1611
|
nonce: string;
|
|
1425
1612
|
deadline: string;
|
|
1426
|
-
data: string;
|
|
1427
1613
|
maxFees: {
|
|
1428
1614
|
token: string;
|
|
1429
1615
|
amount: string;
|
|
1430
1616
|
}[];
|
|
1431
|
-
|
|
1617
|
+
triggerSig: string;
|
|
1618
|
+
minValidations: number;
|
|
1619
|
+
operations: {
|
|
1620
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
1621
|
+
user: string;
|
|
1432
1622
|
data: string;
|
|
1433
|
-
|
|
1623
|
+
events: {
|
|
1624
|
+
data: string;
|
|
1625
|
+
topic: string;
|
|
1626
|
+
}[];
|
|
1434
1627
|
}[];
|
|
1435
|
-
configSig: string;
|
|
1436
|
-
minValidations: number;
|
|
1437
1628
|
hash: string;
|
|
1438
1629
|
}>, "many">;
|
|
1439
1630
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -1442,6 +1633,7 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
1442
1633
|
readonly failed: "failed";
|
|
1443
1634
|
}>;
|
|
1444
1635
|
}>, "strip", z.ZodTypeAny, {
|
|
1636
|
+
triggerSig: string;
|
|
1445
1637
|
result: "succeeded" | "failed";
|
|
1446
1638
|
timestamp: number;
|
|
1447
1639
|
signature: string;
|
|
@@ -1546,31 +1738,34 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
1546
1738
|
};
|
|
1547
1739
|
signature: string;
|
|
1548
1740
|
})[];
|
|
1549
|
-
triggerSig: string;
|
|
1550
1741
|
triggerType: 0 | 1 | 2;
|
|
1551
1742
|
fuelUsed: number;
|
|
1552
1743
|
triggerData: string;
|
|
1553
1744
|
logs: string[];
|
|
1554
1745
|
outputs: {
|
|
1555
|
-
|
|
1556
|
-
user: string;
|
|
1746
|
+
feePayer: string;
|
|
1557
1747
|
settler: string;
|
|
1558
1748
|
nonce: string;
|
|
1559
1749
|
deadline: string;
|
|
1560
|
-
data: string;
|
|
1561
1750
|
maxFees: {
|
|
1562
1751
|
token: string;
|
|
1563
1752
|
amount: string;
|
|
1564
1753
|
}[];
|
|
1565
|
-
|
|
1754
|
+
triggerSig: string;
|
|
1755
|
+
minValidations: number;
|
|
1756
|
+
operations: {
|
|
1757
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
1758
|
+
user: string;
|
|
1566
1759
|
data: string;
|
|
1567
|
-
|
|
1760
|
+
events: {
|
|
1761
|
+
data: string;
|
|
1762
|
+
topic: string;
|
|
1763
|
+
}[];
|
|
1568
1764
|
}[];
|
|
1569
|
-
configSig: string;
|
|
1570
|
-
minValidations: number;
|
|
1571
1765
|
hash: string;
|
|
1572
1766
|
}[];
|
|
1573
1767
|
}, {
|
|
1768
|
+
triggerSig: string;
|
|
1574
1769
|
result: "succeeded" | "failed";
|
|
1575
1770
|
timestamp: number;
|
|
1576
1771
|
signature: string;
|
|
@@ -1675,28 +1870,30 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
1675
1870
|
};
|
|
1676
1871
|
signature: string;
|
|
1677
1872
|
})[];
|
|
1678
|
-
triggerSig: string;
|
|
1679
1873
|
triggerType: 0 | 1 | 2;
|
|
1680
1874
|
fuelUsed: number;
|
|
1681
1875
|
triggerData: string;
|
|
1682
1876
|
logs: string[];
|
|
1683
1877
|
outputs: {
|
|
1684
|
-
|
|
1685
|
-
user: string;
|
|
1878
|
+
feePayer: string;
|
|
1686
1879
|
settler: string;
|
|
1687
1880
|
nonce: string;
|
|
1688
1881
|
deadline: string;
|
|
1689
|
-
data: string;
|
|
1690
1882
|
maxFees: {
|
|
1691
1883
|
token: string;
|
|
1692
1884
|
amount: string;
|
|
1693
1885
|
}[];
|
|
1694
|
-
|
|
1886
|
+
triggerSig: string;
|
|
1887
|
+
minValidations: number;
|
|
1888
|
+
operations: {
|
|
1889
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
1890
|
+
user: string;
|
|
1695
1891
|
data: string;
|
|
1696
|
-
|
|
1892
|
+
events: {
|
|
1893
|
+
data: string;
|
|
1894
|
+
topic: string;
|
|
1895
|
+
}[];
|
|
1697
1896
|
}[];
|
|
1698
|
-
configSig: string;
|
|
1699
|
-
minValidations: number;
|
|
1700
1897
|
hash: string;
|
|
1701
1898
|
}[];
|
|
1702
1899
|
}>;
|
|
@@ -2348,17 +2545,10 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
2348
2545
|
signature: string;
|
|
2349
2546
|
}>]>, "many">;
|
|
2350
2547
|
outputs: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
2351
|
-
|
|
2352
|
-
readonly Swap: 0;
|
|
2353
|
-
readonly Transfer: 1;
|
|
2354
|
-
readonly EvmCall: 2;
|
|
2355
|
-
readonly SvmCall: 3;
|
|
2356
|
-
}>;
|
|
2357
|
-
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2548
|
+
feePayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2358
2549
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2359
2550
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2360
2551
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
2361
|
-
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2362
2552
|
maxFees: z.ZodArray<z.ZodObject<{
|
|
2363
2553
|
token: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2364
2554
|
amount: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2369,55 +2559,89 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
2369
2559
|
token: string;
|
|
2370
2560
|
amount: string;
|
|
2371
2561
|
}>, "many">;
|
|
2372
|
-
|
|
2373
|
-
|
|
2562
|
+
triggerSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2563
|
+
minValidations: z.ZodNumber;
|
|
2564
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
2565
|
+
opType: z.ZodNativeEnum<{
|
|
2566
|
+
readonly Swap: 0;
|
|
2567
|
+
readonly Transfer: 1;
|
|
2568
|
+
readonly EvmCall: 2;
|
|
2569
|
+
readonly CrossChainSwap: 3;
|
|
2570
|
+
readonly EvmDynamicCall: 4;
|
|
2571
|
+
readonly SvmCall: 5;
|
|
2572
|
+
}>;
|
|
2573
|
+
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2374
2574
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2575
|
+
events: z.ZodArray<z.ZodObject<{
|
|
2576
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2577
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2578
|
+
}, "strip", z.ZodTypeAny, {
|
|
2579
|
+
data: string;
|
|
2580
|
+
topic: string;
|
|
2581
|
+
}, {
|
|
2582
|
+
data: string;
|
|
2583
|
+
topic: string;
|
|
2584
|
+
}>, "many">;
|
|
2375
2585
|
}, "strip", z.ZodTypeAny, {
|
|
2586
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
2587
|
+
user: string;
|
|
2376
2588
|
data: string;
|
|
2377
|
-
|
|
2589
|
+
events: {
|
|
2590
|
+
data: string;
|
|
2591
|
+
topic: string;
|
|
2592
|
+
}[];
|
|
2378
2593
|
}, {
|
|
2594
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
2595
|
+
user: string;
|
|
2379
2596
|
data: string;
|
|
2380
|
-
|
|
2597
|
+
events: {
|
|
2598
|
+
data: string;
|
|
2599
|
+
topic: string;
|
|
2600
|
+
}[];
|
|
2381
2601
|
}>, "many">;
|
|
2382
|
-
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2383
|
-
minValidations: z.ZodNumber;
|
|
2384
2602
|
}, {
|
|
2385
2603
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2386
2604
|
}>, "strip", z.ZodTypeAny, {
|
|
2387
|
-
|
|
2388
|
-
user: string;
|
|
2605
|
+
feePayer: string;
|
|
2389
2606
|
settler: string;
|
|
2390
2607
|
nonce: string;
|
|
2391
2608
|
deadline: string;
|
|
2392
|
-
data: string;
|
|
2393
2609
|
maxFees: {
|
|
2394
2610
|
token: string;
|
|
2395
2611
|
amount: string;
|
|
2396
2612
|
}[];
|
|
2397
|
-
|
|
2613
|
+
triggerSig: string;
|
|
2614
|
+
minValidations: number;
|
|
2615
|
+
operations: {
|
|
2616
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
2617
|
+
user: string;
|
|
2398
2618
|
data: string;
|
|
2399
|
-
|
|
2619
|
+
events: {
|
|
2620
|
+
data: string;
|
|
2621
|
+
topic: string;
|
|
2622
|
+
}[];
|
|
2400
2623
|
}[];
|
|
2401
|
-
configSig: string;
|
|
2402
|
-
minValidations: number;
|
|
2403
2624
|
hash: string;
|
|
2404
2625
|
}, {
|
|
2405
|
-
|
|
2406
|
-
user: string;
|
|
2626
|
+
feePayer: string;
|
|
2407
2627
|
settler: string;
|
|
2408
2628
|
nonce: string;
|
|
2409
2629
|
deadline: string;
|
|
2410
|
-
data: string;
|
|
2411
2630
|
maxFees: {
|
|
2412
2631
|
token: string;
|
|
2413
2632
|
amount: string;
|
|
2414
2633
|
}[];
|
|
2415
|
-
|
|
2634
|
+
triggerSig: string;
|
|
2635
|
+
minValidations: number;
|
|
2636
|
+
operations: {
|
|
2637
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
2638
|
+
user: string;
|
|
2416
2639
|
data: string;
|
|
2417
|
-
|
|
2640
|
+
events: {
|
|
2641
|
+
data: string;
|
|
2642
|
+
topic: string;
|
|
2643
|
+
}[];
|
|
2418
2644
|
}[];
|
|
2419
|
-
configSig: string;
|
|
2420
|
-
minValidations: number;
|
|
2421
2645
|
hash: string;
|
|
2422
2646
|
}>, "many">;
|
|
2423
2647
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -2484,6 +2708,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
2484
2708
|
}>, "many">>;
|
|
2485
2709
|
}>, "strip", z.ZodTypeAny, {
|
|
2486
2710
|
status: "pending" | "valid" | "invalid";
|
|
2711
|
+
triggerSig: string;
|
|
2487
2712
|
result: "succeeded" | "failed";
|
|
2488
2713
|
timestamp: number;
|
|
2489
2714
|
signature: string;
|
|
@@ -2590,27 +2815,29 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
2590
2815
|
})[];
|
|
2591
2816
|
createdAt: Date;
|
|
2592
2817
|
relayer: string;
|
|
2593
|
-
triggerSig: string;
|
|
2594
2818
|
triggerType: 0 | 1 | 2;
|
|
2595
2819
|
fuelUsed: number;
|
|
2596
2820
|
triggerData: string;
|
|
2597
2821
|
outputs: {
|
|
2598
|
-
|
|
2599
|
-
user: string;
|
|
2822
|
+
feePayer: string;
|
|
2600
2823
|
settler: string;
|
|
2601
2824
|
nonce: string;
|
|
2602
2825
|
deadline: string;
|
|
2603
|
-
data: string;
|
|
2604
2826
|
maxFees: {
|
|
2605
2827
|
token: string;
|
|
2606
2828
|
amount: string;
|
|
2607
2829
|
}[];
|
|
2608
|
-
|
|
2830
|
+
triggerSig: string;
|
|
2831
|
+
minValidations: number;
|
|
2832
|
+
operations: {
|
|
2833
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
2834
|
+
user: string;
|
|
2609
2835
|
data: string;
|
|
2610
|
-
|
|
2836
|
+
events: {
|
|
2837
|
+
data: string;
|
|
2838
|
+
topic: string;
|
|
2839
|
+
}[];
|
|
2611
2840
|
}[];
|
|
2612
|
-
configSig: string;
|
|
2613
|
-
minValidations: number;
|
|
2614
2841
|
hash: string;
|
|
2615
2842
|
}[];
|
|
2616
2843
|
fee?: {
|
|
@@ -2634,6 +2861,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
2634
2861
|
}[] | undefined;
|
|
2635
2862
|
}, {
|
|
2636
2863
|
status: "pending" | "valid" | "invalid";
|
|
2864
|
+
triggerSig: string;
|
|
2637
2865
|
result: "succeeded" | "failed";
|
|
2638
2866
|
timestamp: number;
|
|
2639
2867
|
signature: string;
|
|
@@ -2740,27 +2968,29 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
2740
2968
|
})[];
|
|
2741
2969
|
createdAt: Date;
|
|
2742
2970
|
relayer: string;
|
|
2743
|
-
triggerSig: string;
|
|
2744
2971
|
triggerType: 0 | 1 | 2;
|
|
2745
2972
|
fuelUsed: number;
|
|
2746
2973
|
triggerData: string;
|
|
2747
2974
|
outputs: {
|
|
2748
|
-
|
|
2749
|
-
user: string;
|
|
2975
|
+
feePayer: string;
|
|
2750
2976
|
settler: string;
|
|
2751
2977
|
nonce: string;
|
|
2752
2978
|
deadline: string;
|
|
2753
|
-
data: string;
|
|
2754
2979
|
maxFees: {
|
|
2755
2980
|
token: string;
|
|
2756
2981
|
amount: string;
|
|
2757
2982
|
}[];
|
|
2758
|
-
|
|
2983
|
+
triggerSig: string;
|
|
2984
|
+
minValidations: number;
|
|
2985
|
+
operations: {
|
|
2986
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
2987
|
+
user: string;
|
|
2759
2988
|
data: string;
|
|
2760
|
-
|
|
2989
|
+
events: {
|
|
2990
|
+
data: string;
|
|
2991
|
+
topic: string;
|
|
2992
|
+
}[];
|
|
2761
2993
|
}[];
|
|
2762
|
-
configSig: string;
|
|
2763
|
-
minValidations: number;
|
|
2764
2994
|
hash: string;
|
|
2765
2995
|
}[];
|
|
2766
2996
|
fee?: {
|
|
@@ -3393,17 +3623,10 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
3393
3623
|
signature: string;
|
|
3394
3624
|
}>]>, "many">;
|
|
3395
3625
|
outputs: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
3396
|
-
|
|
3397
|
-
readonly Swap: 0;
|
|
3398
|
-
readonly Transfer: 1;
|
|
3399
|
-
readonly EvmCall: 2;
|
|
3400
|
-
readonly SvmCall: 3;
|
|
3401
|
-
}>;
|
|
3402
|
-
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3626
|
+
feePayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3403
3627
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3404
3628
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3405
3629
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
3406
|
-
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3407
3630
|
maxFees: z.ZodArray<z.ZodObject<{
|
|
3408
3631
|
token: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3409
3632
|
amount: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -3414,55 +3637,89 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
3414
3637
|
token: string;
|
|
3415
3638
|
amount: string;
|
|
3416
3639
|
}>, "many">;
|
|
3417
|
-
|
|
3418
|
-
|
|
3640
|
+
triggerSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3641
|
+
minValidations: z.ZodNumber;
|
|
3642
|
+
operations: z.ZodArray<z.ZodObject<{
|
|
3643
|
+
opType: z.ZodNativeEnum<{
|
|
3644
|
+
readonly Swap: 0;
|
|
3645
|
+
readonly Transfer: 1;
|
|
3646
|
+
readonly EvmCall: 2;
|
|
3647
|
+
readonly CrossChainSwap: 3;
|
|
3648
|
+
readonly EvmDynamicCall: 4;
|
|
3649
|
+
readonly SvmCall: 5;
|
|
3650
|
+
}>;
|
|
3651
|
+
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3419
3652
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3653
|
+
events: z.ZodArray<z.ZodObject<{
|
|
3654
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3655
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3656
|
+
}, "strip", z.ZodTypeAny, {
|
|
3657
|
+
data: string;
|
|
3658
|
+
topic: string;
|
|
3659
|
+
}, {
|
|
3660
|
+
data: string;
|
|
3661
|
+
topic: string;
|
|
3662
|
+
}>, "many">;
|
|
3420
3663
|
}, "strip", z.ZodTypeAny, {
|
|
3664
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
3665
|
+
user: string;
|
|
3421
3666
|
data: string;
|
|
3422
|
-
|
|
3667
|
+
events: {
|
|
3668
|
+
data: string;
|
|
3669
|
+
topic: string;
|
|
3670
|
+
}[];
|
|
3423
3671
|
}, {
|
|
3672
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
3673
|
+
user: string;
|
|
3424
3674
|
data: string;
|
|
3425
|
-
|
|
3675
|
+
events: {
|
|
3676
|
+
data: string;
|
|
3677
|
+
topic: string;
|
|
3678
|
+
}[];
|
|
3426
3679
|
}>, "many">;
|
|
3427
|
-
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3428
|
-
minValidations: z.ZodNumber;
|
|
3429
3680
|
}, {
|
|
3430
3681
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3431
3682
|
}>, "strip", z.ZodTypeAny, {
|
|
3432
|
-
|
|
3433
|
-
user: string;
|
|
3683
|
+
feePayer: string;
|
|
3434
3684
|
settler: string;
|
|
3435
3685
|
nonce: string;
|
|
3436
3686
|
deadline: string;
|
|
3437
|
-
data: string;
|
|
3438
3687
|
maxFees: {
|
|
3439
3688
|
token: string;
|
|
3440
3689
|
amount: string;
|
|
3441
3690
|
}[];
|
|
3442
|
-
|
|
3691
|
+
triggerSig: string;
|
|
3692
|
+
minValidations: number;
|
|
3693
|
+
operations: {
|
|
3694
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
3695
|
+
user: string;
|
|
3443
3696
|
data: string;
|
|
3444
|
-
|
|
3697
|
+
events: {
|
|
3698
|
+
data: string;
|
|
3699
|
+
topic: string;
|
|
3700
|
+
}[];
|
|
3445
3701
|
}[];
|
|
3446
|
-
configSig: string;
|
|
3447
|
-
minValidations: number;
|
|
3448
3702
|
hash: string;
|
|
3449
3703
|
}, {
|
|
3450
|
-
|
|
3451
|
-
user: string;
|
|
3704
|
+
feePayer: string;
|
|
3452
3705
|
settler: string;
|
|
3453
3706
|
nonce: string;
|
|
3454
3707
|
deadline: string;
|
|
3455
|
-
data: string;
|
|
3456
3708
|
maxFees: {
|
|
3457
3709
|
token: string;
|
|
3458
3710
|
amount: string;
|
|
3459
3711
|
}[];
|
|
3460
|
-
|
|
3712
|
+
triggerSig: string;
|
|
3713
|
+
minValidations: number;
|
|
3714
|
+
operations: {
|
|
3715
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
3716
|
+
user: string;
|
|
3461
3717
|
data: string;
|
|
3462
|
-
|
|
3718
|
+
events: {
|
|
3719
|
+
data: string;
|
|
3720
|
+
topic: string;
|
|
3721
|
+
}[];
|
|
3463
3722
|
}[];
|
|
3464
|
-
configSig: string;
|
|
3465
|
-
minValidations: number;
|
|
3466
3723
|
hash: string;
|
|
3467
3724
|
}>, "many">;
|
|
3468
3725
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -3529,6 +3786,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
3529
3786
|
}>, "many">>;
|
|
3530
3787
|
}>, "strip", z.ZodTypeAny, {
|
|
3531
3788
|
status: "pending" | "valid" | "invalid";
|
|
3789
|
+
triggerSig: string;
|
|
3532
3790
|
result: "succeeded" | "failed";
|
|
3533
3791
|
timestamp: number;
|
|
3534
3792
|
signature: string;
|
|
@@ -3635,27 +3893,29 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
3635
3893
|
})[];
|
|
3636
3894
|
createdAt: Date;
|
|
3637
3895
|
relayer: string;
|
|
3638
|
-
triggerSig: string;
|
|
3639
3896
|
triggerType: 0 | 1 | 2;
|
|
3640
3897
|
fuelUsed: number;
|
|
3641
3898
|
triggerData: string;
|
|
3642
3899
|
outputs: {
|
|
3643
|
-
|
|
3644
|
-
user: string;
|
|
3900
|
+
feePayer: string;
|
|
3645
3901
|
settler: string;
|
|
3646
3902
|
nonce: string;
|
|
3647
3903
|
deadline: string;
|
|
3648
|
-
data: string;
|
|
3649
3904
|
maxFees: {
|
|
3650
3905
|
token: string;
|
|
3651
3906
|
amount: string;
|
|
3652
3907
|
}[];
|
|
3653
|
-
|
|
3908
|
+
triggerSig: string;
|
|
3909
|
+
minValidations: number;
|
|
3910
|
+
operations: {
|
|
3911
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
3912
|
+
user: string;
|
|
3654
3913
|
data: string;
|
|
3655
|
-
|
|
3914
|
+
events: {
|
|
3915
|
+
data: string;
|
|
3916
|
+
topic: string;
|
|
3917
|
+
}[];
|
|
3656
3918
|
}[];
|
|
3657
|
-
configSig: string;
|
|
3658
|
-
minValidations: number;
|
|
3659
3919
|
hash: string;
|
|
3660
3920
|
}[];
|
|
3661
3921
|
fee?: {
|
|
@@ -3679,6 +3939,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
3679
3939
|
}[] | undefined;
|
|
3680
3940
|
}, {
|
|
3681
3941
|
status: "pending" | "valid" | "invalid";
|
|
3942
|
+
triggerSig: string;
|
|
3682
3943
|
result: "succeeded" | "failed";
|
|
3683
3944
|
timestamp: number;
|
|
3684
3945
|
signature: string;
|
|
@@ -3785,27 +4046,29 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
3785
4046
|
})[];
|
|
3786
4047
|
createdAt: Date;
|
|
3787
4048
|
relayer: string;
|
|
3788
|
-
triggerSig: string;
|
|
3789
4049
|
triggerType: 0 | 1 | 2;
|
|
3790
4050
|
fuelUsed: number;
|
|
3791
4051
|
triggerData: string;
|
|
3792
4052
|
outputs: {
|
|
3793
|
-
|
|
3794
|
-
user: string;
|
|
4053
|
+
feePayer: string;
|
|
3795
4054
|
settler: string;
|
|
3796
4055
|
nonce: string;
|
|
3797
4056
|
deadline: string;
|
|
3798
|
-
data: string;
|
|
3799
4057
|
maxFees: {
|
|
3800
4058
|
token: string;
|
|
3801
4059
|
amount: string;
|
|
3802
4060
|
}[];
|
|
3803
|
-
|
|
4061
|
+
triggerSig: string;
|
|
4062
|
+
minValidations: number;
|
|
4063
|
+
operations: {
|
|
4064
|
+
opType: 0 | 1 | 2 | 3 | 4 | 5;
|
|
4065
|
+
user: string;
|
|
3804
4066
|
data: string;
|
|
3805
|
-
|
|
4067
|
+
events: {
|
|
4068
|
+
data: string;
|
|
4069
|
+
topic: string;
|
|
4070
|
+
}[];
|
|
3806
4071
|
}[];
|
|
3807
|
-
configSig: string;
|
|
3808
|
-
minValidations: number;
|
|
3809
4072
|
hash: string;
|
|
3810
4073
|
}[];
|
|
3811
4074
|
fee?: {
|