@mimicprotocol/sdk 0.0.1-rc.3 → 0.0.1-rc.30
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/constants.d.ts +36 -16
- package/dist/axia/constants.d.ts.map +1 -1
- package/dist/axia/constants.js +32 -19
- package/dist/axia/constants.js.map +1 -1
- package/dist/axia/types.d.ts +4 -1
- package/dist/axia/types.d.ts.map +1 -1
- package/dist/axia/validators.d.ts +2160 -655
- package/dist/axia/validators.d.ts.map +1 -1
- package/dist/axia/validators.js +27 -9
- package/dist/axia/validators.js.map +1 -1
- package/dist/client/core/auth.d.ts +2 -1
- package/dist/client/core/auth.d.ts.map +1 -1
- package/dist/client/core/auth.js +3 -2
- package/dist/client/core/auth.js.map +1 -1
- package/dist/client/core/config.d.ts +2 -2
- package/dist/client/core/config.d.ts.map +1 -1
- package/dist/client/core/config.js +7 -6
- package/dist/client/core/config.js.map +1 -1
- package/dist/client/domains/Client.d.ts.map +1 -1
- package/dist/client/domains/Client.js +4 -2
- package/dist/client/domains/Client.js.map +1 -1
- package/dist/client/domains/ConfigsClient.d.ts +4 -1
- package/dist/client/domains/ConfigsClient.d.ts.map +1 -1
- package/dist/client/domains/ConfigsClient.js +37 -3
- package/dist/client/domains/ConfigsClient.js.map +1 -1
- package/dist/client/domains/IntentsClient.d.ts +25 -8
- package/dist/client/domains/IntentsClient.d.ts.map +1 -1
- package/dist/client/domains/IntentsClient.js +26 -4
- package/dist/client/domains/IntentsClient.js.map +1 -1
- package/dist/client/domains/TasksClient.d.ts.map +1 -1
- package/dist/client/domains/TasksClient.js +1 -4
- package/dist/client/domains/TasksClient.js.map +1 -1
- package/dist/client/domains/UsersClient.d.ts +16 -0
- package/dist/client/domains/UsersClient.d.ts.map +1 -0
- package/dist/client/domains/UsersClient.js +45 -0
- package/dist/client/domains/UsersClient.js.map +1 -0
- package/dist/client/domains/index.d.ts +1 -0
- package/dist/client/domains/index.d.ts.map +1 -1
- package/dist/client/domains/index.js +3 -1
- package/dist/client/domains/index.js.map +1 -1
- package/dist/client/index.d.ts +5 -2
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +10 -7
- package/dist/client/index.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/oracle/eip712Types.d.ts +45 -5
- package/dist/oracle/eip712Types.d.ts.map +1 -1
- package/dist/oracle/eip712Types.js +50 -10
- package/dist/oracle/eip712Types.js.map +1 -1
- package/dist/oracle/types.d.ts +15 -1
- package/dist/oracle/types.d.ts.map +1 -1
- package/dist/oracle/validators.d.ts +854 -232
- package/dist/oracle/validators.d.ts.map +1 -1
- package/dist/oracle/validators.js +35 -6
- package/dist/oracle/validators.js.map +1 -1
- package/dist/registry/AuthSigner.d.ts +5 -4
- package/dist/registry/AuthSigner.d.ts.map +1 -1
- package/dist/registry/AuthSigner.js +6 -5
- package/dist/registry/AuthSigner.js.map +1 -1
- package/dist/registry/ConfigSigner.d.ts +2 -1
- package/dist/registry/ConfigSigner.d.ts.map +1 -1
- package/dist/registry/ConfigSigner.js +35 -12
- package/dist/registry/ConfigSigner.js.map +1 -1
- package/dist/registry/eip712Types.d.ts +25 -0
- package/dist/registry/eip712Types.d.ts.map +1 -1
- package/dist/registry/eip712Types.js +25 -3
- package/dist/registry/eip712Types.js.map +1 -1
- package/dist/registry/types.d.ts +9 -1
- package/dist/registry/types.d.ts.map +1 -1
- package/dist/registry/types.js.map +1 -1
- package/dist/registry/validations.d.ts +2 -2
- package/dist/registry/validations.d.ts.map +1 -1
- package/dist/registry/validations.js +5 -5
- package/dist/registry/validations.js.map +1 -1
- package/dist/registry/validators.d.ts +455 -214
- package/dist/registry/validators.d.ts.map +1 -1
- package/dist/registry/validators.js +52 -11
- package/dist/registry/validators.js.map +1 -1
- package/dist/relayer/eip712Types.d.ts +4 -0
- package/dist/relayer/eip712Types.d.ts.map +1 -1
- package/dist/relayer/types.d.ts +2 -1
- package/dist/relayer/types.d.ts.map +1 -1
- package/dist/relayer/validators.d.ts +1808 -445
- package/dist/relayer/validators.d.ts.map +1 -1
- package/dist/relayer/validators.js +7 -15
- package/dist/relayer/validators.js.map +1 -1
- package/dist/runner/validators.d.ts +765 -169
- package/dist/runner/validators.d.ts.map +1 -1
- package/dist/runner/validators.js +10 -1
- package/dist/runner/validators.js.map +1 -1
- package/dist/shared/codec/chains/evm.d.ts +9 -0
- package/dist/shared/codec/chains/evm.d.ts.map +1 -0
- package/dist/shared/codec/chains/evm.js +122 -0
- package/dist/shared/codec/chains/evm.js.map +1 -0
- package/dist/shared/codec/chains/svm.d.ts +22 -0
- package/dist/shared/codec/chains/svm.d.ts.map +1 -0
- package/dist/shared/codec/chains/svm.js +233 -0
- package/dist/shared/codec/chains/svm.js.map +1 -0
- package/dist/shared/codec/decoder.d.ts +6 -2
- package/dist/shared/codec/decoder.d.ts.map +1 -1
- package/dist/shared/codec/decoder.js +46 -41
- package/dist/shared/codec/decoder.js.map +1 -1
- package/dist/shared/codec/encoder.d.ts +97 -5
- package/dist/shared/codec/encoder.d.ts.map +1 -1
- package/dist/shared/codec/encoder.js +32 -54
- package/dist/shared/codec/encoder.js.map +1 -1
- package/dist/shared/codec/index.d.ts +1 -0
- package/dist/shared/codec/index.d.ts.map +1 -1
- package/dist/shared/codec/index.js +14 -0
- package/dist/shared/codec/index.js.map +1 -1
- package/dist/shared/eip712Types/index.d.ts +10 -1
- package/dist/shared/eip712Types/index.d.ts.map +1 -1
- package/dist/shared/eip712Types/index.js +18 -6
- package/dist/shared/eip712Types/index.js.map +1 -1
- package/dist/shared/signer/EthersSigner.d.ts +2 -1
- package/dist/shared/signer/EthersSigner.d.ts.map +1 -1
- package/dist/shared/signer/EthersSigner.js +3 -0
- package/dist/shared/signer/EthersSigner.js.map +1 -1
- package/dist/shared/signer/Signer.d.ts +1 -0
- package/dist/shared/signer/Signer.d.ts.map +1 -1
- package/dist/shared/signer/WindowEthereumSigner.d.ts +2 -1
- package/dist/shared/signer/WindowEthereumSigner.d.ts.map +1 -1
- package/dist/shared/signer/WindowEthereumSigner.js +3 -0
- package/dist/shared/signer/WindowEthereumSigner.js.map +1 -1
- package/dist/shared/types/executions.d.ts +1 -2
- package/dist/shared/types/executions.d.ts.map +1 -1
- package/dist/shared/types/index.d.ts +0 -1
- package/dist/shared/types/index.d.ts.map +1 -1
- package/dist/shared/types/index.js +0 -1
- package/dist/shared/types/index.js.map +1 -1
- package/dist/shared/types/intents.d.ts +11 -4
- package/dist/shared/types/intents.d.ts.map +1 -1
- package/dist/shared/types/primitives.d.ts +3 -1
- package/dist/shared/types/primitives.d.ts.map +1 -1
- package/dist/shared/utils/addresses.d.ts +5 -2
- package/dist/shared/utils/addresses.d.ts.map +1 -1
- package/dist/shared/utils/addresses.js +11 -1
- package/dist/shared/utils/addresses.js.map +1 -1
- package/dist/shared/utils/bytes.d.ts +2 -0
- package/dist/shared/utils/bytes.d.ts.map +1 -1
- package/dist/shared/utils/bytes.js +10 -0
- package/dist/shared/utils/bytes.js.map +1 -1
- package/dist/shared/utils/chains.d.ts +2 -0
- package/dist/shared/utils/chains.d.ts.map +1 -1
- package/dist/shared/utils/chains.js +2 -0
- package/dist/shared/utils/chains.js.map +1 -1
- package/dist/shared/utils/index.d.ts +1 -0
- package/dist/shared/utils/index.d.ts.map +1 -1
- package/dist/shared/utils/index.js +1 -0
- package/dist/shared/utils/index.js.map +1 -1
- package/dist/shared/utils/numbers.d.ts +8 -6
- package/dist/shared/utils/numbers.d.ts.map +1 -1
- package/dist/shared/utils/numbers.js +59 -22
- package/dist/shared/utils/numbers.js.map +1 -1
- package/dist/shared/utils/random.d.ts +4 -1
- package/dist/shared/utils/random.d.ts.map +1 -1
- package/dist/shared/utils/random.js +22 -4
- package/dist/shared/utils/random.js.map +1 -1
- package/dist/shared/utils/time.d.ts +14 -0
- package/dist/shared/utils/time.d.ts.map +1 -0
- package/dist/shared/utils/time.js +59 -0
- package/dist/shared/utils/time.js.map +1 -0
- package/dist/shared/utils/validations.d.ts +7 -1
- package/dist/shared/utils/validations.d.ts.map +1 -1
- package/dist/shared/utils/validations.js +36 -3
- package/dist/shared/utils/validations.js.map +1 -1
- package/dist/shared/validators/executions.d.ts +51 -46
- package/dist/shared/validators/executions.d.ts.map +1 -1
- package/dist/shared/validators/executions.js +10 -22
- package/dist/shared/validators/executions.js.map +1 -1
- package/dist/shared/validators/index.d.ts +0 -1
- package/dist/shared/validators/index.d.ts.map +1 -1
- package/dist/shared/validators/index.js +0 -1
- package/dist/shared/validators/index.js.map +1 -1
- package/dist/shared/validators/intents.d.ts +470 -37
- package/dist/shared/validators/intents.d.ts.map +1 -1
- package/dist/shared/validators/intents.js +40 -14
- package/dist/shared/validators/intents.js.map +1 -1
- package/dist/shared/validators/primitives.d.ts +34 -7
- package/dist/shared/validators/primitives.d.ts.map +1 -1
- package/dist/shared/validators/primitives.js +22 -11
- package/dist/shared/validators/primitives.js.map +1 -1
- package/dist/validator/ValidatorSigner.d.ts +10 -4
- package/dist/validator/ValidatorSigner.d.ts.map +1 -1
- package/dist/validator/ValidatorSigner.js +14 -8
- package/dist/validator/ValidatorSigner.js.map +1 -1
- package/dist/validator/eip712Types.d.ts.map +1 -1
- package/dist/validator/eip712Types.js +5 -2
- package/dist/validator/eip712Types.js.map +1 -1
- package/package.json +8 -1
- package/dist/shared/types/events.d.ts +0 -4
- package/dist/shared/types/events.d.ts.map +0 -1
- package/dist/shared/types/events.js +0 -3
- package/dist/shared/types/events.js.map +0 -1
- package/dist/shared/validators/events.d.ts +0 -20
- package/dist/shared/validators/events.d.ts.map +0 -1
- package/dist/shared/validators/events.js +0 -17
- package/dist/shared/validators/events.js.map +0 -1
|
@@ -1,33 +1,66 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
|
|
2
|
+
export declare const SolverFeeValidator: z.ZodObject<{
|
|
3
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4
|
+
amount: z.ZodNumber;
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
amount: number;
|
|
7
|
+
address: string;
|
|
8
|
+
}, {
|
|
9
|
+
amount: number;
|
|
10
|
+
address: string;
|
|
11
|
+
}>;
|
|
12
|
+
export declare const IntentLogValidator: z.ZodObject<{
|
|
13
|
+
level: z.ZodNativeEnum<{
|
|
14
|
+
readonly info: "info";
|
|
15
|
+
readonly success: "success";
|
|
16
|
+
readonly error: "error";
|
|
17
|
+
}>;
|
|
18
|
+
data: z.ZodString;
|
|
19
|
+
createdAt: z.ZodDate;
|
|
20
|
+
}, "strip", z.ZodTypeAny, {
|
|
21
|
+
data: string;
|
|
22
|
+
createdAt: Date;
|
|
23
|
+
level: "info" | "success" | "error";
|
|
24
|
+
}, {
|
|
25
|
+
data: string;
|
|
26
|
+
createdAt: Date;
|
|
27
|
+
level: "info" | "success" | "error";
|
|
28
|
+
}>;
|
|
3
29
|
export declare const AxiaProposalValidator: z.ZodObject<{
|
|
4
30
|
solver: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
5
31
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
6
32
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
7
33
|
fees: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
8
34
|
feeUsd: z.ZodNumber;
|
|
9
|
-
status: z.ZodNativeEnum<
|
|
35
|
+
status: z.ZodNativeEnum<{
|
|
36
|
+
readonly received: "received";
|
|
37
|
+
readonly discarded: "discarded";
|
|
38
|
+
readonly submitted: "submitted";
|
|
39
|
+
readonly succeeded: "succeeded";
|
|
40
|
+
readonly failed: "failed";
|
|
41
|
+
readonly expired: "expired";
|
|
42
|
+
}>;
|
|
10
43
|
description: z.ZodOptional<z.ZodString>;
|
|
11
44
|
signatures: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">;
|
|
12
45
|
transactionHash: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
13
46
|
destTransactionHash: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
14
47
|
}, "strip", z.ZodTypeAny, {
|
|
15
|
-
data: string;
|
|
16
48
|
deadline: string;
|
|
49
|
+
data: string;
|
|
17
50
|
solver: string;
|
|
18
51
|
fees: string[];
|
|
19
|
-
status:
|
|
52
|
+
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
20
53
|
feeUsd: number;
|
|
21
54
|
signatures: string[];
|
|
22
55
|
description?: string | undefined;
|
|
23
56
|
transactionHash?: string | undefined;
|
|
24
57
|
destTransactionHash?: string | undefined;
|
|
25
58
|
}, {
|
|
26
|
-
data: string;
|
|
27
59
|
deadline: string;
|
|
60
|
+
data: string;
|
|
28
61
|
solver: string;
|
|
29
62
|
fees: string[];
|
|
30
|
-
status:
|
|
63
|
+
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
31
64
|
feeUsd: number;
|
|
32
65
|
signatures: string[];
|
|
33
66
|
description?: string | undefined;
|
|
@@ -35,7 +68,12 @@ export declare const AxiaProposalValidator: z.ZodObject<{
|
|
|
35
68
|
destTransactionHash?: string | undefined;
|
|
36
69
|
}>;
|
|
37
70
|
export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
38
|
-
op: z.ZodNativeEnum<
|
|
71
|
+
op: z.ZodNativeEnum<{
|
|
72
|
+
readonly Swap: 0;
|
|
73
|
+
readonly Transfer: 1;
|
|
74
|
+
readonly EvmCall: 2;
|
|
75
|
+
readonly SvmCall: 3;
|
|
76
|
+
}>;
|
|
39
77
|
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
40
78
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
41
79
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -51,119 +89,170 @@ export declare const AxiaIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
51
89
|
token: string;
|
|
52
90
|
amount: string;
|
|
53
91
|
}>, "many">;
|
|
92
|
+
events: z.ZodArray<z.ZodObject<{
|
|
93
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
94
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
95
|
+
}, "strip", z.ZodTypeAny, {
|
|
96
|
+
data: string;
|
|
97
|
+
topic: string;
|
|
98
|
+
}, {
|
|
99
|
+
data: string;
|
|
100
|
+
topic: string;
|
|
101
|
+
}>, "many">;
|
|
102
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
103
|
+
minValidations: z.ZodNumber;
|
|
54
104
|
}, {
|
|
55
105
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
56
|
-
|
|
106
|
+
executionHash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
107
|
+
status: z.ZodNativeEnum<{
|
|
108
|
+
readonly created: "created";
|
|
109
|
+
readonly enqueued: "enqueued";
|
|
110
|
+
readonly discarded: "discarded";
|
|
111
|
+
readonly submitted: "submitted";
|
|
112
|
+
readonly succeeded: "succeeded";
|
|
113
|
+
readonly failed: "failed";
|
|
114
|
+
readonly expired: "expired";
|
|
115
|
+
}>;
|
|
57
116
|
proposals: z.ZodArray<z.ZodObject<{
|
|
58
117
|
solver: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
59
118
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
60
119
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
61
120
|
fees: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
62
121
|
feeUsd: z.ZodNumber;
|
|
63
|
-
status: z.ZodNativeEnum<
|
|
122
|
+
status: z.ZodNativeEnum<{
|
|
123
|
+
readonly received: "received";
|
|
124
|
+
readonly discarded: "discarded";
|
|
125
|
+
readonly submitted: "submitted";
|
|
126
|
+
readonly succeeded: "succeeded";
|
|
127
|
+
readonly failed: "failed";
|
|
128
|
+
readonly expired: "expired";
|
|
129
|
+
}>;
|
|
64
130
|
description: z.ZodOptional<z.ZodString>;
|
|
65
131
|
signatures: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">;
|
|
66
132
|
transactionHash: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
67
133
|
destTransactionHash: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
68
134
|
}, "strip", z.ZodTypeAny, {
|
|
69
|
-
data: string;
|
|
70
135
|
deadline: string;
|
|
136
|
+
data: string;
|
|
71
137
|
solver: string;
|
|
72
138
|
fees: string[];
|
|
73
|
-
status:
|
|
139
|
+
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
74
140
|
feeUsd: number;
|
|
75
141
|
signatures: string[];
|
|
76
142
|
description?: string | undefined;
|
|
77
143
|
transactionHash?: string | undefined;
|
|
78
144
|
destTransactionHash?: string | undefined;
|
|
79
145
|
}, {
|
|
80
|
-
data: string;
|
|
81
146
|
deadline: string;
|
|
147
|
+
data: string;
|
|
82
148
|
solver: string;
|
|
83
149
|
fees: string[];
|
|
84
|
-
status:
|
|
150
|
+
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
85
151
|
feeUsd: number;
|
|
86
152
|
signatures: string[];
|
|
87
153
|
description?: string | undefined;
|
|
88
154
|
transactionHash?: string | undefined;
|
|
89
155
|
destTransactionHash?: string | undefined;
|
|
90
156
|
}>, "many">;
|
|
91
|
-
|
|
92
|
-
level: z.ZodNativeEnum<
|
|
157
|
+
logs: z.ZodArray<z.ZodObject<{
|
|
158
|
+
level: z.ZodNativeEnum<{
|
|
159
|
+
readonly info: "info";
|
|
160
|
+
readonly success: "success";
|
|
161
|
+
readonly error: "error";
|
|
162
|
+
}>;
|
|
93
163
|
data: z.ZodString;
|
|
94
164
|
createdAt: z.ZodDate;
|
|
95
165
|
}, "strip", z.ZodTypeAny, {
|
|
96
166
|
data: string;
|
|
97
|
-
level: import("../shared").EventLevel;
|
|
98
167
|
createdAt: Date;
|
|
168
|
+
level: "info" | "success" | "error";
|
|
99
169
|
}, {
|
|
100
170
|
data: string;
|
|
101
|
-
level: import("../shared").EventLevel;
|
|
102
171
|
createdAt: Date;
|
|
172
|
+
level: "info" | "success" | "error";
|
|
103
173
|
}>, "many">;
|
|
104
174
|
}>, "strip", z.ZodTypeAny, {
|
|
105
|
-
|
|
106
|
-
op: import("../shared").OpType;
|
|
175
|
+
op: 0 | 1 | 2 | 3;
|
|
107
176
|
user: string;
|
|
108
177
|
settler: string;
|
|
109
178
|
nonce: string;
|
|
110
179
|
deadline: string;
|
|
180
|
+
data: string;
|
|
111
181
|
maxFees: {
|
|
112
182
|
token: string;
|
|
113
183
|
amount: string;
|
|
114
184
|
}[];
|
|
115
|
-
|
|
185
|
+
events: {
|
|
186
|
+
data: string;
|
|
187
|
+
topic: string;
|
|
188
|
+
}[];
|
|
189
|
+
configSig: string;
|
|
190
|
+
minValidations: number;
|
|
191
|
+
status: "succeeded" | "failed" | "created" | "enqueued" | "discarded" | "submitted" | "expired";
|
|
116
192
|
hash: string;
|
|
193
|
+
executionHash: string;
|
|
117
194
|
proposals: {
|
|
118
|
-
data: string;
|
|
119
195
|
deadline: string;
|
|
196
|
+
data: string;
|
|
120
197
|
solver: string;
|
|
121
198
|
fees: string[];
|
|
122
|
-
status:
|
|
199
|
+
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
123
200
|
feeUsd: number;
|
|
124
201
|
signatures: string[];
|
|
125
202
|
description?: string | undefined;
|
|
126
203
|
transactionHash?: string | undefined;
|
|
127
204
|
destTransactionHash?: string | undefined;
|
|
128
205
|
}[];
|
|
129
|
-
|
|
206
|
+
logs: {
|
|
130
207
|
data: string;
|
|
131
|
-
level: import("../shared").EventLevel;
|
|
132
208
|
createdAt: Date;
|
|
209
|
+
level: "info" | "success" | "error";
|
|
133
210
|
}[];
|
|
134
211
|
}, {
|
|
135
|
-
|
|
136
|
-
op: import("../shared").OpType;
|
|
212
|
+
op: 0 | 1 | 2 | 3;
|
|
137
213
|
user: string;
|
|
138
214
|
settler: string;
|
|
139
215
|
nonce: string;
|
|
140
216
|
deadline: string;
|
|
217
|
+
data: string;
|
|
141
218
|
maxFees: {
|
|
142
219
|
token: string;
|
|
143
220
|
amount: string;
|
|
144
221
|
}[];
|
|
145
|
-
|
|
222
|
+
events: {
|
|
223
|
+
data: string;
|
|
224
|
+
topic: string;
|
|
225
|
+
}[];
|
|
226
|
+
configSig: string;
|
|
227
|
+
minValidations: number;
|
|
228
|
+
status: "succeeded" | "failed" | "created" | "enqueued" | "discarded" | "submitted" | "expired";
|
|
146
229
|
hash: string;
|
|
230
|
+
executionHash: string;
|
|
147
231
|
proposals: {
|
|
148
|
-
data: string;
|
|
149
232
|
deadline: string;
|
|
233
|
+
data: string;
|
|
150
234
|
solver: string;
|
|
151
235
|
fees: string[];
|
|
152
|
-
status:
|
|
236
|
+
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
153
237
|
feeUsd: number;
|
|
154
238
|
signatures: string[];
|
|
155
239
|
description?: string | undefined;
|
|
156
240
|
transactionHash?: string | undefined;
|
|
157
241
|
destTransactionHash?: string | undefined;
|
|
158
242
|
}[];
|
|
159
|
-
|
|
243
|
+
logs: {
|
|
160
244
|
data: string;
|
|
161
|
-
level: import("../shared").EventLevel;
|
|
162
245
|
createdAt: Date;
|
|
246
|
+
level: "info" | "success" | "error";
|
|
163
247
|
}[];
|
|
164
248
|
}>;
|
|
165
|
-
export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
|
|
166
|
-
op: z.ZodNativeEnum<
|
|
249
|
+
export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
250
|
+
op: z.ZodNativeEnum<{
|
|
251
|
+
readonly Swap: 0;
|
|
252
|
+
readonly Transfer: 1;
|
|
253
|
+
readonly EvmCall: 2;
|
|
254
|
+
readonly SvmCall: 3;
|
|
255
|
+
}>;
|
|
167
256
|
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
168
257
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
169
258
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -179,79 +268,135 @@ export declare const IntentQuoteRequestValidator: z.ZodEffects<z.ZodEffects<z.Zo
|
|
|
179
268
|
token: string;
|
|
180
269
|
amount: string;
|
|
181
270
|
}>, "many">;
|
|
271
|
+
events: z.ZodArray<z.ZodObject<{
|
|
272
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
273
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
274
|
+
}, "strip", z.ZodTypeAny, {
|
|
275
|
+
data: string;
|
|
276
|
+
topic: string;
|
|
277
|
+
}, {
|
|
278
|
+
data: string;
|
|
279
|
+
topic: string;
|
|
280
|
+
}>, "many">;
|
|
281
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
282
|
+
minValidations: z.ZodNumber;
|
|
182
283
|
}, {
|
|
284
|
+
validations: z.ZodArray<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">, "many">;
|
|
285
|
+
}>, {
|
|
183
286
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
184
287
|
}>, "strip", z.ZodTypeAny, {
|
|
185
|
-
|
|
186
|
-
op: import("../shared").OpType;
|
|
288
|
+
op: 0 | 1 | 2 | 3;
|
|
187
289
|
user: string;
|
|
188
290
|
settler: string;
|
|
189
291
|
nonce: string;
|
|
190
292
|
deadline: string;
|
|
293
|
+
data: string;
|
|
191
294
|
maxFees: {
|
|
192
295
|
token: string;
|
|
193
296
|
amount: string;
|
|
194
297
|
}[];
|
|
298
|
+
events: {
|
|
299
|
+
data: string;
|
|
300
|
+
topic: string;
|
|
301
|
+
}[];
|
|
302
|
+
configSig: string;
|
|
303
|
+
minValidations: number;
|
|
304
|
+
validations: string[][];
|
|
195
305
|
hash: string;
|
|
196
306
|
}, {
|
|
197
|
-
|
|
198
|
-
op: import("../shared").OpType;
|
|
307
|
+
op: 0 | 1 | 2 | 3;
|
|
199
308
|
user: string;
|
|
200
309
|
settler: string;
|
|
201
310
|
nonce: string;
|
|
202
311
|
deadline: string;
|
|
312
|
+
data: string;
|
|
203
313
|
maxFees: {
|
|
204
314
|
token: string;
|
|
205
315
|
amount: string;
|
|
206
316
|
}[];
|
|
317
|
+
events: {
|
|
318
|
+
data: string;
|
|
319
|
+
topic: string;
|
|
320
|
+
}[];
|
|
321
|
+
configSig: string;
|
|
322
|
+
minValidations: number;
|
|
323
|
+
validations: string[][];
|
|
207
324
|
hash: string;
|
|
208
325
|
}>, {
|
|
209
|
-
|
|
210
|
-
op: import("../shared").OpType;
|
|
326
|
+
op: 0 | 1 | 2 | 3;
|
|
211
327
|
user: string;
|
|
212
328
|
settler: string;
|
|
213
329
|
nonce: string;
|
|
214
330
|
deadline: string;
|
|
331
|
+
data: string;
|
|
215
332
|
maxFees: {
|
|
216
333
|
token: string;
|
|
217
334
|
amount: string;
|
|
218
335
|
}[];
|
|
336
|
+
events: {
|
|
337
|
+
data: string;
|
|
338
|
+
topic: string;
|
|
339
|
+
}[];
|
|
340
|
+
configSig: string;
|
|
341
|
+
minValidations: number;
|
|
342
|
+
validations: string[][];
|
|
219
343
|
hash: string;
|
|
220
344
|
}, {
|
|
221
|
-
|
|
222
|
-
op: import("../shared").OpType;
|
|
345
|
+
op: 0 | 1 | 2 | 3;
|
|
223
346
|
user: string;
|
|
224
347
|
settler: string;
|
|
225
348
|
nonce: string;
|
|
226
349
|
deadline: string;
|
|
350
|
+
data: string;
|
|
227
351
|
maxFees: {
|
|
228
352
|
token: string;
|
|
229
353
|
amount: string;
|
|
230
354
|
}[];
|
|
355
|
+
events: {
|
|
356
|
+
data: string;
|
|
357
|
+
topic: string;
|
|
358
|
+
}[];
|
|
359
|
+
configSig: string;
|
|
360
|
+
minValidations: number;
|
|
361
|
+
validations: string[][];
|
|
231
362
|
hash: string;
|
|
232
363
|
}>, {
|
|
233
|
-
|
|
234
|
-
op: import("../shared").OpType;
|
|
364
|
+
op: 0 | 1 | 2 | 3;
|
|
235
365
|
user: string;
|
|
236
366
|
settler: string;
|
|
237
367
|
nonce: string;
|
|
238
368
|
deadline: string;
|
|
369
|
+
data: string;
|
|
239
370
|
maxFees: {
|
|
240
371
|
token: string;
|
|
241
372
|
amount: string;
|
|
242
373
|
}[];
|
|
374
|
+
events: {
|
|
375
|
+
data: string;
|
|
376
|
+
topic: string;
|
|
377
|
+
}[];
|
|
378
|
+
configSig: string;
|
|
379
|
+
minValidations: number;
|
|
380
|
+
validations: string[][];
|
|
243
381
|
hash: string;
|
|
244
382
|
}, {
|
|
245
|
-
|
|
246
|
-
op: import("../shared").OpType;
|
|
383
|
+
op: 0 | 1 | 2 | 3;
|
|
247
384
|
user: string;
|
|
248
385
|
settler: string;
|
|
249
386
|
nonce: string;
|
|
250
387
|
deadline: string;
|
|
388
|
+
data: string;
|
|
251
389
|
maxFees: {
|
|
252
390
|
token: string;
|
|
253
391
|
amount: string;
|
|
254
392
|
}[];
|
|
393
|
+
events: {
|
|
394
|
+
data: string;
|
|
395
|
+
topic: string;
|
|
396
|
+
}[];
|
|
397
|
+
configSig: string;
|
|
398
|
+
minValidations: number;
|
|
399
|
+
validations: string[][];
|
|
255
400
|
hash: string;
|
|
256
401
|
}>;
|
|
257
402
|
export declare const IntentQuoteValidator: z.ZodObject<{
|
|
@@ -294,20 +439,25 @@ export declare const IntentsGetRequestValidator: z.ZodObject<{
|
|
|
294
439
|
}, "strip", z.ZodTypeAny, {
|
|
295
440
|
user?: string | undefined;
|
|
296
441
|
settler?: string | undefined;
|
|
297
|
-
deadlineAfter?: string | undefined;
|
|
298
|
-
deadlineBefore?: string | undefined;
|
|
299
442
|
offset?: number | undefined;
|
|
300
443
|
limit?: number | undefined;
|
|
444
|
+
deadlineAfter?: string | undefined;
|
|
445
|
+
deadlineBefore?: string | undefined;
|
|
301
446
|
}, {
|
|
302
447
|
user?: string | undefined;
|
|
303
448
|
settler?: string | undefined;
|
|
304
|
-
deadlineAfter?: string | undefined;
|
|
305
|
-
deadlineBefore?: string | undefined;
|
|
306
449
|
offset?: number | undefined;
|
|
307
450
|
limit?: number | undefined;
|
|
451
|
+
deadlineAfter?: string | undefined;
|
|
452
|
+
deadlineBefore?: string | undefined;
|
|
308
453
|
}>;
|
|
309
454
|
export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
310
|
-
op: z.ZodNativeEnum<
|
|
455
|
+
op: z.ZodNativeEnum<{
|
|
456
|
+
readonly Swap: 0;
|
|
457
|
+
readonly Transfer: 1;
|
|
458
|
+
readonly EvmCall: 2;
|
|
459
|
+
readonly SvmCall: 3;
|
|
460
|
+
}>;
|
|
311
461
|
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
312
462
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
313
463
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -323,115 +473,161 @@ export declare const AxiaIntentsValidator: z.ZodArray<z.ZodObject<z.objectUtil.e
|
|
|
323
473
|
token: string;
|
|
324
474
|
amount: string;
|
|
325
475
|
}>, "many">;
|
|
476
|
+
events: z.ZodArray<z.ZodObject<{
|
|
477
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
478
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
479
|
+
}, "strip", z.ZodTypeAny, {
|
|
480
|
+
data: string;
|
|
481
|
+
topic: string;
|
|
482
|
+
}, {
|
|
483
|
+
data: string;
|
|
484
|
+
topic: string;
|
|
485
|
+
}>, "many">;
|
|
486
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
487
|
+
minValidations: z.ZodNumber;
|
|
326
488
|
}, {
|
|
327
489
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
328
|
-
|
|
490
|
+
executionHash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
491
|
+
status: z.ZodNativeEnum<{
|
|
492
|
+
readonly created: "created";
|
|
493
|
+
readonly enqueued: "enqueued";
|
|
494
|
+
readonly discarded: "discarded";
|
|
495
|
+
readonly submitted: "submitted";
|
|
496
|
+
readonly succeeded: "succeeded";
|
|
497
|
+
readonly failed: "failed";
|
|
498
|
+
readonly expired: "expired";
|
|
499
|
+
}>;
|
|
329
500
|
proposals: z.ZodArray<z.ZodObject<{
|
|
330
501
|
solver: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
331
502
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
332
503
|
deadline: z.ZodEffects<z.ZodString, string, string>;
|
|
333
504
|
fees: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
334
505
|
feeUsd: z.ZodNumber;
|
|
335
|
-
status: z.ZodNativeEnum<
|
|
506
|
+
status: z.ZodNativeEnum<{
|
|
507
|
+
readonly received: "received";
|
|
508
|
+
readonly discarded: "discarded";
|
|
509
|
+
readonly submitted: "submitted";
|
|
510
|
+
readonly succeeded: "succeeded";
|
|
511
|
+
readonly failed: "failed";
|
|
512
|
+
readonly expired: "expired";
|
|
513
|
+
}>;
|
|
336
514
|
description: z.ZodOptional<z.ZodString>;
|
|
337
515
|
signatures: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">;
|
|
338
516
|
transactionHash: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
339
517
|
destTransactionHash: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
340
518
|
}, "strip", z.ZodTypeAny, {
|
|
341
|
-
data: string;
|
|
342
519
|
deadline: string;
|
|
520
|
+
data: string;
|
|
343
521
|
solver: string;
|
|
344
522
|
fees: string[];
|
|
345
|
-
status:
|
|
523
|
+
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
346
524
|
feeUsd: number;
|
|
347
525
|
signatures: string[];
|
|
348
526
|
description?: string | undefined;
|
|
349
527
|
transactionHash?: string | undefined;
|
|
350
528
|
destTransactionHash?: string | undefined;
|
|
351
529
|
}, {
|
|
352
|
-
data: string;
|
|
353
530
|
deadline: string;
|
|
531
|
+
data: string;
|
|
354
532
|
solver: string;
|
|
355
533
|
fees: string[];
|
|
356
|
-
status:
|
|
534
|
+
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
357
535
|
feeUsd: number;
|
|
358
536
|
signatures: string[];
|
|
359
537
|
description?: string | undefined;
|
|
360
538
|
transactionHash?: string | undefined;
|
|
361
539
|
destTransactionHash?: string | undefined;
|
|
362
540
|
}>, "many">;
|
|
363
|
-
|
|
364
|
-
level: z.ZodNativeEnum<
|
|
541
|
+
logs: z.ZodArray<z.ZodObject<{
|
|
542
|
+
level: z.ZodNativeEnum<{
|
|
543
|
+
readonly info: "info";
|
|
544
|
+
readonly success: "success";
|
|
545
|
+
readonly error: "error";
|
|
546
|
+
}>;
|
|
365
547
|
data: z.ZodString;
|
|
366
548
|
createdAt: z.ZodDate;
|
|
367
549
|
}, "strip", z.ZodTypeAny, {
|
|
368
550
|
data: string;
|
|
369
|
-
level: import("../shared").EventLevel;
|
|
370
551
|
createdAt: Date;
|
|
552
|
+
level: "info" | "success" | "error";
|
|
371
553
|
}, {
|
|
372
554
|
data: string;
|
|
373
|
-
level: import("../shared").EventLevel;
|
|
374
555
|
createdAt: Date;
|
|
556
|
+
level: "info" | "success" | "error";
|
|
375
557
|
}>, "many">;
|
|
376
558
|
}>, "strip", z.ZodTypeAny, {
|
|
377
|
-
|
|
378
|
-
op: import("../shared").OpType;
|
|
559
|
+
op: 0 | 1 | 2 | 3;
|
|
379
560
|
user: string;
|
|
380
561
|
settler: string;
|
|
381
562
|
nonce: string;
|
|
382
563
|
deadline: string;
|
|
564
|
+
data: string;
|
|
383
565
|
maxFees: {
|
|
384
566
|
token: string;
|
|
385
567
|
amount: string;
|
|
386
568
|
}[];
|
|
387
|
-
|
|
569
|
+
events: {
|
|
570
|
+
data: string;
|
|
571
|
+
topic: string;
|
|
572
|
+
}[];
|
|
573
|
+
configSig: string;
|
|
574
|
+
minValidations: number;
|
|
575
|
+
status: "succeeded" | "failed" | "created" | "enqueued" | "discarded" | "submitted" | "expired";
|
|
388
576
|
hash: string;
|
|
577
|
+
executionHash: string;
|
|
389
578
|
proposals: {
|
|
390
|
-
data: string;
|
|
391
579
|
deadline: string;
|
|
580
|
+
data: string;
|
|
392
581
|
solver: string;
|
|
393
582
|
fees: string[];
|
|
394
|
-
status:
|
|
583
|
+
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
395
584
|
feeUsd: number;
|
|
396
585
|
signatures: string[];
|
|
397
586
|
description?: string | undefined;
|
|
398
587
|
transactionHash?: string | undefined;
|
|
399
588
|
destTransactionHash?: string | undefined;
|
|
400
589
|
}[];
|
|
401
|
-
|
|
590
|
+
logs: {
|
|
402
591
|
data: string;
|
|
403
|
-
level: import("../shared").EventLevel;
|
|
404
592
|
createdAt: Date;
|
|
593
|
+
level: "info" | "success" | "error";
|
|
405
594
|
}[];
|
|
406
595
|
}, {
|
|
407
|
-
|
|
408
|
-
op: import("../shared").OpType;
|
|
596
|
+
op: 0 | 1 | 2 | 3;
|
|
409
597
|
user: string;
|
|
410
598
|
settler: string;
|
|
411
599
|
nonce: string;
|
|
412
600
|
deadline: string;
|
|
601
|
+
data: string;
|
|
413
602
|
maxFees: {
|
|
414
603
|
token: string;
|
|
415
604
|
amount: string;
|
|
416
605
|
}[];
|
|
417
|
-
|
|
606
|
+
events: {
|
|
607
|
+
data: string;
|
|
608
|
+
topic: string;
|
|
609
|
+
}[];
|
|
610
|
+
configSig: string;
|
|
611
|
+
minValidations: number;
|
|
612
|
+
status: "succeeded" | "failed" | "created" | "enqueued" | "discarded" | "submitted" | "expired";
|
|
418
613
|
hash: string;
|
|
614
|
+
executionHash: string;
|
|
419
615
|
proposals: {
|
|
420
|
-
data: string;
|
|
421
616
|
deadline: string;
|
|
617
|
+
data: string;
|
|
422
618
|
solver: string;
|
|
423
619
|
fees: string[];
|
|
424
|
-
status:
|
|
620
|
+
status: "succeeded" | "failed" | "discarded" | "submitted" | "expired" | "received";
|
|
425
621
|
feeUsd: number;
|
|
426
622
|
signatures: string[];
|
|
427
623
|
description?: string | undefined;
|
|
428
624
|
transactionHash?: string | undefined;
|
|
429
625
|
destTransactionHash?: string | undefined;
|
|
430
626
|
}[];
|
|
431
|
-
|
|
627
|
+
logs: {
|
|
432
628
|
data: string;
|
|
433
|
-
level: import("../shared").EventLevel;
|
|
434
629
|
createdAt: Date;
|
|
630
|
+
level: "info" | "success" | "error";
|
|
435
631
|
}[];
|
|
436
632
|
}>, "many">;
|
|
437
633
|
export declare const SettlerValidator: z.ZodObject<{
|
|
@@ -439,12 +635,12 @@ export declare const SettlerValidator: z.ZodObject<{
|
|
|
439
635
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
440
636
|
createdAt: z.ZodDate;
|
|
441
637
|
}, "strip", z.ZodTypeAny, {
|
|
442
|
-
chainId: number;
|
|
443
638
|
address: string;
|
|
639
|
+
chainId: number;
|
|
444
640
|
createdAt: Date;
|
|
445
641
|
}, {
|
|
446
|
-
chainId: number;
|
|
447
642
|
address: string;
|
|
643
|
+
chainId: number;
|
|
448
644
|
createdAt: Date;
|
|
449
645
|
}>;
|
|
450
646
|
export declare const SettlersValidator: z.ZodArray<z.ZodObject<{
|
|
@@ -452,16 +648,21 @@ export declare const SettlersValidator: z.ZodArray<z.ZodObject<{
|
|
|
452
648
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
453
649
|
createdAt: z.ZodDate;
|
|
454
650
|
}, "strip", z.ZodTypeAny, {
|
|
455
|
-
chainId: number;
|
|
456
651
|
address: string;
|
|
652
|
+
chainId: number;
|
|
457
653
|
createdAt: Date;
|
|
458
654
|
}, {
|
|
459
|
-
chainId: number;
|
|
460
655
|
address: string;
|
|
656
|
+
chainId: number;
|
|
461
657
|
createdAt: Date;
|
|
462
658
|
}>, "many">;
|
|
463
659
|
export declare const ExecutionIntentValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
464
|
-
op: z.ZodNativeEnum<
|
|
660
|
+
op: z.ZodNativeEnum<{
|
|
661
|
+
readonly Swap: 0;
|
|
662
|
+
readonly Transfer: 1;
|
|
663
|
+
readonly EvmCall: 2;
|
|
664
|
+
readonly SvmCall: 3;
|
|
665
|
+
}>;
|
|
465
666
|
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
466
667
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
467
668
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -477,31 +678,55 @@ export declare const ExecutionIntentValidator: z.ZodObject<z.objectUtil.extendSh
|
|
|
477
678
|
token: string;
|
|
478
679
|
amount: string;
|
|
479
680
|
}>, "many">;
|
|
681
|
+
events: z.ZodArray<z.ZodObject<{
|
|
682
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
683
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
684
|
+
}, "strip", z.ZodTypeAny, {
|
|
685
|
+
data: string;
|
|
686
|
+
topic: string;
|
|
687
|
+
}, {
|
|
688
|
+
data: string;
|
|
689
|
+
topic: string;
|
|
690
|
+
}>, "many">;
|
|
691
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
692
|
+
minValidations: z.ZodNumber;
|
|
480
693
|
}, {
|
|
481
694
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
482
695
|
}>, "strip", z.ZodTypeAny, {
|
|
483
|
-
|
|
484
|
-
op: import("../shared").OpType;
|
|
696
|
+
op: 0 | 1 | 2 | 3;
|
|
485
697
|
user: string;
|
|
486
698
|
settler: string;
|
|
487
699
|
nonce: string;
|
|
488
700
|
deadline: string;
|
|
701
|
+
data: string;
|
|
489
702
|
maxFees: {
|
|
490
703
|
token: string;
|
|
491
704
|
amount: string;
|
|
492
705
|
}[];
|
|
706
|
+
events: {
|
|
707
|
+
data: string;
|
|
708
|
+
topic: string;
|
|
709
|
+
}[];
|
|
710
|
+
configSig: string;
|
|
711
|
+
minValidations: number;
|
|
493
712
|
hash: string;
|
|
494
713
|
}, {
|
|
495
|
-
|
|
496
|
-
op: import("../shared").OpType;
|
|
714
|
+
op: 0 | 1 | 2 | 3;
|
|
497
715
|
user: string;
|
|
498
716
|
settler: string;
|
|
499
717
|
nonce: string;
|
|
500
718
|
deadline: string;
|
|
719
|
+
data: string;
|
|
501
720
|
maxFees: {
|
|
502
721
|
token: string;
|
|
503
722
|
amount: string;
|
|
504
723
|
}[];
|
|
724
|
+
events: {
|
|
725
|
+
data: string;
|
|
726
|
+
topic: string;
|
|
727
|
+
}[];
|
|
728
|
+
configSig: string;
|
|
729
|
+
minValidations: number;
|
|
505
730
|
hash: string;
|
|
506
731
|
}>;
|
|
507
732
|
export declare const ExecutionsGetRequestValidator: z.ZodObject<{
|
|
@@ -510,17 +735,20 @@ export declare const ExecutionsGetRequestValidator: z.ZodObject<{
|
|
|
510
735
|
configSig: z.ZodOptional<z.ZodString>;
|
|
511
736
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
512
737
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
513
|
-
sort: z.ZodOptional<z.ZodEffects<z.ZodNativeEnum<
|
|
738
|
+
sort: z.ZodOptional<z.ZodEffects<z.ZodNativeEnum<{
|
|
739
|
+
readonly asc: 1;
|
|
740
|
+
readonly desc: -1;
|
|
741
|
+
}>, 1 | -1, unknown>>;
|
|
514
742
|
}, "strip", z.ZodTypeAny, {
|
|
515
|
-
sort?: import("../shared").Sort | undefined;
|
|
516
743
|
configSig?: string | undefined;
|
|
744
|
+
sort?: 1 | -1 | undefined;
|
|
517
745
|
offset?: number | undefined;
|
|
518
746
|
limit?: number | undefined;
|
|
519
747
|
createdAfter?: number | undefined;
|
|
520
748
|
createdBefore?: number | undefined;
|
|
521
749
|
}, {
|
|
522
|
-
sort?: unknown;
|
|
523
750
|
configSig?: string | undefined;
|
|
751
|
+
sort?: unknown;
|
|
524
752
|
offset?: number | undefined;
|
|
525
753
|
limit?: number | undefined;
|
|
526
754
|
createdAfter?: number | undefined;
|
|
@@ -528,22 +756,16 @@ export declare const ExecutionsGetRequestValidator: z.ZodObject<{
|
|
|
528
756
|
}>;
|
|
529
757
|
export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
530
758
|
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
531
|
-
triggerType: z.ZodNativeEnum<
|
|
759
|
+
triggerType: z.ZodNativeEnum<{
|
|
760
|
+
readonly Cron: 0;
|
|
761
|
+
readonly Event: 1;
|
|
762
|
+
}>;
|
|
532
763
|
triggerData: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
533
764
|
}, {
|
|
534
765
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
535
766
|
timestamp: z.ZodNumber;
|
|
536
767
|
fuelUsed: z.ZodNumber;
|
|
537
|
-
logs: z.ZodArray<z.
|
|
538
|
-
level: z.ZodNativeEnum<typeof import("../shared").LogLevel>;
|
|
539
|
-
log: z.ZodString;
|
|
540
|
-
}, "strip", z.ZodTypeAny, {
|
|
541
|
-
level: import("../shared").LogLevel;
|
|
542
|
-
log: string;
|
|
543
|
-
}, {
|
|
544
|
-
level: import("../shared").LogLevel;
|
|
545
|
-
log: string;
|
|
546
|
-
}>, "many">;
|
|
768
|
+
logs: z.ZodArray<z.ZodString, "many">;
|
|
547
769
|
inputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
548
770
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
549
771
|
query: z.ZodObject<{
|
|
@@ -552,33 +774,33 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
552
774
|
params: z.ZodObject<{
|
|
553
775
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
554
776
|
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
555
|
-
to: z.ZodEffects<z.
|
|
777
|
+
to: z.ZodEffects<z.ZodString, string, string>;
|
|
556
778
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
557
779
|
}, "strip", z.ZodTypeAny, {
|
|
780
|
+
data: string;
|
|
558
781
|
chainId: number;
|
|
559
782
|
to: string;
|
|
560
|
-
data: string;
|
|
561
783
|
timestamp: number;
|
|
562
784
|
}, {
|
|
785
|
+
data: string;
|
|
563
786
|
chainId: number;
|
|
564
787
|
to: string;
|
|
565
|
-
data: string;
|
|
566
788
|
timestamp: number;
|
|
567
789
|
}>;
|
|
568
790
|
}, "strip", z.ZodTypeAny, {
|
|
569
791
|
params: {
|
|
792
|
+
data: string;
|
|
570
793
|
chainId: number;
|
|
571
794
|
to: string;
|
|
572
|
-
data: string;
|
|
573
795
|
timestamp: number;
|
|
574
796
|
};
|
|
575
797
|
name: "EvmCallQuery";
|
|
576
798
|
hash: string;
|
|
577
799
|
}, {
|
|
578
800
|
params: {
|
|
801
|
+
data: string;
|
|
579
802
|
chainId: number;
|
|
580
803
|
to: string;
|
|
581
|
-
data: string;
|
|
582
804
|
timestamp: number;
|
|
583
805
|
};
|
|
584
806
|
name: "EvmCallQuery";
|
|
@@ -595,32 +817,32 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
595
817
|
result: {
|
|
596
818
|
value: string;
|
|
597
819
|
};
|
|
598
|
-
signature: string;
|
|
599
820
|
query: {
|
|
600
821
|
params: {
|
|
822
|
+
data: string;
|
|
601
823
|
chainId: number;
|
|
602
824
|
to: string;
|
|
603
|
-
data: string;
|
|
604
825
|
timestamp: number;
|
|
605
826
|
};
|
|
606
827
|
name: "EvmCallQuery";
|
|
607
828
|
hash: string;
|
|
608
829
|
};
|
|
830
|
+
signature: string;
|
|
609
831
|
}, {
|
|
610
832
|
result: {
|
|
611
833
|
value: string;
|
|
612
834
|
};
|
|
613
|
-
signature: string;
|
|
614
835
|
query: {
|
|
615
836
|
params: {
|
|
837
|
+
data: string;
|
|
616
838
|
chainId: number;
|
|
617
839
|
to: string;
|
|
618
|
-
data: string;
|
|
619
840
|
timestamp: number;
|
|
620
841
|
};
|
|
621
842
|
name: "EvmCallQuery";
|
|
622
843
|
hash: string;
|
|
623
844
|
};
|
|
845
|
+
signature: string;
|
|
624
846
|
}>, z.ZodObject<{
|
|
625
847
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
626
848
|
query: z.ZodObject<{
|
|
@@ -632,42 +854,42 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
632
854
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
633
855
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
634
856
|
}, "strip", z.ZodTypeAny, {
|
|
635
|
-
chainId: number;
|
|
636
857
|
address: string;
|
|
637
|
-
}, {
|
|
638
858
|
chainId: number;
|
|
859
|
+
}, {
|
|
639
860
|
address: string;
|
|
861
|
+
chainId: number;
|
|
640
862
|
}>;
|
|
641
863
|
}, "strip", z.ZodTypeAny, {
|
|
642
|
-
timestamp: number;
|
|
643
864
|
token: {
|
|
644
|
-
chainId: number;
|
|
645
865
|
address: string;
|
|
866
|
+
chainId: number;
|
|
646
867
|
};
|
|
647
|
-
}, {
|
|
648
868
|
timestamp: number;
|
|
869
|
+
}, {
|
|
649
870
|
token: {
|
|
650
|
-
chainId: number;
|
|
651
871
|
address: string;
|
|
872
|
+
chainId: number;
|
|
652
873
|
};
|
|
874
|
+
timestamp: number;
|
|
653
875
|
}>;
|
|
654
876
|
}, "strip", z.ZodTypeAny, {
|
|
655
877
|
params: {
|
|
656
|
-
timestamp: number;
|
|
657
878
|
token: {
|
|
658
|
-
chainId: number;
|
|
659
879
|
address: string;
|
|
880
|
+
chainId: number;
|
|
660
881
|
};
|
|
882
|
+
timestamp: number;
|
|
661
883
|
};
|
|
662
884
|
name: "TokenPriceQuery";
|
|
663
885
|
hash: string;
|
|
664
886
|
}, {
|
|
665
887
|
params: {
|
|
666
|
-
timestamp: number;
|
|
667
888
|
token: {
|
|
668
|
-
chainId: number;
|
|
669
889
|
address: string;
|
|
890
|
+
chainId: number;
|
|
670
891
|
};
|
|
892
|
+
timestamp: number;
|
|
671
893
|
};
|
|
672
894
|
name: "TokenPriceQuery";
|
|
673
895
|
hash: string;
|
|
@@ -683,34 +905,34 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
683
905
|
result: {
|
|
684
906
|
value: string;
|
|
685
907
|
};
|
|
686
|
-
signature: string;
|
|
687
908
|
query: {
|
|
688
909
|
params: {
|
|
689
|
-
timestamp: number;
|
|
690
910
|
token: {
|
|
691
|
-
chainId: number;
|
|
692
911
|
address: string;
|
|
912
|
+
chainId: number;
|
|
693
913
|
};
|
|
914
|
+
timestamp: number;
|
|
694
915
|
};
|
|
695
916
|
name: "TokenPriceQuery";
|
|
696
917
|
hash: string;
|
|
697
918
|
};
|
|
919
|
+
signature: string;
|
|
698
920
|
}, {
|
|
699
921
|
result: {
|
|
700
922
|
value: string;
|
|
701
923
|
};
|
|
702
|
-
signature: string;
|
|
703
924
|
query: {
|
|
704
925
|
params: {
|
|
705
|
-
timestamp: number;
|
|
706
926
|
token: {
|
|
707
|
-
chainId: number;
|
|
708
927
|
address: string;
|
|
928
|
+
chainId: number;
|
|
709
929
|
};
|
|
930
|
+
timestamp: number;
|
|
710
931
|
};
|
|
711
932
|
name: "TokenPriceQuery";
|
|
712
933
|
hash: string;
|
|
713
934
|
};
|
|
935
|
+
signature: string;
|
|
714
936
|
}>, z.ZodObject<{
|
|
715
937
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
716
938
|
query: z.ZodObject<{
|
|
@@ -720,47 +942,43 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
720
942
|
chainIds: z.ZodArray<z.ZodEffects<z.ZodNumber, number, number>, "many">;
|
|
721
943
|
owner: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
722
944
|
usdMinAmount: z.ZodEffects<z.ZodString, string, string>;
|
|
723
|
-
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
724
945
|
tokens: z.ZodArray<z.ZodObject<{
|
|
725
|
-
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
726
946
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
947
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
727
948
|
}, "strip", z.ZodTypeAny, {
|
|
728
|
-
chainId: number;
|
|
729
949
|
address: string;
|
|
730
|
-
}, {
|
|
731
950
|
chainId: number;
|
|
951
|
+
}, {
|
|
732
952
|
address: string;
|
|
953
|
+
chainId: number;
|
|
733
954
|
}>, "many">;
|
|
734
955
|
tokenFilter: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
735
956
|
}, "strip", z.ZodTypeAny, {
|
|
736
|
-
|
|
957
|
+
owner: string;
|
|
737
958
|
tokens: {
|
|
738
|
-
chainId: number;
|
|
739
959
|
address: string;
|
|
960
|
+
chainId: number;
|
|
740
961
|
}[];
|
|
741
|
-
owner: string;
|
|
742
962
|
usdMinAmount: string;
|
|
743
963
|
chainIds: number[];
|
|
744
964
|
tokenFilter: 0 | 1;
|
|
745
965
|
}, {
|
|
746
|
-
|
|
966
|
+
owner: string;
|
|
747
967
|
tokens: {
|
|
748
|
-
chainId: number;
|
|
749
968
|
address: string;
|
|
969
|
+
chainId: number;
|
|
750
970
|
}[];
|
|
751
|
-
owner: string;
|
|
752
971
|
usdMinAmount: string;
|
|
753
972
|
chainIds: number[];
|
|
754
973
|
tokenFilter: 0 | 1;
|
|
755
974
|
}>;
|
|
756
975
|
}, "strip", z.ZodTypeAny, {
|
|
757
976
|
params: {
|
|
758
|
-
|
|
977
|
+
owner: string;
|
|
759
978
|
tokens: {
|
|
760
|
-
chainId: number;
|
|
761
979
|
address: string;
|
|
980
|
+
chainId: number;
|
|
762
981
|
}[];
|
|
763
|
-
owner: string;
|
|
764
982
|
usdMinAmount: string;
|
|
765
983
|
chainIds: number[];
|
|
766
984
|
tokenFilter: 0 | 1;
|
|
@@ -769,12 +987,11 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
769
987
|
hash: string;
|
|
770
988
|
}, {
|
|
771
989
|
params: {
|
|
772
|
-
|
|
990
|
+
owner: string;
|
|
773
991
|
tokens: {
|
|
774
|
-
chainId: number;
|
|
775
992
|
address: string;
|
|
993
|
+
chainId: number;
|
|
776
994
|
}[];
|
|
777
|
-
owner: string;
|
|
778
995
|
usdMinAmount: string;
|
|
779
996
|
chainIds: number[];
|
|
780
997
|
tokenFilter: 0 | 1;
|
|
@@ -783,67 +1000,95 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
783
1000
|
hash: string;
|
|
784
1001
|
}>;
|
|
785
1002
|
result: z.ZodObject<{
|
|
786
|
-
value: z.
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
1003
|
+
value: z.ZodObject<{
|
|
1004
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1005
|
+
balances: z.ZodArray<z.ZodObject<{
|
|
1006
|
+
token: z.ZodObject<{
|
|
1007
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1008
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1009
|
+
}, "strip", z.ZodTypeAny, {
|
|
1010
|
+
address: string;
|
|
1011
|
+
chainId: number;
|
|
1012
|
+
}, {
|
|
1013
|
+
address: string;
|
|
1014
|
+
chainId: number;
|
|
1015
|
+
}>;
|
|
1016
|
+
balance: z.ZodEffects<z.ZodString, string, string>;
|
|
790
1017
|
}, "strip", z.ZodTypeAny, {
|
|
791
|
-
|
|
792
|
-
|
|
1018
|
+
token: {
|
|
1019
|
+
address: string;
|
|
1020
|
+
chainId: number;
|
|
1021
|
+
};
|
|
1022
|
+
balance: string;
|
|
793
1023
|
}, {
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
1024
|
+
token: {
|
|
1025
|
+
address: string;
|
|
1026
|
+
chainId: number;
|
|
1027
|
+
};
|
|
1028
|
+
balance: string;
|
|
1029
|
+
}>, "many">;
|
|
798
1030
|
}, "strip", z.ZodTypeAny, {
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
1031
|
+
timestamp: number;
|
|
1032
|
+
balances: {
|
|
1033
|
+
token: {
|
|
1034
|
+
address: string;
|
|
1035
|
+
chainId: number;
|
|
1036
|
+
};
|
|
1037
|
+
balance: string;
|
|
1038
|
+
}[];
|
|
804
1039
|
}, {
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
1040
|
+
timestamp: number;
|
|
1041
|
+
balances: {
|
|
1042
|
+
token: {
|
|
1043
|
+
address: string;
|
|
1044
|
+
chainId: number;
|
|
1045
|
+
};
|
|
1046
|
+
balance: string;
|
|
1047
|
+
}[];
|
|
1048
|
+
}>;
|
|
811
1049
|
}, "strip", z.ZodTypeAny, {
|
|
812
1050
|
value: {
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
1051
|
+
timestamp: number;
|
|
1052
|
+
balances: {
|
|
1053
|
+
token: {
|
|
1054
|
+
address: string;
|
|
1055
|
+
chainId: number;
|
|
1056
|
+
};
|
|
1057
|
+
balance: string;
|
|
1058
|
+
}[];
|
|
1059
|
+
};
|
|
819
1060
|
}, {
|
|
820
1061
|
value: {
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
1062
|
+
timestamp: number;
|
|
1063
|
+
balances: {
|
|
1064
|
+
token: {
|
|
1065
|
+
address: string;
|
|
1066
|
+
chainId: number;
|
|
1067
|
+
};
|
|
1068
|
+
balance: string;
|
|
1069
|
+
}[];
|
|
1070
|
+
};
|
|
827
1071
|
}>;
|
|
828
1072
|
}, "strip", z.ZodTypeAny, {
|
|
829
1073
|
result: {
|
|
830
1074
|
value: {
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
1075
|
+
timestamp: number;
|
|
1076
|
+
balances: {
|
|
1077
|
+
token: {
|
|
1078
|
+
address: string;
|
|
1079
|
+
chainId: number;
|
|
1080
|
+
};
|
|
1081
|
+
balance: string;
|
|
1082
|
+
}[];
|
|
1083
|
+
};
|
|
837
1084
|
};
|
|
838
|
-
signature: string;
|
|
839
1085
|
query: {
|
|
840
1086
|
params: {
|
|
841
|
-
|
|
1087
|
+
owner: string;
|
|
842
1088
|
tokens: {
|
|
843
|
-
chainId: number;
|
|
844
1089
|
address: string;
|
|
1090
|
+
chainId: number;
|
|
845
1091
|
}[];
|
|
846
|
-
owner: string;
|
|
847
1092
|
usdMinAmount: string;
|
|
848
1093
|
chainIds: number[];
|
|
849
1094
|
tokenFilter: 0 | 1;
|
|
@@ -851,25 +1096,27 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
851
1096
|
name: "RelevantTokensQuery";
|
|
852
1097
|
hash: string;
|
|
853
1098
|
};
|
|
1099
|
+
signature: string;
|
|
854
1100
|
}, {
|
|
855
1101
|
result: {
|
|
856
1102
|
value: {
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
1103
|
+
timestamp: number;
|
|
1104
|
+
balances: {
|
|
1105
|
+
token: {
|
|
1106
|
+
address: string;
|
|
1107
|
+
chainId: number;
|
|
1108
|
+
};
|
|
1109
|
+
balance: string;
|
|
1110
|
+
}[];
|
|
1111
|
+
};
|
|
863
1112
|
};
|
|
864
|
-
signature: string;
|
|
865
1113
|
query: {
|
|
866
1114
|
params: {
|
|
867
|
-
|
|
1115
|
+
owner: string;
|
|
868
1116
|
tokens: {
|
|
869
|
-
chainId: number;
|
|
870
1117
|
address: string;
|
|
1118
|
+
chainId: number;
|
|
871
1119
|
}[];
|
|
872
|
-
owner: string;
|
|
873
1120
|
usdMinAmount: string;
|
|
874
1121
|
chainIds: number[];
|
|
875
1122
|
tokenFilter: 0 | 1;
|
|
@@ -877,9 +1124,251 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
877
1124
|
name: "RelevantTokensQuery";
|
|
878
1125
|
hash: string;
|
|
879
1126
|
};
|
|
1127
|
+
signature: string;
|
|
1128
|
+
}>, z.ZodObject<{
|
|
1129
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1130
|
+
query: z.ZodObject<{
|
|
1131
|
+
name: z.ZodLiteral<"SubgraphQuery">;
|
|
1132
|
+
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1133
|
+
params: z.ZodObject<{
|
|
1134
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1135
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1136
|
+
subgraphId: z.ZodString;
|
|
1137
|
+
query: z.ZodString;
|
|
1138
|
+
}, "strip", z.ZodTypeAny, {
|
|
1139
|
+
chainId: number;
|
|
1140
|
+
timestamp: number;
|
|
1141
|
+
subgraphId: string;
|
|
1142
|
+
query: string;
|
|
1143
|
+
}, {
|
|
1144
|
+
chainId: number;
|
|
1145
|
+
timestamp: number;
|
|
1146
|
+
subgraphId: string;
|
|
1147
|
+
query: string;
|
|
1148
|
+
}>;
|
|
1149
|
+
}, "strip", z.ZodTypeAny, {
|
|
1150
|
+
params: {
|
|
1151
|
+
chainId: number;
|
|
1152
|
+
timestamp: number;
|
|
1153
|
+
subgraphId: string;
|
|
1154
|
+
query: string;
|
|
1155
|
+
};
|
|
1156
|
+
name: "SubgraphQuery";
|
|
1157
|
+
hash: string;
|
|
1158
|
+
}, {
|
|
1159
|
+
params: {
|
|
1160
|
+
chainId: number;
|
|
1161
|
+
timestamp: number;
|
|
1162
|
+
subgraphId: string;
|
|
1163
|
+
query: string;
|
|
1164
|
+
};
|
|
1165
|
+
name: "SubgraphQuery";
|
|
1166
|
+
hash: string;
|
|
1167
|
+
}>;
|
|
1168
|
+
result: z.ZodObject<{
|
|
1169
|
+
value: z.ZodObject<{
|
|
1170
|
+
blockNumber: z.ZodNumber;
|
|
1171
|
+
data: z.ZodString;
|
|
1172
|
+
}, "strip", z.ZodTypeAny, {
|
|
1173
|
+
data: string;
|
|
1174
|
+
blockNumber: number;
|
|
1175
|
+
}, {
|
|
1176
|
+
data: string;
|
|
1177
|
+
blockNumber: number;
|
|
1178
|
+
}>;
|
|
1179
|
+
}, "strip", z.ZodTypeAny, {
|
|
1180
|
+
value: {
|
|
1181
|
+
data: string;
|
|
1182
|
+
blockNumber: number;
|
|
1183
|
+
};
|
|
1184
|
+
}, {
|
|
1185
|
+
value: {
|
|
1186
|
+
data: string;
|
|
1187
|
+
blockNumber: number;
|
|
1188
|
+
};
|
|
1189
|
+
}>;
|
|
1190
|
+
}, "strip", z.ZodTypeAny, {
|
|
1191
|
+
result: {
|
|
1192
|
+
value: {
|
|
1193
|
+
data: string;
|
|
1194
|
+
blockNumber: number;
|
|
1195
|
+
};
|
|
1196
|
+
};
|
|
1197
|
+
query: {
|
|
1198
|
+
params: {
|
|
1199
|
+
chainId: number;
|
|
1200
|
+
timestamp: number;
|
|
1201
|
+
subgraphId: string;
|
|
1202
|
+
query: string;
|
|
1203
|
+
};
|
|
1204
|
+
name: "SubgraphQuery";
|
|
1205
|
+
hash: string;
|
|
1206
|
+
};
|
|
1207
|
+
signature: string;
|
|
1208
|
+
}, {
|
|
1209
|
+
result: {
|
|
1210
|
+
value: {
|
|
1211
|
+
data: string;
|
|
1212
|
+
blockNumber: number;
|
|
1213
|
+
};
|
|
1214
|
+
};
|
|
1215
|
+
query: {
|
|
1216
|
+
params: {
|
|
1217
|
+
chainId: number;
|
|
1218
|
+
timestamp: number;
|
|
1219
|
+
subgraphId: string;
|
|
1220
|
+
query: string;
|
|
1221
|
+
};
|
|
1222
|
+
name: "SubgraphQuery";
|
|
1223
|
+
hash: string;
|
|
1224
|
+
};
|
|
1225
|
+
signature: string;
|
|
1226
|
+
}>, z.ZodObject<{
|
|
1227
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1228
|
+
query: z.ZodObject<{
|
|
1229
|
+
name: z.ZodLiteral<"SvmAccountsInfoQuery">;
|
|
1230
|
+
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1231
|
+
params: z.ZodObject<{
|
|
1232
|
+
publicKeys: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
1233
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1234
|
+
}, "strip", z.ZodTypeAny, {
|
|
1235
|
+
timestamp: number;
|
|
1236
|
+
publicKeys: string[];
|
|
1237
|
+
}, {
|
|
1238
|
+
timestamp: number;
|
|
1239
|
+
publicKeys: string[];
|
|
1240
|
+
}>;
|
|
1241
|
+
}, "strip", z.ZodTypeAny, {
|
|
1242
|
+
params: {
|
|
1243
|
+
timestamp: number;
|
|
1244
|
+
publicKeys: string[];
|
|
1245
|
+
};
|
|
1246
|
+
name: "SvmAccountsInfoQuery";
|
|
1247
|
+
hash: string;
|
|
1248
|
+
}, {
|
|
1249
|
+
params: {
|
|
1250
|
+
timestamp: number;
|
|
1251
|
+
publicKeys: string[];
|
|
1252
|
+
};
|
|
1253
|
+
name: "SvmAccountsInfoQuery";
|
|
1254
|
+
hash: string;
|
|
1255
|
+
}>;
|
|
1256
|
+
result: z.ZodObject<{
|
|
1257
|
+
value: z.ZodObject<{
|
|
1258
|
+
accountsInfo: z.ZodArray<z.ZodObject<{
|
|
1259
|
+
executable: z.ZodBoolean;
|
|
1260
|
+
owner: z.ZodEffects<z.ZodString, string, string>;
|
|
1261
|
+
lamports: z.ZodEffects<z.ZodString, string, string>;
|
|
1262
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1263
|
+
rentEpoch: z.ZodEffects<z.ZodString, string, string>;
|
|
1264
|
+
}, "strip", z.ZodTypeAny, {
|
|
1265
|
+
data: string;
|
|
1266
|
+
executable: boolean;
|
|
1267
|
+
owner: string;
|
|
1268
|
+
lamports: string;
|
|
1269
|
+
rentEpoch: string;
|
|
1270
|
+
}, {
|
|
1271
|
+
data: string;
|
|
1272
|
+
executable: boolean;
|
|
1273
|
+
owner: string;
|
|
1274
|
+
lamports: string;
|
|
1275
|
+
rentEpoch: string;
|
|
1276
|
+
}>, "many">;
|
|
1277
|
+
slot: z.ZodEffects<z.ZodString, string, string>;
|
|
1278
|
+
}, "strip", z.ZodTypeAny, {
|
|
1279
|
+
accountsInfo: {
|
|
1280
|
+
data: string;
|
|
1281
|
+
executable: boolean;
|
|
1282
|
+
owner: string;
|
|
1283
|
+
lamports: string;
|
|
1284
|
+
rentEpoch: string;
|
|
1285
|
+
}[];
|
|
1286
|
+
slot: string;
|
|
1287
|
+
}, {
|
|
1288
|
+
accountsInfo: {
|
|
1289
|
+
data: string;
|
|
1290
|
+
executable: boolean;
|
|
1291
|
+
owner: string;
|
|
1292
|
+
lamports: string;
|
|
1293
|
+
rentEpoch: string;
|
|
1294
|
+
}[];
|
|
1295
|
+
slot: string;
|
|
1296
|
+
}>;
|
|
1297
|
+
}, "strip", z.ZodTypeAny, {
|
|
1298
|
+
value: {
|
|
1299
|
+
accountsInfo: {
|
|
1300
|
+
data: string;
|
|
1301
|
+
executable: boolean;
|
|
1302
|
+
owner: string;
|
|
1303
|
+
lamports: string;
|
|
1304
|
+
rentEpoch: string;
|
|
1305
|
+
}[];
|
|
1306
|
+
slot: string;
|
|
1307
|
+
};
|
|
1308
|
+
}, {
|
|
1309
|
+
value: {
|
|
1310
|
+
accountsInfo: {
|
|
1311
|
+
data: string;
|
|
1312
|
+
executable: boolean;
|
|
1313
|
+
owner: string;
|
|
1314
|
+
lamports: string;
|
|
1315
|
+
rentEpoch: string;
|
|
1316
|
+
}[];
|
|
1317
|
+
slot: string;
|
|
1318
|
+
};
|
|
1319
|
+
}>;
|
|
1320
|
+
}, "strip", z.ZodTypeAny, {
|
|
1321
|
+
result: {
|
|
1322
|
+
value: {
|
|
1323
|
+
accountsInfo: {
|
|
1324
|
+
data: string;
|
|
1325
|
+
executable: boolean;
|
|
1326
|
+
owner: string;
|
|
1327
|
+
lamports: string;
|
|
1328
|
+
rentEpoch: string;
|
|
1329
|
+
}[];
|
|
1330
|
+
slot: string;
|
|
1331
|
+
};
|
|
1332
|
+
};
|
|
1333
|
+
query: {
|
|
1334
|
+
params: {
|
|
1335
|
+
timestamp: number;
|
|
1336
|
+
publicKeys: string[];
|
|
1337
|
+
};
|
|
1338
|
+
name: "SvmAccountsInfoQuery";
|
|
1339
|
+
hash: string;
|
|
1340
|
+
};
|
|
1341
|
+
signature: string;
|
|
1342
|
+
}, {
|
|
1343
|
+
result: {
|
|
1344
|
+
value: {
|
|
1345
|
+
accountsInfo: {
|
|
1346
|
+
data: string;
|
|
1347
|
+
executable: boolean;
|
|
1348
|
+
owner: string;
|
|
1349
|
+
lamports: string;
|
|
1350
|
+
rentEpoch: string;
|
|
1351
|
+
}[];
|
|
1352
|
+
slot: string;
|
|
1353
|
+
};
|
|
1354
|
+
};
|
|
1355
|
+
query: {
|
|
1356
|
+
params: {
|
|
1357
|
+
timestamp: number;
|
|
1358
|
+
publicKeys: string[];
|
|
1359
|
+
};
|
|
1360
|
+
name: "SvmAccountsInfoQuery";
|
|
1361
|
+
hash: string;
|
|
1362
|
+
};
|
|
1363
|
+
signature: string;
|
|
880
1364
|
}>]>, "many">;
|
|
881
1365
|
outputs: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
882
|
-
op: z.ZodNativeEnum<
|
|
1366
|
+
op: z.ZodNativeEnum<{
|
|
1367
|
+
readonly Swap: 0;
|
|
1368
|
+
readonly Transfer: 1;
|
|
1369
|
+
readonly EvmCall: 2;
|
|
1370
|
+
readonly SvmCall: 3;
|
|
1371
|
+
}>;
|
|
883
1372
|
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
884
1373
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
885
1374
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -895,96 +1384,139 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
895
1384
|
token: string;
|
|
896
1385
|
amount: string;
|
|
897
1386
|
}>, "many">;
|
|
1387
|
+
events: z.ZodArray<z.ZodObject<{
|
|
1388
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1389
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1390
|
+
}, "strip", z.ZodTypeAny, {
|
|
1391
|
+
data: string;
|
|
1392
|
+
topic: string;
|
|
1393
|
+
}, {
|
|
1394
|
+
data: string;
|
|
1395
|
+
topic: string;
|
|
1396
|
+
}>, "many">;
|
|
1397
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1398
|
+
minValidations: z.ZodNumber;
|
|
898
1399
|
}, {
|
|
899
1400
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
900
1401
|
}>, "strip", z.ZodTypeAny, {
|
|
901
|
-
|
|
902
|
-
op: import("../shared").OpType;
|
|
1402
|
+
op: 0 | 1 | 2 | 3;
|
|
903
1403
|
user: string;
|
|
904
1404
|
settler: string;
|
|
905
1405
|
nonce: string;
|
|
906
1406
|
deadline: string;
|
|
1407
|
+
data: string;
|
|
907
1408
|
maxFees: {
|
|
908
1409
|
token: string;
|
|
909
1410
|
amount: string;
|
|
910
1411
|
}[];
|
|
1412
|
+
events: {
|
|
1413
|
+
data: string;
|
|
1414
|
+
topic: string;
|
|
1415
|
+
}[];
|
|
1416
|
+
configSig: string;
|
|
1417
|
+
minValidations: number;
|
|
911
1418
|
hash: string;
|
|
912
1419
|
}, {
|
|
913
|
-
|
|
914
|
-
op: import("../shared").OpType;
|
|
1420
|
+
op: 0 | 1 | 2 | 3;
|
|
915
1421
|
user: string;
|
|
916
1422
|
settler: string;
|
|
917
1423
|
nonce: string;
|
|
918
1424
|
deadline: string;
|
|
1425
|
+
data: string;
|
|
919
1426
|
maxFees: {
|
|
920
1427
|
token: string;
|
|
921
1428
|
amount: string;
|
|
922
1429
|
}[];
|
|
1430
|
+
events: {
|
|
1431
|
+
data: string;
|
|
1432
|
+
topic: string;
|
|
1433
|
+
}[];
|
|
1434
|
+
configSig: string;
|
|
1435
|
+
minValidations: number;
|
|
923
1436
|
hash: string;
|
|
924
1437
|
}>, "many">;
|
|
925
1438
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1439
|
+
result: z.ZodNativeEnum<{
|
|
1440
|
+
readonly succeeded: "succeeded";
|
|
1441
|
+
readonly failed: "failed";
|
|
1442
|
+
}>;
|
|
926
1443
|
}>, "strip", z.ZodTypeAny, {
|
|
927
|
-
timestamp: number;
|
|
928
1444
|
configSig: string;
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
signature: string;
|
|
932
|
-
hash: string;
|
|
933
|
-
fuelUsed: number;
|
|
934
|
-
logs: {
|
|
935
|
-
level: import("../shared").LogLevel;
|
|
936
|
-
log: string;
|
|
937
|
-
}[];
|
|
1445
|
+
result: "succeeded" | "failed";
|
|
1446
|
+
timestamp: number;
|
|
938
1447
|
inputs: ({
|
|
939
1448
|
result: {
|
|
940
1449
|
value: string;
|
|
941
1450
|
};
|
|
942
|
-
signature: string;
|
|
943
1451
|
query: {
|
|
944
1452
|
params: {
|
|
1453
|
+
data: string;
|
|
945
1454
|
chainId: number;
|
|
946
1455
|
to: string;
|
|
947
|
-
data: string;
|
|
948
1456
|
timestamp: number;
|
|
949
1457
|
};
|
|
950
1458
|
name: "EvmCallQuery";
|
|
951
1459
|
hash: string;
|
|
952
1460
|
};
|
|
1461
|
+
signature: string;
|
|
953
1462
|
} | {
|
|
954
1463
|
result: {
|
|
955
|
-
value:
|
|
1464
|
+
value: {
|
|
1465
|
+
accountsInfo: {
|
|
1466
|
+
data: string;
|
|
1467
|
+
executable: boolean;
|
|
1468
|
+
owner: string;
|
|
1469
|
+
lamports: string;
|
|
1470
|
+
rentEpoch: string;
|
|
1471
|
+
}[];
|
|
1472
|
+
slot: string;
|
|
1473
|
+
};
|
|
956
1474
|
};
|
|
957
|
-
signature: string;
|
|
958
1475
|
query: {
|
|
959
1476
|
params: {
|
|
960
1477
|
timestamp: number;
|
|
1478
|
+
publicKeys: string[];
|
|
1479
|
+
};
|
|
1480
|
+
name: "SvmAccountsInfoQuery";
|
|
1481
|
+
hash: string;
|
|
1482
|
+
};
|
|
1483
|
+
signature: string;
|
|
1484
|
+
} | {
|
|
1485
|
+
result: {
|
|
1486
|
+
value: string;
|
|
1487
|
+
};
|
|
1488
|
+
query: {
|
|
1489
|
+
params: {
|
|
961
1490
|
token: {
|
|
962
|
-
chainId: number;
|
|
963
1491
|
address: string;
|
|
1492
|
+
chainId: number;
|
|
964
1493
|
};
|
|
1494
|
+
timestamp: number;
|
|
965
1495
|
};
|
|
966
1496
|
name: "TokenPriceQuery";
|
|
967
1497
|
hash: string;
|
|
968
1498
|
};
|
|
1499
|
+
signature: string;
|
|
969
1500
|
} | {
|
|
970
1501
|
result: {
|
|
971
1502
|
value: {
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
1503
|
+
timestamp: number;
|
|
1504
|
+
balances: {
|
|
1505
|
+
token: {
|
|
1506
|
+
address: string;
|
|
1507
|
+
chainId: number;
|
|
1508
|
+
};
|
|
1509
|
+
balance: string;
|
|
1510
|
+
}[];
|
|
1511
|
+
};
|
|
978
1512
|
};
|
|
979
|
-
signature: string;
|
|
980
1513
|
query: {
|
|
981
1514
|
params: {
|
|
982
|
-
|
|
1515
|
+
owner: string;
|
|
983
1516
|
tokens: {
|
|
984
|
-
chainId: number;
|
|
985
1517
|
address: string;
|
|
1518
|
+
chainId: number;
|
|
986
1519
|
}[];
|
|
987
|
-
owner: string;
|
|
988
1520
|
usdMinAmount: string;
|
|
989
1521
|
chainIds: number[];
|
|
990
1522
|
tokenFilter: 0 | 1;
|
|
@@ -992,82 +1524,128 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
992
1524
|
name: "RelevantTokensQuery";
|
|
993
1525
|
hash: string;
|
|
994
1526
|
};
|
|
1527
|
+
signature: string;
|
|
1528
|
+
} | {
|
|
1529
|
+
result: {
|
|
1530
|
+
value: {
|
|
1531
|
+
data: string;
|
|
1532
|
+
blockNumber: number;
|
|
1533
|
+
};
|
|
1534
|
+
};
|
|
1535
|
+
query: {
|
|
1536
|
+
params: {
|
|
1537
|
+
chainId: number;
|
|
1538
|
+
timestamp: number;
|
|
1539
|
+
subgraphId: string;
|
|
1540
|
+
query: string;
|
|
1541
|
+
};
|
|
1542
|
+
name: "SubgraphQuery";
|
|
1543
|
+
hash: string;
|
|
1544
|
+
};
|
|
1545
|
+
signature: string;
|
|
995
1546
|
})[];
|
|
1547
|
+
signature: string;
|
|
1548
|
+
triggerType: 0 | 1;
|
|
1549
|
+
triggerData: string;
|
|
1550
|
+
hash: string;
|
|
1551
|
+
logs: string[];
|
|
1552
|
+
fuelUsed: number;
|
|
996
1553
|
outputs: {
|
|
997
|
-
|
|
998
|
-
op: import("../shared").OpType;
|
|
1554
|
+
op: 0 | 1 | 2 | 3;
|
|
999
1555
|
user: string;
|
|
1000
1556
|
settler: string;
|
|
1001
1557
|
nonce: string;
|
|
1002
1558
|
deadline: string;
|
|
1559
|
+
data: string;
|
|
1003
1560
|
maxFees: {
|
|
1004
1561
|
token: string;
|
|
1005
1562
|
amount: string;
|
|
1006
1563
|
}[];
|
|
1564
|
+
events: {
|
|
1565
|
+
data: string;
|
|
1566
|
+
topic: string;
|
|
1567
|
+
}[];
|
|
1568
|
+
configSig: string;
|
|
1569
|
+
minValidations: number;
|
|
1007
1570
|
hash: string;
|
|
1008
1571
|
}[];
|
|
1009
1572
|
}, {
|
|
1010
|
-
timestamp: number;
|
|
1011
1573
|
configSig: string;
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
signature: string;
|
|
1015
|
-
hash: string;
|
|
1016
|
-
fuelUsed: number;
|
|
1017
|
-
logs: {
|
|
1018
|
-
level: import("../shared").LogLevel;
|
|
1019
|
-
log: string;
|
|
1020
|
-
}[];
|
|
1574
|
+
result: "succeeded" | "failed";
|
|
1575
|
+
timestamp: number;
|
|
1021
1576
|
inputs: ({
|
|
1022
1577
|
result: {
|
|
1023
1578
|
value: string;
|
|
1024
1579
|
};
|
|
1025
|
-
signature: string;
|
|
1026
1580
|
query: {
|
|
1027
1581
|
params: {
|
|
1582
|
+
data: string;
|
|
1028
1583
|
chainId: number;
|
|
1029
1584
|
to: string;
|
|
1030
|
-
data: string;
|
|
1031
1585
|
timestamp: number;
|
|
1032
1586
|
};
|
|
1033
1587
|
name: "EvmCallQuery";
|
|
1034
1588
|
hash: string;
|
|
1035
1589
|
};
|
|
1590
|
+
signature: string;
|
|
1036
1591
|
} | {
|
|
1037
1592
|
result: {
|
|
1038
|
-
value:
|
|
1593
|
+
value: {
|
|
1594
|
+
accountsInfo: {
|
|
1595
|
+
data: string;
|
|
1596
|
+
executable: boolean;
|
|
1597
|
+
owner: string;
|
|
1598
|
+
lamports: string;
|
|
1599
|
+
rentEpoch: string;
|
|
1600
|
+
}[];
|
|
1601
|
+
slot: string;
|
|
1602
|
+
};
|
|
1039
1603
|
};
|
|
1040
|
-
signature: string;
|
|
1041
1604
|
query: {
|
|
1042
1605
|
params: {
|
|
1043
1606
|
timestamp: number;
|
|
1607
|
+
publicKeys: string[];
|
|
1608
|
+
};
|
|
1609
|
+
name: "SvmAccountsInfoQuery";
|
|
1610
|
+
hash: string;
|
|
1611
|
+
};
|
|
1612
|
+
signature: string;
|
|
1613
|
+
} | {
|
|
1614
|
+
result: {
|
|
1615
|
+
value: string;
|
|
1616
|
+
};
|
|
1617
|
+
query: {
|
|
1618
|
+
params: {
|
|
1044
1619
|
token: {
|
|
1045
|
-
chainId: number;
|
|
1046
1620
|
address: string;
|
|
1621
|
+
chainId: number;
|
|
1047
1622
|
};
|
|
1623
|
+
timestamp: number;
|
|
1048
1624
|
};
|
|
1049
1625
|
name: "TokenPriceQuery";
|
|
1050
1626
|
hash: string;
|
|
1051
1627
|
};
|
|
1628
|
+
signature: string;
|
|
1052
1629
|
} | {
|
|
1053
1630
|
result: {
|
|
1054
1631
|
value: {
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1632
|
+
timestamp: number;
|
|
1633
|
+
balances: {
|
|
1634
|
+
token: {
|
|
1635
|
+
address: string;
|
|
1636
|
+
chainId: number;
|
|
1637
|
+
};
|
|
1638
|
+
balance: string;
|
|
1639
|
+
}[];
|
|
1640
|
+
};
|
|
1061
1641
|
};
|
|
1062
|
-
signature: string;
|
|
1063
1642
|
query: {
|
|
1064
1643
|
params: {
|
|
1065
|
-
|
|
1644
|
+
owner: string;
|
|
1066
1645
|
tokens: {
|
|
1067
|
-
chainId: number;
|
|
1068
1646
|
address: string;
|
|
1647
|
+
chainId: number;
|
|
1069
1648
|
}[];
|
|
1070
|
-
owner: string;
|
|
1071
1649
|
usdMinAmount: string;
|
|
1072
1650
|
chainIds: number[];
|
|
1073
1651
|
tokenFilter: 0 | 1;
|
|
@@ -1075,22 +1653,54 @@ export declare const ExecutionCreateRequestValidator: z.ZodObject<z.objectUtil.e
|
|
|
1075
1653
|
name: "RelevantTokensQuery";
|
|
1076
1654
|
hash: string;
|
|
1077
1655
|
};
|
|
1656
|
+
signature: string;
|
|
1657
|
+
} | {
|
|
1658
|
+
result: {
|
|
1659
|
+
value: {
|
|
1660
|
+
data: string;
|
|
1661
|
+
blockNumber: number;
|
|
1662
|
+
};
|
|
1663
|
+
};
|
|
1664
|
+
query: {
|
|
1665
|
+
params: {
|
|
1666
|
+
chainId: number;
|
|
1667
|
+
timestamp: number;
|
|
1668
|
+
subgraphId: string;
|
|
1669
|
+
query: string;
|
|
1670
|
+
};
|
|
1671
|
+
name: "SubgraphQuery";
|
|
1672
|
+
hash: string;
|
|
1673
|
+
};
|
|
1674
|
+
signature: string;
|
|
1078
1675
|
})[];
|
|
1676
|
+
signature: string;
|
|
1677
|
+
triggerType: 0 | 1;
|
|
1678
|
+
triggerData: string;
|
|
1679
|
+
hash: string;
|
|
1680
|
+
logs: string[];
|
|
1681
|
+
fuelUsed: number;
|
|
1079
1682
|
outputs: {
|
|
1080
|
-
|
|
1081
|
-
op: import("../shared").OpType;
|
|
1683
|
+
op: 0 | 1 | 2 | 3;
|
|
1082
1684
|
user: string;
|
|
1083
1685
|
settler: string;
|
|
1084
1686
|
nonce: string;
|
|
1085
1687
|
deadline: string;
|
|
1688
|
+
data: string;
|
|
1086
1689
|
maxFees: {
|
|
1087
1690
|
token: string;
|
|
1088
1691
|
amount: string;
|
|
1089
1692
|
}[];
|
|
1693
|
+
events: {
|
|
1694
|
+
data: string;
|
|
1695
|
+
topic: string;
|
|
1696
|
+
}[];
|
|
1697
|
+
configSig: string;
|
|
1698
|
+
minValidations: number;
|
|
1090
1699
|
hash: string;
|
|
1091
1700
|
}[];
|
|
1092
1701
|
}>;
|
|
1093
1702
|
export declare const ExecutionFeeValidator: z.ZodObject<{
|
|
1703
|
+
trigger: z.ZodNumber;
|
|
1094
1704
|
relayer: z.ZodNumber;
|
|
1095
1705
|
oracles: z.ZodNumber;
|
|
1096
1706
|
validator: z.ZodNumber;
|
|
@@ -1098,6 +1708,7 @@ export declare const ExecutionFeeValidator: z.ZodObject<{
|
|
|
1098
1708
|
protocol: z.ZodNumber;
|
|
1099
1709
|
total: z.ZodNumber;
|
|
1100
1710
|
}, "strip", z.ZodTypeAny, {
|
|
1711
|
+
trigger: number;
|
|
1101
1712
|
relayer: number;
|
|
1102
1713
|
oracles: number;
|
|
1103
1714
|
validator: number;
|
|
@@ -1105,6 +1716,7 @@ export declare const ExecutionFeeValidator: z.ZodObject<{
|
|
|
1105
1716
|
protocol: number;
|
|
1106
1717
|
total: number;
|
|
1107
1718
|
}, {
|
|
1719
|
+
trigger: number;
|
|
1108
1720
|
relayer: number;
|
|
1109
1721
|
oracles: number;
|
|
1110
1722
|
validator: number;
|
|
@@ -1112,24 +1724,31 @@ export declare const ExecutionFeeValidator: z.ZodObject<{
|
|
|
1112
1724
|
protocol: number;
|
|
1113
1725
|
total: number;
|
|
1114
1726
|
}>;
|
|
1727
|
+
export declare const ExecutionValidationValidator: z.ZodObject<{
|
|
1728
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1729
|
+
succeeded: z.ZodBoolean;
|
|
1730
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1731
|
+
}, "strip", z.ZodTypeAny, {
|
|
1732
|
+
succeeded: boolean;
|
|
1733
|
+
signature: string;
|
|
1734
|
+
description?: string | undefined;
|
|
1735
|
+
}, {
|
|
1736
|
+
succeeded: boolean;
|
|
1737
|
+
signature: string;
|
|
1738
|
+
description?: string | undefined;
|
|
1739
|
+
}>;
|
|
1115
1740
|
export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1116
1741
|
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1117
|
-
triggerType: z.ZodNativeEnum<
|
|
1742
|
+
triggerType: z.ZodNativeEnum<{
|
|
1743
|
+
readonly Cron: 0;
|
|
1744
|
+
readonly Event: 1;
|
|
1745
|
+
}>;
|
|
1118
1746
|
triggerData: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1119
1747
|
}, {
|
|
1120
1748
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1121
1749
|
timestamp: z.ZodNumber;
|
|
1122
1750
|
fuelUsed: z.ZodNumber;
|
|
1123
|
-
logs: z.ZodArray<z.
|
|
1124
|
-
level: z.ZodNativeEnum<typeof import("../shared").LogLevel>;
|
|
1125
|
-
log: z.ZodString;
|
|
1126
|
-
}, "strip", z.ZodTypeAny, {
|
|
1127
|
-
level: import("../shared").LogLevel;
|
|
1128
|
-
log: string;
|
|
1129
|
-
}, {
|
|
1130
|
-
level: import("../shared").LogLevel;
|
|
1131
|
-
log: string;
|
|
1132
|
-
}>, "many">;
|
|
1751
|
+
logs: z.ZodArray<z.ZodString, "many">;
|
|
1133
1752
|
inputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1134
1753
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1135
1754
|
query: z.ZodObject<{
|
|
@@ -1138,33 +1757,33 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1138
1757
|
params: z.ZodObject<{
|
|
1139
1758
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1140
1759
|
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1141
|
-
to: z.ZodEffects<z.
|
|
1760
|
+
to: z.ZodEffects<z.ZodString, string, string>;
|
|
1142
1761
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1143
1762
|
}, "strip", z.ZodTypeAny, {
|
|
1763
|
+
data: string;
|
|
1144
1764
|
chainId: number;
|
|
1145
1765
|
to: string;
|
|
1146
|
-
data: string;
|
|
1147
1766
|
timestamp: number;
|
|
1148
1767
|
}, {
|
|
1768
|
+
data: string;
|
|
1149
1769
|
chainId: number;
|
|
1150
1770
|
to: string;
|
|
1151
|
-
data: string;
|
|
1152
1771
|
timestamp: number;
|
|
1153
1772
|
}>;
|
|
1154
1773
|
}, "strip", z.ZodTypeAny, {
|
|
1155
1774
|
params: {
|
|
1775
|
+
data: string;
|
|
1156
1776
|
chainId: number;
|
|
1157
1777
|
to: string;
|
|
1158
|
-
data: string;
|
|
1159
1778
|
timestamp: number;
|
|
1160
1779
|
};
|
|
1161
1780
|
name: "EvmCallQuery";
|
|
1162
1781
|
hash: string;
|
|
1163
1782
|
}, {
|
|
1164
1783
|
params: {
|
|
1784
|
+
data: string;
|
|
1165
1785
|
chainId: number;
|
|
1166
1786
|
to: string;
|
|
1167
|
-
data: string;
|
|
1168
1787
|
timestamp: number;
|
|
1169
1788
|
};
|
|
1170
1789
|
name: "EvmCallQuery";
|
|
@@ -1181,32 +1800,32 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1181
1800
|
result: {
|
|
1182
1801
|
value: string;
|
|
1183
1802
|
};
|
|
1184
|
-
signature: string;
|
|
1185
1803
|
query: {
|
|
1186
1804
|
params: {
|
|
1805
|
+
data: string;
|
|
1187
1806
|
chainId: number;
|
|
1188
1807
|
to: string;
|
|
1189
|
-
data: string;
|
|
1190
1808
|
timestamp: number;
|
|
1191
1809
|
};
|
|
1192
1810
|
name: "EvmCallQuery";
|
|
1193
1811
|
hash: string;
|
|
1194
1812
|
};
|
|
1813
|
+
signature: string;
|
|
1195
1814
|
}, {
|
|
1196
1815
|
result: {
|
|
1197
1816
|
value: string;
|
|
1198
1817
|
};
|
|
1199
|
-
signature: string;
|
|
1200
1818
|
query: {
|
|
1201
1819
|
params: {
|
|
1820
|
+
data: string;
|
|
1202
1821
|
chainId: number;
|
|
1203
1822
|
to: string;
|
|
1204
|
-
data: string;
|
|
1205
1823
|
timestamp: number;
|
|
1206
1824
|
};
|
|
1207
1825
|
name: "EvmCallQuery";
|
|
1208
1826
|
hash: string;
|
|
1209
1827
|
};
|
|
1828
|
+
signature: string;
|
|
1210
1829
|
}>, z.ZodObject<{
|
|
1211
1830
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1212
1831
|
query: z.ZodObject<{
|
|
@@ -1218,42 +1837,42 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1218
1837
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1219
1838
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1220
1839
|
}, "strip", z.ZodTypeAny, {
|
|
1221
|
-
chainId: number;
|
|
1222
1840
|
address: string;
|
|
1223
|
-
}, {
|
|
1224
1841
|
chainId: number;
|
|
1842
|
+
}, {
|
|
1225
1843
|
address: string;
|
|
1844
|
+
chainId: number;
|
|
1226
1845
|
}>;
|
|
1227
1846
|
}, "strip", z.ZodTypeAny, {
|
|
1228
|
-
timestamp: number;
|
|
1229
1847
|
token: {
|
|
1230
|
-
chainId: number;
|
|
1231
1848
|
address: string;
|
|
1849
|
+
chainId: number;
|
|
1232
1850
|
};
|
|
1233
|
-
}, {
|
|
1234
1851
|
timestamp: number;
|
|
1852
|
+
}, {
|
|
1235
1853
|
token: {
|
|
1236
|
-
chainId: number;
|
|
1237
1854
|
address: string;
|
|
1855
|
+
chainId: number;
|
|
1238
1856
|
};
|
|
1857
|
+
timestamp: number;
|
|
1239
1858
|
}>;
|
|
1240
1859
|
}, "strip", z.ZodTypeAny, {
|
|
1241
1860
|
params: {
|
|
1242
|
-
timestamp: number;
|
|
1243
1861
|
token: {
|
|
1244
|
-
chainId: number;
|
|
1245
1862
|
address: string;
|
|
1863
|
+
chainId: number;
|
|
1246
1864
|
};
|
|
1865
|
+
timestamp: number;
|
|
1247
1866
|
};
|
|
1248
1867
|
name: "TokenPriceQuery";
|
|
1249
1868
|
hash: string;
|
|
1250
1869
|
}, {
|
|
1251
1870
|
params: {
|
|
1252
|
-
timestamp: number;
|
|
1253
1871
|
token: {
|
|
1254
|
-
chainId: number;
|
|
1255
1872
|
address: string;
|
|
1873
|
+
chainId: number;
|
|
1256
1874
|
};
|
|
1875
|
+
timestamp: number;
|
|
1257
1876
|
};
|
|
1258
1877
|
name: "TokenPriceQuery";
|
|
1259
1878
|
hash: string;
|
|
@@ -1269,203 +1888,470 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1269
1888
|
result: {
|
|
1270
1889
|
value: string;
|
|
1271
1890
|
};
|
|
1272
|
-
signature: string;
|
|
1273
1891
|
query: {
|
|
1274
1892
|
params: {
|
|
1275
|
-
timestamp: number;
|
|
1276
1893
|
token: {
|
|
1277
|
-
chainId: number;
|
|
1278
1894
|
address: string;
|
|
1895
|
+
chainId: number;
|
|
1279
1896
|
};
|
|
1897
|
+
timestamp: number;
|
|
1280
1898
|
};
|
|
1281
1899
|
name: "TokenPriceQuery";
|
|
1282
1900
|
hash: string;
|
|
1283
1901
|
};
|
|
1902
|
+
signature: string;
|
|
1284
1903
|
}, {
|
|
1285
1904
|
result: {
|
|
1286
1905
|
value: string;
|
|
1287
1906
|
};
|
|
1288
|
-
signature: string;
|
|
1289
1907
|
query: {
|
|
1290
1908
|
params: {
|
|
1291
|
-
timestamp: number;
|
|
1292
1909
|
token: {
|
|
1293
|
-
chainId: number;
|
|
1294
1910
|
address: string;
|
|
1911
|
+
chainId: number;
|
|
1295
1912
|
};
|
|
1913
|
+
timestamp: number;
|
|
1296
1914
|
};
|
|
1297
1915
|
name: "TokenPriceQuery";
|
|
1298
1916
|
hash: string;
|
|
1299
1917
|
};
|
|
1918
|
+
signature: string;
|
|
1300
1919
|
}>, z.ZodObject<{
|
|
1301
1920
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1302
1921
|
query: z.ZodObject<{
|
|
1303
1922
|
name: z.ZodLiteral<"RelevantTokensQuery">;
|
|
1304
1923
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1305
1924
|
params: z.ZodObject<{
|
|
1306
|
-
chainIds: z.ZodArray<z.ZodEffects<z.ZodNumber, number, number>, "many">;
|
|
1307
|
-
owner: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1308
|
-
usdMinAmount: z.ZodEffects<z.ZodString, string, string>;
|
|
1925
|
+
chainIds: z.ZodArray<z.ZodEffects<z.ZodNumber, number, number>, "many">;
|
|
1926
|
+
owner: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1927
|
+
usdMinAmount: z.ZodEffects<z.ZodString, string, string>;
|
|
1928
|
+
tokens: z.ZodArray<z.ZodObject<{
|
|
1929
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1930
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1931
|
+
}, "strip", z.ZodTypeAny, {
|
|
1932
|
+
address: string;
|
|
1933
|
+
chainId: number;
|
|
1934
|
+
}, {
|
|
1935
|
+
address: string;
|
|
1936
|
+
chainId: number;
|
|
1937
|
+
}>, "many">;
|
|
1938
|
+
tokenFilter: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
1939
|
+
}, "strip", z.ZodTypeAny, {
|
|
1940
|
+
owner: string;
|
|
1941
|
+
tokens: {
|
|
1942
|
+
address: string;
|
|
1943
|
+
chainId: number;
|
|
1944
|
+
}[];
|
|
1945
|
+
usdMinAmount: string;
|
|
1946
|
+
chainIds: number[];
|
|
1947
|
+
tokenFilter: 0 | 1;
|
|
1948
|
+
}, {
|
|
1949
|
+
owner: string;
|
|
1950
|
+
tokens: {
|
|
1951
|
+
address: string;
|
|
1952
|
+
chainId: number;
|
|
1953
|
+
}[];
|
|
1954
|
+
usdMinAmount: string;
|
|
1955
|
+
chainIds: number[];
|
|
1956
|
+
tokenFilter: 0 | 1;
|
|
1957
|
+
}>;
|
|
1958
|
+
}, "strip", z.ZodTypeAny, {
|
|
1959
|
+
params: {
|
|
1960
|
+
owner: string;
|
|
1961
|
+
tokens: {
|
|
1962
|
+
address: string;
|
|
1963
|
+
chainId: number;
|
|
1964
|
+
}[];
|
|
1965
|
+
usdMinAmount: string;
|
|
1966
|
+
chainIds: number[];
|
|
1967
|
+
tokenFilter: 0 | 1;
|
|
1968
|
+
};
|
|
1969
|
+
name: "RelevantTokensQuery";
|
|
1970
|
+
hash: string;
|
|
1971
|
+
}, {
|
|
1972
|
+
params: {
|
|
1973
|
+
owner: string;
|
|
1974
|
+
tokens: {
|
|
1975
|
+
address: string;
|
|
1976
|
+
chainId: number;
|
|
1977
|
+
}[];
|
|
1978
|
+
usdMinAmount: string;
|
|
1979
|
+
chainIds: number[];
|
|
1980
|
+
tokenFilter: 0 | 1;
|
|
1981
|
+
};
|
|
1982
|
+
name: "RelevantTokensQuery";
|
|
1983
|
+
hash: string;
|
|
1984
|
+
}>;
|
|
1985
|
+
result: z.ZodObject<{
|
|
1986
|
+
value: z.ZodObject<{
|
|
1987
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1988
|
+
balances: z.ZodArray<z.ZodObject<{
|
|
1989
|
+
token: z.ZodObject<{
|
|
1990
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1991
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1992
|
+
}, "strip", z.ZodTypeAny, {
|
|
1993
|
+
address: string;
|
|
1994
|
+
chainId: number;
|
|
1995
|
+
}, {
|
|
1996
|
+
address: string;
|
|
1997
|
+
chainId: number;
|
|
1998
|
+
}>;
|
|
1999
|
+
balance: z.ZodEffects<z.ZodString, string, string>;
|
|
2000
|
+
}, "strip", z.ZodTypeAny, {
|
|
2001
|
+
token: {
|
|
2002
|
+
address: string;
|
|
2003
|
+
chainId: number;
|
|
2004
|
+
};
|
|
2005
|
+
balance: string;
|
|
2006
|
+
}, {
|
|
2007
|
+
token: {
|
|
2008
|
+
address: string;
|
|
2009
|
+
chainId: number;
|
|
2010
|
+
};
|
|
2011
|
+
balance: string;
|
|
2012
|
+
}>, "many">;
|
|
2013
|
+
}, "strip", z.ZodTypeAny, {
|
|
2014
|
+
timestamp: number;
|
|
2015
|
+
balances: {
|
|
2016
|
+
token: {
|
|
2017
|
+
address: string;
|
|
2018
|
+
chainId: number;
|
|
2019
|
+
};
|
|
2020
|
+
balance: string;
|
|
2021
|
+
}[];
|
|
2022
|
+
}, {
|
|
2023
|
+
timestamp: number;
|
|
2024
|
+
balances: {
|
|
2025
|
+
token: {
|
|
2026
|
+
address: string;
|
|
2027
|
+
chainId: number;
|
|
2028
|
+
};
|
|
2029
|
+
balance: string;
|
|
2030
|
+
}[];
|
|
2031
|
+
}>;
|
|
2032
|
+
}, "strip", z.ZodTypeAny, {
|
|
2033
|
+
value: {
|
|
2034
|
+
timestamp: number;
|
|
2035
|
+
balances: {
|
|
2036
|
+
token: {
|
|
2037
|
+
address: string;
|
|
2038
|
+
chainId: number;
|
|
2039
|
+
};
|
|
2040
|
+
balance: string;
|
|
2041
|
+
}[];
|
|
2042
|
+
};
|
|
2043
|
+
}, {
|
|
2044
|
+
value: {
|
|
2045
|
+
timestamp: number;
|
|
2046
|
+
balances: {
|
|
2047
|
+
token: {
|
|
2048
|
+
address: string;
|
|
2049
|
+
chainId: number;
|
|
2050
|
+
};
|
|
2051
|
+
balance: string;
|
|
2052
|
+
}[];
|
|
2053
|
+
};
|
|
2054
|
+
}>;
|
|
2055
|
+
}, "strip", z.ZodTypeAny, {
|
|
2056
|
+
result: {
|
|
2057
|
+
value: {
|
|
2058
|
+
timestamp: number;
|
|
2059
|
+
balances: {
|
|
2060
|
+
token: {
|
|
2061
|
+
address: string;
|
|
2062
|
+
chainId: number;
|
|
2063
|
+
};
|
|
2064
|
+
balance: string;
|
|
2065
|
+
}[];
|
|
2066
|
+
};
|
|
2067
|
+
};
|
|
2068
|
+
query: {
|
|
2069
|
+
params: {
|
|
2070
|
+
owner: string;
|
|
2071
|
+
tokens: {
|
|
2072
|
+
address: string;
|
|
2073
|
+
chainId: number;
|
|
2074
|
+
}[];
|
|
2075
|
+
usdMinAmount: string;
|
|
2076
|
+
chainIds: number[];
|
|
2077
|
+
tokenFilter: 0 | 1;
|
|
2078
|
+
};
|
|
2079
|
+
name: "RelevantTokensQuery";
|
|
2080
|
+
hash: string;
|
|
2081
|
+
};
|
|
2082
|
+
signature: string;
|
|
2083
|
+
}, {
|
|
2084
|
+
result: {
|
|
2085
|
+
value: {
|
|
2086
|
+
timestamp: number;
|
|
2087
|
+
balances: {
|
|
2088
|
+
token: {
|
|
2089
|
+
address: string;
|
|
2090
|
+
chainId: number;
|
|
2091
|
+
};
|
|
2092
|
+
balance: string;
|
|
2093
|
+
}[];
|
|
2094
|
+
};
|
|
2095
|
+
};
|
|
2096
|
+
query: {
|
|
2097
|
+
params: {
|
|
2098
|
+
owner: string;
|
|
2099
|
+
tokens: {
|
|
2100
|
+
address: string;
|
|
2101
|
+
chainId: number;
|
|
2102
|
+
}[];
|
|
2103
|
+
usdMinAmount: string;
|
|
2104
|
+
chainIds: number[];
|
|
2105
|
+
tokenFilter: 0 | 1;
|
|
2106
|
+
};
|
|
2107
|
+
name: "RelevantTokensQuery";
|
|
2108
|
+
hash: string;
|
|
2109
|
+
};
|
|
2110
|
+
signature: string;
|
|
2111
|
+
}>, z.ZodObject<{
|
|
2112
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2113
|
+
query: z.ZodObject<{
|
|
2114
|
+
name: z.ZodLiteral<"SubgraphQuery">;
|
|
2115
|
+
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2116
|
+
params: z.ZodObject<{
|
|
2117
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
2118
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
2119
|
+
subgraphId: z.ZodString;
|
|
2120
|
+
query: z.ZodString;
|
|
2121
|
+
}, "strip", z.ZodTypeAny, {
|
|
2122
|
+
chainId: number;
|
|
2123
|
+
timestamp: number;
|
|
2124
|
+
subgraphId: string;
|
|
2125
|
+
query: string;
|
|
2126
|
+
}, {
|
|
2127
|
+
chainId: number;
|
|
2128
|
+
timestamp: number;
|
|
2129
|
+
subgraphId: string;
|
|
2130
|
+
query: string;
|
|
2131
|
+
}>;
|
|
2132
|
+
}, "strip", z.ZodTypeAny, {
|
|
2133
|
+
params: {
|
|
2134
|
+
chainId: number;
|
|
2135
|
+
timestamp: number;
|
|
2136
|
+
subgraphId: string;
|
|
2137
|
+
query: string;
|
|
2138
|
+
};
|
|
2139
|
+
name: "SubgraphQuery";
|
|
2140
|
+
hash: string;
|
|
2141
|
+
}, {
|
|
2142
|
+
params: {
|
|
2143
|
+
chainId: number;
|
|
2144
|
+
timestamp: number;
|
|
2145
|
+
subgraphId: string;
|
|
2146
|
+
query: string;
|
|
2147
|
+
};
|
|
2148
|
+
name: "SubgraphQuery";
|
|
2149
|
+
hash: string;
|
|
2150
|
+
}>;
|
|
2151
|
+
result: z.ZodObject<{
|
|
2152
|
+
value: z.ZodObject<{
|
|
2153
|
+
blockNumber: z.ZodNumber;
|
|
2154
|
+
data: z.ZodString;
|
|
2155
|
+
}, "strip", z.ZodTypeAny, {
|
|
2156
|
+
data: string;
|
|
2157
|
+
blockNumber: number;
|
|
2158
|
+
}, {
|
|
2159
|
+
data: string;
|
|
2160
|
+
blockNumber: number;
|
|
2161
|
+
}>;
|
|
2162
|
+
}, "strip", z.ZodTypeAny, {
|
|
2163
|
+
value: {
|
|
2164
|
+
data: string;
|
|
2165
|
+
blockNumber: number;
|
|
2166
|
+
};
|
|
2167
|
+
}, {
|
|
2168
|
+
value: {
|
|
2169
|
+
data: string;
|
|
2170
|
+
blockNumber: number;
|
|
2171
|
+
};
|
|
2172
|
+
}>;
|
|
2173
|
+
}, "strip", z.ZodTypeAny, {
|
|
2174
|
+
result: {
|
|
2175
|
+
value: {
|
|
2176
|
+
data: string;
|
|
2177
|
+
blockNumber: number;
|
|
2178
|
+
};
|
|
2179
|
+
};
|
|
2180
|
+
query: {
|
|
2181
|
+
params: {
|
|
2182
|
+
chainId: number;
|
|
2183
|
+
timestamp: number;
|
|
2184
|
+
subgraphId: string;
|
|
2185
|
+
query: string;
|
|
2186
|
+
};
|
|
2187
|
+
name: "SubgraphQuery";
|
|
2188
|
+
hash: string;
|
|
2189
|
+
};
|
|
2190
|
+
signature: string;
|
|
2191
|
+
}, {
|
|
2192
|
+
result: {
|
|
2193
|
+
value: {
|
|
2194
|
+
data: string;
|
|
2195
|
+
blockNumber: number;
|
|
2196
|
+
};
|
|
2197
|
+
};
|
|
2198
|
+
query: {
|
|
2199
|
+
params: {
|
|
2200
|
+
chainId: number;
|
|
2201
|
+
timestamp: number;
|
|
2202
|
+
subgraphId: string;
|
|
2203
|
+
query: string;
|
|
2204
|
+
};
|
|
2205
|
+
name: "SubgraphQuery";
|
|
2206
|
+
hash: string;
|
|
2207
|
+
};
|
|
2208
|
+
signature: string;
|
|
2209
|
+
}>, z.ZodObject<{
|
|
2210
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2211
|
+
query: z.ZodObject<{
|
|
2212
|
+
name: z.ZodLiteral<"SvmAccountsInfoQuery">;
|
|
2213
|
+
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2214
|
+
params: z.ZodObject<{
|
|
2215
|
+
publicKeys: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
1309
2216
|
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1310
|
-
tokens: z.ZodArray<z.ZodObject<{
|
|
1311
|
-
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1312
|
-
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1313
|
-
}, "strip", z.ZodTypeAny, {
|
|
1314
|
-
chainId: number;
|
|
1315
|
-
address: string;
|
|
1316
|
-
}, {
|
|
1317
|
-
chainId: number;
|
|
1318
|
-
address: string;
|
|
1319
|
-
}>, "many">;
|
|
1320
|
-
tokenFilter: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
1321
2217
|
}, "strip", z.ZodTypeAny, {
|
|
1322
2218
|
timestamp: number;
|
|
1323
|
-
|
|
1324
|
-
chainId: number;
|
|
1325
|
-
address: string;
|
|
1326
|
-
}[];
|
|
1327
|
-
owner: string;
|
|
1328
|
-
usdMinAmount: string;
|
|
1329
|
-
chainIds: number[];
|
|
1330
|
-
tokenFilter: 0 | 1;
|
|
2219
|
+
publicKeys: string[];
|
|
1331
2220
|
}, {
|
|
1332
2221
|
timestamp: number;
|
|
1333
|
-
|
|
1334
|
-
chainId: number;
|
|
1335
|
-
address: string;
|
|
1336
|
-
}[];
|
|
1337
|
-
owner: string;
|
|
1338
|
-
usdMinAmount: string;
|
|
1339
|
-
chainIds: number[];
|
|
1340
|
-
tokenFilter: 0 | 1;
|
|
2222
|
+
publicKeys: string[];
|
|
1341
2223
|
}>;
|
|
1342
2224
|
}, "strip", z.ZodTypeAny, {
|
|
1343
2225
|
params: {
|
|
1344
2226
|
timestamp: number;
|
|
1345
|
-
|
|
1346
|
-
chainId: number;
|
|
1347
|
-
address: string;
|
|
1348
|
-
}[];
|
|
1349
|
-
owner: string;
|
|
1350
|
-
usdMinAmount: string;
|
|
1351
|
-
chainIds: number[];
|
|
1352
|
-
tokenFilter: 0 | 1;
|
|
2227
|
+
publicKeys: string[];
|
|
1353
2228
|
};
|
|
1354
|
-
name: "
|
|
2229
|
+
name: "SvmAccountsInfoQuery";
|
|
1355
2230
|
hash: string;
|
|
1356
2231
|
}, {
|
|
1357
2232
|
params: {
|
|
1358
2233
|
timestamp: number;
|
|
1359
|
-
|
|
1360
|
-
chainId: number;
|
|
1361
|
-
address: string;
|
|
1362
|
-
}[];
|
|
1363
|
-
owner: string;
|
|
1364
|
-
usdMinAmount: string;
|
|
1365
|
-
chainIds: number[];
|
|
1366
|
-
tokenFilter: 0 | 1;
|
|
2234
|
+
publicKeys: string[];
|
|
1367
2235
|
};
|
|
1368
|
-
name: "
|
|
2236
|
+
name: "SvmAccountsInfoQuery";
|
|
1369
2237
|
hash: string;
|
|
1370
2238
|
}>;
|
|
1371
2239
|
result: z.ZodObject<{
|
|
1372
|
-
value: z.
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
2240
|
+
value: z.ZodObject<{
|
|
2241
|
+
accountsInfo: z.ZodArray<z.ZodObject<{
|
|
2242
|
+
executable: z.ZodBoolean;
|
|
2243
|
+
owner: z.ZodEffects<z.ZodString, string, string>;
|
|
2244
|
+
lamports: z.ZodEffects<z.ZodString, string, string>;
|
|
2245
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2246
|
+
rentEpoch: z.ZodEffects<z.ZodString, string, string>;
|
|
1376
2247
|
}, "strip", z.ZodTypeAny, {
|
|
1377
|
-
|
|
1378
|
-
|
|
2248
|
+
data: string;
|
|
2249
|
+
executable: boolean;
|
|
2250
|
+
owner: string;
|
|
2251
|
+
lamports: string;
|
|
2252
|
+
rentEpoch: string;
|
|
1379
2253
|
}, {
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
2254
|
+
data: string;
|
|
2255
|
+
executable: boolean;
|
|
2256
|
+
owner: string;
|
|
2257
|
+
lamports: string;
|
|
2258
|
+
rentEpoch: string;
|
|
2259
|
+
}>, "many">;
|
|
2260
|
+
slot: z.ZodEffects<z.ZodString, string, string>;
|
|
1384
2261
|
}, "strip", z.ZodTypeAny, {
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
2262
|
+
accountsInfo: {
|
|
2263
|
+
data: string;
|
|
2264
|
+
executable: boolean;
|
|
2265
|
+
owner: string;
|
|
2266
|
+
lamports: string;
|
|
2267
|
+
rentEpoch: string;
|
|
2268
|
+
}[];
|
|
2269
|
+
slot: string;
|
|
1390
2270
|
}, {
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
2271
|
+
accountsInfo: {
|
|
2272
|
+
data: string;
|
|
2273
|
+
executable: boolean;
|
|
2274
|
+
owner: string;
|
|
2275
|
+
lamports: string;
|
|
2276
|
+
rentEpoch: string;
|
|
2277
|
+
}[];
|
|
2278
|
+
slot: string;
|
|
2279
|
+
}>;
|
|
1397
2280
|
}, "strip", z.ZodTypeAny, {
|
|
1398
2281
|
value: {
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
2282
|
+
accountsInfo: {
|
|
2283
|
+
data: string;
|
|
2284
|
+
executable: boolean;
|
|
2285
|
+
owner: string;
|
|
2286
|
+
lamports: string;
|
|
2287
|
+
rentEpoch: string;
|
|
2288
|
+
}[];
|
|
2289
|
+
slot: string;
|
|
2290
|
+
};
|
|
1405
2291
|
}, {
|
|
1406
2292
|
value: {
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
2293
|
+
accountsInfo: {
|
|
2294
|
+
data: string;
|
|
2295
|
+
executable: boolean;
|
|
2296
|
+
owner: string;
|
|
2297
|
+
lamports: string;
|
|
2298
|
+
rentEpoch: string;
|
|
2299
|
+
}[];
|
|
2300
|
+
slot: string;
|
|
2301
|
+
};
|
|
1413
2302
|
}>;
|
|
1414
2303
|
}, "strip", z.ZodTypeAny, {
|
|
1415
2304
|
result: {
|
|
1416
2305
|
value: {
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
2306
|
+
accountsInfo: {
|
|
2307
|
+
data: string;
|
|
2308
|
+
executable: boolean;
|
|
2309
|
+
owner: string;
|
|
2310
|
+
lamports: string;
|
|
2311
|
+
rentEpoch: string;
|
|
2312
|
+
}[];
|
|
2313
|
+
slot: string;
|
|
2314
|
+
};
|
|
1423
2315
|
};
|
|
1424
|
-
signature: string;
|
|
1425
2316
|
query: {
|
|
1426
2317
|
params: {
|
|
1427
2318
|
timestamp: number;
|
|
1428
|
-
|
|
1429
|
-
chainId: number;
|
|
1430
|
-
address: string;
|
|
1431
|
-
}[];
|
|
1432
|
-
owner: string;
|
|
1433
|
-
usdMinAmount: string;
|
|
1434
|
-
chainIds: number[];
|
|
1435
|
-
tokenFilter: 0 | 1;
|
|
2319
|
+
publicKeys: string[];
|
|
1436
2320
|
};
|
|
1437
|
-
name: "
|
|
2321
|
+
name: "SvmAccountsInfoQuery";
|
|
1438
2322
|
hash: string;
|
|
1439
2323
|
};
|
|
2324
|
+
signature: string;
|
|
1440
2325
|
}, {
|
|
1441
2326
|
result: {
|
|
1442
2327
|
value: {
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
2328
|
+
accountsInfo: {
|
|
2329
|
+
data: string;
|
|
2330
|
+
executable: boolean;
|
|
2331
|
+
owner: string;
|
|
2332
|
+
lamports: string;
|
|
2333
|
+
rentEpoch: string;
|
|
2334
|
+
}[];
|
|
2335
|
+
slot: string;
|
|
2336
|
+
};
|
|
1449
2337
|
};
|
|
1450
|
-
signature: string;
|
|
1451
2338
|
query: {
|
|
1452
2339
|
params: {
|
|
1453
2340
|
timestamp: number;
|
|
1454
|
-
|
|
1455
|
-
chainId: number;
|
|
1456
|
-
address: string;
|
|
1457
|
-
}[];
|
|
1458
|
-
owner: string;
|
|
1459
|
-
usdMinAmount: string;
|
|
1460
|
-
chainIds: number[];
|
|
1461
|
-
tokenFilter: 0 | 1;
|
|
2341
|
+
publicKeys: string[];
|
|
1462
2342
|
};
|
|
1463
|
-
name: "
|
|
2343
|
+
name: "SvmAccountsInfoQuery";
|
|
1464
2344
|
hash: string;
|
|
1465
2345
|
};
|
|
2346
|
+
signature: string;
|
|
1466
2347
|
}>]>, "many">;
|
|
1467
2348
|
outputs: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
1468
|
-
op: z.ZodNativeEnum<
|
|
2349
|
+
op: z.ZodNativeEnum<{
|
|
2350
|
+
readonly Swap: 0;
|
|
2351
|
+
readonly Transfer: 1;
|
|
2352
|
+
readonly EvmCall: 2;
|
|
2353
|
+
readonly SvmCall: 3;
|
|
2354
|
+
}>;
|
|
1469
2355
|
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1470
2356
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1471
2357
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -1481,40 +2367,73 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1481
2367
|
token: string;
|
|
1482
2368
|
amount: string;
|
|
1483
2369
|
}>, "many">;
|
|
2370
|
+
events: z.ZodArray<z.ZodObject<{
|
|
2371
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2372
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2373
|
+
}, "strip", z.ZodTypeAny, {
|
|
2374
|
+
data: string;
|
|
2375
|
+
topic: string;
|
|
2376
|
+
}, {
|
|
2377
|
+
data: string;
|
|
2378
|
+
topic: string;
|
|
2379
|
+
}>, "many">;
|
|
2380
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2381
|
+
minValidations: z.ZodNumber;
|
|
1484
2382
|
}, {
|
|
1485
2383
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1486
2384
|
}>, "strip", z.ZodTypeAny, {
|
|
1487
|
-
|
|
1488
|
-
op: import("../shared").OpType;
|
|
2385
|
+
op: 0 | 1 | 2 | 3;
|
|
1489
2386
|
user: string;
|
|
1490
2387
|
settler: string;
|
|
1491
2388
|
nonce: string;
|
|
1492
2389
|
deadline: string;
|
|
2390
|
+
data: string;
|
|
1493
2391
|
maxFees: {
|
|
1494
2392
|
token: string;
|
|
1495
2393
|
amount: string;
|
|
1496
2394
|
}[];
|
|
2395
|
+
events: {
|
|
2396
|
+
data: string;
|
|
2397
|
+
topic: string;
|
|
2398
|
+
}[];
|
|
2399
|
+
configSig: string;
|
|
2400
|
+
minValidations: number;
|
|
1497
2401
|
hash: string;
|
|
1498
2402
|
}, {
|
|
1499
|
-
|
|
1500
|
-
op: import("../shared").OpType;
|
|
2403
|
+
op: 0 | 1 | 2 | 3;
|
|
1501
2404
|
user: string;
|
|
1502
2405
|
settler: string;
|
|
1503
2406
|
nonce: string;
|
|
1504
2407
|
deadline: string;
|
|
2408
|
+
data: string;
|
|
1505
2409
|
maxFees: {
|
|
1506
2410
|
token: string;
|
|
1507
2411
|
amount: string;
|
|
1508
2412
|
}[];
|
|
2413
|
+
events: {
|
|
2414
|
+
data: string;
|
|
2415
|
+
topic: string;
|
|
2416
|
+
}[];
|
|
2417
|
+
configSig: string;
|
|
2418
|
+
minValidations: number;
|
|
1509
2419
|
hash: string;
|
|
1510
2420
|
}>, "many">;
|
|
1511
2421
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2422
|
+
result: z.ZodNativeEnum<{
|
|
2423
|
+
readonly succeeded: "succeeded";
|
|
2424
|
+
readonly failed: "failed";
|
|
2425
|
+
}>;
|
|
1512
2426
|
}>, {
|
|
1513
2427
|
relayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2428
|
+
status: z.ZodNativeEnum<{
|
|
2429
|
+
readonly pending: "pending";
|
|
2430
|
+
readonly valid: "valid";
|
|
2431
|
+
readonly invalid: "invalid";
|
|
2432
|
+
}>;
|
|
1514
2433
|
createdAt: z.ZodDate;
|
|
1515
2434
|
logs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1516
|
-
errorLogs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1517
2435
|
fee: z.ZodOptional<z.ZodObject<{
|
|
2436
|
+
trigger: z.ZodNumber;
|
|
1518
2437
|
relayer: z.ZodNumber;
|
|
1519
2438
|
oracles: z.ZodNumber;
|
|
1520
2439
|
validator: z.ZodNumber;
|
|
@@ -1522,6 +2441,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1522
2441
|
protocol: z.ZodNumber;
|
|
1523
2442
|
total: z.ZodNumber;
|
|
1524
2443
|
}, "strip", z.ZodTypeAny, {
|
|
2444
|
+
trigger: number;
|
|
1525
2445
|
relayer: number;
|
|
1526
2446
|
oracles: number;
|
|
1527
2447
|
validator: number;
|
|
@@ -1529,6 +2449,7 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1529
2449
|
protocol: number;
|
|
1530
2450
|
total: number;
|
|
1531
2451
|
}, {
|
|
2452
|
+
trigger: number;
|
|
1532
2453
|
relayer: number;
|
|
1533
2454
|
oracles: number;
|
|
1534
2455
|
validator: number;
|
|
@@ -1536,66 +2457,107 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1536
2457
|
protocol: number;
|
|
1537
2458
|
total: number;
|
|
1538
2459
|
}>>;
|
|
1539
|
-
|
|
2460
|
+
solverFees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2461
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2462
|
+
amount: z.ZodNumber;
|
|
2463
|
+
}, "strip", z.ZodTypeAny, {
|
|
2464
|
+
amount: number;
|
|
2465
|
+
address: string;
|
|
2466
|
+
}, {
|
|
2467
|
+
amount: number;
|
|
2468
|
+
address: string;
|
|
2469
|
+
}>, "many">>;
|
|
2470
|
+
validations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2471
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2472
|
+
succeeded: z.ZodBoolean;
|
|
2473
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2474
|
+
}, "strip", z.ZodTypeAny, {
|
|
2475
|
+
succeeded: boolean;
|
|
2476
|
+
signature: string;
|
|
2477
|
+
description?: string | undefined;
|
|
2478
|
+
}, {
|
|
2479
|
+
succeeded: boolean;
|
|
2480
|
+
signature: string;
|
|
2481
|
+
description?: string | undefined;
|
|
2482
|
+
}>, "many">>;
|
|
1540
2483
|
}>, "strip", z.ZodTypeAny, {
|
|
1541
|
-
timestamp: number;
|
|
1542
|
-
createdAt: Date;
|
|
1543
2484
|
configSig: string;
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
hash: string;
|
|
1548
|
-
fuelUsed: number;
|
|
2485
|
+
result: "succeeded" | "failed";
|
|
2486
|
+
timestamp: number;
|
|
2487
|
+
status: "pending" | "valid" | "invalid";
|
|
1549
2488
|
inputs: ({
|
|
1550
2489
|
result: {
|
|
1551
2490
|
value: string;
|
|
1552
2491
|
};
|
|
1553
|
-
signature: string;
|
|
1554
2492
|
query: {
|
|
1555
2493
|
params: {
|
|
2494
|
+
data: string;
|
|
1556
2495
|
chainId: number;
|
|
1557
2496
|
to: string;
|
|
1558
|
-
data: string;
|
|
1559
2497
|
timestamp: number;
|
|
1560
2498
|
};
|
|
1561
2499
|
name: "EvmCallQuery";
|
|
1562
2500
|
hash: string;
|
|
1563
2501
|
};
|
|
2502
|
+
signature: string;
|
|
1564
2503
|
} | {
|
|
1565
2504
|
result: {
|
|
1566
|
-
value:
|
|
2505
|
+
value: {
|
|
2506
|
+
accountsInfo: {
|
|
2507
|
+
data: string;
|
|
2508
|
+
executable: boolean;
|
|
2509
|
+
owner: string;
|
|
2510
|
+
lamports: string;
|
|
2511
|
+
rentEpoch: string;
|
|
2512
|
+
}[];
|
|
2513
|
+
slot: string;
|
|
2514
|
+
};
|
|
1567
2515
|
};
|
|
1568
|
-
signature: string;
|
|
1569
2516
|
query: {
|
|
1570
2517
|
params: {
|
|
1571
2518
|
timestamp: number;
|
|
2519
|
+
publicKeys: string[];
|
|
2520
|
+
};
|
|
2521
|
+
name: "SvmAccountsInfoQuery";
|
|
2522
|
+
hash: string;
|
|
2523
|
+
};
|
|
2524
|
+
signature: string;
|
|
2525
|
+
} | {
|
|
2526
|
+
result: {
|
|
2527
|
+
value: string;
|
|
2528
|
+
};
|
|
2529
|
+
query: {
|
|
2530
|
+
params: {
|
|
1572
2531
|
token: {
|
|
1573
|
-
chainId: number;
|
|
1574
2532
|
address: string;
|
|
2533
|
+
chainId: number;
|
|
1575
2534
|
};
|
|
2535
|
+
timestamp: number;
|
|
1576
2536
|
};
|
|
1577
2537
|
name: "TokenPriceQuery";
|
|
1578
2538
|
hash: string;
|
|
1579
2539
|
};
|
|
2540
|
+
signature: string;
|
|
1580
2541
|
} | {
|
|
1581
2542
|
result: {
|
|
1582
2543
|
value: {
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
2544
|
+
timestamp: number;
|
|
2545
|
+
balances: {
|
|
2546
|
+
token: {
|
|
2547
|
+
address: string;
|
|
2548
|
+
chainId: number;
|
|
2549
|
+
};
|
|
2550
|
+
balance: string;
|
|
2551
|
+
}[];
|
|
2552
|
+
};
|
|
1589
2553
|
};
|
|
1590
|
-
signature: string;
|
|
1591
2554
|
query: {
|
|
1592
2555
|
params: {
|
|
1593
|
-
|
|
2556
|
+
owner: string;
|
|
1594
2557
|
tokens: {
|
|
1595
|
-
chainId: number;
|
|
1596
2558
|
address: string;
|
|
2559
|
+
chainId: number;
|
|
1597
2560
|
}[];
|
|
1598
|
-
owner: string;
|
|
1599
2561
|
usdMinAmount: string;
|
|
1600
2562
|
chainIds: number[];
|
|
1601
2563
|
tokenFilter: 0 | 1;
|
|
@@ -1603,24 +2565,60 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1603
2565
|
name: "RelevantTokensQuery";
|
|
1604
2566
|
hash: string;
|
|
1605
2567
|
};
|
|
2568
|
+
signature: string;
|
|
2569
|
+
} | {
|
|
2570
|
+
result: {
|
|
2571
|
+
value: {
|
|
2572
|
+
data: string;
|
|
2573
|
+
blockNumber: number;
|
|
2574
|
+
};
|
|
2575
|
+
};
|
|
2576
|
+
query: {
|
|
2577
|
+
params: {
|
|
2578
|
+
chainId: number;
|
|
2579
|
+
timestamp: number;
|
|
2580
|
+
subgraphId: string;
|
|
2581
|
+
query: string;
|
|
2582
|
+
};
|
|
2583
|
+
name: "SubgraphQuery";
|
|
2584
|
+
hash: string;
|
|
2585
|
+
};
|
|
2586
|
+
signature: string;
|
|
1606
2587
|
})[];
|
|
2588
|
+
signature: string;
|
|
2589
|
+
createdAt: Date;
|
|
2590
|
+
triggerType: 0 | 1;
|
|
2591
|
+
triggerData: string;
|
|
2592
|
+
hash: string;
|
|
2593
|
+
fuelUsed: number;
|
|
1607
2594
|
outputs: {
|
|
1608
|
-
|
|
1609
|
-
op: import("../shared").OpType;
|
|
2595
|
+
op: 0 | 1 | 2 | 3;
|
|
1610
2596
|
user: string;
|
|
1611
2597
|
settler: string;
|
|
1612
2598
|
nonce: string;
|
|
1613
2599
|
deadline: string;
|
|
2600
|
+
data: string;
|
|
1614
2601
|
maxFees: {
|
|
1615
2602
|
token: string;
|
|
1616
2603
|
amount: string;
|
|
1617
2604
|
}[];
|
|
2605
|
+
events: {
|
|
2606
|
+
data: string;
|
|
2607
|
+
topic: string;
|
|
2608
|
+
}[];
|
|
2609
|
+
configSig: string;
|
|
2610
|
+
minValidations: number;
|
|
1618
2611
|
hash: string;
|
|
1619
2612
|
}[];
|
|
1620
2613
|
relayer: string;
|
|
2614
|
+
validations?: {
|
|
2615
|
+
succeeded: boolean;
|
|
2616
|
+
signature: string;
|
|
2617
|
+
description?: string | undefined;
|
|
2618
|
+
}[] | undefined;
|
|
1621
2619
|
logs?: string[] | undefined;
|
|
1622
|
-
errorLogs?: string[] | undefined;
|
|
1623
2620
|
fee?: {
|
|
2621
|
+
trigger: number;
|
|
1624
2622
|
relayer: number;
|
|
1625
2623
|
oracles: number;
|
|
1626
2624
|
validator: number;
|
|
@@ -1628,91 +2626,149 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1628
2626
|
protocol: number;
|
|
1629
2627
|
total: number;
|
|
1630
2628
|
} | undefined;
|
|
1631
|
-
|
|
2629
|
+
solverFees?: {
|
|
2630
|
+
amount: number;
|
|
2631
|
+
address: string;
|
|
2632
|
+
}[] | undefined;
|
|
1632
2633
|
}, {
|
|
1633
|
-
timestamp: number;
|
|
1634
|
-
createdAt: Date;
|
|
1635
2634
|
configSig: string;
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
hash: string;
|
|
1640
|
-
fuelUsed: number;
|
|
2635
|
+
result: "succeeded" | "failed";
|
|
2636
|
+
timestamp: number;
|
|
2637
|
+
status: "pending" | "valid" | "invalid";
|
|
1641
2638
|
inputs: ({
|
|
1642
2639
|
result: {
|
|
1643
2640
|
value: string;
|
|
1644
2641
|
};
|
|
1645
|
-
signature: string;
|
|
1646
2642
|
query: {
|
|
1647
2643
|
params: {
|
|
2644
|
+
data: string;
|
|
1648
2645
|
chainId: number;
|
|
1649
2646
|
to: string;
|
|
1650
|
-
data: string;
|
|
1651
2647
|
timestamp: number;
|
|
1652
2648
|
};
|
|
1653
2649
|
name: "EvmCallQuery";
|
|
1654
2650
|
hash: string;
|
|
1655
2651
|
};
|
|
2652
|
+
signature: string;
|
|
1656
2653
|
} | {
|
|
1657
2654
|
result: {
|
|
1658
|
-
value:
|
|
2655
|
+
value: {
|
|
2656
|
+
accountsInfo: {
|
|
2657
|
+
data: string;
|
|
2658
|
+
executable: boolean;
|
|
2659
|
+
owner: string;
|
|
2660
|
+
lamports: string;
|
|
2661
|
+
rentEpoch: string;
|
|
2662
|
+
}[];
|
|
2663
|
+
slot: string;
|
|
2664
|
+
};
|
|
1659
2665
|
};
|
|
1660
|
-
signature: string;
|
|
1661
2666
|
query: {
|
|
1662
2667
|
params: {
|
|
1663
2668
|
timestamp: number;
|
|
2669
|
+
publicKeys: string[];
|
|
2670
|
+
};
|
|
2671
|
+
name: "SvmAccountsInfoQuery";
|
|
2672
|
+
hash: string;
|
|
2673
|
+
};
|
|
2674
|
+
signature: string;
|
|
2675
|
+
} | {
|
|
2676
|
+
result: {
|
|
2677
|
+
value: string;
|
|
2678
|
+
};
|
|
2679
|
+
query: {
|
|
2680
|
+
params: {
|
|
1664
2681
|
token: {
|
|
1665
|
-
chainId: number;
|
|
1666
2682
|
address: string;
|
|
2683
|
+
chainId: number;
|
|
1667
2684
|
};
|
|
2685
|
+
timestamp: number;
|
|
1668
2686
|
};
|
|
1669
2687
|
name: "TokenPriceQuery";
|
|
1670
2688
|
hash: string;
|
|
1671
2689
|
};
|
|
2690
|
+
signature: string;
|
|
1672
2691
|
} | {
|
|
1673
2692
|
result: {
|
|
1674
2693
|
value: {
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
2694
|
+
timestamp: number;
|
|
2695
|
+
balances: {
|
|
2696
|
+
token: {
|
|
2697
|
+
address: string;
|
|
2698
|
+
chainId: number;
|
|
2699
|
+
};
|
|
2700
|
+
balance: string;
|
|
2701
|
+
}[];
|
|
2702
|
+
};
|
|
1681
2703
|
};
|
|
1682
|
-
signature: string;
|
|
1683
2704
|
query: {
|
|
1684
2705
|
params: {
|
|
1685
|
-
|
|
2706
|
+
owner: string;
|
|
1686
2707
|
tokens: {
|
|
1687
|
-
chainId: number;
|
|
1688
2708
|
address: string;
|
|
2709
|
+
chainId: number;
|
|
1689
2710
|
}[];
|
|
1690
|
-
owner: string;
|
|
1691
2711
|
usdMinAmount: string;
|
|
1692
2712
|
chainIds: number[];
|
|
1693
2713
|
tokenFilter: 0 | 1;
|
|
1694
2714
|
};
|
|
1695
|
-
name: "RelevantTokensQuery";
|
|
2715
|
+
name: "RelevantTokensQuery";
|
|
2716
|
+
hash: string;
|
|
2717
|
+
};
|
|
2718
|
+
signature: string;
|
|
2719
|
+
} | {
|
|
2720
|
+
result: {
|
|
2721
|
+
value: {
|
|
2722
|
+
data: string;
|
|
2723
|
+
blockNumber: number;
|
|
2724
|
+
};
|
|
2725
|
+
};
|
|
2726
|
+
query: {
|
|
2727
|
+
params: {
|
|
2728
|
+
chainId: number;
|
|
2729
|
+
timestamp: number;
|
|
2730
|
+
subgraphId: string;
|
|
2731
|
+
query: string;
|
|
2732
|
+
};
|
|
2733
|
+
name: "SubgraphQuery";
|
|
1696
2734
|
hash: string;
|
|
1697
2735
|
};
|
|
2736
|
+
signature: string;
|
|
1698
2737
|
})[];
|
|
2738
|
+
signature: string;
|
|
2739
|
+
createdAt: Date;
|
|
2740
|
+
triggerType: 0 | 1;
|
|
2741
|
+
triggerData: string;
|
|
2742
|
+
hash: string;
|
|
2743
|
+
fuelUsed: number;
|
|
1699
2744
|
outputs: {
|
|
1700
|
-
|
|
1701
|
-
op: import("../shared").OpType;
|
|
2745
|
+
op: 0 | 1 | 2 | 3;
|
|
1702
2746
|
user: string;
|
|
1703
2747
|
settler: string;
|
|
1704
2748
|
nonce: string;
|
|
1705
2749
|
deadline: string;
|
|
2750
|
+
data: string;
|
|
1706
2751
|
maxFees: {
|
|
1707
2752
|
token: string;
|
|
1708
2753
|
amount: string;
|
|
1709
2754
|
}[];
|
|
2755
|
+
events: {
|
|
2756
|
+
data: string;
|
|
2757
|
+
topic: string;
|
|
2758
|
+
}[];
|
|
2759
|
+
configSig: string;
|
|
2760
|
+
minValidations: number;
|
|
1710
2761
|
hash: string;
|
|
1711
2762
|
}[];
|
|
1712
2763
|
relayer: string;
|
|
2764
|
+
validations?: {
|
|
2765
|
+
succeeded: boolean;
|
|
2766
|
+
signature: string;
|
|
2767
|
+
description?: string | undefined;
|
|
2768
|
+
}[] | undefined;
|
|
1713
2769
|
logs?: string[] | undefined;
|
|
1714
|
-
errorLogs?: string[] | undefined;
|
|
1715
2770
|
fee?: {
|
|
2771
|
+
trigger: number;
|
|
1716
2772
|
relayer: number;
|
|
1717
2773
|
oracles: number;
|
|
1718
2774
|
validator: number;
|
|
@@ -1720,26 +2776,23 @@ export declare const ExecutionResponseValidator: z.ZodObject<z.objectUtil.extend
|
|
|
1720
2776
|
protocol: number;
|
|
1721
2777
|
total: number;
|
|
1722
2778
|
} | undefined;
|
|
1723
|
-
|
|
2779
|
+
solverFees?: {
|
|
2780
|
+
amount: number;
|
|
2781
|
+
address: string;
|
|
2782
|
+
}[] | undefined;
|
|
1724
2783
|
}>;
|
|
1725
2784
|
export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1726
2785
|
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1727
|
-
triggerType: z.ZodNativeEnum<
|
|
2786
|
+
triggerType: z.ZodNativeEnum<{
|
|
2787
|
+
readonly Cron: 0;
|
|
2788
|
+
readonly Event: 1;
|
|
2789
|
+
}>;
|
|
1728
2790
|
triggerData: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1729
2791
|
}, {
|
|
1730
2792
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1731
2793
|
timestamp: z.ZodNumber;
|
|
1732
2794
|
fuelUsed: z.ZodNumber;
|
|
1733
|
-
logs: z.ZodArray<z.
|
|
1734
|
-
level: z.ZodNativeEnum<typeof import("../shared").LogLevel>;
|
|
1735
|
-
log: z.ZodString;
|
|
1736
|
-
}, "strip", z.ZodTypeAny, {
|
|
1737
|
-
level: import("../shared").LogLevel;
|
|
1738
|
-
log: string;
|
|
1739
|
-
}, {
|
|
1740
|
-
level: import("../shared").LogLevel;
|
|
1741
|
-
log: string;
|
|
1742
|
-
}>, "many">;
|
|
2795
|
+
logs: z.ZodArray<z.ZodString, "many">;
|
|
1743
2796
|
inputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1744
2797
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1745
2798
|
query: z.ZodObject<{
|
|
@@ -1748,33 +2801,33 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
1748
2801
|
params: z.ZodObject<{
|
|
1749
2802
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1750
2803
|
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1751
|
-
to: z.ZodEffects<z.
|
|
2804
|
+
to: z.ZodEffects<z.ZodString, string, string>;
|
|
1752
2805
|
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1753
2806
|
}, "strip", z.ZodTypeAny, {
|
|
2807
|
+
data: string;
|
|
1754
2808
|
chainId: number;
|
|
1755
2809
|
to: string;
|
|
1756
|
-
data: string;
|
|
1757
2810
|
timestamp: number;
|
|
1758
2811
|
}, {
|
|
2812
|
+
data: string;
|
|
1759
2813
|
chainId: number;
|
|
1760
2814
|
to: string;
|
|
1761
|
-
data: string;
|
|
1762
2815
|
timestamp: number;
|
|
1763
2816
|
}>;
|
|
1764
2817
|
}, "strip", z.ZodTypeAny, {
|
|
1765
2818
|
params: {
|
|
2819
|
+
data: string;
|
|
1766
2820
|
chainId: number;
|
|
1767
2821
|
to: string;
|
|
1768
|
-
data: string;
|
|
1769
2822
|
timestamp: number;
|
|
1770
2823
|
};
|
|
1771
2824
|
name: "EvmCallQuery";
|
|
1772
2825
|
hash: string;
|
|
1773
2826
|
}, {
|
|
1774
2827
|
params: {
|
|
2828
|
+
data: string;
|
|
1775
2829
|
chainId: number;
|
|
1776
2830
|
to: string;
|
|
1777
|
-
data: string;
|
|
1778
2831
|
timestamp: number;
|
|
1779
2832
|
};
|
|
1780
2833
|
name: "EvmCallQuery";
|
|
@@ -1791,32 +2844,32 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
1791
2844
|
result: {
|
|
1792
2845
|
value: string;
|
|
1793
2846
|
};
|
|
1794
|
-
signature: string;
|
|
1795
2847
|
query: {
|
|
1796
2848
|
params: {
|
|
2849
|
+
data: string;
|
|
1797
2850
|
chainId: number;
|
|
1798
2851
|
to: string;
|
|
1799
|
-
data: string;
|
|
1800
2852
|
timestamp: number;
|
|
1801
2853
|
};
|
|
1802
2854
|
name: "EvmCallQuery";
|
|
1803
2855
|
hash: string;
|
|
1804
2856
|
};
|
|
2857
|
+
signature: string;
|
|
1805
2858
|
}, {
|
|
1806
2859
|
result: {
|
|
1807
2860
|
value: string;
|
|
1808
2861
|
};
|
|
1809
|
-
signature: string;
|
|
1810
2862
|
query: {
|
|
1811
2863
|
params: {
|
|
2864
|
+
data: string;
|
|
1812
2865
|
chainId: number;
|
|
1813
2866
|
to: string;
|
|
1814
|
-
data: string;
|
|
1815
2867
|
timestamp: number;
|
|
1816
2868
|
};
|
|
1817
2869
|
name: "EvmCallQuery";
|
|
1818
2870
|
hash: string;
|
|
1819
2871
|
};
|
|
2872
|
+
signature: string;
|
|
1820
2873
|
}>, z.ZodObject<{
|
|
1821
2874
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1822
2875
|
query: z.ZodObject<{
|
|
@@ -1828,42 +2881,42 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
1828
2881
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1829
2882
|
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1830
2883
|
}, "strip", z.ZodTypeAny, {
|
|
1831
|
-
chainId: number;
|
|
1832
2884
|
address: string;
|
|
1833
|
-
}, {
|
|
1834
2885
|
chainId: number;
|
|
2886
|
+
}, {
|
|
1835
2887
|
address: string;
|
|
2888
|
+
chainId: number;
|
|
1836
2889
|
}>;
|
|
1837
2890
|
}, "strip", z.ZodTypeAny, {
|
|
1838
|
-
timestamp: number;
|
|
1839
2891
|
token: {
|
|
1840
|
-
chainId: number;
|
|
1841
2892
|
address: string;
|
|
2893
|
+
chainId: number;
|
|
1842
2894
|
};
|
|
1843
|
-
}, {
|
|
1844
2895
|
timestamp: number;
|
|
2896
|
+
}, {
|
|
1845
2897
|
token: {
|
|
1846
|
-
chainId: number;
|
|
1847
2898
|
address: string;
|
|
2899
|
+
chainId: number;
|
|
1848
2900
|
};
|
|
2901
|
+
timestamp: number;
|
|
1849
2902
|
}>;
|
|
1850
2903
|
}, "strip", z.ZodTypeAny, {
|
|
1851
2904
|
params: {
|
|
1852
|
-
timestamp: number;
|
|
1853
2905
|
token: {
|
|
1854
|
-
chainId: number;
|
|
1855
2906
|
address: string;
|
|
2907
|
+
chainId: number;
|
|
1856
2908
|
};
|
|
2909
|
+
timestamp: number;
|
|
1857
2910
|
};
|
|
1858
2911
|
name: "TokenPriceQuery";
|
|
1859
2912
|
hash: string;
|
|
1860
2913
|
}, {
|
|
1861
2914
|
params: {
|
|
1862
|
-
timestamp: number;
|
|
1863
2915
|
token: {
|
|
1864
|
-
chainId: number;
|
|
1865
2916
|
address: string;
|
|
2917
|
+
chainId: number;
|
|
1866
2918
|
};
|
|
2919
|
+
timestamp: number;
|
|
1867
2920
|
};
|
|
1868
2921
|
name: "TokenPriceQuery";
|
|
1869
2922
|
hash: string;
|
|
@@ -1879,34 +2932,34 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
1879
2932
|
result: {
|
|
1880
2933
|
value: string;
|
|
1881
2934
|
};
|
|
1882
|
-
signature: string;
|
|
1883
2935
|
query: {
|
|
1884
2936
|
params: {
|
|
1885
|
-
timestamp: number;
|
|
1886
2937
|
token: {
|
|
1887
|
-
chainId: number;
|
|
1888
2938
|
address: string;
|
|
2939
|
+
chainId: number;
|
|
1889
2940
|
};
|
|
2941
|
+
timestamp: number;
|
|
1890
2942
|
};
|
|
1891
2943
|
name: "TokenPriceQuery";
|
|
1892
2944
|
hash: string;
|
|
1893
2945
|
};
|
|
2946
|
+
signature: string;
|
|
1894
2947
|
}, {
|
|
1895
2948
|
result: {
|
|
1896
2949
|
value: string;
|
|
1897
2950
|
};
|
|
1898
|
-
signature: string;
|
|
1899
2951
|
query: {
|
|
1900
2952
|
params: {
|
|
1901
|
-
timestamp: number;
|
|
1902
2953
|
token: {
|
|
1903
|
-
chainId: number;
|
|
1904
2954
|
address: string;
|
|
2955
|
+
chainId: number;
|
|
1905
2956
|
};
|
|
2957
|
+
timestamp: number;
|
|
1906
2958
|
};
|
|
1907
2959
|
name: "TokenPriceQuery";
|
|
1908
2960
|
hash: string;
|
|
1909
2961
|
};
|
|
2962
|
+
signature: string;
|
|
1910
2963
|
}>, z.ZodObject<{
|
|
1911
2964
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1912
2965
|
query: z.ZodObject<{
|
|
@@ -1916,166 +2969,433 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
1916
2969
|
chainIds: z.ZodArray<z.ZodEffects<z.ZodNumber, number, number>, "many">;
|
|
1917
2970
|
owner: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1918
2971
|
usdMinAmount: z.ZodEffects<z.ZodString, string, string>;
|
|
1919
|
-
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1920
2972
|
tokens: z.ZodArray<z.ZodObject<{
|
|
1921
|
-
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1922
2973
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2974
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1923
2975
|
}, "strip", z.ZodTypeAny, {
|
|
1924
|
-
chainId: number;
|
|
1925
2976
|
address: string;
|
|
1926
|
-
}, {
|
|
1927
2977
|
chainId: number;
|
|
2978
|
+
}, {
|
|
1928
2979
|
address: string;
|
|
2980
|
+
chainId: number;
|
|
1929
2981
|
}>, "many">;
|
|
1930
2982
|
tokenFilter: z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>;
|
|
1931
2983
|
}, "strip", z.ZodTypeAny, {
|
|
1932
|
-
|
|
2984
|
+
owner: string;
|
|
2985
|
+
tokens: {
|
|
2986
|
+
address: string;
|
|
2987
|
+
chainId: number;
|
|
2988
|
+
}[];
|
|
2989
|
+
usdMinAmount: string;
|
|
2990
|
+
chainIds: number[];
|
|
2991
|
+
tokenFilter: 0 | 1;
|
|
2992
|
+
}, {
|
|
2993
|
+
owner: string;
|
|
2994
|
+
tokens: {
|
|
2995
|
+
address: string;
|
|
2996
|
+
chainId: number;
|
|
2997
|
+
}[];
|
|
2998
|
+
usdMinAmount: string;
|
|
2999
|
+
chainIds: number[];
|
|
3000
|
+
tokenFilter: 0 | 1;
|
|
3001
|
+
}>;
|
|
3002
|
+
}, "strip", z.ZodTypeAny, {
|
|
3003
|
+
params: {
|
|
3004
|
+
owner: string;
|
|
3005
|
+
tokens: {
|
|
3006
|
+
address: string;
|
|
3007
|
+
chainId: number;
|
|
3008
|
+
}[];
|
|
3009
|
+
usdMinAmount: string;
|
|
3010
|
+
chainIds: number[];
|
|
3011
|
+
tokenFilter: 0 | 1;
|
|
3012
|
+
};
|
|
3013
|
+
name: "RelevantTokensQuery";
|
|
3014
|
+
hash: string;
|
|
3015
|
+
}, {
|
|
3016
|
+
params: {
|
|
3017
|
+
owner: string;
|
|
1933
3018
|
tokens: {
|
|
3019
|
+
address: string;
|
|
1934
3020
|
chainId: number;
|
|
3021
|
+
}[];
|
|
3022
|
+
usdMinAmount: string;
|
|
3023
|
+
chainIds: number[];
|
|
3024
|
+
tokenFilter: 0 | 1;
|
|
3025
|
+
};
|
|
3026
|
+
name: "RelevantTokensQuery";
|
|
3027
|
+
hash: string;
|
|
3028
|
+
}>;
|
|
3029
|
+
result: z.ZodObject<{
|
|
3030
|
+
value: z.ZodObject<{
|
|
3031
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
3032
|
+
balances: z.ZodArray<z.ZodObject<{
|
|
3033
|
+
token: z.ZodObject<{
|
|
3034
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3035
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
3036
|
+
}, "strip", z.ZodTypeAny, {
|
|
3037
|
+
address: string;
|
|
3038
|
+
chainId: number;
|
|
3039
|
+
}, {
|
|
3040
|
+
address: string;
|
|
3041
|
+
chainId: number;
|
|
3042
|
+
}>;
|
|
3043
|
+
balance: z.ZodEffects<z.ZodString, string, string>;
|
|
3044
|
+
}, "strip", z.ZodTypeAny, {
|
|
3045
|
+
token: {
|
|
3046
|
+
address: string;
|
|
3047
|
+
chainId: number;
|
|
3048
|
+
};
|
|
3049
|
+
balance: string;
|
|
3050
|
+
}, {
|
|
3051
|
+
token: {
|
|
3052
|
+
address: string;
|
|
3053
|
+
chainId: number;
|
|
3054
|
+
};
|
|
3055
|
+
balance: string;
|
|
3056
|
+
}>, "many">;
|
|
3057
|
+
}, "strip", z.ZodTypeAny, {
|
|
3058
|
+
timestamp: number;
|
|
3059
|
+
balances: {
|
|
3060
|
+
token: {
|
|
3061
|
+
address: string;
|
|
3062
|
+
chainId: number;
|
|
3063
|
+
};
|
|
3064
|
+
balance: string;
|
|
3065
|
+
}[];
|
|
3066
|
+
}, {
|
|
3067
|
+
timestamp: number;
|
|
3068
|
+
balances: {
|
|
3069
|
+
token: {
|
|
3070
|
+
address: string;
|
|
3071
|
+
chainId: number;
|
|
3072
|
+
};
|
|
3073
|
+
balance: string;
|
|
3074
|
+
}[];
|
|
3075
|
+
}>;
|
|
3076
|
+
}, "strip", z.ZodTypeAny, {
|
|
3077
|
+
value: {
|
|
3078
|
+
timestamp: number;
|
|
3079
|
+
balances: {
|
|
3080
|
+
token: {
|
|
3081
|
+
address: string;
|
|
3082
|
+
chainId: number;
|
|
3083
|
+
};
|
|
3084
|
+
balance: string;
|
|
3085
|
+
}[];
|
|
3086
|
+
};
|
|
3087
|
+
}, {
|
|
3088
|
+
value: {
|
|
3089
|
+
timestamp: number;
|
|
3090
|
+
balances: {
|
|
3091
|
+
token: {
|
|
3092
|
+
address: string;
|
|
3093
|
+
chainId: number;
|
|
3094
|
+
};
|
|
3095
|
+
balance: string;
|
|
3096
|
+
}[];
|
|
3097
|
+
};
|
|
3098
|
+
}>;
|
|
3099
|
+
}, "strip", z.ZodTypeAny, {
|
|
3100
|
+
result: {
|
|
3101
|
+
value: {
|
|
3102
|
+
timestamp: number;
|
|
3103
|
+
balances: {
|
|
3104
|
+
token: {
|
|
3105
|
+
address: string;
|
|
3106
|
+
chainId: number;
|
|
3107
|
+
};
|
|
3108
|
+
balance: string;
|
|
3109
|
+
}[];
|
|
3110
|
+
};
|
|
3111
|
+
};
|
|
3112
|
+
query: {
|
|
3113
|
+
params: {
|
|
3114
|
+
owner: string;
|
|
3115
|
+
tokens: {
|
|
1935
3116
|
address: string;
|
|
3117
|
+
chainId: number;
|
|
3118
|
+
}[];
|
|
3119
|
+
usdMinAmount: string;
|
|
3120
|
+
chainIds: number[];
|
|
3121
|
+
tokenFilter: 0 | 1;
|
|
3122
|
+
};
|
|
3123
|
+
name: "RelevantTokensQuery";
|
|
3124
|
+
hash: string;
|
|
3125
|
+
};
|
|
3126
|
+
signature: string;
|
|
3127
|
+
}, {
|
|
3128
|
+
result: {
|
|
3129
|
+
value: {
|
|
3130
|
+
timestamp: number;
|
|
3131
|
+
balances: {
|
|
3132
|
+
token: {
|
|
3133
|
+
address: string;
|
|
3134
|
+
chainId: number;
|
|
3135
|
+
};
|
|
3136
|
+
balance: string;
|
|
1936
3137
|
}[];
|
|
3138
|
+
};
|
|
3139
|
+
};
|
|
3140
|
+
query: {
|
|
3141
|
+
params: {
|
|
1937
3142
|
owner: string;
|
|
3143
|
+
tokens: {
|
|
3144
|
+
address: string;
|
|
3145
|
+
chainId: number;
|
|
3146
|
+
}[];
|
|
1938
3147
|
usdMinAmount: string;
|
|
1939
3148
|
chainIds: number[];
|
|
1940
3149
|
tokenFilter: 0 | 1;
|
|
3150
|
+
};
|
|
3151
|
+
name: "RelevantTokensQuery";
|
|
3152
|
+
hash: string;
|
|
3153
|
+
};
|
|
3154
|
+
signature: string;
|
|
3155
|
+
}>, z.ZodObject<{
|
|
3156
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3157
|
+
query: z.ZodObject<{
|
|
3158
|
+
name: z.ZodLiteral<"SubgraphQuery">;
|
|
3159
|
+
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3160
|
+
params: z.ZodObject<{
|
|
3161
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
3162
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
3163
|
+
subgraphId: z.ZodString;
|
|
3164
|
+
query: z.ZodString;
|
|
3165
|
+
}, "strip", z.ZodTypeAny, {
|
|
3166
|
+
chainId: number;
|
|
3167
|
+
timestamp: number;
|
|
3168
|
+
subgraphId: string;
|
|
3169
|
+
query: string;
|
|
3170
|
+
}, {
|
|
3171
|
+
chainId: number;
|
|
3172
|
+
timestamp: number;
|
|
3173
|
+
subgraphId: string;
|
|
3174
|
+
query: string;
|
|
3175
|
+
}>;
|
|
3176
|
+
}, "strip", z.ZodTypeAny, {
|
|
3177
|
+
params: {
|
|
3178
|
+
chainId: number;
|
|
3179
|
+
timestamp: number;
|
|
3180
|
+
subgraphId: string;
|
|
3181
|
+
query: string;
|
|
3182
|
+
};
|
|
3183
|
+
name: "SubgraphQuery";
|
|
3184
|
+
hash: string;
|
|
3185
|
+
}, {
|
|
3186
|
+
params: {
|
|
3187
|
+
chainId: number;
|
|
3188
|
+
timestamp: number;
|
|
3189
|
+
subgraphId: string;
|
|
3190
|
+
query: string;
|
|
3191
|
+
};
|
|
3192
|
+
name: "SubgraphQuery";
|
|
3193
|
+
hash: string;
|
|
3194
|
+
}>;
|
|
3195
|
+
result: z.ZodObject<{
|
|
3196
|
+
value: z.ZodObject<{
|
|
3197
|
+
blockNumber: z.ZodNumber;
|
|
3198
|
+
data: z.ZodString;
|
|
3199
|
+
}, "strip", z.ZodTypeAny, {
|
|
3200
|
+
data: string;
|
|
3201
|
+
blockNumber: number;
|
|
3202
|
+
}, {
|
|
3203
|
+
data: string;
|
|
3204
|
+
blockNumber: number;
|
|
3205
|
+
}>;
|
|
3206
|
+
}, "strip", z.ZodTypeAny, {
|
|
3207
|
+
value: {
|
|
3208
|
+
data: string;
|
|
3209
|
+
blockNumber: number;
|
|
3210
|
+
};
|
|
3211
|
+
}, {
|
|
3212
|
+
value: {
|
|
3213
|
+
data: string;
|
|
3214
|
+
blockNumber: number;
|
|
3215
|
+
};
|
|
3216
|
+
}>;
|
|
3217
|
+
}, "strip", z.ZodTypeAny, {
|
|
3218
|
+
result: {
|
|
3219
|
+
value: {
|
|
3220
|
+
data: string;
|
|
3221
|
+
blockNumber: number;
|
|
3222
|
+
};
|
|
3223
|
+
};
|
|
3224
|
+
query: {
|
|
3225
|
+
params: {
|
|
3226
|
+
chainId: number;
|
|
3227
|
+
timestamp: number;
|
|
3228
|
+
subgraphId: string;
|
|
3229
|
+
query: string;
|
|
3230
|
+
};
|
|
3231
|
+
name: "SubgraphQuery";
|
|
3232
|
+
hash: string;
|
|
3233
|
+
};
|
|
3234
|
+
signature: string;
|
|
3235
|
+
}, {
|
|
3236
|
+
result: {
|
|
3237
|
+
value: {
|
|
3238
|
+
data: string;
|
|
3239
|
+
blockNumber: number;
|
|
3240
|
+
};
|
|
3241
|
+
};
|
|
3242
|
+
query: {
|
|
3243
|
+
params: {
|
|
3244
|
+
chainId: number;
|
|
3245
|
+
timestamp: number;
|
|
3246
|
+
subgraphId: string;
|
|
3247
|
+
query: string;
|
|
3248
|
+
};
|
|
3249
|
+
name: "SubgraphQuery";
|
|
3250
|
+
hash: string;
|
|
3251
|
+
};
|
|
3252
|
+
signature: string;
|
|
3253
|
+
}>, z.ZodObject<{
|
|
3254
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3255
|
+
query: z.ZodObject<{
|
|
3256
|
+
name: z.ZodLiteral<"SvmAccountsInfoQuery">;
|
|
3257
|
+
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3258
|
+
params: z.ZodObject<{
|
|
3259
|
+
publicKeys: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
3260
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
3261
|
+
}, "strip", z.ZodTypeAny, {
|
|
3262
|
+
timestamp: number;
|
|
3263
|
+
publicKeys: string[];
|
|
1941
3264
|
}, {
|
|
1942
3265
|
timestamp: number;
|
|
1943
|
-
|
|
1944
|
-
chainId: number;
|
|
1945
|
-
address: string;
|
|
1946
|
-
}[];
|
|
1947
|
-
owner: string;
|
|
1948
|
-
usdMinAmount: string;
|
|
1949
|
-
chainIds: number[];
|
|
1950
|
-
tokenFilter: 0 | 1;
|
|
3266
|
+
publicKeys: string[];
|
|
1951
3267
|
}>;
|
|
1952
3268
|
}, "strip", z.ZodTypeAny, {
|
|
1953
3269
|
params: {
|
|
1954
3270
|
timestamp: number;
|
|
1955
|
-
|
|
1956
|
-
chainId: number;
|
|
1957
|
-
address: string;
|
|
1958
|
-
}[];
|
|
1959
|
-
owner: string;
|
|
1960
|
-
usdMinAmount: string;
|
|
1961
|
-
chainIds: number[];
|
|
1962
|
-
tokenFilter: 0 | 1;
|
|
3271
|
+
publicKeys: string[];
|
|
1963
3272
|
};
|
|
1964
|
-
name: "
|
|
3273
|
+
name: "SvmAccountsInfoQuery";
|
|
1965
3274
|
hash: string;
|
|
1966
3275
|
}, {
|
|
1967
3276
|
params: {
|
|
1968
3277
|
timestamp: number;
|
|
1969
|
-
|
|
1970
|
-
chainId: number;
|
|
1971
|
-
address: string;
|
|
1972
|
-
}[];
|
|
1973
|
-
owner: string;
|
|
1974
|
-
usdMinAmount: string;
|
|
1975
|
-
chainIds: number[];
|
|
1976
|
-
tokenFilter: 0 | 1;
|
|
3278
|
+
publicKeys: string[];
|
|
1977
3279
|
};
|
|
1978
|
-
name: "
|
|
3280
|
+
name: "SvmAccountsInfoQuery";
|
|
1979
3281
|
hash: string;
|
|
1980
3282
|
}>;
|
|
1981
3283
|
result: z.ZodObject<{
|
|
1982
|
-
value: z.
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
3284
|
+
value: z.ZodObject<{
|
|
3285
|
+
accountsInfo: z.ZodArray<z.ZodObject<{
|
|
3286
|
+
executable: z.ZodBoolean;
|
|
3287
|
+
owner: z.ZodEffects<z.ZodString, string, string>;
|
|
3288
|
+
lamports: z.ZodEffects<z.ZodString, string, string>;
|
|
3289
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3290
|
+
rentEpoch: z.ZodEffects<z.ZodString, string, string>;
|
|
1986
3291
|
}, "strip", z.ZodTypeAny, {
|
|
1987
|
-
|
|
1988
|
-
|
|
3292
|
+
data: string;
|
|
3293
|
+
executable: boolean;
|
|
3294
|
+
owner: string;
|
|
3295
|
+
lamports: string;
|
|
3296
|
+
rentEpoch: string;
|
|
1989
3297
|
}, {
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
3298
|
+
data: string;
|
|
3299
|
+
executable: boolean;
|
|
3300
|
+
owner: string;
|
|
3301
|
+
lamports: string;
|
|
3302
|
+
rentEpoch: string;
|
|
3303
|
+
}>, "many">;
|
|
3304
|
+
slot: z.ZodEffects<z.ZodString, string, string>;
|
|
1994
3305
|
}, "strip", z.ZodTypeAny, {
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
3306
|
+
accountsInfo: {
|
|
3307
|
+
data: string;
|
|
3308
|
+
executable: boolean;
|
|
3309
|
+
owner: string;
|
|
3310
|
+
lamports: string;
|
|
3311
|
+
rentEpoch: string;
|
|
3312
|
+
}[];
|
|
3313
|
+
slot: string;
|
|
2000
3314
|
}, {
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
3315
|
+
accountsInfo: {
|
|
3316
|
+
data: string;
|
|
3317
|
+
executable: boolean;
|
|
3318
|
+
owner: string;
|
|
3319
|
+
lamports: string;
|
|
3320
|
+
rentEpoch: string;
|
|
3321
|
+
}[];
|
|
3322
|
+
slot: string;
|
|
3323
|
+
}>;
|
|
2007
3324
|
}, "strip", z.ZodTypeAny, {
|
|
2008
3325
|
value: {
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
3326
|
+
accountsInfo: {
|
|
3327
|
+
data: string;
|
|
3328
|
+
executable: boolean;
|
|
3329
|
+
owner: string;
|
|
3330
|
+
lamports: string;
|
|
3331
|
+
rentEpoch: string;
|
|
3332
|
+
}[];
|
|
3333
|
+
slot: string;
|
|
3334
|
+
};
|
|
2015
3335
|
}, {
|
|
2016
3336
|
value: {
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
3337
|
+
accountsInfo: {
|
|
3338
|
+
data: string;
|
|
3339
|
+
executable: boolean;
|
|
3340
|
+
owner: string;
|
|
3341
|
+
lamports: string;
|
|
3342
|
+
rentEpoch: string;
|
|
3343
|
+
}[];
|
|
3344
|
+
slot: string;
|
|
3345
|
+
};
|
|
2023
3346
|
}>;
|
|
2024
3347
|
}, "strip", z.ZodTypeAny, {
|
|
2025
3348
|
result: {
|
|
2026
3349
|
value: {
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
3350
|
+
accountsInfo: {
|
|
3351
|
+
data: string;
|
|
3352
|
+
executable: boolean;
|
|
3353
|
+
owner: string;
|
|
3354
|
+
lamports: string;
|
|
3355
|
+
rentEpoch: string;
|
|
3356
|
+
}[];
|
|
3357
|
+
slot: string;
|
|
3358
|
+
};
|
|
2033
3359
|
};
|
|
2034
|
-
signature: string;
|
|
2035
3360
|
query: {
|
|
2036
3361
|
params: {
|
|
2037
3362
|
timestamp: number;
|
|
2038
|
-
|
|
2039
|
-
chainId: number;
|
|
2040
|
-
address: string;
|
|
2041
|
-
}[];
|
|
2042
|
-
owner: string;
|
|
2043
|
-
usdMinAmount: string;
|
|
2044
|
-
chainIds: number[];
|
|
2045
|
-
tokenFilter: 0 | 1;
|
|
3363
|
+
publicKeys: string[];
|
|
2046
3364
|
};
|
|
2047
|
-
name: "
|
|
3365
|
+
name: "SvmAccountsInfoQuery";
|
|
2048
3366
|
hash: string;
|
|
2049
3367
|
};
|
|
3368
|
+
signature: string;
|
|
2050
3369
|
}, {
|
|
2051
3370
|
result: {
|
|
2052
3371
|
value: {
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
3372
|
+
accountsInfo: {
|
|
3373
|
+
data: string;
|
|
3374
|
+
executable: boolean;
|
|
3375
|
+
owner: string;
|
|
3376
|
+
lamports: string;
|
|
3377
|
+
rentEpoch: string;
|
|
3378
|
+
}[];
|
|
3379
|
+
slot: string;
|
|
3380
|
+
};
|
|
2059
3381
|
};
|
|
2060
|
-
signature: string;
|
|
2061
3382
|
query: {
|
|
2062
3383
|
params: {
|
|
2063
3384
|
timestamp: number;
|
|
2064
|
-
|
|
2065
|
-
chainId: number;
|
|
2066
|
-
address: string;
|
|
2067
|
-
}[];
|
|
2068
|
-
owner: string;
|
|
2069
|
-
usdMinAmount: string;
|
|
2070
|
-
chainIds: number[];
|
|
2071
|
-
tokenFilter: 0 | 1;
|
|
3385
|
+
publicKeys: string[];
|
|
2072
3386
|
};
|
|
2073
|
-
name: "
|
|
3387
|
+
name: "SvmAccountsInfoQuery";
|
|
2074
3388
|
hash: string;
|
|
2075
3389
|
};
|
|
3390
|
+
signature: string;
|
|
2076
3391
|
}>]>, "many">;
|
|
2077
3392
|
outputs: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
2078
|
-
op: z.ZodNativeEnum<
|
|
3393
|
+
op: z.ZodNativeEnum<{
|
|
3394
|
+
readonly Swap: 0;
|
|
3395
|
+
readonly Transfer: 1;
|
|
3396
|
+
readonly EvmCall: 2;
|
|
3397
|
+
readonly SvmCall: 3;
|
|
3398
|
+
}>;
|
|
2079
3399
|
user: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2080
3400
|
settler: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2081
3401
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -2091,40 +3411,73 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2091
3411
|
token: string;
|
|
2092
3412
|
amount: string;
|
|
2093
3413
|
}>, "many">;
|
|
3414
|
+
events: z.ZodArray<z.ZodObject<{
|
|
3415
|
+
topic: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3416
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3417
|
+
}, "strip", z.ZodTypeAny, {
|
|
3418
|
+
data: string;
|
|
3419
|
+
topic: string;
|
|
3420
|
+
}, {
|
|
3421
|
+
data: string;
|
|
3422
|
+
topic: string;
|
|
3423
|
+
}>, "many">;
|
|
3424
|
+
configSig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3425
|
+
minValidations: z.ZodNumber;
|
|
2094
3426
|
}, {
|
|
2095
3427
|
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2096
3428
|
}>, "strip", z.ZodTypeAny, {
|
|
2097
|
-
|
|
2098
|
-
op: import("../shared").OpType;
|
|
3429
|
+
op: 0 | 1 | 2 | 3;
|
|
2099
3430
|
user: string;
|
|
2100
3431
|
settler: string;
|
|
2101
3432
|
nonce: string;
|
|
2102
3433
|
deadline: string;
|
|
3434
|
+
data: string;
|
|
2103
3435
|
maxFees: {
|
|
2104
3436
|
token: string;
|
|
2105
3437
|
amount: string;
|
|
2106
3438
|
}[];
|
|
3439
|
+
events: {
|
|
3440
|
+
data: string;
|
|
3441
|
+
topic: string;
|
|
3442
|
+
}[];
|
|
3443
|
+
configSig: string;
|
|
3444
|
+
minValidations: number;
|
|
2107
3445
|
hash: string;
|
|
2108
3446
|
}, {
|
|
2109
|
-
|
|
2110
|
-
op: import("../shared").OpType;
|
|
3447
|
+
op: 0 | 1 | 2 | 3;
|
|
2111
3448
|
user: string;
|
|
2112
3449
|
settler: string;
|
|
2113
3450
|
nonce: string;
|
|
2114
3451
|
deadline: string;
|
|
3452
|
+
data: string;
|
|
2115
3453
|
maxFees: {
|
|
2116
3454
|
token: string;
|
|
2117
3455
|
amount: string;
|
|
2118
3456
|
}[];
|
|
3457
|
+
events: {
|
|
3458
|
+
data: string;
|
|
3459
|
+
topic: string;
|
|
3460
|
+
}[];
|
|
3461
|
+
configSig: string;
|
|
3462
|
+
minValidations: number;
|
|
2119
3463
|
hash: string;
|
|
2120
3464
|
}>, "many">;
|
|
2121
3465
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3466
|
+
result: z.ZodNativeEnum<{
|
|
3467
|
+
readonly succeeded: "succeeded";
|
|
3468
|
+
readonly failed: "failed";
|
|
3469
|
+
}>;
|
|
2122
3470
|
}>, {
|
|
2123
3471
|
relayer: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3472
|
+
status: z.ZodNativeEnum<{
|
|
3473
|
+
readonly pending: "pending";
|
|
3474
|
+
readonly valid: "valid";
|
|
3475
|
+
readonly invalid: "invalid";
|
|
3476
|
+
}>;
|
|
2124
3477
|
createdAt: z.ZodDate;
|
|
2125
3478
|
logs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2126
|
-
errorLogs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2127
3479
|
fee: z.ZodOptional<z.ZodObject<{
|
|
3480
|
+
trigger: z.ZodNumber;
|
|
2128
3481
|
relayer: z.ZodNumber;
|
|
2129
3482
|
oracles: z.ZodNumber;
|
|
2130
3483
|
validator: z.ZodNumber;
|
|
@@ -2132,6 +3485,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2132
3485
|
protocol: z.ZodNumber;
|
|
2133
3486
|
total: z.ZodNumber;
|
|
2134
3487
|
}, "strip", z.ZodTypeAny, {
|
|
3488
|
+
trigger: number;
|
|
2135
3489
|
relayer: number;
|
|
2136
3490
|
oracles: number;
|
|
2137
3491
|
validator: number;
|
|
@@ -2139,6 +3493,7 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2139
3493
|
protocol: number;
|
|
2140
3494
|
total: number;
|
|
2141
3495
|
}, {
|
|
3496
|
+
trigger: number;
|
|
2142
3497
|
relayer: number;
|
|
2143
3498
|
oracles: number;
|
|
2144
3499
|
validator: number;
|
|
@@ -2146,66 +3501,107 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2146
3501
|
protocol: number;
|
|
2147
3502
|
total: number;
|
|
2148
3503
|
}>>;
|
|
2149
|
-
|
|
3504
|
+
solverFees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3505
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3506
|
+
amount: z.ZodNumber;
|
|
3507
|
+
}, "strip", z.ZodTypeAny, {
|
|
3508
|
+
amount: number;
|
|
3509
|
+
address: string;
|
|
3510
|
+
}, {
|
|
3511
|
+
amount: number;
|
|
3512
|
+
address: string;
|
|
3513
|
+
}>, "many">>;
|
|
3514
|
+
validations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3515
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3516
|
+
succeeded: z.ZodBoolean;
|
|
3517
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3518
|
+
}, "strip", z.ZodTypeAny, {
|
|
3519
|
+
succeeded: boolean;
|
|
3520
|
+
signature: string;
|
|
3521
|
+
description?: string | undefined;
|
|
3522
|
+
}, {
|
|
3523
|
+
succeeded: boolean;
|
|
3524
|
+
signature: string;
|
|
3525
|
+
description?: string | undefined;
|
|
3526
|
+
}>, "many">>;
|
|
2150
3527
|
}>, "strip", z.ZodTypeAny, {
|
|
2151
|
-
timestamp: number;
|
|
2152
|
-
createdAt: Date;
|
|
2153
3528
|
configSig: string;
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
hash: string;
|
|
2158
|
-
fuelUsed: number;
|
|
3529
|
+
result: "succeeded" | "failed";
|
|
3530
|
+
timestamp: number;
|
|
3531
|
+
status: "pending" | "valid" | "invalid";
|
|
2159
3532
|
inputs: ({
|
|
2160
3533
|
result: {
|
|
2161
3534
|
value: string;
|
|
2162
3535
|
};
|
|
2163
|
-
signature: string;
|
|
2164
3536
|
query: {
|
|
2165
3537
|
params: {
|
|
3538
|
+
data: string;
|
|
2166
3539
|
chainId: number;
|
|
2167
3540
|
to: string;
|
|
2168
|
-
data: string;
|
|
2169
3541
|
timestamp: number;
|
|
2170
3542
|
};
|
|
2171
3543
|
name: "EvmCallQuery";
|
|
2172
3544
|
hash: string;
|
|
2173
3545
|
};
|
|
3546
|
+
signature: string;
|
|
2174
3547
|
} | {
|
|
2175
3548
|
result: {
|
|
2176
|
-
value:
|
|
3549
|
+
value: {
|
|
3550
|
+
accountsInfo: {
|
|
3551
|
+
data: string;
|
|
3552
|
+
executable: boolean;
|
|
3553
|
+
owner: string;
|
|
3554
|
+
lamports: string;
|
|
3555
|
+
rentEpoch: string;
|
|
3556
|
+
}[];
|
|
3557
|
+
slot: string;
|
|
3558
|
+
};
|
|
2177
3559
|
};
|
|
2178
|
-
signature: string;
|
|
2179
3560
|
query: {
|
|
2180
3561
|
params: {
|
|
2181
3562
|
timestamp: number;
|
|
3563
|
+
publicKeys: string[];
|
|
3564
|
+
};
|
|
3565
|
+
name: "SvmAccountsInfoQuery";
|
|
3566
|
+
hash: string;
|
|
3567
|
+
};
|
|
3568
|
+
signature: string;
|
|
3569
|
+
} | {
|
|
3570
|
+
result: {
|
|
3571
|
+
value: string;
|
|
3572
|
+
};
|
|
3573
|
+
query: {
|
|
3574
|
+
params: {
|
|
2182
3575
|
token: {
|
|
2183
|
-
chainId: number;
|
|
2184
3576
|
address: string;
|
|
3577
|
+
chainId: number;
|
|
2185
3578
|
};
|
|
3579
|
+
timestamp: number;
|
|
2186
3580
|
};
|
|
2187
3581
|
name: "TokenPriceQuery";
|
|
2188
3582
|
hash: string;
|
|
2189
3583
|
};
|
|
3584
|
+
signature: string;
|
|
2190
3585
|
} | {
|
|
2191
3586
|
result: {
|
|
2192
3587
|
value: {
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
3588
|
+
timestamp: number;
|
|
3589
|
+
balances: {
|
|
3590
|
+
token: {
|
|
3591
|
+
address: string;
|
|
3592
|
+
chainId: number;
|
|
3593
|
+
};
|
|
3594
|
+
balance: string;
|
|
3595
|
+
}[];
|
|
3596
|
+
};
|
|
2199
3597
|
};
|
|
2200
|
-
signature: string;
|
|
2201
3598
|
query: {
|
|
2202
3599
|
params: {
|
|
2203
|
-
|
|
3600
|
+
owner: string;
|
|
2204
3601
|
tokens: {
|
|
2205
|
-
chainId: number;
|
|
2206
3602
|
address: string;
|
|
3603
|
+
chainId: number;
|
|
2207
3604
|
}[];
|
|
2208
|
-
owner: string;
|
|
2209
3605
|
usdMinAmount: string;
|
|
2210
3606
|
chainIds: number[];
|
|
2211
3607
|
tokenFilter: 0 | 1;
|
|
@@ -2213,24 +3609,60 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2213
3609
|
name: "RelevantTokensQuery";
|
|
2214
3610
|
hash: string;
|
|
2215
3611
|
};
|
|
3612
|
+
signature: string;
|
|
3613
|
+
} | {
|
|
3614
|
+
result: {
|
|
3615
|
+
value: {
|
|
3616
|
+
data: string;
|
|
3617
|
+
blockNumber: number;
|
|
3618
|
+
};
|
|
3619
|
+
};
|
|
3620
|
+
query: {
|
|
3621
|
+
params: {
|
|
3622
|
+
chainId: number;
|
|
3623
|
+
timestamp: number;
|
|
3624
|
+
subgraphId: string;
|
|
3625
|
+
query: string;
|
|
3626
|
+
};
|
|
3627
|
+
name: "SubgraphQuery";
|
|
3628
|
+
hash: string;
|
|
3629
|
+
};
|
|
3630
|
+
signature: string;
|
|
2216
3631
|
})[];
|
|
3632
|
+
signature: string;
|
|
3633
|
+
createdAt: Date;
|
|
3634
|
+
triggerType: 0 | 1;
|
|
3635
|
+
triggerData: string;
|
|
3636
|
+
hash: string;
|
|
3637
|
+
fuelUsed: number;
|
|
2217
3638
|
outputs: {
|
|
2218
|
-
|
|
2219
|
-
op: import("../shared").OpType;
|
|
3639
|
+
op: 0 | 1 | 2 | 3;
|
|
2220
3640
|
user: string;
|
|
2221
3641
|
settler: string;
|
|
2222
3642
|
nonce: string;
|
|
2223
3643
|
deadline: string;
|
|
3644
|
+
data: string;
|
|
2224
3645
|
maxFees: {
|
|
2225
3646
|
token: string;
|
|
2226
3647
|
amount: string;
|
|
2227
3648
|
}[];
|
|
3649
|
+
events: {
|
|
3650
|
+
data: string;
|
|
3651
|
+
topic: string;
|
|
3652
|
+
}[];
|
|
3653
|
+
configSig: string;
|
|
3654
|
+
minValidations: number;
|
|
2228
3655
|
hash: string;
|
|
2229
3656
|
}[];
|
|
2230
3657
|
relayer: string;
|
|
3658
|
+
validations?: {
|
|
3659
|
+
succeeded: boolean;
|
|
3660
|
+
signature: string;
|
|
3661
|
+
description?: string | undefined;
|
|
3662
|
+
}[] | undefined;
|
|
2231
3663
|
logs?: string[] | undefined;
|
|
2232
|
-
errorLogs?: string[] | undefined;
|
|
2233
3664
|
fee?: {
|
|
3665
|
+
trigger: number;
|
|
2234
3666
|
relayer: number;
|
|
2235
3667
|
oracles: number;
|
|
2236
3668
|
validator: number;
|
|
@@ -2238,66 +3670,88 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2238
3670
|
protocol: number;
|
|
2239
3671
|
total: number;
|
|
2240
3672
|
} | undefined;
|
|
2241
|
-
|
|
3673
|
+
solverFees?: {
|
|
3674
|
+
amount: number;
|
|
3675
|
+
address: string;
|
|
3676
|
+
}[] | undefined;
|
|
2242
3677
|
}, {
|
|
2243
|
-
timestamp: number;
|
|
2244
|
-
createdAt: Date;
|
|
2245
3678
|
configSig: string;
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
hash: string;
|
|
2250
|
-
fuelUsed: number;
|
|
3679
|
+
result: "succeeded" | "failed";
|
|
3680
|
+
timestamp: number;
|
|
3681
|
+
status: "pending" | "valid" | "invalid";
|
|
2251
3682
|
inputs: ({
|
|
2252
3683
|
result: {
|
|
2253
3684
|
value: string;
|
|
2254
3685
|
};
|
|
2255
|
-
signature: string;
|
|
2256
3686
|
query: {
|
|
2257
3687
|
params: {
|
|
3688
|
+
data: string;
|
|
2258
3689
|
chainId: number;
|
|
2259
3690
|
to: string;
|
|
2260
|
-
data: string;
|
|
2261
3691
|
timestamp: number;
|
|
2262
3692
|
};
|
|
2263
3693
|
name: "EvmCallQuery";
|
|
2264
3694
|
hash: string;
|
|
2265
3695
|
};
|
|
3696
|
+
signature: string;
|
|
2266
3697
|
} | {
|
|
2267
3698
|
result: {
|
|
2268
|
-
value:
|
|
3699
|
+
value: {
|
|
3700
|
+
accountsInfo: {
|
|
3701
|
+
data: string;
|
|
3702
|
+
executable: boolean;
|
|
3703
|
+
owner: string;
|
|
3704
|
+
lamports: string;
|
|
3705
|
+
rentEpoch: string;
|
|
3706
|
+
}[];
|
|
3707
|
+
slot: string;
|
|
3708
|
+
};
|
|
2269
3709
|
};
|
|
2270
|
-
signature: string;
|
|
2271
3710
|
query: {
|
|
2272
3711
|
params: {
|
|
2273
3712
|
timestamp: number;
|
|
3713
|
+
publicKeys: string[];
|
|
3714
|
+
};
|
|
3715
|
+
name: "SvmAccountsInfoQuery";
|
|
3716
|
+
hash: string;
|
|
3717
|
+
};
|
|
3718
|
+
signature: string;
|
|
3719
|
+
} | {
|
|
3720
|
+
result: {
|
|
3721
|
+
value: string;
|
|
3722
|
+
};
|
|
3723
|
+
query: {
|
|
3724
|
+
params: {
|
|
2274
3725
|
token: {
|
|
2275
|
-
chainId: number;
|
|
2276
3726
|
address: string;
|
|
3727
|
+
chainId: number;
|
|
2277
3728
|
};
|
|
3729
|
+
timestamp: number;
|
|
2278
3730
|
};
|
|
2279
3731
|
name: "TokenPriceQuery";
|
|
2280
3732
|
hash: string;
|
|
2281
3733
|
};
|
|
3734
|
+
signature: string;
|
|
2282
3735
|
} | {
|
|
2283
3736
|
result: {
|
|
2284
3737
|
value: {
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
3738
|
+
timestamp: number;
|
|
3739
|
+
balances: {
|
|
3740
|
+
token: {
|
|
3741
|
+
address: string;
|
|
3742
|
+
chainId: number;
|
|
3743
|
+
};
|
|
3744
|
+
balance: string;
|
|
3745
|
+
}[];
|
|
3746
|
+
};
|
|
2291
3747
|
};
|
|
2292
|
-
signature: string;
|
|
2293
3748
|
query: {
|
|
2294
3749
|
params: {
|
|
2295
|
-
|
|
3750
|
+
owner: string;
|
|
2296
3751
|
tokens: {
|
|
2297
|
-
chainId: number;
|
|
2298
3752
|
address: string;
|
|
3753
|
+
chainId: number;
|
|
2299
3754
|
}[];
|
|
2300
|
-
owner: string;
|
|
2301
3755
|
usdMinAmount: string;
|
|
2302
3756
|
chainIds: number[];
|
|
2303
3757
|
tokenFilter: 0 | 1;
|
|
@@ -2305,24 +3759,60 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2305
3759
|
name: "RelevantTokensQuery";
|
|
2306
3760
|
hash: string;
|
|
2307
3761
|
};
|
|
3762
|
+
signature: string;
|
|
3763
|
+
} | {
|
|
3764
|
+
result: {
|
|
3765
|
+
value: {
|
|
3766
|
+
data: string;
|
|
3767
|
+
blockNumber: number;
|
|
3768
|
+
};
|
|
3769
|
+
};
|
|
3770
|
+
query: {
|
|
3771
|
+
params: {
|
|
3772
|
+
chainId: number;
|
|
3773
|
+
timestamp: number;
|
|
3774
|
+
subgraphId: string;
|
|
3775
|
+
query: string;
|
|
3776
|
+
};
|
|
3777
|
+
name: "SubgraphQuery";
|
|
3778
|
+
hash: string;
|
|
3779
|
+
};
|
|
3780
|
+
signature: string;
|
|
2308
3781
|
})[];
|
|
3782
|
+
signature: string;
|
|
3783
|
+
createdAt: Date;
|
|
3784
|
+
triggerType: 0 | 1;
|
|
3785
|
+
triggerData: string;
|
|
3786
|
+
hash: string;
|
|
3787
|
+
fuelUsed: number;
|
|
2309
3788
|
outputs: {
|
|
2310
|
-
|
|
2311
|
-
op: import("../shared").OpType;
|
|
3789
|
+
op: 0 | 1 | 2 | 3;
|
|
2312
3790
|
user: string;
|
|
2313
3791
|
settler: string;
|
|
2314
3792
|
nonce: string;
|
|
2315
3793
|
deadline: string;
|
|
3794
|
+
data: string;
|
|
2316
3795
|
maxFees: {
|
|
2317
3796
|
token: string;
|
|
2318
3797
|
amount: string;
|
|
2319
3798
|
}[];
|
|
3799
|
+
events: {
|
|
3800
|
+
data: string;
|
|
3801
|
+
topic: string;
|
|
3802
|
+
}[];
|
|
3803
|
+
configSig: string;
|
|
3804
|
+
minValidations: number;
|
|
2320
3805
|
hash: string;
|
|
2321
3806
|
}[];
|
|
2322
3807
|
relayer: string;
|
|
3808
|
+
validations?: {
|
|
3809
|
+
succeeded: boolean;
|
|
3810
|
+
signature: string;
|
|
3811
|
+
description?: string | undefined;
|
|
3812
|
+
}[] | undefined;
|
|
2323
3813
|
logs?: string[] | undefined;
|
|
2324
|
-
errorLogs?: string[] | undefined;
|
|
2325
3814
|
fee?: {
|
|
3815
|
+
trigger: number;
|
|
2326
3816
|
relayer: number;
|
|
2327
3817
|
oracles: number;
|
|
2328
3818
|
validator: number;
|
|
@@ -2330,32 +3820,47 @@ export declare const ExecutionsResponseValidator: z.ZodArray<z.ZodObject<z.objec
|
|
|
2330
3820
|
protocol: number;
|
|
2331
3821
|
total: number;
|
|
2332
3822
|
} | undefined;
|
|
2333
|
-
|
|
3823
|
+
solverFees?: {
|
|
3824
|
+
amount: number;
|
|
3825
|
+
address: string;
|
|
3826
|
+
}[] | undefined;
|
|
2334
3827
|
}>, "many">;
|
|
2335
|
-
export declare const ExecutionValidationRequestValidator: z.ZodObject<{
|
|
3828
|
+
export declare const ExecutionValidationRequestValidator: z.ZodObject<z.objectUtil.extendShape<{
|
|
2336
3829
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2337
|
-
|
|
3830
|
+
succeeded: z.ZodBoolean;
|
|
3831
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3832
|
+
}, {
|
|
3833
|
+
intentsValidations: z.ZodArray<z.ZodObject<{
|
|
3834
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
2338
3835
|
intent: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2339
3836
|
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2340
3837
|
}, "strip", z.ZodTypeAny, {
|
|
2341
3838
|
intent: string;
|
|
3839
|
+
chainId: number;
|
|
2342
3840
|
signature: string;
|
|
2343
3841
|
}, {
|
|
2344
3842
|
intent: string;
|
|
3843
|
+
chainId: number;
|
|
2345
3844
|
signature: string;
|
|
2346
3845
|
}>, "many">;
|
|
2347
|
-
}
|
|
3846
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3847
|
+
succeeded: boolean;
|
|
2348
3848
|
signature: string;
|
|
2349
|
-
|
|
3849
|
+
intentsValidations: {
|
|
2350
3850
|
intent: string;
|
|
3851
|
+
chainId: number;
|
|
2351
3852
|
signature: string;
|
|
2352
3853
|
}[];
|
|
3854
|
+
description?: string | undefined;
|
|
2353
3855
|
}, {
|
|
3856
|
+
succeeded: boolean;
|
|
2354
3857
|
signature: string;
|
|
2355
|
-
|
|
3858
|
+
intentsValidations: {
|
|
2356
3859
|
intent: string;
|
|
3860
|
+
chainId: number;
|
|
2357
3861
|
signature: string;
|
|
2358
3862
|
}[];
|
|
3863
|
+
description?: string | undefined;
|
|
2359
3864
|
}>;
|
|
2360
3865
|
export declare const OracleFeeValidator: z.ZodObject<{
|
|
2361
3866
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|