hermes-swap 0.0.14 → 0.0.15
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/cjs/abis/aggregator.js +427 -427
- package/dist/cjs/abis/quoter.js +305 -305
- package/dist/cjs/index.js +64 -2
- package/dist/esm/abis/aggregator.js +436 -436
- package/dist/esm/abis/quoter.js +296 -296
- package/dist/esm/index.js +138 -4
- package/package.json +1 -1
package/dist/cjs/abis/quoter.js
CHANGED
|
@@ -24,501 +24,501 @@ __export(quoter_exports, {
|
|
|
24
24
|
module.exports = __toCommonJS(quoter_exports);
|
|
25
25
|
var QuoterAbi = [
|
|
26
26
|
{
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
type: "constructor",
|
|
28
|
+
inputs: [
|
|
29
29
|
{
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
name: "_owner",
|
|
31
|
+
type: "address",
|
|
32
|
+
internalType: "address"
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
name: "_executor",
|
|
36
|
+
type: "address",
|
|
37
|
+
internalType: "address"
|
|
38
38
|
}
|
|
39
39
|
],
|
|
40
|
-
|
|
40
|
+
stateMutability: "nonpayable"
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
type: "function",
|
|
44
|
+
name: "addContract",
|
|
45
|
+
inputs: [
|
|
46
46
|
{
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
name: "contractType",
|
|
48
|
+
type: "string",
|
|
49
|
+
internalType: "string"
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
name: "contractAddress",
|
|
53
|
+
type: "address",
|
|
54
|
+
internalType: "address"
|
|
55
55
|
}
|
|
56
56
|
],
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
outputs: [],
|
|
58
|
+
stateMutability: "nonpayable"
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
type: "function",
|
|
62
|
+
name: "batchMultiQuote",
|
|
63
|
+
inputs: [
|
|
64
64
|
{
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
65
|
+
name: "amountInArr",
|
|
66
|
+
type: "uint256[]",
|
|
67
|
+
internalType: "uint256[]"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
70
|
+
name: "quoteParamsArr",
|
|
71
|
+
type: "tuple[][]",
|
|
72
|
+
internalType: "struct MultiQuoteParam[][]",
|
|
73
|
+
components: [
|
|
74
74
|
{
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
75
|
+
name: "dexType",
|
|
76
|
+
type: "string",
|
|
77
|
+
internalType: "string"
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
80
|
+
name: "pool",
|
|
81
|
+
type: "address",
|
|
82
|
+
internalType: "address"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
85
|
+
name: "fromCoin",
|
|
86
|
+
type: "address",
|
|
87
|
+
internalType: "address"
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
90
|
+
name: "toCoin",
|
|
91
|
+
type: "address",
|
|
92
|
+
internalType: "address"
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
95
|
+
name: "extra",
|
|
96
|
+
type: "bytes",
|
|
97
|
+
internalType: "bytes"
|
|
98
98
|
}
|
|
99
99
|
]
|
|
100
100
|
}
|
|
101
101
|
],
|
|
102
|
-
|
|
102
|
+
outputs: [
|
|
103
103
|
{
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
104
|
+
name: "amountOutListArr",
|
|
105
|
+
type: "uint256[][]",
|
|
106
|
+
internalType: "uint256[][]"
|
|
107
107
|
}
|
|
108
108
|
],
|
|
109
|
-
|
|
109
|
+
stateMutability: "view"
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
112
|
+
type: "function",
|
|
113
|
+
name: "contractList",
|
|
114
|
+
inputs: [
|
|
115
115
|
{
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
116
|
+
name: "",
|
|
117
|
+
type: "uint256",
|
|
118
|
+
internalType: "uint256"
|
|
119
119
|
}
|
|
120
120
|
],
|
|
121
|
-
|
|
121
|
+
outputs: [
|
|
122
122
|
{
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
123
|
+
name: "contractType",
|
|
124
|
+
type: "string",
|
|
125
|
+
internalType: "string"
|
|
126
126
|
},
|
|
127
127
|
{
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
128
|
+
name: "contractAddress",
|
|
129
|
+
type: "address",
|
|
130
|
+
internalType: "address"
|
|
131
131
|
}
|
|
132
132
|
],
|
|
133
|
-
|
|
133
|
+
stateMutability: "view"
|
|
134
134
|
},
|
|
135
135
|
{
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
136
|
+
type: "function",
|
|
137
|
+
name: "contractMap",
|
|
138
|
+
inputs: [
|
|
139
139
|
{
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
140
|
+
name: "",
|
|
141
|
+
type: "string",
|
|
142
|
+
internalType: "string"
|
|
143
143
|
}
|
|
144
144
|
],
|
|
145
|
-
|
|
145
|
+
outputs: [
|
|
146
146
|
{
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
147
|
+
name: "",
|
|
148
|
+
type: "address",
|
|
149
|
+
internalType: "address"
|
|
150
150
|
}
|
|
151
151
|
],
|
|
152
|
-
|
|
152
|
+
stateMutability: "view"
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
{
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
155
|
+
type: "function",
|
|
156
|
+
name: "executor",
|
|
157
|
+
inputs: [],
|
|
158
|
+
outputs: [
|
|
159
|
+
{
|
|
160
|
+
name: "",
|
|
161
|
+
type: "address",
|
|
162
|
+
internalType: "address"
|
|
163
163
|
}
|
|
164
164
|
],
|
|
165
|
-
|
|
165
|
+
stateMutability: "view"
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
{
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
168
|
+
type: "function",
|
|
169
|
+
name: "getAddressList",
|
|
170
|
+
inputs: [],
|
|
171
|
+
outputs: [
|
|
172
|
+
{
|
|
173
|
+
name: "",
|
|
174
|
+
type: "address[]",
|
|
175
|
+
internalType: "address[]"
|
|
176
176
|
}
|
|
177
177
|
],
|
|
178
|
-
|
|
178
|
+
stateMutability: "view"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
181
|
+
type: "function",
|
|
182
|
+
name: "isAddressist",
|
|
183
|
+
inputs: [
|
|
184
184
|
{
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
185
|
+
name: "_address",
|
|
186
|
+
type: "address",
|
|
187
|
+
internalType: "address"
|
|
188
188
|
}
|
|
189
189
|
],
|
|
190
|
-
|
|
190
|
+
outputs: [
|
|
191
191
|
{
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
192
|
+
name: "",
|
|
193
|
+
type: "bool",
|
|
194
|
+
internalType: "bool"
|
|
195
195
|
}
|
|
196
196
|
],
|
|
197
|
-
|
|
197
|
+
stateMutability: "view"
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
200
|
+
type: "function",
|
|
201
|
+
name: "isWhitelist",
|
|
202
|
+
inputs: [
|
|
203
203
|
{
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
204
|
+
name: "_address",
|
|
205
|
+
type: "address",
|
|
206
|
+
internalType: "address"
|
|
207
207
|
}
|
|
208
208
|
],
|
|
209
|
-
|
|
209
|
+
outputs: [
|
|
210
210
|
{
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
211
|
+
name: "",
|
|
212
|
+
type: "bool",
|
|
213
|
+
internalType: "bool"
|
|
214
214
|
}
|
|
215
215
|
],
|
|
216
|
-
|
|
216
|
+
stateMutability: "view"
|
|
217
217
|
},
|
|
218
218
|
{
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
219
|
+
type: "function",
|
|
220
|
+
name: "multiQuote",
|
|
221
|
+
inputs: [
|
|
222
222
|
{
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
223
|
+
name: "amountIn",
|
|
224
|
+
type: "uint256",
|
|
225
|
+
internalType: "uint256"
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
228
|
+
name: "quoteParams",
|
|
229
|
+
type: "tuple[]",
|
|
230
|
+
internalType: "struct MultiQuoteParam[]",
|
|
231
|
+
components: [
|
|
232
232
|
{
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
233
|
+
name: "dexType",
|
|
234
|
+
type: "string",
|
|
235
|
+
internalType: "string"
|
|
236
236
|
},
|
|
237
237
|
{
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
238
|
+
name: "pool",
|
|
239
|
+
type: "address",
|
|
240
|
+
internalType: "address"
|
|
241
241
|
},
|
|
242
242
|
{
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
243
|
+
name: "fromCoin",
|
|
244
|
+
type: "address",
|
|
245
|
+
internalType: "address"
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
248
|
+
name: "toCoin",
|
|
249
|
+
type: "address",
|
|
250
|
+
internalType: "address"
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
253
|
+
name: "extra",
|
|
254
|
+
type: "bytes",
|
|
255
|
+
internalType: "bytes"
|
|
256
256
|
}
|
|
257
257
|
]
|
|
258
258
|
}
|
|
259
259
|
],
|
|
260
|
-
|
|
260
|
+
outputs: [
|
|
261
261
|
{
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
262
|
+
name: "amountOutList",
|
|
263
|
+
type: "uint256[]",
|
|
264
|
+
internalType: "uint256[]"
|
|
265
265
|
}
|
|
266
266
|
],
|
|
267
|
-
|
|
267
|
+
stateMutability: "view"
|
|
268
268
|
},
|
|
269
269
|
{
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
{
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
270
|
+
type: "function",
|
|
271
|
+
name: "owner",
|
|
272
|
+
inputs: [],
|
|
273
|
+
outputs: [
|
|
274
|
+
{
|
|
275
|
+
name: "",
|
|
276
|
+
type: "address",
|
|
277
|
+
internalType: "address"
|
|
278
278
|
}
|
|
279
279
|
],
|
|
280
|
-
|
|
280
|
+
stateMutability: "view"
|
|
281
281
|
},
|
|
282
282
|
{
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
{
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
283
|
+
type: "function",
|
|
284
|
+
name: "quote",
|
|
285
|
+
inputs: [
|
|
286
|
+
{
|
|
287
|
+
name: "quoteParam",
|
|
288
|
+
type: "tuple",
|
|
289
|
+
internalType: "struct SingleQuoteParam",
|
|
290
|
+
components: [
|
|
291
291
|
{
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
292
|
+
name: "amountIn",
|
|
293
|
+
type: "uint256",
|
|
294
|
+
internalType: "uint256"
|
|
295
295
|
},
|
|
296
296
|
{
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
297
|
+
name: "dexType",
|
|
298
|
+
type: "string",
|
|
299
|
+
internalType: "string"
|
|
300
300
|
},
|
|
301
301
|
{
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
302
|
+
name: "pool",
|
|
303
|
+
type: "address",
|
|
304
|
+
internalType: "address"
|
|
305
305
|
},
|
|
306
306
|
{
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
307
|
+
name: "fromCoin",
|
|
308
|
+
type: "address",
|
|
309
|
+
internalType: "address"
|
|
310
310
|
},
|
|
311
311
|
{
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
312
|
+
name: "toCoin",
|
|
313
|
+
type: "address",
|
|
314
|
+
internalType: "address"
|
|
315
315
|
},
|
|
316
316
|
{
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
317
|
+
name: "extra",
|
|
318
|
+
type: "bytes",
|
|
319
|
+
internalType: "bytes"
|
|
320
320
|
}
|
|
321
321
|
]
|
|
322
322
|
}
|
|
323
323
|
],
|
|
324
|
-
|
|
324
|
+
outputs: [
|
|
325
325
|
{
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
326
|
+
name: "amountOut",
|
|
327
|
+
type: "uint256",
|
|
328
|
+
internalType: "uint256"
|
|
329
329
|
}
|
|
330
330
|
],
|
|
331
|
-
|
|
331
|
+
stateMutability: "view"
|
|
332
332
|
},
|
|
333
333
|
{
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
{
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
334
|
+
type: "function",
|
|
335
|
+
name: "quoteBridge",
|
|
336
|
+
inputs: [
|
|
337
|
+
{
|
|
338
|
+
name: "bridgeParams",
|
|
339
|
+
type: "tuple",
|
|
340
|
+
internalType: "struct BridgeParams",
|
|
341
|
+
components: [
|
|
342
342
|
{
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
343
|
+
name: "bridge",
|
|
344
|
+
type: "string",
|
|
345
|
+
internalType: "string"
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
348
|
+
name: "bridgeParam",
|
|
349
|
+
type: "tuple",
|
|
350
|
+
internalType: "struct BridgeParam",
|
|
351
|
+
components: [
|
|
352
352
|
{
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
353
|
+
name: "token",
|
|
354
|
+
type: "address",
|
|
355
|
+
internalType: "address"
|
|
356
356
|
},
|
|
357
357
|
{
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
358
|
+
name: "amount",
|
|
359
|
+
type: "uint256",
|
|
360
|
+
internalType: "uint256"
|
|
361
361
|
},
|
|
362
362
|
{
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
363
|
+
name: "bridgeAddress",
|
|
364
|
+
type: "address",
|
|
365
|
+
internalType: "address"
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
368
|
+
name: "refundAddress",
|
|
369
|
+
type: "address",
|
|
370
|
+
internalType: "address"
|
|
371
371
|
},
|
|
372
372
|
{
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
373
|
+
name: "destinationChain",
|
|
374
|
+
type: "string",
|
|
375
|
+
internalType: "string"
|
|
376
376
|
},
|
|
377
377
|
{
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
378
|
+
name: "adapterParams",
|
|
379
|
+
type: "bytes",
|
|
380
|
+
internalType: "bytes"
|
|
381
381
|
}
|
|
382
382
|
]
|
|
383
383
|
}
|
|
384
384
|
]
|
|
385
385
|
}
|
|
386
386
|
],
|
|
387
|
-
|
|
387
|
+
outputs: [
|
|
388
388
|
{
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
389
|
+
name: "bridgeFee",
|
|
390
|
+
type: "uint256",
|
|
391
|
+
internalType: "uint256"
|
|
392
392
|
}
|
|
393
393
|
],
|
|
394
|
-
|
|
394
|
+
stateMutability: "view"
|
|
395
395
|
},
|
|
396
396
|
{
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
397
|
+
type: "function",
|
|
398
|
+
name: "removeContract",
|
|
399
|
+
inputs: [
|
|
400
400
|
{
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
401
|
+
name: "contractType",
|
|
402
|
+
type: "string",
|
|
403
|
+
internalType: "string"
|
|
404
404
|
}
|
|
405
405
|
],
|
|
406
|
-
|
|
407
|
-
|
|
406
|
+
outputs: [],
|
|
407
|
+
stateMutability: "nonpayable"
|
|
408
408
|
},
|
|
409
409
|
{
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
410
|
+
type: "function",
|
|
411
|
+
name: "setExecutor",
|
|
412
|
+
inputs: [
|
|
413
413
|
{
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
414
|
+
name: "_executor",
|
|
415
|
+
type: "address",
|
|
416
|
+
internalType: "address"
|
|
417
417
|
}
|
|
418
418
|
],
|
|
419
|
-
|
|
420
|
-
|
|
419
|
+
outputs: [],
|
|
420
|
+
stateMutability: "nonpayable"
|
|
421
421
|
},
|
|
422
422
|
{
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
423
|
+
type: "function",
|
|
424
|
+
name: "updateContract",
|
|
425
|
+
inputs: [
|
|
426
426
|
{
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
427
|
+
name: "contractType",
|
|
428
|
+
type: "string",
|
|
429
|
+
internalType: "string"
|
|
430
430
|
},
|
|
431
431
|
{
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
432
|
+
name: "contractAddress",
|
|
433
|
+
type: "address",
|
|
434
|
+
internalType: "address"
|
|
435
435
|
}
|
|
436
436
|
],
|
|
437
|
-
|
|
438
|
-
|
|
437
|
+
outputs: [],
|
|
438
|
+
stateMutability: "nonpayable"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
441
|
+
type: "function",
|
|
442
|
+
name: "whitelistMap",
|
|
443
|
+
inputs: [
|
|
444
444
|
{
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
445
|
+
name: "",
|
|
446
|
+
type: "address",
|
|
447
|
+
internalType: "address"
|
|
448
448
|
}
|
|
449
449
|
],
|
|
450
|
-
|
|
450
|
+
outputs: [
|
|
451
451
|
{
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
452
|
+
name: "",
|
|
453
|
+
type: "bool",
|
|
454
|
+
internalType: "bool"
|
|
455
455
|
}
|
|
456
456
|
],
|
|
457
|
-
|
|
457
|
+
stateMutability: "view"
|
|
458
458
|
},
|
|
459
459
|
{
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
{
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
460
|
+
type: "event",
|
|
461
|
+
name: "ContractAdded",
|
|
462
|
+
inputs: [
|
|
463
|
+
{
|
|
464
|
+
name: "contractType",
|
|
465
|
+
type: "string",
|
|
466
|
+
indexed: false,
|
|
467
|
+
internalType: "string"
|
|
468
468
|
},
|
|
469
469
|
{
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
470
|
+
name: "contractAddress",
|
|
471
|
+
type: "address",
|
|
472
|
+
indexed: false,
|
|
473
|
+
internalType: "address"
|
|
474
474
|
}
|
|
475
475
|
],
|
|
476
|
-
|
|
476
|
+
anonymous: false
|
|
477
477
|
},
|
|
478
478
|
{
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
{
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
479
|
+
type: "event",
|
|
480
|
+
name: "ContractRemoved",
|
|
481
|
+
inputs: [
|
|
482
|
+
{
|
|
483
|
+
name: "contractType",
|
|
484
|
+
type: "string",
|
|
485
|
+
indexed: false,
|
|
486
|
+
internalType: "string"
|
|
487
487
|
}
|
|
488
488
|
],
|
|
489
|
-
|
|
489
|
+
anonymous: false
|
|
490
490
|
},
|
|
491
491
|
{
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
{
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
492
|
+
type: "event",
|
|
493
|
+
name: "ContractUpdated",
|
|
494
|
+
inputs: [
|
|
495
|
+
{
|
|
496
|
+
name: "contractType",
|
|
497
|
+
type: "string",
|
|
498
|
+
indexed: false,
|
|
499
|
+
internalType: "string"
|
|
500
500
|
},
|
|
501
501
|
{
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
502
|
+
name: "contractAddress",
|
|
503
|
+
type: "address",
|
|
504
|
+
indexed: false,
|
|
505
|
+
internalType: "address"
|
|
506
506
|
}
|
|
507
507
|
],
|
|
508
|
-
|
|
508
|
+
anonymous: false
|
|
509
509
|
},
|
|
510
510
|
{
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
{
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
511
|
+
type: "event",
|
|
512
|
+
name: "ExecutorUpdated",
|
|
513
|
+
inputs: [
|
|
514
|
+
{
|
|
515
|
+
name: "executor",
|
|
516
|
+
type: "address",
|
|
517
|
+
indexed: false,
|
|
518
|
+
internalType: "address"
|
|
519
519
|
}
|
|
520
520
|
],
|
|
521
|
-
|
|
521
|
+
anonymous: false
|
|
522
522
|
}
|
|
523
523
|
];
|
|
524
524
|
var quoter_default = QuoterAbi;
|