-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulticall-unit.js
558 lines (524 loc) · 16.6 KB
/
multicall-unit.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
import { TransactionReceipt } from 'ethers';
import { Multicall3Abi } from '../abis/index.js';
import { CallMutability } from '../entities/index.js';
import { config } from '../config.js';
import { isStaticArray } from '../helpers/index.js';
import { MULTICALL_ERRORS } from '../errors/index.js';
import { Contract } from '../contract/index.js';
import {
checkSignals,
raceWithSignals,
waitWithSignals,
} from '../utils/index.js';
import { multicallGenerateTag } from './multicall-generate-tag.js';
import { multicallNormalizeTags } from './multicall-normalize-tags.js';
import { multicallSplitCalls } from './multicall-split-calls.js';
const aggregate3 = 'aggregate3';
/**
* MulticallUnit extends the Contract class to support batching multiple contract calls
* into a single transaction or RPC call using the Multicall3 standard.
* It supports static and mutable calls, result tagging, and decoding.
*/
export class MulticallUnit extends Contract {
/**
* Stores tagged contract calls.
* @protected
* @readonly
* @type {Map<import('../../types/entities').Tagable, ContractCall>}
*/
_units = new Map();
/**
* Stores raw responses from multicall (success flags and data).
* @protected
* @type {import('../../types/multicall').MulticallResponse[]}
*/
_response = [];
/**
* Stores raw data from each tagged result.
* @protected
* @readonly
* @type {Map<import('../../types/entities').Tagable, string>}
*/
_rawData = new Map();
/**
* Stores success status for each call tag.
* @protected
* @readonly
* @type {Map<import('../../types/entities').Tagable, boolean>}
*/
_callsSuccess = new Map();
/**
* Last overall success status of multicall execution.
* @protected
* @type {boolean | undefined}
*/
_lastSuccess;
/**
* Whether multicall execution is currently in progress.
* @protected
* @type {boolean}
*/
_isExecuting = false;
/**
* Multicall configuration options.
* @protected
* @readonly
* @type {import('../../types/entities').MulticallOptions}
*/
_multicallOptions = {};
/**
* @param {import('ethers').Provider | import('ethers').Signer} driver
* @param {import('../../types/entities').MulticallOptions} [options={}]
* @param {string} [multicallAddress=MULTICALL_ADDRESS]
*/
constructor(
driver,
options = {},
multicallAddress = config.multicallUnit.address
) {
super(Multicall3Abi, multicallAddress, driver);
this._multicallOptions = {
maxStaticCallsStack: config.multicallUnit.staticCalls.batchLimit,
maxMutableCallsStack: config.multicallUnit.mutableCalls.batchLimit,
waitForTxs: config.multicallUnit.waitForTxs,
waitCallsTimeoutMs: config.multicallUnit.waitCalls.timeoutMs,
batchDelayMs: config.multicallUnit.batchDelayMs,
...options,
};
}
/**
* Resets internal state: clears stored calls, responses, and results.
* @public
* @returns {void}
*/
clear() {
this._units = new Map();
this._response = [];
this._rawData = new Map();
this._callsSuccess = new Map();
this._lastSuccess = undefined;
}
/**
* Adds a contract call to the batch with associated tags.
* @public
* @param {import('../../types/entities').ContractCall} contractCall
* @param {import('../../types/entities').MulticallTags} [tags=multicallGenerateTag()]
* @returns {import('../../types/entities').MulticallTags}
*/
add(contractCall, tags = multicallGenerateTag()) {
this._units.set(multicallNormalizeTags(tags), contractCall);
return tags;
}
/**
* Adds a batch of contract call with associated tags.
* @public
* @param {import('../../types/entities').MulticallAssociatedCall[]} associatedCalls
* @returns {import('../../types/entities').MulticallTags[]}
*/
addBatch(associatedCalls) {
return associatedCalls.map((c) => this.add(c.call, c.tags));
}
/**
* Returns the list of normalized tags in order of addition.
* @public
* @returns {import('../../types/entities').Tagable[]}
*/
get tags() {
return Array.from(this._units.keys()); // The order is guaranteed
}
/**
* Returns the list of added contract calls in order of addition.
* @public
* @returns {import('../../types/entities').ContractCall[]}
*/
get calls() {
return Array.from(this._units.values()); // The order is guaranteed
}
/**
* Returns the raw response array for all calls.
* @public
* @returns {import('../../types/multicall').MulticallResponse[]}
*/
get response() {
return this._response;
}
/**
* Returns whether the last multicall run succeeded entirely.
* @public
* @returns {boolean | undefined}
*/
get success() {
return this._lastSuccess;
}
/**
* Determines whether all current calls are static.
* @public
* @returns {boolean}
*/
get static() {
if (!this._units.size) return true;
return isStaticArray(this.calls);
}
/**
* Indicates if a multicall run is in progress.
* @public
* @returns {boolean}
*/
get executing() {
return this._isExecuting;
}
/**
* Returns success status for a specific tag.
* @public
* @param {import('../../types/entities').MulticallTags} tags
* @returns {boolean | undefined}
*/
isSuccess(tags) {
return this._callsSuccess.get(multicallNormalizeTags(tags));
}
/**
* Returns raw result data for a specific tag.
* @public
* @param {import('../../types/entities').MulticallTags} tags
* @returns {string | import('ethers').TransactionResponse | import('ethers').TransactionReceipt | undefined}
*/
getRaw(tags) {
return this._rawData.get(multicallNormalizeTags(tags));
}
/**
* @private
* @param {import('../../types/entities').MulticallTags} tags
* @returns {import('../../types/multicall').MulticallDecodableData | null}
*/
_getDecodableData(tags) {
const nTags = multicallNormalizeTags(tags);
const rawData = this._rawData.get(nTags);
const call = this._units.get(nTags);
if (
!rawData ||
typeof rawData !== 'string' || // rawData should be a string if it contains decodable data
!call ||
!this.isSuccess(nTags)
)
return null;
return {
call,
rawData,
};
}
/**
* Decodes and returns a smart result for the given tag.
* Automatically chooses the most appropriate return format based on ABI:
* - If the method has exactly one output (e.g. returns address or address[]), that value is returned directly.
* - If all outputs are named (e.g. returns (uint id, address user)), an object is returned.
* - Otherwise, an array of values is returned.
*
* If the call is mutable, and returns a transaction or receipt instead of data, it is returned as-is.
* @template T
* @param {import('../../types/entities').MulticallTags} tags
* @param {boolean} [deep=false]
* @returns {T | null}
*/
get(tags, deep = false) {
{
const raw = this.getRaw(tags);
if (!raw) return null;
if (typeof raw !== 'string') return raw; // Transaction or Receipt for mutable call
}
const data = this._getDecodableData(tags);
if (!data) return null;
const decoded = data.call.contractInterface.decodeFunctionResult(
data.call.method,
data.rawData
);
const outputs = data.call.contractInterface.getFunction(
data.call.method
).outputs;
if (!outputs || outputs.length === 0) {
return null;
}
// Only one output - returns just single (sometimes can work with arrays (like [address[]]))
if (outputs.length === 1) {
return decoded[0];
}
// Outputs are named in ABI - object can be formed
// If output is named - object is preferable
if (outputs.every((param) => !!param.name)) {
return decoded.toObject(deep);
}
// In other case - return array
return decoded.toArray(deep);
}
/**
* Like get(), but throws if the result is not found or cannot be decoded.
* @template T
* @param {import('../../types/entities').MulticallTags} tags
* @param {boolean} [deep=false]
* @returns {T}
*/
getOrThrow(tags, deep = false) {
const value = this.get(tags, deep);
if (value === null) throw MULTICALL_ERRORS.RESULT_NOT_FOUND;
return value;
}
/**
* Returns an array of all decoded results.
* @template T
* @param {boolean} [deep=false]
* @returns {T}
*/
getAll(deep = false) {
return this.tags.map((tag) => this.get(tag, deep));
}
/**
* Like getAll(), but throws if any result is not found.
* @template T
* @param {boolean} [deep=false]
* @returns {T}
*/
getAllOrThrow(deep = false) {
return this.tags.map((tag) => this.getOrThrow(tag, deep));
}
/**
* Returns a single decoded value (first output).
* @template T
* @public
* @param {import('../../types/entities').MulticallTags} tags
* @returns {T | null}
*/
getSingle(tags) {
const data = this._getDecodableData(tags);
if (!data) return null;
const [value] = data.call.contractInterface.decodeFunctionResult(
data.call.method,
data.rawData
);
return value;
}
/**
* Like getSingle(), but throws if result is not found.
* @template T
* @public
* @param {import('../../types/entities').MulticallTags} tags
* @returns {T}
*/
getSingleOrThrow(tags) {
const single = this.getSingle(tags);
if (single === null) throw MULTICALL_ERRORS.RESULT_NOT_FOUND;
return single;
}
/**
* Returns decoded result - tuple as an array.
* @template T
* @public
* @param {import('../../types/entities').MulticallTags} tags
* @param {boolean} [deep=false]
* @returns {T | null}
*/
getArray(tags, deep = false) {
const data = this._getDecodableData(tags);
if (data === null) return null;
return data.call.contractInterface
.decodeFunctionResult(data.call.method, data.rawData)
.toArray(deep);
}
/**
* Like getArray(), but throws if result is not found.
* @template T
* @public
* @param {import('../../types/entities').MulticallTags} tags
* @param {boolean} [deep=false]
* @returns {T}
*/
getArrayOrThrow(tags, deep = false) {
const array = this.getArray(tags, deep);
if (array === null) throw MULTICALL_ERRORS.RESULT_NOT_FOUND;
return array;
}
/**
* Returns decoded result - tuple as an object.
* @template T
* @public
* @param {import('../../types/entities').MulticallTags} tags
* @param {boolean} [deep=false]
* @returns {T | null}
*/
getObject(tags, deep = false) {
const data = this._getDecodableData(tags);
if (data === null) return null;
const decoded = data.call.contractInterface.decodeFunctionResult(
data.call.method,
data.rawData
);
return decoded.toObject(deep);
}
/**
* Like getObject(), but throws if result is not found.
* @template T
* @public
* @param {import('../../types/entities').MulticallTags} tags
* @returns {T}
*/
getObjectOrThrow(tags) {
const obj = this.getObject(tags);
if (obj === null) throw MULTICALL_ERRORS.RESULT_NOT_FOUND;
return obj;
}
/**
* Executes all added calls in batches, depending on their mutability.
* Fills internal response state, handles signal support and batch limits.
* @public
* @param {import('../../types/entities').MulticallOptions} [options={}]
* @returns {Promise<boolean>}
*/
async run(options = {}) {
const runOptions = {
...this._multicallOptions,
...options,
};
if (this._isExecuting) throw MULTICALL_ERRORS.SIMULTANEOUS_INVOCATIONS;
try {
this._isExecuting = true;
this._lastSuccess = undefined;
const tags = this.tags;
const calls = this.calls;
this._response = Array(tags.length).fill([undefined, null]);
checkSignals(runOptions.signals);
let staticCalls;
let staticIndexes;
let mutableCalls;
let mutableIndexes;
if (runOptions.forceMutability) {
if (runOptions.forceMutability === CallMutability.Static) {
staticCalls = calls;
staticIndexes = Array.from({ length: calls.length }, (_, i) => i);
mutableCalls = [];
mutableIndexes = [];
} else {
staticCalls = [];
staticIndexes = [];
mutableCalls = calls;
mutableIndexes = Array.from({ length: calls.length }, (_, i) => i);
}
} else {
const split = multicallSplitCalls(calls);
staticCalls = split.staticCalls;
staticIndexes = split.staticIndexes;
mutableCalls = split.mutableCalls;
mutableIndexes = split.mutableIndexes;
}
// Process mutable
for (
let i = 0;
i < mutableCalls.length;
i += runOptions.maxMutableCallsStack
) {
checkSignals(runOptions.signals);
const border = Math.min(
i + runOptions.maxMutableCallsStack,
mutableCalls.length
);
const iterationCalls = mutableCalls.slice(i, border); // half-opened interval
const iterationIndexes = mutableIndexes.slice(i, border); // half-opened interval
const iterationResponse = await this._processMutableCalls(
iterationCalls,
runOptions
);
this._saveResponse(iterationResponse, iterationIndexes, tags);
await waitWithSignals(runOptions.batchDelayMs, runOptions.signals);
}
// Process static
for (
let i = 0;
i < staticCalls.length;
i += runOptions.maxStaticCallsStack
) {
checkSignals(runOptions.signals);
const border = Math.min(
i + runOptions.maxStaticCallsStack,
staticCalls.length
);
const iterationCalls = staticCalls.slice(i, border); // half-opened interval
const iterationIndexes = staticIndexes.slice(i, border); // half-opened interval
const iterationResponse = await this._processStaticCalls(
iterationCalls,
runOptions
);
this._saveResponse(iterationResponse, iterationIndexes, tags);
await waitWithSignals(runOptions.batchDelayMs, runOptions.signals);
}
} catch (error) {
this._lastSuccess = false;
throw error;
} finally {
this._isExecuting = false;
}
return this._lastSuccess;
}
/**
* @private
* @param {import('../../types/entities').ContractCall[]} iterationCalls
* @param {import('../../types/entities').MulticallOptions} runOptions
* @returns {Promise<import('../../types/multicall').MulticallResponse[]>}
*/
async _processStaticCalls(iterationCalls, runOptions) {
const result = await this.call(aggregate3, [iterationCalls], {
forceMutability: CallMutability.Static,
signals: runOptions.signals,
timeoutMs: runOptions.staticCallsTimeoutMs,
});
this._lastSuccess = !(this._lastSuccess === false);
return result;
}
/**
* @private
* @param {import('../../types/entities').ContractCall[]} iterationCalls
* @param {import('../../types/entities').MulticallOptions} runOptions
* @returns {Promise<import('../../types/multicall').MulticallResponse[]>}
*/
async _processMutableCalls(iterationCalls, runOptions) {
let result;
const tx = await this.call(aggregate3, [iterationCalls], {
forceMutability: CallMutability.Mutable,
highPriorityTx: runOptions.highPriorityTxs,
priorityOptions: runOptions.priorityOptions,
signals: runOptions.signals,
timeoutMs: runOptions.mutableCallsTimeoutMs,
});
if (runOptions.waitForTxs) {
const receipt = await raceWithSignals(
() => tx.wait(),
runOptions.signals
);
if (!receipt) {
result = Array(iterationCalls.length).fill([false, null]);
this._lastSuccess = false;
} else {
result = Array(iterationCalls.length).fill([true, receipt]);
this._lastSuccess = !(this._lastSuccess === false);
}
} else {
result = Array(iterationCalls.length).fill([true, tx]);
this._lastSuccess = !(this._lastSuccess === false);
}
return result;
}
/**
* @private
* @param {import('../../types/multicall').MulticallResponse[]} iterationResponse
* @param {number[]} iterationIndexes
* @param {import('../../types/entities').Tagable[]} globalTags // Normalized
* @returns {void}
*/
_saveResponse(iterationResponse, iterationIndexes, globalTags) {
iterationResponse.forEach((el, index) => {
const [success, data] = el;
const globalIndex = iterationIndexes[index];
const tag = globalTags[globalIndex]; // Normalized
if (!success) this._lastSuccess = false;
this._rawData.set(tag, data);
this._callsSuccess.set(tag, success);
this._response[globalIndex] = el;
});
}
}