@gitmyabi-stg/vbill 0.0.1
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/README.md +108 -0
- package/contracts/DSToken.d.ts +2960 -0
- package/contracts/DSToken.js +3138 -0
- package/contracts/DSToken.ts +3904 -0
- package/contracts/ERC1967Proxy.d.ts +144 -0
- package/contracts/ERC1967Proxy.js +180 -0
- package/contracts/ERC1967Proxy.ts +209 -0
- package/contracts/index.d.ts +4 -0
- package/contracts/index.js +10 -0
- package/contracts/index.ts +5 -0
- package/index.d.ts +1 -0
- package/index.js +19 -0
- package/package.json +43 -0
|
@@ -0,0 +1,2960 @@
|
|
|
1
|
+
import type { Address, PublicClient, WalletClient } from 'viem';
|
|
2
|
+
/**
|
|
3
|
+
* DSToken ABI
|
|
4
|
+
*
|
|
5
|
+
* This ABI is typed using viem's type system for full type safety.
|
|
6
|
+
*/
|
|
7
|
+
export declare const DSTokenAbi: readonly [{
|
|
8
|
+
readonly inputs: readonly [{
|
|
9
|
+
readonly internalType: "address";
|
|
10
|
+
readonly name: "target";
|
|
11
|
+
readonly type: "address";
|
|
12
|
+
}];
|
|
13
|
+
readonly name: "AddressEmptyCode";
|
|
14
|
+
readonly type: "error";
|
|
15
|
+
}, {
|
|
16
|
+
readonly inputs: readonly [{
|
|
17
|
+
readonly internalType: "address";
|
|
18
|
+
readonly name: "implementation";
|
|
19
|
+
readonly type: "address";
|
|
20
|
+
}];
|
|
21
|
+
readonly name: "ERC1967InvalidImplementation";
|
|
22
|
+
readonly type: "error";
|
|
23
|
+
}, {
|
|
24
|
+
readonly inputs: readonly [];
|
|
25
|
+
readonly name: "ERC1967NonPayable";
|
|
26
|
+
readonly type: "error";
|
|
27
|
+
}, {
|
|
28
|
+
readonly inputs: readonly [];
|
|
29
|
+
readonly name: "FailedInnerCall";
|
|
30
|
+
readonly type: "error";
|
|
31
|
+
}, {
|
|
32
|
+
readonly inputs: readonly [];
|
|
33
|
+
readonly name: "InvalidInitialization";
|
|
34
|
+
readonly type: "error";
|
|
35
|
+
}, {
|
|
36
|
+
readonly inputs: readonly [];
|
|
37
|
+
readonly name: "NotInitializing";
|
|
38
|
+
readonly type: "error";
|
|
39
|
+
}, {
|
|
40
|
+
readonly inputs: readonly [{
|
|
41
|
+
readonly internalType: "address";
|
|
42
|
+
readonly name: "owner";
|
|
43
|
+
readonly type: "address";
|
|
44
|
+
}];
|
|
45
|
+
readonly name: "OwnableInvalidOwner";
|
|
46
|
+
readonly type: "error";
|
|
47
|
+
}, {
|
|
48
|
+
readonly inputs: readonly [{
|
|
49
|
+
readonly internalType: "address";
|
|
50
|
+
readonly name: "account";
|
|
51
|
+
readonly type: "address";
|
|
52
|
+
}];
|
|
53
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
54
|
+
readonly type: "error";
|
|
55
|
+
}, {
|
|
56
|
+
readonly inputs: readonly [];
|
|
57
|
+
readonly name: "UUPSUnauthorizedCallContext";
|
|
58
|
+
readonly type: "error";
|
|
59
|
+
}, {
|
|
60
|
+
readonly inputs: readonly [{
|
|
61
|
+
readonly internalType: "bytes32";
|
|
62
|
+
readonly name: "slot";
|
|
63
|
+
readonly type: "bytes32";
|
|
64
|
+
}];
|
|
65
|
+
readonly name: "UUPSUnsupportedProxiableUUID";
|
|
66
|
+
readonly type: "error";
|
|
67
|
+
}, {
|
|
68
|
+
readonly anonymous: false;
|
|
69
|
+
readonly inputs: readonly [{
|
|
70
|
+
readonly indexed: true;
|
|
71
|
+
readonly internalType: "address";
|
|
72
|
+
readonly name: "owner";
|
|
73
|
+
readonly type: "address";
|
|
74
|
+
}, {
|
|
75
|
+
readonly indexed: true;
|
|
76
|
+
readonly internalType: "address";
|
|
77
|
+
readonly name: "spender";
|
|
78
|
+
readonly type: "address";
|
|
79
|
+
}, {
|
|
80
|
+
readonly indexed: false;
|
|
81
|
+
readonly internalType: "uint256";
|
|
82
|
+
readonly name: "value";
|
|
83
|
+
readonly type: "uint256";
|
|
84
|
+
}];
|
|
85
|
+
readonly name: "Approval";
|
|
86
|
+
readonly type: "event";
|
|
87
|
+
}, {
|
|
88
|
+
readonly anonymous: false;
|
|
89
|
+
readonly inputs: readonly [{
|
|
90
|
+
readonly indexed: true;
|
|
91
|
+
readonly internalType: "address";
|
|
92
|
+
readonly name: "burner";
|
|
93
|
+
readonly type: "address";
|
|
94
|
+
}, {
|
|
95
|
+
readonly indexed: false;
|
|
96
|
+
readonly internalType: "uint256";
|
|
97
|
+
readonly name: "value";
|
|
98
|
+
readonly type: "uint256";
|
|
99
|
+
}, {
|
|
100
|
+
readonly indexed: false;
|
|
101
|
+
readonly internalType: "string";
|
|
102
|
+
readonly name: "reason";
|
|
103
|
+
readonly type: "string";
|
|
104
|
+
}];
|
|
105
|
+
readonly name: "Burn";
|
|
106
|
+
readonly type: "event";
|
|
107
|
+
}, {
|
|
108
|
+
readonly anonymous: false;
|
|
109
|
+
readonly inputs: readonly [{
|
|
110
|
+
readonly indexed: false;
|
|
111
|
+
readonly internalType: "uint256";
|
|
112
|
+
readonly name: "serviceId";
|
|
113
|
+
readonly type: "uint256";
|
|
114
|
+
}, {
|
|
115
|
+
readonly indexed: false;
|
|
116
|
+
readonly internalType: "address";
|
|
117
|
+
readonly name: "serviceAddress";
|
|
118
|
+
readonly type: "address";
|
|
119
|
+
}];
|
|
120
|
+
readonly name: "DSServiceSet";
|
|
121
|
+
readonly type: "event";
|
|
122
|
+
}, {
|
|
123
|
+
readonly anonymous: false;
|
|
124
|
+
readonly inputs: readonly [{
|
|
125
|
+
readonly indexed: false;
|
|
126
|
+
readonly internalType: "uint64";
|
|
127
|
+
readonly name: "version";
|
|
128
|
+
readonly type: "uint64";
|
|
129
|
+
}];
|
|
130
|
+
readonly name: "Initialized";
|
|
131
|
+
readonly type: "event";
|
|
132
|
+
}, {
|
|
133
|
+
readonly anonymous: false;
|
|
134
|
+
readonly inputs: readonly [{
|
|
135
|
+
readonly indexed: true;
|
|
136
|
+
readonly internalType: "address";
|
|
137
|
+
readonly name: "to";
|
|
138
|
+
readonly type: "address";
|
|
139
|
+
}, {
|
|
140
|
+
readonly indexed: false;
|
|
141
|
+
readonly internalType: "uint256";
|
|
142
|
+
readonly name: "value";
|
|
143
|
+
readonly type: "uint256";
|
|
144
|
+
}, {
|
|
145
|
+
readonly indexed: false;
|
|
146
|
+
readonly internalType: "uint256";
|
|
147
|
+
readonly name: "valueLocked";
|
|
148
|
+
readonly type: "uint256";
|
|
149
|
+
}];
|
|
150
|
+
readonly name: "Issue";
|
|
151
|
+
readonly type: "event";
|
|
152
|
+
}, {
|
|
153
|
+
readonly anonymous: false;
|
|
154
|
+
readonly inputs: readonly [{
|
|
155
|
+
readonly indexed: true;
|
|
156
|
+
readonly internalType: "address";
|
|
157
|
+
readonly name: "omnibusWallet";
|
|
158
|
+
readonly type: "address";
|
|
159
|
+
}, {
|
|
160
|
+
readonly indexed: false;
|
|
161
|
+
readonly internalType: "address";
|
|
162
|
+
readonly name: "who";
|
|
163
|
+
readonly type: "address";
|
|
164
|
+
}, {
|
|
165
|
+
readonly indexed: false;
|
|
166
|
+
readonly internalType: "uint256";
|
|
167
|
+
readonly name: "value";
|
|
168
|
+
readonly type: "uint256";
|
|
169
|
+
}, {
|
|
170
|
+
readonly indexed: false;
|
|
171
|
+
readonly internalType: "string";
|
|
172
|
+
readonly name: "reason";
|
|
173
|
+
readonly type: "string";
|
|
174
|
+
}, {
|
|
175
|
+
readonly indexed: false;
|
|
176
|
+
readonly internalType: "uint8";
|
|
177
|
+
readonly name: "assetTrackingMode";
|
|
178
|
+
readonly type: "uint8";
|
|
179
|
+
}];
|
|
180
|
+
readonly name: "OmnibusBurn";
|
|
181
|
+
readonly type: "event";
|
|
182
|
+
}, {
|
|
183
|
+
readonly anonymous: false;
|
|
184
|
+
readonly inputs: readonly [{
|
|
185
|
+
readonly indexed: true;
|
|
186
|
+
readonly internalType: "address";
|
|
187
|
+
readonly name: "omnibusWallet";
|
|
188
|
+
readonly type: "address";
|
|
189
|
+
}, {
|
|
190
|
+
readonly indexed: false;
|
|
191
|
+
readonly internalType: "address";
|
|
192
|
+
readonly name: "to";
|
|
193
|
+
readonly type: "address";
|
|
194
|
+
}, {
|
|
195
|
+
readonly indexed: false;
|
|
196
|
+
readonly internalType: "uint256";
|
|
197
|
+
readonly name: "value";
|
|
198
|
+
readonly type: "uint256";
|
|
199
|
+
}, {
|
|
200
|
+
readonly indexed: false;
|
|
201
|
+
readonly internalType: "uint8";
|
|
202
|
+
readonly name: "assetTrackingMode";
|
|
203
|
+
readonly type: "uint8";
|
|
204
|
+
}];
|
|
205
|
+
readonly name: "OmnibusDeposit";
|
|
206
|
+
readonly type: "event";
|
|
207
|
+
}, {
|
|
208
|
+
readonly anonymous: false;
|
|
209
|
+
readonly inputs: readonly [{
|
|
210
|
+
readonly indexed: true;
|
|
211
|
+
readonly internalType: "address";
|
|
212
|
+
readonly name: "omnibusWallet";
|
|
213
|
+
readonly type: "address";
|
|
214
|
+
}, {
|
|
215
|
+
readonly indexed: false;
|
|
216
|
+
readonly internalType: "address";
|
|
217
|
+
readonly name: "from";
|
|
218
|
+
readonly type: "address";
|
|
219
|
+
}, {
|
|
220
|
+
readonly indexed: false;
|
|
221
|
+
readonly internalType: "uint256";
|
|
222
|
+
readonly name: "value";
|
|
223
|
+
readonly type: "uint256";
|
|
224
|
+
}, {
|
|
225
|
+
readonly indexed: false;
|
|
226
|
+
readonly internalType: "string";
|
|
227
|
+
readonly name: "reason";
|
|
228
|
+
readonly type: "string";
|
|
229
|
+
}, {
|
|
230
|
+
readonly indexed: false;
|
|
231
|
+
readonly internalType: "uint8";
|
|
232
|
+
readonly name: "assetTrackingMode";
|
|
233
|
+
readonly type: "uint8";
|
|
234
|
+
}];
|
|
235
|
+
readonly name: "OmnibusSeize";
|
|
236
|
+
readonly type: "event";
|
|
237
|
+
}, {
|
|
238
|
+
readonly anonymous: false;
|
|
239
|
+
readonly inputs: readonly [{
|
|
240
|
+
readonly indexed: true;
|
|
241
|
+
readonly internalType: "address";
|
|
242
|
+
readonly name: "omnibusWallet";
|
|
243
|
+
readonly type: "address";
|
|
244
|
+
}, {
|
|
245
|
+
readonly indexed: false;
|
|
246
|
+
readonly internalType: "int256";
|
|
247
|
+
readonly name: "totalDelta";
|
|
248
|
+
readonly type: "int256";
|
|
249
|
+
}, {
|
|
250
|
+
readonly indexed: false;
|
|
251
|
+
readonly internalType: "int256";
|
|
252
|
+
readonly name: "accreditedDelta";
|
|
253
|
+
readonly type: "int256";
|
|
254
|
+
}, {
|
|
255
|
+
readonly indexed: false;
|
|
256
|
+
readonly internalType: "int256";
|
|
257
|
+
readonly name: "usAccreditedDelta";
|
|
258
|
+
readonly type: "int256";
|
|
259
|
+
}, {
|
|
260
|
+
readonly indexed: false;
|
|
261
|
+
readonly internalType: "int256";
|
|
262
|
+
readonly name: "usTotalDelta";
|
|
263
|
+
readonly type: "int256";
|
|
264
|
+
}, {
|
|
265
|
+
readonly indexed: false;
|
|
266
|
+
readonly internalType: "int256";
|
|
267
|
+
readonly name: "jpTotalDelta";
|
|
268
|
+
readonly type: "int256";
|
|
269
|
+
}];
|
|
270
|
+
readonly name: "OmnibusTBEOperation";
|
|
271
|
+
readonly type: "event";
|
|
272
|
+
}, {
|
|
273
|
+
readonly anonymous: false;
|
|
274
|
+
readonly inputs: readonly [{
|
|
275
|
+
readonly indexed: false;
|
|
276
|
+
readonly internalType: "address";
|
|
277
|
+
readonly name: "omnibusWallet";
|
|
278
|
+
readonly type: "address";
|
|
279
|
+
}, {
|
|
280
|
+
readonly indexed: false;
|
|
281
|
+
readonly internalType: "string";
|
|
282
|
+
readonly name: "externalId";
|
|
283
|
+
readonly type: "string";
|
|
284
|
+
}];
|
|
285
|
+
readonly name: "OmnibusTBETransfer";
|
|
286
|
+
readonly type: "event";
|
|
287
|
+
}, {
|
|
288
|
+
readonly anonymous: false;
|
|
289
|
+
readonly inputs: readonly [{
|
|
290
|
+
readonly indexed: true;
|
|
291
|
+
readonly internalType: "address";
|
|
292
|
+
readonly name: "omnibusWallet";
|
|
293
|
+
readonly type: "address";
|
|
294
|
+
}, {
|
|
295
|
+
readonly indexed: false;
|
|
296
|
+
readonly internalType: "address";
|
|
297
|
+
readonly name: "from";
|
|
298
|
+
readonly type: "address";
|
|
299
|
+
}, {
|
|
300
|
+
readonly indexed: false;
|
|
301
|
+
readonly internalType: "address";
|
|
302
|
+
readonly name: "to";
|
|
303
|
+
readonly type: "address";
|
|
304
|
+
}, {
|
|
305
|
+
readonly indexed: false;
|
|
306
|
+
readonly internalType: "uint256";
|
|
307
|
+
readonly name: "value";
|
|
308
|
+
readonly type: "uint256";
|
|
309
|
+
}, {
|
|
310
|
+
readonly indexed: false;
|
|
311
|
+
readonly internalType: "uint8";
|
|
312
|
+
readonly name: "assetTrackingMode";
|
|
313
|
+
readonly type: "uint8";
|
|
314
|
+
}];
|
|
315
|
+
readonly name: "OmnibusTransfer";
|
|
316
|
+
readonly type: "event";
|
|
317
|
+
}, {
|
|
318
|
+
readonly anonymous: false;
|
|
319
|
+
readonly inputs: readonly [{
|
|
320
|
+
readonly indexed: true;
|
|
321
|
+
readonly internalType: "address";
|
|
322
|
+
readonly name: "omnibusWallet";
|
|
323
|
+
readonly type: "address";
|
|
324
|
+
}, {
|
|
325
|
+
readonly indexed: false;
|
|
326
|
+
readonly internalType: "address";
|
|
327
|
+
readonly name: "from";
|
|
328
|
+
readonly type: "address";
|
|
329
|
+
}, {
|
|
330
|
+
readonly indexed: false;
|
|
331
|
+
readonly internalType: "uint256";
|
|
332
|
+
readonly name: "value";
|
|
333
|
+
readonly type: "uint256";
|
|
334
|
+
}, {
|
|
335
|
+
readonly indexed: false;
|
|
336
|
+
readonly internalType: "uint8";
|
|
337
|
+
readonly name: "assetTrackingMode";
|
|
338
|
+
readonly type: "uint8";
|
|
339
|
+
}];
|
|
340
|
+
readonly name: "OmnibusWithdraw";
|
|
341
|
+
readonly type: "event";
|
|
342
|
+
}, {
|
|
343
|
+
readonly anonymous: false;
|
|
344
|
+
readonly inputs: readonly [{
|
|
345
|
+
readonly indexed: true;
|
|
346
|
+
readonly internalType: "address";
|
|
347
|
+
readonly name: "previousOwner";
|
|
348
|
+
readonly type: "address";
|
|
349
|
+
}, {
|
|
350
|
+
readonly indexed: true;
|
|
351
|
+
readonly internalType: "address";
|
|
352
|
+
readonly name: "newOwner";
|
|
353
|
+
readonly type: "address";
|
|
354
|
+
}];
|
|
355
|
+
readonly name: "OwnershipTransferred";
|
|
356
|
+
readonly type: "event";
|
|
357
|
+
}, {
|
|
358
|
+
readonly anonymous: false;
|
|
359
|
+
readonly inputs: readonly [];
|
|
360
|
+
readonly name: "Pause";
|
|
361
|
+
readonly type: "event";
|
|
362
|
+
}, {
|
|
363
|
+
readonly anonymous: false;
|
|
364
|
+
readonly inputs: readonly [{
|
|
365
|
+
readonly indexed: true;
|
|
366
|
+
readonly internalType: "address";
|
|
367
|
+
readonly name: "from";
|
|
368
|
+
readonly type: "address";
|
|
369
|
+
}, {
|
|
370
|
+
readonly indexed: true;
|
|
371
|
+
readonly internalType: "address";
|
|
372
|
+
readonly name: "to";
|
|
373
|
+
readonly type: "address";
|
|
374
|
+
}, {
|
|
375
|
+
readonly indexed: false;
|
|
376
|
+
readonly internalType: "uint256";
|
|
377
|
+
readonly name: "value";
|
|
378
|
+
readonly type: "uint256";
|
|
379
|
+
}, {
|
|
380
|
+
readonly indexed: false;
|
|
381
|
+
readonly internalType: "string";
|
|
382
|
+
readonly name: "reason";
|
|
383
|
+
readonly type: "string";
|
|
384
|
+
}];
|
|
385
|
+
readonly name: "Seize";
|
|
386
|
+
readonly type: "event";
|
|
387
|
+
}, {
|
|
388
|
+
readonly anonymous: false;
|
|
389
|
+
readonly inputs: readonly [{
|
|
390
|
+
readonly indexed: true;
|
|
391
|
+
readonly internalType: "address";
|
|
392
|
+
readonly name: "from";
|
|
393
|
+
readonly type: "address";
|
|
394
|
+
}, {
|
|
395
|
+
readonly indexed: true;
|
|
396
|
+
readonly internalType: "address";
|
|
397
|
+
readonly name: "to";
|
|
398
|
+
readonly type: "address";
|
|
399
|
+
}, {
|
|
400
|
+
readonly indexed: false;
|
|
401
|
+
readonly internalType: "uint256";
|
|
402
|
+
readonly name: "value";
|
|
403
|
+
readonly type: "uint256";
|
|
404
|
+
}];
|
|
405
|
+
readonly name: "Transfer";
|
|
406
|
+
readonly type: "event";
|
|
407
|
+
}, {
|
|
408
|
+
readonly anonymous: false;
|
|
409
|
+
readonly inputs: readonly [];
|
|
410
|
+
readonly name: "Unpause";
|
|
411
|
+
readonly type: "event";
|
|
412
|
+
}, {
|
|
413
|
+
readonly anonymous: false;
|
|
414
|
+
readonly inputs: readonly [{
|
|
415
|
+
readonly indexed: true;
|
|
416
|
+
readonly internalType: "address";
|
|
417
|
+
readonly name: "implementation";
|
|
418
|
+
readonly type: "address";
|
|
419
|
+
}];
|
|
420
|
+
readonly name: "Upgraded";
|
|
421
|
+
readonly type: "event";
|
|
422
|
+
}, {
|
|
423
|
+
readonly anonymous: false;
|
|
424
|
+
readonly inputs: readonly [{
|
|
425
|
+
readonly indexed: false;
|
|
426
|
+
readonly internalType: "address";
|
|
427
|
+
readonly name: "wallet";
|
|
428
|
+
readonly type: "address";
|
|
429
|
+
}];
|
|
430
|
+
readonly name: "WalletAdded";
|
|
431
|
+
readonly type: "event";
|
|
432
|
+
}, {
|
|
433
|
+
readonly anonymous: false;
|
|
434
|
+
readonly inputs: readonly [{
|
|
435
|
+
readonly indexed: false;
|
|
436
|
+
readonly internalType: "address";
|
|
437
|
+
readonly name: "wallet";
|
|
438
|
+
readonly type: "address";
|
|
439
|
+
}];
|
|
440
|
+
readonly name: "WalletRemoved";
|
|
441
|
+
readonly type: "event";
|
|
442
|
+
}, {
|
|
443
|
+
readonly inputs: readonly [];
|
|
444
|
+
readonly name: "COMPLIANCE_CONFIGURATION_SERVICE";
|
|
445
|
+
readonly outputs: readonly [{
|
|
446
|
+
readonly internalType: "uint256";
|
|
447
|
+
readonly name: "";
|
|
448
|
+
readonly type: "uint256";
|
|
449
|
+
}];
|
|
450
|
+
readonly stateMutability: "view";
|
|
451
|
+
readonly type: "function";
|
|
452
|
+
}, {
|
|
453
|
+
readonly inputs: readonly [];
|
|
454
|
+
readonly name: "COMPLIANCE_SERVICE";
|
|
455
|
+
readonly outputs: readonly [{
|
|
456
|
+
readonly internalType: "uint256";
|
|
457
|
+
readonly name: "";
|
|
458
|
+
readonly type: "uint256";
|
|
459
|
+
}];
|
|
460
|
+
readonly stateMutability: "view";
|
|
461
|
+
readonly type: "function";
|
|
462
|
+
}, {
|
|
463
|
+
readonly inputs: readonly [];
|
|
464
|
+
readonly name: "DS_TOKEN";
|
|
465
|
+
readonly outputs: readonly [{
|
|
466
|
+
readonly internalType: "uint256";
|
|
467
|
+
readonly name: "";
|
|
468
|
+
readonly type: "uint256";
|
|
469
|
+
}];
|
|
470
|
+
readonly stateMutability: "view";
|
|
471
|
+
readonly type: "function";
|
|
472
|
+
}, {
|
|
473
|
+
readonly inputs: readonly [];
|
|
474
|
+
readonly name: "ISSUER_MULTICALL";
|
|
475
|
+
readonly outputs: readonly [{
|
|
476
|
+
readonly internalType: "uint256";
|
|
477
|
+
readonly name: "";
|
|
478
|
+
readonly type: "uint256";
|
|
479
|
+
}];
|
|
480
|
+
readonly stateMutability: "view";
|
|
481
|
+
readonly type: "function";
|
|
482
|
+
}, {
|
|
483
|
+
readonly inputs: readonly [];
|
|
484
|
+
readonly name: "LOCK_MANAGER";
|
|
485
|
+
readonly outputs: readonly [{
|
|
486
|
+
readonly internalType: "uint256";
|
|
487
|
+
readonly name: "";
|
|
488
|
+
readonly type: "uint256";
|
|
489
|
+
}];
|
|
490
|
+
readonly stateMutability: "view";
|
|
491
|
+
readonly type: "function";
|
|
492
|
+
}, {
|
|
493
|
+
readonly inputs: readonly [];
|
|
494
|
+
readonly name: "OMNIBUS_TBE_CONTROLLER";
|
|
495
|
+
readonly outputs: readonly [{
|
|
496
|
+
readonly internalType: "uint256";
|
|
497
|
+
readonly name: "";
|
|
498
|
+
readonly type: "uint256";
|
|
499
|
+
}];
|
|
500
|
+
readonly stateMutability: "view";
|
|
501
|
+
readonly type: "function";
|
|
502
|
+
}, {
|
|
503
|
+
readonly inputs: readonly [];
|
|
504
|
+
readonly name: "PARTITIONS_MANAGER";
|
|
505
|
+
readonly outputs: readonly [{
|
|
506
|
+
readonly internalType: "uint256";
|
|
507
|
+
readonly name: "";
|
|
508
|
+
readonly type: "uint256";
|
|
509
|
+
}];
|
|
510
|
+
readonly stateMutability: "view";
|
|
511
|
+
readonly type: "function";
|
|
512
|
+
}, {
|
|
513
|
+
readonly inputs: readonly [];
|
|
514
|
+
readonly name: "REGISTRY_SERVICE";
|
|
515
|
+
readonly outputs: readonly [{
|
|
516
|
+
readonly internalType: "uint256";
|
|
517
|
+
readonly name: "";
|
|
518
|
+
readonly type: "uint256";
|
|
519
|
+
}];
|
|
520
|
+
readonly stateMutability: "view";
|
|
521
|
+
readonly type: "function";
|
|
522
|
+
}, {
|
|
523
|
+
readonly inputs: readonly [];
|
|
524
|
+
readonly name: "ROLE_EXCHANGE";
|
|
525
|
+
readonly outputs: readonly [{
|
|
526
|
+
readonly internalType: "uint8";
|
|
527
|
+
readonly name: "";
|
|
528
|
+
readonly type: "uint8";
|
|
529
|
+
}];
|
|
530
|
+
readonly stateMutability: "view";
|
|
531
|
+
readonly type: "function";
|
|
532
|
+
}, {
|
|
533
|
+
readonly inputs: readonly [];
|
|
534
|
+
readonly name: "ROLE_ISSUER";
|
|
535
|
+
readonly outputs: readonly [{
|
|
536
|
+
readonly internalType: "uint8";
|
|
537
|
+
readonly name: "";
|
|
538
|
+
readonly type: "uint8";
|
|
539
|
+
}];
|
|
540
|
+
readonly stateMutability: "view";
|
|
541
|
+
readonly type: "function";
|
|
542
|
+
}, {
|
|
543
|
+
readonly inputs: readonly [];
|
|
544
|
+
readonly name: "ROLE_MASTER";
|
|
545
|
+
readonly outputs: readonly [{
|
|
546
|
+
readonly internalType: "uint8";
|
|
547
|
+
readonly name: "";
|
|
548
|
+
readonly type: "uint8";
|
|
549
|
+
}];
|
|
550
|
+
readonly stateMutability: "view";
|
|
551
|
+
readonly type: "function";
|
|
552
|
+
}, {
|
|
553
|
+
readonly inputs: readonly [];
|
|
554
|
+
readonly name: "ROLE_NONE";
|
|
555
|
+
readonly outputs: readonly [{
|
|
556
|
+
readonly internalType: "uint8";
|
|
557
|
+
readonly name: "";
|
|
558
|
+
readonly type: "uint8";
|
|
559
|
+
}];
|
|
560
|
+
readonly stateMutability: "view";
|
|
561
|
+
readonly type: "function";
|
|
562
|
+
}, {
|
|
563
|
+
readonly inputs: readonly [];
|
|
564
|
+
readonly name: "ROLE_TRANSFER_AGENT";
|
|
565
|
+
readonly outputs: readonly [{
|
|
566
|
+
readonly internalType: "uint8";
|
|
567
|
+
readonly name: "";
|
|
568
|
+
readonly type: "uint8";
|
|
569
|
+
}];
|
|
570
|
+
readonly stateMutability: "view";
|
|
571
|
+
readonly type: "function";
|
|
572
|
+
}, {
|
|
573
|
+
readonly inputs: readonly [];
|
|
574
|
+
readonly name: "SECURITIZE_SWAP";
|
|
575
|
+
readonly outputs: readonly [{
|
|
576
|
+
readonly internalType: "uint256";
|
|
577
|
+
readonly name: "";
|
|
578
|
+
readonly type: "uint256";
|
|
579
|
+
}];
|
|
580
|
+
readonly stateMutability: "view";
|
|
581
|
+
readonly type: "function";
|
|
582
|
+
}, {
|
|
583
|
+
readonly inputs: readonly [];
|
|
584
|
+
readonly name: "TA_MULTICALL";
|
|
585
|
+
readonly outputs: readonly [{
|
|
586
|
+
readonly internalType: "uint256";
|
|
587
|
+
readonly name: "";
|
|
588
|
+
readonly type: "uint256";
|
|
589
|
+
}];
|
|
590
|
+
readonly stateMutability: "view";
|
|
591
|
+
readonly type: "function";
|
|
592
|
+
}, {
|
|
593
|
+
readonly inputs: readonly [];
|
|
594
|
+
readonly name: "TOKEN_ISSUER";
|
|
595
|
+
readonly outputs: readonly [{
|
|
596
|
+
readonly internalType: "uint256";
|
|
597
|
+
readonly name: "";
|
|
598
|
+
readonly type: "uint256";
|
|
599
|
+
}];
|
|
600
|
+
readonly stateMutability: "view";
|
|
601
|
+
readonly type: "function";
|
|
602
|
+
}, {
|
|
603
|
+
readonly inputs: readonly [];
|
|
604
|
+
readonly name: "TOKEN_REALLOCATOR";
|
|
605
|
+
readonly outputs: readonly [{
|
|
606
|
+
readonly internalType: "uint256";
|
|
607
|
+
readonly name: "";
|
|
608
|
+
readonly type: "uint256";
|
|
609
|
+
}];
|
|
610
|
+
readonly stateMutability: "view";
|
|
611
|
+
readonly type: "function";
|
|
612
|
+
}, {
|
|
613
|
+
readonly inputs: readonly [];
|
|
614
|
+
readonly name: "TRANSACTION_RELAYER";
|
|
615
|
+
readonly outputs: readonly [{
|
|
616
|
+
readonly internalType: "uint256";
|
|
617
|
+
readonly name: "";
|
|
618
|
+
readonly type: "uint256";
|
|
619
|
+
}];
|
|
620
|
+
readonly stateMutability: "view";
|
|
621
|
+
readonly type: "function";
|
|
622
|
+
}, {
|
|
623
|
+
readonly inputs: readonly [];
|
|
624
|
+
readonly name: "TRUST_SERVICE";
|
|
625
|
+
readonly outputs: readonly [{
|
|
626
|
+
readonly internalType: "uint256";
|
|
627
|
+
readonly name: "";
|
|
628
|
+
readonly type: "uint256";
|
|
629
|
+
}];
|
|
630
|
+
readonly stateMutability: "view";
|
|
631
|
+
readonly type: "function";
|
|
632
|
+
}, {
|
|
633
|
+
readonly inputs: readonly [];
|
|
634
|
+
readonly name: "UNUSED_1";
|
|
635
|
+
readonly outputs: readonly [{
|
|
636
|
+
readonly internalType: "uint256";
|
|
637
|
+
readonly name: "";
|
|
638
|
+
readonly type: "uint256";
|
|
639
|
+
}];
|
|
640
|
+
readonly stateMutability: "view";
|
|
641
|
+
readonly type: "function";
|
|
642
|
+
}, {
|
|
643
|
+
readonly inputs: readonly [];
|
|
644
|
+
readonly name: "UPGRADE_INTERFACE_VERSION";
|
|
645
|
+
readonly outputs: readonly [{
|
|
646
|
+
readonly internalType: "string";
|
|
647
|
+
readonly name: "";
|
|
648
|
+
readonly type: "string";
|
|
649
|
+
}];
|
|
650
|
+
readonly stateMutability: "view";
|
|
651
|
+
readonly type: "function";
|
|
652
|
+
}, {
|
|
653
|
+
readonly inputs: readonly [];
|
|
654
|
+
readonly name: "WALLET_MANAGER";
|
|
655
|
+
readonly outputs: readonly [{
|
|
656
|
+
readonly internalType: "uint256";
|
|
657
|
+
readonly name: "";
|
|
658
|
+
readonly type: "uint256";
|
|
659
|
+
}];
|
|
660
|
+
readonly stateMutability: "view";
|
|
661
|
+
readonly type: "function";
|
|
662
|
+
}, {
|
|
663
|
+
readonly inputs: readonly [];
|
|
664
|
+
readonly name: "WALLET_REGISTRAR";
|
|
665
|
+
readonly outputs: readonly [{
|
|
666
|
+
readonly internalType: "uint256";
|
|
667
|
+
readonly name: "";
|
|
668
|
+
readonly type: "uint256";
|
|
669
|
+
}];
|
|
670
|
+
readonly stateMutability: "view";
|
|
671
|
+
readonly type: "function";
|
|
672
|
+
}, {
|
|
673
|
+
readonly inputs: readonly [];
|
|
674
|
+
readonly name: "__BaseDSContract_init";
|
|
675
|
+
readonly outputs: readonly [];
|
|
676
|
+
readonly stateMutability: "nonpayable";
|
|
677
|
+
readonly type: "function";
|
|
678
|
+
}, {
|
|
679
|
+
readonly inputs: readonly [];
|
|
680
|
+
readonly name: "__ServiceConsumer_init";
|
|
681
|
+
readonly outputs: readonly [];
|
|
682
|
+
readonly stateMutability: "nonpayable";
|
|
683
|
+
readonly type: "function";
|
|
684
|
+
}, {
|
|
685
|
+
readonly inputs: readonly [];
|
|
686
|
+
readonly name: "__StandardToken_init";
|
|
687
|
+
readonly outputs: readonly [];
|
|
688
|
+
readonly stateMutability: "nonpayable";
|
|
689
|
+
readonly type: "function";
|
|
690
|
+
}, {
|
|
691
|
+
readonly inputs: readonly [{
|
|
692
|
+
readonly internalType: "address";
|
|
693
|
+
readonly name: "_owner";
|
|
694
|
+
readonly type: "address";
|
|
695
|
+
}, {
|
|
696
|
+
readonly internalType: "address";
|
|
697
|
+
readonly name: "_spender";
|
|
698
|
+
readonly type: "address";
|
|
699
|
+
}];
|
|
700
|
+
readonly name: "allowance";
|
|
701
|
+
readonly outputs: readonly [{
|
|
702
|
+
readonly internalType: "uint256";
|
|
703
|
+
readonly name: "";
|
|
704
|
+
readonly type: "uint256";
|
|
705
|
+
}];
|
|
706
|
+
readonly stateMutability: "view";
|
|
707
|
+
readonly type: "function";
|
|
708
|
+
}, {
|
|
709
|
+
readonly inputs: readonly [{
|
|
710
|
+
readonly internalType: "address";
|
|
711
|
+
readonly name: "_spender";
|
|
712
|
+
readonly type: "address";
|
|
713
|
+
}, {
|
|
714
|
+
readonly internalType: "uint256";
|
|
715
|
+
readonly name: "_value";
|
|
716
|
+
readonly type: "uint256";
|
|
717
|
+
}];
|
|
718
|
+
readonly name: "approve";
|
|
719
|
+
readonly outputs: readonly [{
|
|
720
|
+
readonly internalType: "bool";
|
|
721
|
+
readonly name: "";
|
|
722
|
+
readonly type: "bool";
|
|
723
|
+
}];
|
|
724
|
+
readonly stateMutability: "nonpayable";
|
|
725
|
+
readonly type: "function";
|
|
726
|
+
}, {
|
|
727
|
+
readonly inputs: readonly [{
|
|
728
|
+
readonly internalType: "address";
|
|
729
|
+
readonly name: "_owner";
|
|
730
|
+
readonly type: "address";
|
|
731
|
+
}];
|
|
732
|
+
readonly name: "balanceOf";
|
|
733
|
+
readonly outputs: readonly [{
|
|
734
|
+
readonly internalType: "uint256";
|
|
735
|
+
readonly name: "";
|
|
736
|
+
readonly type: "uint256";
|
|
737
|
+
}];
|
|
738
|
+
readonly stateMutability: "view";
|
|
739
|
+
readonly type: "function";
|
|
740
|
+
}, {
|
|
741
|
+
readonly inputs: readonly [{
|
|
742
|
+
readonly internalType: "string";
|
|
743
|
+
readonly name: "_id";
|
|
744
|
+
readonly type: "string";
|
|
745
|
+
}];
|
|
746
|
+
readonly name: "balanceOfInvestor";
|
|
747
|
+
readonly outputs: readonly [{
|
|
748
|
+
readonly internalType: "uint256";
|
|
749
|
+
readonly name: "";
|
|
750
|
+
readonly type: "uint256";
|
|
751
|
+
}];
|
|
752
|
+
readonly stateMutability: "view";
|
|
753
|
+
readonly type: "function";
|
|
754
|
+
}, {
|
|
755
|
+
readonly inputs: readonly [{
|
|
756
|
+
readonly internalType: "address";
|
|
757
|
+
readonly name: "_who";
|
|
758
|
+
readonly type: "address";
|
|
759
|
+
}, {
|
|
760
|
+
readonly internalType: "uint256";
|
|
761
|
+
readonly name: "_value";
|
|
762
|
+
readonly type: "uint256";
|
|
763
|
+
}, {
|
|
764
|
+
readonly internalType: "string";
|
|
765
|
+
readonly name: "_reason";
|
|
766
|
+
readonly type: "string";
|
|
767
|
+
}];
|
|
768
|
+
readonly name: "burn";
|
|
769
|
+
readonly outputs: readonly [];
|
|
770
|
+
readonly stateMutability: "nonpayable";
|
|
771
|
+
readonly type: "function";
|
|
772
|
+
}, {
|
|
773
|
+
readonly inputs: readonly [];
|
|
774
|
+
readonly name: "cap";
|
|
775
|
+
readonly outputs: readonly [{
|
|
776
|
+
readonly internalType: "uint256";
|
|
777
|
+
readonly name: "";
|
|
778
|
+
readonly type: "uint256";
|
|
779
|
+
}];
|
|
780
|
+
readonly stateMutability: "view";
|
|
781
|
+
readonly type: "function";
|
|
782
|
+
}, {
|
|
783
|
+
readonly inputs: readonly [];
|
|
784
|
+
readonly name: "decimals";
|
|
785
|
+
readonly outputs: readonly [{
|
|
786
|
+
readonly internalType: "uint8";
|
|
787
|
+
readonly name: "";
|
|
788
|
+
readonly type: "uint8";
|
|
789
|
+
}];
|
|
790
|
+
readonly stateMutability: "view";
|
|
791
|
+
readonly type: "function";
|
|
792
|
+
}, {
|
|
793
|
+
readonly inputs: readonly [{
|
|
794
|
+
readonly internalType: "address";
|
|
795
|
+
readonly name: "_spender";
|
|
796
|
+
readonly type: "address";
|
|
797
|
+
}, {
|
|
798
|
+
readonly internalType: "uint256";
|
|
799
|
+
readonly name: "_subtractedValue";
|
|
800
|
+
readonly type: "uint256";
|
|
801
|
+
}];
|
|
802
|
+
readonly name: "decreaseApproval";
|
|
803
|
+
readonly outputs: readonly [{
|
|
804
|
+
readonly internalType: "bool";
|
|
805
|
+
readonly name: "";
|
|
806
|
+
readonly type: "bool";
|
|
807
|
+
}];
|
|
808
|
+
readonly stateMutability: "nonpayable";
|
|
809
|
+
readonly type: "function";
|
|
810
|
+
}, {
|
|
811
|
+
readonly inputs: readonly [{
|
|
812
|
+
readonly internalType: "address";
|
|
813
|
+
readonly name: "omnibusWallet";
|
|
814
|
+
readonly type: "address";
|
|
815
|
+
}, {
|
|
816
|
+
readonly internalType: "int256";
|
|
817
|
+
readonly name: "totalDelta";
|
|
818
|
+
readonly type: "int256";
|
|
819
|
+
}, {
|
|
820
|
+
readonly internalType: "int256";
|
|
821
|
+
readonly name: "accreditedDelta";
|
|
822
|
+
readonly type: "int256";
|
|
823
|
+
}, {
|
|
824
|
+
readonly internalType: "int256";
|
|
825
|
+
readonly name: "usAccreditedDelta";
|
|
826
|
+
readonly type: "int256";
|
|
827
|
+
}, {
|
|
828
|
+
readonly internalType: "int256";
|
|
829
|
+
readonly name: "usTotalDelta";
|
|
830
|
+
readonly type: "int256";
|
|
831
|
+
}, {
|
|
832
|
+
readonly internalType: "int256";
|
|
833
|
+
readonly name: "jpTotalDelta";
|
|
834
|
+
readonly type: "int256";
|
|
835
|
+
}];
|
|
836
|
+
readonly name: "emitOmnibusTBEEvent";
|
|
837
|
+
readonly outputs: readonly [];
|
|
838
|
+
readonly stateMutability: "nonpayable";
|
|
839
|
+
readonly type: "function";
|
|
840
|
+
}, {
|
|
841
|
+
readonly inputs: readonly [{
|
|
842
|
+
readonly internalType: "address";
|
|
843
|
+
readonly name: "omnibusWallet";
|
|
844
|
+
readonly type: "address";
|
|
845
|
+
}, {
|
|
846
|
+
readonly internalType: "string";
|
|
847
|
+
readonly name: "externalId";
|
|
848
|
+
readonly type: "string";
|
|
849
|
+
}];
|
|
850
|
+
readonly name: "emitOmnibusTBETransferEvent";
|
|
851
|
+
readonly outputs: readonly [];
|
|
852
|
+
readonly stateMutability: "nonpayable";
|
|
853
|
+
readonly type: "function";
|
|
854
|
+
}, {
|
|
855
|
+
readonly inputs: readonly [{
|
|
856
|
+
readonly internalType: "address";
|
|
857
|
+
readonly name: "_omnibusWallet";
|
|
858
|
+
readonly type: "address";
|
|
859
|
+
}, {
|
|
860
|
+
readonly internalType: "address";
|
|
861
|
+
readonly name: "_from";
|
|
862
|
+
readonly type: "address";
|
|
863
|
+
}, {
|
|
864
|
+
readonly internalType: "address";
|
|
865
|
+
readonly name: "_to";
|
|
866
|
+
readonly type: "address";
|
|
867
|
+
}, {
|
|
868
|
+
readonly internalType: "uint256";
|
|
869
|
+
readonly name: "_value";
|
|
870
|
+
readonly type: "uint256";
|
|
871
|
+
}];
|
|
872
|
+
readonly name: "emitOmnibusTransferEvent";
|
|
873
|
+
readonly outputs: readonly [];
|
|
874
|
+
readonly stateMutability: "nonpayable";
|
|
875
|
+
readonly type: "function";
|
|
876
|
+
}, {
|
|
877
|
+
readonly inputs: readonly [{
|
|
878
|
+
readonly internalType: "uint256";
|
|
879
|
+
readonly name: "_serviceId";
|
|
880
|
+
readonly type: "uint256";
|
|
881
|
+
}];
|
|
882
|
+
readonly name: "getDSService";
|
|
883
|
+
readonly outputs: readonly [{
|
|
884
|
+
readonly internalType: "address";
|
|
885
|
+
readonly name: "";
|
|
886
|
+
readonly type: "address";
|
|
887
|
+
}];
|
|
888
|
+
readonly stateMutability: "view";
|
|
889
|
+
readonly type: "function";
|
|
890
|
+
}, {
|
|
891
|
+
readonly inputs: readonly [];
|
|
892
|
+
readonly name: "getImplementationAddress";
|
|
893
|
+
readonly outputs: readonly [{
|
|
894
|
+
readonly internalType: "address";
|
|
895
|
+
readonly name: "";
|
|
896
|
+
readonly type: "address";
|
|
897
|
+
}];
|
|
898
|
+
readonly stateMutability: "view";
|
|
899
|
+
readonly type: "function";
|
|
900
|
+
}, {
|
|
901
|
+
readonly inputs: readonly [];
|
|
902
|
+
readonly name: "getInitializedVersion";
|
|
903
|
+
readonly outputs: readonly [{
|
|
904
|
+
readonly internalType: "uint64";
|
|
905
|
+
readonly name: "";
|
|
906
|
+
readonly type: "uint64";
|
|
907
|
+
}];
|
|
908
|
+
readonly stateMutability: "view";
|
|
909
|
+
readonly type: "function";
|
|
910
|
+
}, {
|
|
911
|
+
readonly inputs: readonly [{
|
|
912
|
+
readonly internalType: "uint256";
|
|
913
|
+
readonly name: "_index";
|
|
914
|
+
readonly type: "uint256";
|
|
915
|
+
}];
|
|
916
|
+
readonly name: "getWalletAt";
|
|
917
|
+
readonly outputs: readonly [{
|
|
918
|
+
readonly internalType: "address";
|
|
919
|
+
readonly name: "";
|
|
920
|
+
readonly type: "address";
|
|
921
|
+
}];
|
|
922
|
+
readonly stateMutability: "view";
|
|
923
|
+
readonly type: "function";
|
|
924
|
+
}, {
|
|
925
|
+
readonly inputs: readonly [{
|
|
926
|
+
readonly internalType: "address";
|
|
927
|
+
readonly name: "_spender";
|
|
928
|
+
readonly type: "address";
|
|
929
|
+
}, {
|
|
930
|
+
readonly internalType: "uint256";
|
|
931
|
+
readonly name: "_addedValue";
|
|
932
|
+
readonly type: "uint256";
|
|
933
|
+
}];
|
|
934
|
+
readonly name: "increaseApproval";
|
|
935
|
+
readonly outputs: readonly [{
|
|
936
|
+
readonly internalType: "bool";
|
|
937
|
+
readonly name: "";
|
|
938
|
+
readonly type: "bool";
|
|
939
|
+
}];
|
|
940
|
+
readonly stateMutability: "nonpayable";
|
|
941
|
+
readonly type: "function";
|
|
942
|
+
}, {
|
|
943
|
+
readonly inputs: readonly [{
|
|
944
|
+
readonly internalType: "string";
|
|
945
|
+
readonly name: "_name";
|
|
946
|
+
readonly type: "string";
|
|
947
|
+
}, {
|
|
948
|
+
readonly internalType: "string";
|
|
949
|
+
readonly name: "_symbol";
|
|
950
|
+
readonly type: "string";
|
|
951
|
+
}, {
|
|
952
|
+
readonly internalType: "uint8";
|
|
953
|
+
readonly name: "_decimals";
|
|
954
|
+
readonly type: "uint8";
|
|
955
|
+
}];
|
|
956
|
+
readonly name: "initialize";
|
|
957
|
+
readonly outputs: readonly [];
|
|
958
|
+
readonly stateMutability: "nonpayable";
|
|
959
|
+
readonly type: "function";
|
|
960
|
+
}, {
|
|
961
|
+
readonly inputs: readonly [];
|
|
962
|
+
readonly name: "isPaused";
|
|
963
|
+
readonly outputs: readonly [{
|
|
964
|
+
readonly internalType: "bool";
|
|
965
|
+
readonly name: "";
|
|
966
|
+
readonly type: "bool";
|
|
967
|
+
}];
|
|
968
|
+
readonly stateMutability: "view";
|
|
969
|
+
readonly type: "function";
|
|
970
|
+
}, {
|
|
971
|
+
readonly inputs: readonly [{
|
|
972
|
+
readonly internalType: "address";
|
|
973
|
+
readonly name: "_to";
|
|
974
|
+
readonly type: "address";
|
|
975
|
+
}, {
|
|
976
|
+
readonly internalType: "uint256";
|
|
977
|
+
readonly name: "_value";
|
|
978
|
+
readonly type: "uint256";
|
|
979
|
+
}];
|
|
980
|
+
readonly name: "issueTokens";
|
|
981
|
+
readonly outputs: readonly [{
|
|
982
|
+
readonly internalType: "bool";
|
|
983
|
+
readonly name: "";
|
|
984
|
+
readonly type: "bool";
|
|
985
|
+
}];
|
|
986
|
+
readonly stateMutability: "nonpayable";
|
|
987
|
+
readonly type: "function";
|
|
988
|
+
}, {
|
|
989
|
+
readonly inputs: readonly [{
|
|
990
|
+
readonly internalType: "address";
|
|
991
|
+
readonly name: "_to";
|
|
992
|
+
readonly type: "address";
|
|
993
|
+
}, {
|
|
994
|
+
readonly internalType: "uint256";
|
|
995
|
+
readonly name: "_value";
|
|
996
|
+
readonly type: "uint256";
|
|
997
|
+
}, {
|
|
998
|
+
readonly internalType: "uint256";
|
|
999
|
+
readonly name: "_issuanceTime";
|
|
1000
|
+
readonly type: "uint256";
|
|
1001
|
+
}, {
|
|
1002
|
+
readonly internalType: "uint256";
|
|
1003
|
+
readonly name: "_valueLocked";
|
|
1004
|
+
readonly type: "uint256";
|
|
1005
|
+
}, {
|
|
1006
|
+
readonly internalType: "string";
|
|
1007
|
+
readonly name: "_reason";
|
|
1008
|
+
readonly type: "string";
|
|
1009
|
+
}, {
|
|
1010
|
+
readonly internalType: "uint64";
|
|
1011
|
+
readonly name: "_releaseTime";
|
|
1012
|
+
readonly type: "uint64";
|
|
1013
|
+
}];
|
|
1014
|
+
readonly name: "issueTokensCustom";
|
|
1015
|
+
readonly outputs: readonly [{
|
|
1016
|
+
readonly internalType: "bool";
|
|
1017
|
+
readonly name: "";
|
|
1018
|
+
readonly type: "bool";
|
|
1019
|
+
}];
|
|
1020
|
+
readonly stateMutability: "nonpayable";
|
|
1021
|
+
readonly type: "function";
|
|
1022
|
+
}, {
|
|
1023
|
+
readonly inputs: readonly [{
|
|
1024
|
+
readonly internalType: "address";
|
|
1025
|
+
readonly name: "_to";
|
|
1026
|
+
readonly type: "address";
|
|
1027
|
+
}, {
|
|
1028
|
+
readonly internalType: "uint256";
|
|
1029
|
+
readonly name: "_value";
|
|
1030
|
+
readonly type: "uint256";
|
|
1031
|
+
}, {
|
|
1032
|
+
readonly internalType: "uint256";
|
|
1033
|
+
readonly name: "_issuanceTime";
|
|
1034
|
+
readonly type: "uint256";
|
|
1035
|
+
}, {
|
|
1036
|
+
readonly internalType: "uint256[]";
|
|
1037
|
+
readonly name: "_valuesLocked";
|
|
1038
|
+
readonly type: "uint256[]";
|
|
1039
|
+
}, {
|
|
1040
|
+
readonly internalType: "string";
|
|
1041
|
+
readonly name: "_reason";
|
|
1042
|
+
readonly type: "string";
|
|
1043
|
+
}, {
|
|
1044
|
+
readonly internalType: "uint64[]";
|
|
1045
|
+
readonly name: "_releaseTimes";
|
|
1046
|
+
readonly type: "uint64[]";
|
|
1047
|
+
}];
|
|
1048
|
+
readonly name: "issueTokensWithMultipleLocks";
|
|
1049
|
+
readonly outputs: readonly [{
|
|
1050
|
+
readonly internalType: "bool";
|
|
1051
|
+
readonly name: "";
|
|
1052
|
+
readonly type: "bool";
|
|
1053
|
+
}];
|
|
1054
|
+
readonly stateMutability: "nonpayable";
|
|
1055
|
+
readonly type: "function";
|
|
1056
|
+
}, {
|
|
1057
|
+
readonly inputs: readonly [{
|
|
1058
|
+
readonly internalType: "address";
|
|
1059
|
+
readonly name: "_to";
|
|
1060
|
+
readonly type: "address";
|
|
1061
|
+
}, {
|
|
1062
|
+
readonly internalType: "uint256";
|
|
1063
|
+
readonly name: "_value";
|
|
1064
|
+
readonly type: "uint256";
|
|
1065
|
+
}];
|
|
1066
|
+
readonly name: "issueTokensWithNoCompliance";
|
|
1067
|
+
readonly outputs: readonly [];
|
|
1068
|
+
readonly stateMutability: "nonpayable";
|
|
1069
|
+
readonly type: "function";
|
|
1070
|
+
}, {
|
|
1071
|
+
readonly inputs: readonly [];
|
|
1072
|
+
readonly name: "name";
|
|
1073
|
+
readonly outputs: readonly [{
|
|
1074
|
+
readonly internalType: "string";
|
|
1075
|
+
readonly name: "";
|
|
1076
|
+
readonly type: "string";
|
|
1077
|
+
}];
|
|
1078
|
+
readonly stateMutability: "view";
|
|
1079
|
+
readonly type: "function";
|
|
1080
|
+
}, {
|
|
1081
|
+
readonly inputs: readonly [{
|
|
1082
|
+
readonly internalType: "address";
|
|
1083
|
+
readonly name: "_omnibusWallet";
|
|
1084
|
+
readonly type: "address";
|
|
1085
|
+
}, {
|
|
1086
|
+
readonly internalType: "address";
|
|
1087
|
+
readonly name: "_who";
|
|
1088
|
+
readonly type: "address";
|
|
1089
|
+
}, {
|
|
1090
|
+
readonly internalType: "uint256";
|
|
1091
|
+
readonly name: "_value";
|
|
1092
|
+
readonly type: "uint256";
|
|
1093
|
+
}, {
|
|
1094
|
+
readonly internalType: "string";
|
|
1095
|
+
readonly name: "_reason";
|
|
1096
|
+
readonly type: "string";
|
|
1097
|
+
}];
|
|
1098
|
+
readonly name: "omnibusBurn";
|
|
1099
|
+
readonly outputs: readonly [];
|
|
1100
|
+
readonly stateMutability: "nonpayable";
|
|
1101
|
+
readonly type: "function";
|
|
1102
|
+
}, {
|
|
1103
|
+
readonly inputs: readonly [{
|
|
1104
|
+
readonly internalType: "address";
|
|
1105
|
+
readonly name: "_omnibusWallet";
|
|
1106
|
+
readonly type: "address";
|
|
1107
|
+
}, {
|
|
1108
|
+
readonly internalType: "address";
|
|
1109
|
+
readonly name: "_from";
|
|
1110
|
+
readonly type: "address";
|
|
1111
|
+
}, {
|
|
1112
|
+
readonly internalType: "address";
|
|
1113
|
+
readonly name: "_to";
|
|
1114
|
+
readonly type: "address";
|
|
1115
|
+
}, {
|
|
1116
|
+
readonly internalType: "uint256";
|
|
1117
|
+
readonly name: "_value";
|
|
1118
|
+
readonly type: "uint256";
|
|
1119
|
+
}, {
|
|
1120
|
+
readonly internalType: "string";
|
|
1121
|
+
readonly name: "_reason";
|
|
1122
|
+
readonly type: "string";
|
|
1123
|
+
}];
|
|
1124
|
+
readonly name: "omnibusSeize";
|
|
1125
|
+
readonly outputs: readonly [];
|
|
1126
|
+
readonly stateMutability: "nonpayable";
|
|
1127
|
+
readonly type: "function";
|
|
1128
|
+
}, {
|
|
1129
|
+
readonly inputs: readonly [];
|
|
1130
|
+
readonly name: "owner";
|
|
1131
|
+
readonly outputs: readonly [{
|
|
1132
|
+
readonly internalType: "address";
|
|
1133
|
+
readonly name: "";
|
|
1134
|
+
readonly type: "address";
|
|
1135
|
+
}];
|
|
1136
|
+
readonly stateMutability: "view";
|
|
1137
|
+
readonly type: "function";
|
|
1138
|
+
}, {
|
|
1139
|
+
readonly inputs: readonly [];
|
|
1140
|
+
readonly name: "pause";
|
|
1141
|
+
readonly outputs: readonly [];
|
|
1142
|
+
readonly stateMutability: "nonpayable";
|
|
1143
|
+
readonly type: "function";
|
|
1144
|
+
}, {
|
|
1145
|
+
readonly inputs: readonly [{
|
|
1146
|
+
readonly internalType: "address";
|
|
1147
|
+
readonly name: "_from";
|
|
1148
|
+
readonly type: "address";
|
|
1149
|
+
}, {
|
|
1150
|
+
readonly internalType: "address";
|
|
1151
|
+
readonly name: "_to";
|
|
1152
|
+
readonly type: "address";
|
|
1153
|
+
}, {
|
|
1154
|
+
readonly internalType: "uint256";
|
|
1155
|
+
readonly name: "_value";
|
|
1156
|
+
readonly type: "uint256";
|
|
1157
|
+
}];
|
|
1158
|
+
readonly name: "preTransferCheck";
|
|
1159
|
+
readonly outputs: readonly [{
|
|
1160
|
+
readonly internalType: "uint256";
|
|
1161
|
+
readonly name: "code";
|
|
1162
|
+
readonly type: "uint256";
|
|
1163
|
+
}, {
|
|
1164
|
+
readonly internalType: "string";
|
|
1165
|
+
readonly name: "reason";
|
|
1166
|
+
readonly type: "string";
|
|
1167
|
+
}];
|
|
1168
|
+
readonly stateMutability: "view";
|
|
1169
|
+
readonly type: "function";
|
|
1170
|
+
}, {
|
|
1171
|
+
readonly inputs: readonly [];
|
|
1172
|
+
readonly name: "proxiableUUID";
|
|
1173
|
+
readonly outputs: readonly [{
|
|
1174
|
+
readonly internalType: "bytes32";
|
|
1175
|
+
readonly name: "";
|
|
1176
|
+
readonly type: "bytes32";
|
|
1177
|
+
}];
|
|
1178
|
+
readonly stateMutability: "view";
|
|
1179
|
+
readonly type: "function";
|
|
1180
|
+
}, {
|
|
1181
|
+
readonly inputs: readonly [];
|
|
1182
|
+
readonly name: "renounceOwnership";
|
|
1183
|
+
readonly outputs: readonly [];
|
|
1184
|
+
readonly stateMutability: "nonpayable";
|
|
1185
|
+
readonly type: "function";
|
|
1186
|
+
}, {
|
|
1187
|
+
readonly inputs: readonly [{
|
|
1188
|
+
readonly internalType: "address";
|
|
1189
|
+
readonly name: "_from";
|
|
1190
|
+
readonly type: "address";
|
|
1191
|
+
}, {
|
|
1192
|
+
readonly internalType: "address";
|
|
1193
|
+
readonly name: "_to";
|
|
1194
|
+
readonly type: "address";
|
|
1195
|
+
}, {
|
|
1196
|
+
readonly internalType: "uint256";
|
|
1197
|
+
readonly name: "_value";
|
|
1198
|
+
readonly type: "uint256";
|
|
1199
|
+
}, {
|
|
1200
|
+
readonly internalType: "string";
|
|
1201
|
+
readonly name: "_reason";
|
|
1202
|
+
readonly type: "string";
|
|
1203
|
+
}];
|
|
1204
|
+
readonly name: "seize";
|
|
1205
|
+
readonly outputs: readonly [];
|
|
1206
|
+
readonly stateMutability: "nonpayable";
|
|
1207
|
+
readonly type: "function";
|
|
1208
|
+
}, {
|
|
1209
|
+
readonly inputs: readonly [{
|
|
1210
|
+
readonly internalType: "uint256";
|
|
1211
|
+
readonly name: "_cap";
|
|
1212
|
+
readonly type: "uint256";
|
|
1213
|
+
}];
|
|
1214
|
+
readonly name: "setCap";
|
|
1215
|
+
readonly outputs: readonly [];
|
|
1216
|
+
readonly stateMutability: "nonpayable";
|
|
1217
|
+
readonly type: "function";
|
|
1218
|
+
}, {
|
|
1219
|
+
readonly inputs: readonly [{
|
|
1220
|
+
readonly internalType: "uint256";
|
|
1221
|
+
readonly name: "_serviceId";
|
|
1222
|
+
readonly type: "uint256";
|
|
1223
|
+
}, {
|
|
1224
|
+
readonly internalType: "address";
|
|
1225
|
+
readonly name: "_address";
|
|
1226
|
+
readonly type: "address";
|
|
1227
|
+
}];
|
|
1228
|
+
readonly name: "setDSService";
|
|
1229
|
+
readonly outputs: readonly [{
|
|
1230
|
+
readonly internalType: "bool";
|
|
1231
|
+
readonly name: "";
|
|
1232
|
+
readonly type: "bool";
|
|
1233
|
+
}];
|
|
1234
|
+
readonly stateMutability: "nonpayable";
|
|
1235
|
+
readonly type: "function";
|
|
1236
|
+
}, {
|
|
1237
|
+
readonly inputs: readonly [{
|
|
1238
|
+
readonly internalType: "uint8";
|
|
1239
|
+
readonly name: "featureIndex";
|
|
1240
|
+
readonly type: "uint8";
|
|
1241
|
+
}, {
|
|
1242
|
+
readonly internalType: "bool";
|
|
1243
|
+
readonly name: "enable";
|
|
1244
|
+
readonly type: "bool";
|
|
1245
|
+
}];
|
|
1246
|
+
readonly name: "setFeature";
|
|
1247
|
+
readonly outputs: readonly [];
|
|
1248
|
+
readonly stateMutability: "nonpayable";
|
|
1249
|
+
readonly type: "function";
|
|
1250
|
+
}, {
|
|
1251
|
+
readonly inputs: readonly [{
|
|
1252
|
+
readonly internalType: "uint256";
|
|
1253
|
+
readonly name: "features";
|
|
1254
|
+
readonly type: "uint256";
|
|
1255
|
+
}];
|
|
1256
|
+
readonly name: "setFeatures";
|
|
1257
|
+
readonly outputs: readonly [];
|
|
1258
|
+
readonly stateMutability: "nonpayable";
|
|
1259
|
+
readonly type: "function";
|
|
1260
|
+
}, {
|
|
1261
|
+
readonly inputs: readonly [];
|
|
1262
|
+
readonly name: "supportedFeatures";
|
|
1263
|
+
readonly outputs: readonly [{
|
|
1264
|
+
readonly internalType: "uint256";
|
|
1265
|
+
readonly name: "value";
|
|
1266
|
+
readonly type: "uint256";
|
|
1267
|
+
}];
|
|
1268
|
+
readonly stateMutability: "view";
|
|
1269
|
+
readonly type: "function";
|
|
1270
|
+
}, {
|
|
1271
|
+
readonly inputs: readonly [];
|
|
1272
|
+
readonly name: "symbol";
|
|
1273
|
+
readonly outputs: readonly [{
|
|
1274
|
+
readonly internalType: "string";
|
|
1275
|
+
readonly name: "";
|
|
1276
|
+
readonly type: "string";
|
|
1277
|
+
}];
|
|
1278
|
+
readonly stateMutability: "view";
|
|
1279
|
+
readonly type: "function";
|
|
1280
|
+
}, {
|
|
1281
|
+
readonly inputs: readonly [];
|
|
1282
|
+
readonly name: "totalIssued";
|
|
1283
|
+
readonly outputs: readonly [{
|
|
1284
|
+
readonly internalType: "uint256";
|
|
1285
|
+
readonly name: "";
|
|
1286
|
+
readonly type: "uint256";
|
|
1287
|
+
}];
|
|
1288
|
+
readonly stateMutability: "view";
|
|
1289
|
+
readonly type: "function";
|
|
1290
|
+
}, {
|
|
1291
|
+
readonly inputs: readonly [];
|
|
1292
|
+
readonly name: "totalSupply";
|
|
1293
|
+
readonly outputs: readonly [{
|
|
1294
|
+
readonly internalType: "uint256";
|
|
1295
|
+
readonly name: "";
|
|
1296
|
+
readonly type: "uint256";
|
|
1297
|
+
}];
|
|
1298
|
+
readonly stateMutability: "view";
|
|
1299
|
+
readonly type: "function";
|
|
1300
|
+
}, {
|
|
1301
|
+
readonly inputs: readonly [{
|
|
1302
|
+
readonly internalType: "address";
|
|
1303
|
+
readonly name: "_to";
|
|
1304
|
+
readonly type: "address";
|
|
1305
|
+
}, {
|
|
1306
|
+
readonly internalType: "uint256";
|
|
1307
|
+
readonly name: "_value";
|
|
1308
|
+
readonly type: "uint256";
|
|
1309
|
+
}];
|
|
1310
|
+
readonly name: "transfer";
|
|
1311
|
+
readonly outputs: readonly [{
|
|
1312
|
+
readonly internalType: "bool";
|
|
1313
|
+
readonly name: "";
|
|
1314
|
+
readonly type: "bool";
|
|
1315
|
+
}];
|
|
1316
|
+
readonly stateMutability: "nonpayable";
|
|
1317
|
+
readonly type: "function";
|
|
1318
|
+
}, {
|
|
1319
|
+
readonly inputs: readonly [{
|
|
1320
|
+
readonly internalType: "address";
|
|
1321
|
+
readonly name: "_from";
|
|
1322
|
+
readonly type: "address";
|
|
1323
|
+
}, {
|
|
1324
|
+
readonly internalType: "address";
|
|
1325
|
+
readonly name: "_to";
|
|
1326
|
+
readonly type: "address";
|
|
1327
|
+
}, {
|
|
1328
|
+
readonly internalType: "uint256";
|
|
1329
|
+
readonly name: "_value";
|
|
1330
|
+
readonly type: "uint256";
|
|
1331
|
+
}];
|
|
1332
|
+
readonly name: "transferFrom";
|
|
1333
|
+
readonly outputs: readonly [{
|
|
1334
|
+
readonly internalType: "bool";
|
|
1335
|
+
readonly name: "";
|
|
1336
|
+
readonly type: "bool";
|
|
1337
|
+
}];
|
|
1338
|
+
readonly stateMutability: "nonpayable";
|
|
1339
|
+
readonly type: "function";
|
|
1340
|
+
}, {
|
|
1341
|
+
readonly inputs: readonly [{
|
|
1342
|
+
readonly internalType: "address";
|
|
1343
|
+
readonly name: "newOwner";
|
|
1344
|
+
readonly type: "address";
|
|
1345
|
+
}];
|
|
1346
|
+
readonly name: "transferOwnership";
|
|
1347
|
+
readonly outputs: readonly [];
|
|
1348
|
+
readonly stateMutability: "nonpayable";
|
|
1349
|
+
readonly type: "function";
|
|
1350
|
+
}, {
|
|
1351
|
+
readonly inputs: readonly [];
|
|
1352
|
+
readonly name: "unpause";
|
|
1353
|
+
readonly outputs: readonly [];
|
|
1354
|
+
readonly stateMutability: "nonpayable";
|
|
1355
|
+
readonly type: "function";
|
|
1356
|
+
}, {
|
|
1357
|
+
readonly inputs: readonly [{
|
|
1358
|
+
readonly internalType: "address";
|
|
1359
|
+
readonly name: "_omnibusWallet";
|
|
1360
|
+
readonly type: "address";
|
|
1361
|
+
}, {
|
|
1362
|
+
readonly internalType: "address";
|
|
1363
|
+
readonly name: "_wallet";
|
|
1364
|
+
readonly type: "address";
|
|
1365
|
+
}, {
|
|
1366
|
+
readonly internalType: "uint256";
|
|
1367
|
+
readonly name: "_value";
|
|
1368
|
+
readonly type: "uint256";
|
|
1369
|
+
}, {
|
|
1370
|
+
readonly internalType: "enum CommonUtils.IncDec";
|
|
1371
|
+
readonly name: "_increase";
|
|
1372
|
+
readonly type: "uint8";
|
|
1373
|
+
}];
|
|
1374
|
+
readonly name: "updateOmnibusInvestorBalance";
|
|
1375
|
+
readonly outputs: readonly [{
|
|
1376
|
+
readonly internalType: "bool";
|
|
1377
|
+
readonly name: "";
|
|
1378
|
+
readonly type: "bool";
|
|
1379
|
+
}];
|
|
1380
|
+
readonly stateMutability: "nonpayable";
|
|
1381
|
+
readonly type: "function";
|
|
1382
|
+
}, {
|
|
1383
|
+
readonly inputs: readonly [{
|
|
1384
|
+
readonly internalType: "address";
|
|
1385
|
+
readonly name: "newImplementation";
|
|
1386
|
+
readonly type: "address";
|
|
1387
|
+
}, {
|
|
1388
|
+
readonly internalType: "bytes";
|
|
1389
|
+
readonly name: "data";
|
|
1390
|
+
readonly type: "bytes";
|
|
1391
|
+
}];
|
|
1392
|
+
readonly name: "upgradeToAndCall";
|
|
1393
|
+
readonly outputs: readonly [];
|
|
1394
|
+
readonly stateMutability: "payable";
|
|
1395
|
+
readonly type: "function";
|
|
1396
|
+
}, {
|
|
1397
|
+
readonly inputs: readonly [];
|
|
1398
|
+
readonly name: "walletCount";
|
|
1399
|
+
readonly outputs: readonly [{
|
|
1400
|
+
readonly internalType: "uint256";
|
|
1401
|
+
readonly name: "";
|
|
1402
|
+
readonly type: "uint256";
|
|
1403
|
+
}];
|
|
1404
|
+
readonly stateMutability: "view";
|
|
1405
|
+
readonly type: "function";
|
|
1406
|
+
}];
|
|
1407
|
+
/**
|
|
1408
|
+
* Type-safe ABI for DSToken
|
|
1409
|
+
*/
|
|
1410
|
+
export type DSTokenAbi = typeof DSTokenAbi;
|
|
1411
|
+
/**
|
|
1412
|
+
* Contract instance type for DSToken
|
|
1413
|
+
*/
|
|
1414
|
+
export type DSTokenContract = any;
|
|
1415
|
+
/**
|
|
1416
|
+
* DSToken Contract Class
|
|
1417
|
+
*
|
|
1418
|
+
* Provides a class-based API similar to TypeChain for interacting with the contract.
|
|
1419
|
+
*
|
|
1420
|
+
* @example
|
|
1421
|
+
* ```typescript
|
|
1422
|
+
* import { createPublicClient, createWalletClient, http } from 'viem';
|
|
1423
|
+
* import { mainnet } from 'viem/chains';
|
|
1424
|
+
* import { DSToken } from 'DSToken';
|
|
1425
|
+
*
|
|
1426
|
+
* const publicClient = createPublicClient({ chain: mainnet, transport: http() });
|
|
1427
|
+
* const walletClient = createWalletClient({ chain: mainnet, transport: http() });
|
|
1428
|
+
*
|
|
1429
|
+
* const contract = new DSToken('0x...', { publicClient, walletClient });
|
|
1430
|
+
*
|
|
1431
|
+
* // Read functions
|
|
1432
|
+
* const result = await contract.balanceOf('0x...');
|
|
1433
|
+
*
|
|
1434
|
+
* // Write functions
|
|
1435
|
+
* const hash = await contract.transfer('0x...', 1000n);
|
|
1436
|
+
*
|
|
1437
|
+
* // Simulate transactions (dry-run)
|
|
1438
|
+
* const simulation = await contract.simulate.transfer('0x...', 1000n);
|
|
1439
|
+
* console.log('Gas estimate:', simulation.request.gas);
|
|
1440
|
+
*
|
|
1441
|
+
* // Watch events
|
|
1442
|
+
* const unwatch = contract.watch.Transfer((event) => {
|
|
1443
|
+
* console.log('Transfer event:', event);
|
|
1444
|
+
* });
|
|
1445
|
+
* ```
|
|
1446
|
+
*/
|
|
1447
|
+
export declare class DSToken {
|
|
1448
|
+
private contract;
|
|
1449
|
+
private contractAddress;
|
|
1450
|
+
private publicClient;
|
|
1451
|
+
constructor(address: Address, clients: {
|
|
1452
|
+
publicClient: PublicClient;
|
|
1453
|
+
walletClient?: WalletClient;
|
|
1454
|
+
});
|
|
1455
|
+
/**
|
|
1456
|
+
* Get the contract address
|
|
1457
|
+
*/
|
|
1458
|
+
get address(): Address;
|
|
1459
|
+
/**
|
|
1460
|
+
* Get the underlying viem contract instance.
|
|
1461
|
+
*/
|
|
1462
|
+
getContract(): DSTokenContract;
|
|
1463
|
+
/**
|
|
1464
|
+
* COMPLIANCE_CONFIGURATION_SERVICE
|
|
1465
|
+
* view
|
|
1466
|
+
*/
|
|
1467
|
+
COMPLIANCE_CONFIGURATION_SERVICE(): Promise<bigint>;
|
|
1468
|
+
/**
|
|
1469
|
+
* COMPLIANCE_SERVICE
|
|
1470
|
+
* view
|
|
1471
|
+
*/
|
|
1472
|
+
COMPLIANCE_SERVICE(): Promise<bigint>;
|
|
1473
|
+
/**
|
|
1474
|
+
* DS_TOKEN
|
|
1475
|
+
* view
|
|
1476
|
+
*/
|
|
1477
|
+
DS_TOKEN(): Promise<bigint>;
|
|
1478
|
+
/**
|
|
1479
|
+
* ISSUER_MULTICALL
|
|
1480
|
+
* view
|
|
1481
|
+
*/
|
|
1482
|
+
ISSUER_MULTICALL(): Promise<bigint>;
|
|
1483
|
+
/**
|
|
1484
|
+
* LOCK_MANAGER
|
|
1485
|
+
* view
|
|
1486
|
+
*/
|
|
1487
|
+
LOCK_MANAGER(): Promise<bigint>;
|
|
1488
|
+
/**
|
|
1489
|
+
* OMNIBUS_TBE_CONTROLLER
|
|
1490
|
+
* view
|
|
1491
|
+
*/
|
|
1492
|
+
OMNIBUS_TBE_CONTROLLER(): Promise<bigint>;
|
|
1493
|
+
/**
|
|
1494
|
+
* PARTITIONS_MANAGER
|
|
1495
|
+
* view
|
|
1496
|
+
*/
|
|
1497
|
+
PARTITIONS_MANAGER(): Promise<bigint>;
|
|
1498
|
+
/**
|
|
1499
|
+
* REGISTRY_SERVICE
|
|
1500
|
+
* view
|
|
1501
|
+
*/
|
|
1502
|
+
REGISTRY_SERVICE(): Promise<bigint>;
|
|
1503
|
+
/**
|
|
1504
|
+
* ROLE_EXCHANGE
|
|
1505
|
+
* view
|
|
1506
|
+
*/
|
|
1507
|
+
ROLE_EXCHANGE(): Promise<bigint>;
|
|
1508
|
+
/**
|
|
1509
|
+
* ROLE_ISSUER
|
|
1510
|
+
* view
|
|
1511
|
+
*/
|
|
1512
|
+
ROLE_ISSUER(): Promise<bigint>;
|
|
1513
|
+
/**
|
|
1514
|
+
* ROLE_MASTER
|
|
1515
|
+
* view
|
|
1516
|
+
*/
|
|
1517
|
+
ROLE_MASTER(): Promise<bigint>;
|
|
1518
|
+
/**
|
|
1519
|
+
* ROLE_NONE
|
|
1520
|
+
* view
|
|
1521
|
+
*/
|
|
1522
|
+
ROLE_NONE(): Promise<bigint>;
|
|
1523
|
+
/**
|
|
1524
|
+
* ROLE_TRANSFER_AGENT
|
|
1525
|
+
* view
|
|
1526
|
+
*/
|
|
1527
|
+
ROLE_TRANSFER_AGENT(): Promise<bigint>;
|
|
1528
|
+
/**
|
|
1529
|
+
* SECURITIZE_SWAP
|
|
1530
|
+
* view
|
|
1531
|
+
*/
|
|
1532
|
+
SECURITIZE_SWAP(): Promise<bigint>;
|
|
1533
|
+
/**
|
|
1534
|
+
* TA_MULTICALL
|
|
1535
|
+
* view
|
|
1536
|
+
*/
|
|
1537
|
+
TA_MULTICALL(): Promise<bigint>;
|
|
1538
|
+
/**
|
|
1539
|
+
* TOKEN_ISSUER
|
|
1540
|
+
* view
|
|
1541
|
+
*/
|
|
1542
|
+
TOKEN_ISSUER(): Promise<bigint>;
|
|
1543
|
+
/**
|
|
1544
|
+
* TOKEN_REALLOCATOR
|
|
1545
|
+
* view
|
|
1546
|
+
*/
|
|
1547
|
+
TOKEN_REALLOCATOR(): Promise<bigint>;
|
|
1548
|
+
/**
|
|
1549
|
+
* TRANSACTION_RELAYER
|
|
1550
|
+
* view
|
|
1551
|
+
*/
|
|
1552
|
+
TRANSACTION_RELAYER(): Promise<bigint>;
|
|
1553
|
+
/**
|
|
1554
|
+
* TRUST_SERVICE
|
|
1555
|
+
* view
|
|
1556
|
+
*/
|
|
1557
|
+
TRUST_SERVICE(): Promise<bigint>;
|
|
1558
|
+
/**
|
|
1559
|
+
* UNUSED_1
|
|
1560
|
+
* view
|
|
1561
|
+
*/
|
|
1562
|
+
UNUSED_1(): Promise<bigint>;
|
|
1563
|
+
/**
|
|
1564
|
+
* UPGRADE_INTERFACE_VERSION
|
|
1565
|
+
* view
|
|
1566
|
+
*/
|
|
1567
|
+
UPGRADE_INTERFACE_VERSION(): Promise<string>;
|
|
1568
|
+
/**
|
|
1569
|
+
* WALLET_MANAGER
|
|
1570
|
+
* view
|
|
1571
|
+
*/
|
|
1572
|
+
WALLET_MANAGER(): Promise<bigint>;
|
|
1573
|
+
/**
|
|
1574
|
+
* WALLET_REGISTRAR
|
|
1575
|
+
* view
|
|
1576
|
+
*/
|
|
1577
|
+
WALLET_REGISTRAR(): Promise<bigint>;
|
|
1578
|
+
/**
|
|
1579
|
+
* allowance
|
|
1580
|
+
* view
|
|
1581
|
+
*/
|
|
1582
|
+
allowance(_owner: `0x${string}`, _spender: `0x${string}`): Promise<bigint>;
|
|
1583
|
+
/**
|
|
1584
|
+
* balanceOf
|
|
1585
|
+
* view
|
|
1586
|
+
*/
|
|
1587
|
+
balanceOf(_owner: `0x${string}`): Promise<bigint>;
|
|
1588
|
+
/**
|
|
1589
|
+
* balanceOfInvestor
|
|
1590
|
+
* view
|
|
1591
|
+
*/
|
|
1592
|
+
balanceOfInvestor(_id: string): Promise<bigint>;
|
|
1593
|
+
/**
|
|
1594
|
+
* cap
|
|
1595
|
+
* view
|
|
1596
|
+
*/
|
|
1597
|
+
cap(): Promise<bigint>;
|
|
1598
|
+
/**
|
|
1599
|
+
* decimals
|
|
1600
|
+
* view
|
|
1601
|
+
*/
|
|
1602
|
+
decimals(): Promise<bigint>;
|
|
1603
|
+
/**
|
|
1604
|
+
* getDSService
|
|
1605
|
+
* view
|
|
1606
|
+
*/
|
|
1607
|
+
getDSService(_serviceId: bigint): Promise<`0x${string}`>;
|
|
1608
|
+
/**
|
|
1609
|
+
* getImplementationAddress
|
|
1610
|
+
* view
|
|
1611
|
+
*/
|
|
1612
|
+
getImplementationAddress(): Promise<`0x${string}`>;
|
|
1613
|
+
/**
|
|
1614
|
+
* getInitializedVersion
|
|
1615
|
+
* view
|
|
1616
|
+
*/
|
|
1617
|
+
getInitializedVersion(): Promise<bigint>;
|
|
1618
|
+
/**
|
|
1619
|
+
* getWalletAt
|
|
1620
|
+
* view
|
|
1621
|
+
*/
|
|
1622
|
+
getWalletAt(_index: bigint): Promise<`0x${string}`>;
|
|
1623
|
+
/**
|
|
1624
|
+
* isPaused
|
|
1625
|
+
* view
|
|
1626
|
+
*/
|
|
1627
|
+
isPaused(): Promise<boolean>;
|
|
1628
|
+
/**
|
|
1629
|
+
* name
|
|
1630
|
+
* view
|
|
1631
|
+
*/
|
|
1632
|
+
name(): Promise<string>;
|
|
1633
|
+
/**
|
|
1634
|
+
* owner
|
|
1635
|
+
* view
|
|
1636
|
+
*/
|
|
1637
|
+
owner(): Promise<`0x${string}`>;
|
|
1638
|
+
/**
|
|
1639
|
+
* preTransferCheck
|
|
1640
|
+
* view
|
|
1641
|
+
*/
|
|
1642
|
+
preTransferCheck(_from: `0x${string}`, _to: `0x${string}`, _value: bigint): Promise<[bigint, string]>;
|
|
1643
|
+
/**
|
|
1644
|
+
* proxiableUUID
|
|
1645
|
+
* view
|
|
1646
|
+
*/
|
|
1647
|
+
proxiableUUID(): Promise<`0x${string}`>;
|
|
1648
|
+
/**
|
|
1649
|
+
* supportedFeatures
|
|
1650
|
+
* view
|
|
1651
|
+
*/
|
|
1652
|
+
supportedFeatures(): Promise<bigint>;
|
|
1653
|
+
/**
|
|
1654
|
+
* symbol
|
|
1655
|
+
* view
|
|
1656
|
+
*/
|
|
1657
|
+
symbol(): Promise<string>;
|
|
1658
|
+
/**
|
|
1659
|
+
* totalIssued
|
|
1660
|
+
* view
|
|
1661
|
+
*/
|
|
1662
|
+
totalIssued(): Promise<bigint>;
|
|
1663
|
+
/**
|
|
1664
|
+
* totalSupply
|
|
1665
|
+
* view
|
|
1666
|
+
*/
|
|
1667
|
+
totalSupply(): Promise<bigint>;
|
|
1668
|
+
/**
|
|
1669
|
+
* walletCount
|
|
1670
|
+
* view
|
|
1671
|
+
*/
|
|
1672
|
+
walletCount(): Promise<bigint>;
|
|
1673
|
+
/**
|
|
1674
|
+
* __BaseDSContract_init
|
|
1675
|
+
* nonpayable
|
|
1676
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1677
|
+
*/
|
|
1678
|
+
__BaseDSContract_init(options?: {
|
|
1679
|
+
accessList?: import('viem').AccessList;
|
|
1680
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1681
|
+
chain?: import('viem').Chain | null;
|
|
1682
|
+
dataSuffix?: `0x${string}`;
|
|
1683
|
+
gas?: bigint;
|
|
1684
|
+
gasPrice?: bigint;
|
|
1685
|
+
maxFeePerGas?: bigint;
|
|
1686
|
+
maxPriorityFeePerGas?: bigint;
|
|
1687
|
+
nonce?: number;
|
|
1688
|
+
value?: bigint;
|
|
1689
|
+
}): Promise<`0x${string}`>;
|
|
1690
|
+
/**
|
|
1691
|
+
* __ServiceConsumer_init
|
|
1692
|
+
* nonpayable
|
|
1693
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1694
|
+
*/
|
|
1695
|
+
__ServiceConsumer_init(options?: {
|
|
1696
|
+
accessList?: import('viem').AccessList;
|
|
1697
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1698
|
+
chain?: import('viem').Chain | null;
|
|
1699
|
+
dataSuffix?: `0x${string}`;
|
|
1700
|
+
gas?: bigint;
|
|
1701
|
+
gasPrice?: bigint;
|
|
1702
|
+
maxFeePerGas?: bigint;
|
|
1703
|
+
maxPriorityFeePerGas?: bigint;
|
|
1704
|
+
nonce?: number;
|
|
1705
|
+
value?: bigint;
|
|
1706
|
+
}): Promise<`0x${string}`>;
|
|
1707
|
+
/**
|
|
1708
|
+
* __StandardToken_init
|
|
1709
|
+
* nonpayable
|
|
1710
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1711
|
+
*/
|
|
1712
|
+
__StandardToken_init(options?: {
|
|
1713
|
+
accessList?: import('viem').AccessList;
|
|
1714
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1715
|
+
chain?: import('viem').Chain | null;
|
|
1716
|
+
dataSuffix?: `0x${string}`;
|
|
1717
|
+
gas?: bigint;
|
|
1718
|
+
gasPrice?: bigint;
|
|
1719
|
+
maxFeePerGas?: bigint;
|
|
1720
|
+
maxPriorityFeePerGas?: bigint;
|
|
1721
|
+
nonce?: number;
|
|
1722
|
+
value?: bigint;
|
|
1723
|
+
}): Promise<`0x${string}`>;
|
|
1724
|
+
/**
|
|
1725
|
+
* approve
|
|
1726
|
+
* nonpayable
|
|
1727
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1728
|
+
*/
|
|
1729
|
+
approve(_spender: `0x${string}`, _value: bigint, options?: {
|
|
1730
|
+
accessList?: import('viem').AccessList;
|
|
1731
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1732
|
+
chain?: import('viem').Chain | null;
|
|
1733
|
+
dataSuffix?: `0x${string}`;
|
|
1734
|
+
gas?: bigint;
|
|
1735
|
+
gasPrice?: bigint;
|
|
1736
|
+
maxFeePerGas?: bigint;
|
|
1737
|
+
maxPriorityFeePerGas?: bigint;
|
|
1738
|
+
nonce?: number;
|
|
1739
|
+
value?: bigint;
|
|
1740
|
+
}): Promise<`0x${string}`>;
|
|
1741
|
+
/**
|
|
1742
|
+
* burn
|
|
1743
|
+
* nonpayable
|
|
1744
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1745
|
+
*/
|
|
1746
|
+
burn(_who: `0x${string}`, _value: bigint, _reason: string, options?: {
|
|
1747
|
+
accessList?: import('viem').AccessList;
|
|
1748
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1749
|
+
chain?: import('viem').Chain | null;
|
|
1750
|
+
dataSuffix?: `0x${string}`;
|
|
1751
|
+
gas?: bigint;
|
|
1752
|
+
gasPrice?: bigint;
|
|
1753
|
+
maxFeePerGas?: bigint;
|
|
1754
|
+
maxPriorityFeePerGas?: bigint;
|
|
1755
|
+
nonce?: number;
|
|
1756
|
+
value?: bigint;
|
|
1757
|
+
}): Promise<`0x${string}`>;
|
|
1758
|
+
/**
|
|
1759
|
+
* decreaseApproval
|
|
1760
|
+
* nonpayable
|
|
1761
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1762
|
+
*/
|
|
1763
|
+
decreaseApproval(_spender: `0x${string}`, _subtractedValue: bigint, options?: {
|
|
1764
|
+
accessList?: import('viem').AccessList;
|
|
1765
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1766
|
+
chain?: import('viem').Chain | null;
|
|
1767
|
+
dataSuffix?: `0x${string}`;
|
|
1768
|
+
gas?: bigint;
|
|
1769
|
+
gasPrice?: bigint;
|
|
1770
|
+
maxFeePerGas?: bigint;
|
|
1771
|
+
maxPriorityFeePerGas?: bigint;
|
|
1772
|
+
nonce?: number;
|
|
1773
|
+
value?: bigint;
|
|
1774
|
+
}): Promise<`0x${string}`>;
|
|
1775
|
+
/**
|
|
1776
|
+
* emitOmnibusTBEEvent
|
|
1777
|
+
* nonpayable
|
|
1778
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1779
|
+
*/
|
|
1780
|
+
emitOmnibusTBEEvent(omnibusWallet: `0x${string}`, totalDelta: bigint, accreditedDelta: bigint, usAccreditedDelta: bigint, usTotalDelta: bigint, jpTotalDelta: bigint, options?: {
|
|
1781
|
+
accessList?: import('viem').AccessList;
|
|
1782
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1783
|
+
chain?: import('viem').Chain | null;
|
|
1784
|
+
dataSuffix?: `0x${string}`;
|
|
1785
|
+
gas?: bigint;
|
|
1786
|
+
gasPrice?: bigint;
|
|
1787
|
+
maxFeePerGas?: bigint;
|
|
1788
|
+
maxPriorityFeePerGas?: bigint;
|
|
1789
|
+
nonce?: number;
|
|
1790
|
+
value?: bigint;
|
|
1791
|
+
}): Promise<`0x${string}`>;
|
|
1792
|
+
/**
|
|
1793
|
+
* emitOmnibusTBETransferEvent
|
|
1794
|
+
* nonpayable
|
|
1795
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1796
|
+
*/
|
|
1797
|
+
emitOmnibusTBETransferEvent(omnibusWallet: `0x${string}`, externalId: string, options?: {
|
|
1798
|
+
accessList?: import('viem').AccessList;
|
|
1799
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1800
|
+
chain?: import('viem').Chain | null;
|
|
1801
|
+
dataSuffix?: `0x${string}`;
|
|
1802
|
+
gas?: bigint;
|
|
1803
|
+
gasPrice?: bigint;
|
|
1804
|
+
maxFeePerGas?: bigint;
|
|
1805
|
+
maxPriorityFeePerGas?: bigint;
|
|
1806
|
+
nonce?: number;
|
|
1807
|
+
value?: bigint;
|
|
1808
|
+
}): Promise<`0x${string}`>;
|
|
1809
|
+
/**
|
|
1810
|
+
* emitOmnibusTransferEvent
|
|
1811
|
+
* nonpayable
|
|
1812
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1813
|
+
*/
|
|
1814
|
+
emitOmnibusTransferEvent(_omnibusWallet: `0x${string}`, _from: `0x${string}`, _to: `0x${string}`, _value: bigint, options?: {
|
|
1815
|
+
accessList?: import('viem').AccessList;
|
|
1816
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1817
|
+
chain?: import('viem').Chain | null;
|
|
1818
|
+
dataSuffix?: `0x${string}`;
|
|
1819
|
+
gas?: bigint;
|
|
1820
|
+
gasPrice?: bigint;
|
|
1821
|
+
maxFeePerGas?: bigint;
|
|
1822
|
+
maxPriorityFeePerGas?: bigint;
|
|
1823
|
+
nonce?: number;
|
|
1824
|
+
value?: bigint;
|
|
1825
|
+
}): Promise<`0x${string}`>;
|
|
1826
|
+
/**
|
|
1827
|
+
* increaseApproval
|
|
1828
|
+
* nonpayable
|
|
1829
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1830
|
+
*/
|
|
1831
|
+
increaseApproval(_spender: `0x${string}`, _addedValue: bigint, options?: {
|
|
1832
|
+
accessList?: import('viem').AccessList;
|
|
1833
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1834
|
+
chain?: import('viem').Chain | null;
|
|
1835
|
+
dataSuffix?: `0x${string}`;
|
|
1836
|
+
gas?: bigint;
|
|
1837
|
+
gasPrice?: bigint;
|
|
1838
|
+
maxFeePerGas?: bigint;
|
|
1839
|
+
maxPriorityFeePerGas?: bigint;
|
|
1840
|
+
nonce?: number;
|
|
1841
|
+
value?: bigint;
|
|
1842
|
+
}): Promise<`0x${string}`>;
|
|
1843
|
+
/**
|
|
1844
|
+
* initialize
|
|
1845
|
+
* nonpayable
|
|
1846
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1847
|
+
*/
|
|
1848
|
+
initialize(_name: string, _symbol: string, _decimals: bigint, options?: {
|
|
1849
|
+
accessList?: import('viem').AccessList;
|
|
1850
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1851
|
+
chain?: import('viem').Chain | null;
|
|
1852
|
+
dataSuffix?: `0x${string}`;
|
|
1853
|
+
gas?: bigint;
|
|
1854
|
+
gasPrice?: bigint;
|
|
1855
|
+
maxFeePerGas?: bigint;
|
|
1856
|
+
maxPriorityFeePerGas?: bigint;
|
|
1857
|
+
nonce?: number;
|
|
1858
|
+
value?: bigint;
|
|
1859
|
+
}): Promise<`0x${string}`>;
|
|
1860
|
+
/**
|
|
1861
|
+
* issueTokens
|
|
1862
|
+
* nonpayable
|
|
1863
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1864
|
+
*/
|
|
1865
|
+
issueTokens(_to: `0x${string}`, _value: bigint, options?: {
|
|
1866
|
+
accessList?: import('viem').AccessList;
|
|
1867
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1868
|
+
chain?: import('viem').Chain | null;
|
|
1869
|
+
dataSuffix?: `0x${string}`;
|
|
1870
|
+
gas?: bigint;
|
|
1871
|
+
gasPrice?: bigint;
|
|
1872
|
+
maxFeePerGas?: bigint;
|
|
1873
|
+
maxPriorityFeePerGas?: bigint;
|
|
1874
|
+
nonce?: number;
|
|
1875
|
+
value?: bigint;
|
|
1876
|
+
}): Promise<`0x${string}`>;
|
|
1877
|
+
/**
|
|
1878
|
+
* issueTokensCustom
|
|
1879
|
+
* nonpayable
|
|
1880
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1881
|
+
*/
|
|
1882
|
+
issueTokensCustom(_to: `0x${string}`, _value: bigint, _issuanceTime: bigint, _valueLocked: bigint, _reason: string, _releaseTime: bigint, options?: {
|
|
1883
|
+
accessList?: import('viem').AccessList;
|
|
1884
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1885
|
+
chain?: import('viem').Chain | null;
|
|
1886
|
+
dataSuffix?: `0x${string}`;
|
|
1887
|
+
gas?: bigint;
|
|
1888
|
+
gasPrice?: bigint;
|
|
1889
|
+
maxFeePerGas?: bigint;
|
|
1890
|
+
maxPriorityFeePerGas?: bigint;
|
|
1891
|
+
nonce?: number;
|
|
1892
|
+
value?: bigint;
|
|
1893
|
+
}): Promise<`0x${string}`>;
|
|
1894
|
+
/**
|
|
1895
|
+
* issueTokensWithMultipleLocks
|
|
1896
|
+
* nonpayable
|
|
1897
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1898
|
+
*/
|
|
1899
|
+
issueTokensWithMultipleLocks(_to: `0x${string}`, _value: bigint, _issuanceTime: bigint, _valuesLocked: bigint[], _reason: string, _releaseTimes: bigint[], options?: {
|
|
1900
|
+
accessList?: import('viem').AccessList;
|
|
1901
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1902
|
+
chain?: import('viem').Chain | null;
|
|
1903
|
+
dataSuffix?: `0x${string}`;
|
|
1904
|
+
gas?: bigint;
|
|
1905
|
+
gasPrice?: bigint;
|
|
1906
|
+
maxFeePerGas?: bigint;
|
|
1907
|
+
maxPriorityFeePerGas?: bigint;
|
|
1908
|
+
nonce?: number;
|
|
1909
|
+
value?: bigint;
|
|
1910
|
+
}): Promise<`0x${string}`>;
|
|
1911
|
+
/**
|
|
1912
|
+
* issueTokensWithNoCompliance
|
|
1913
|
+
* nonpayable
|
|
1914
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1915
|
+
*/
|
|
1916
|
+
issueTokensWithNoCompliance(_to: `0x${string}`, _value: bigint, options?: {
|
|
1917
|
+
accessList?: import('viem').AccessList;
|
|
1918
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1919
|
+
chain?: import('viem').Chain | null;
|
|
1920
|
+
dataSuffix?: `0x${string}`;
|
|
1921
|
+
gas?: bigint;
|
|
1922
|
+
gasPrice?: bigint;
|
|
1923
|
+
maxFeePerGas?: bigint;
|
|
1924
|
+
maxPriorityFeePerGas?: bigint;
|
|
1925
|
+
nonce?: number;
|
|
1926
|
+
value?: bigint;
|
|
1927
|
+
}): Promise<`0x${string}`>;
|
|
1928
|
+
/**
|
|
1929
|
+
* omnibusBurn
|
|
1930
|
+
* nonpayable
|
|
1931
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1932
|
+
*/
|
|
1933
|
+
omnibusBurn(_omnibusWallet: `0x${string}`, _who: `0x${string}`, _value: bigint, _reason: string, options?: {
|
|
1934
|
+
accessList?: import('viem').AccessList;
|
|
1935
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1936
|
+
chain?: import('viem').Chain | null;
|
|
1937
|
+
dataSuffix?: `0x${string}`;
|
|
1938
|
+
gas?: bigint;
|
|
1939
|
+
gasPrice?: bigint;
|
|
1940
|
+
maxFeePerGas?: bigint;
|
|
1941
|
+
maxPriorityFeePerGas?: bigint;
|
|
1942
|
+
nonce?: number;
|
|
1943
|
+
value?: bigint;
|
|
1944
|
+
}): Promise<`0x${string}`>;
|
|
1945
|
+
/**
|
|
1946
|
+
* omnibusSeize
|
|
1947
|
+
* nonpayable
|
|
1948
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1949
|
+
*/
|
|
1950
|
+
omnibusSeize(_omnibusWallet: `0x${string}`, _from: `0x${string}`, _to: `0x${string}`, _value: bigint, _reason: string, options?: {
|
|
1951
|
+
accessList?: import('viem').AccessList;
|
|
1952
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1953
|
+
chain?: import('viem').Chain | null;
|
|
1954
|
+
dataSuffix?: `0x${string}`;
|
|
1955
|
+
gas?: bigint;
|
|
1956
|
+
gasPrice?: bigint;
|
|
1957
|
+
maxFeePerGas?: bigint;
|
|
1958
|
+
maxPriorityFeePerGas?: bigint;
|
|
1959
|
+
nonce?: number;
|
|
1960
|
+
value?: bigint;
|
|
1961
|
+
}): Promise<`0x${string}`>;
|
|
1962
|
+
/**
|
|
1963
|
+
* pause
|
|
1964
|
+
* nonpayable
|
|
1965
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1966
|
+
*/
|
|
1967
|
+
pause(options?: {
|
|
1968
|
+
accessList?: import('viem').AccessList;
|
|
1969
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1970
|
+
chain?: import('viem').Chain | null;
|
|
1971
|
+
dataSuffix?: `0x${string}`;
|
|
1972
|
+
gas?: bigint;
|
|
1973
|
+
gasPrice?: bigint;
|
|
1974
|
+
maxFeePerGas?: bigint;
|
|
1975
|
+
maxPriorityFeePerGas?: bigint;
|
|
1976
|
+
nonce?: number;
|
|
1977
|
+
value?: bigint;
|
|
1978
|
+
}): Promise<`0x${string}`>;
|
|
1979
|
+
/**
|
|
1980
|
+
* renounceOwnership
|
|
1981
|
+
* nonpayable
|
|
1982
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1983
|
+
*/
|
|
1984
|
+
renounceOwnership(options?: {
|
|
1985
|
+
accessList?: import('viem').AccessList;
|
|
1986
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
1987
|
+
chain?: import('viem').Chain | null;
|
|
1988
|
+
dataSuffix?: `0x${string}`;
|
|
1989
|
+
gas?: bigint;
|
|
1990
|
+
gasPrice?: bigint;
|
|
1991
|
+
maxFeePerGas?: bigint;
|
|
1992
|
+
maxPriorityFeePerGas?: bigint;
|
|
1993
|
+
nonce?: number;
|
|
1994
|
+
value?: bigint;
|
|
1995
|
+
}): Promise<`0x${string}`>;
|
|
1996
|
+
/**
|
|
1997
|
+
* seize
|
|
1998
|
+
* nonpayable
|
|
1999
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2000
|
+
*/
|
|
2001
|
+
seize(_from: `0x${string}`, _to: `0x${string}`, _value: bigint, _reason: string, options?: {
|
|
2002
|
+
accessList?: import('viem').AccessList;
|
|
2003
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2004
|
+
chain?: import('viem').Chain | null;
|
|
2005
|
+
dataSuffix?: `0x${string}`;
|
|
2006
|
+
gas?: bigint;
|
|
2007
|
+
gasPrice?: bigint;
|
|
2008
|
+
maxFeePerGas?: bigint;
|
|
2009
|
+
maxPriorityFeePerGas?: bigint;
|
|
2010
|
+
nonce?: number;
|
|
2011
|
+
value?: bigint;
|
|
2012
|
+
}): Promise<`0x${string}`>;
|
|
2013
|
+
/**
|
|
2014
|
+
* setCap
|
|
2015
|
+
* nonpayable
|
|
2016
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2017
|
+
*/
|
|
2018
|
+
setCap(_cap: bigint, options?: {
|
|
2019
|
+
accessList?: import('viem').AccessList;
|
|
2020
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2021
|
+
chain?: import('viem').Chain | null;
|
|
2022
|
+
dataSuffix?: `0x${string}`;
|
|
2023
|
+
gas?: bigint;
|
|
2024
|
+
gasPrice?: bigint;
|
|
2025
|
+
maxFeePerGas?: bigint;
|
|
2026
|
+
maxPriorityFeePerGas?: bigint;
|
|
2027
|
+
nonce?: number;
|
|
2028
|
+
value?: bigint;
|
|
2029
|
+
}): Promise<`0x${string}`>;
|
|
2030
|
+
/**
|
|
2031
|
+
* setDSService
|
|
2032
|
+
* nonpayable
|
|
2033
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2034
|
+
*/
|
|
2035
|
+
setDSService(_serviceId: bigint, _address: `0x${string}`, options?: {
|
|
2036
|
+
accessList?: import('viem').AccessList;
|
|
2037
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2038
|
+
chain?: import('viem').Chain | null;
|
|
2039
|
+
dataSuffix?: `0x${string}`;
|
|
2040
|
+
gas?: bigint;
|
|
2041
|
+
gasPrice?: bigint;
|
|
2042
|
+
maxFeePerGas?: bigint;
|
|
2043
|
+
maxPriorityFeePerGas?: bigint;
|
|
2044
|
+
nonce?: number;
|
|
2045
|
+
value?: bigint;
|
|
2046
|
+
}): Promise<`0x${string}`>;
|
|
2047
|
+
/**
|
|
2048
|
+
* setFeature
|
|
2049
|
+
* nonpayable
|
|
2050
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2051
|
+
*/
|
|
2052
|
+
setFeature(featureIndex: bigint, enable: boolean, options?: {
|
|
2053
|
+
accessList?: import('viem').AccessList;
|
|
2054
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2055
|
+
chain?: import('viem').Chain | null;
|
|
2056
|
+
dataSuffix?: `0x${string}`;
|
|
2057
|
+
gas?: bigint;
|
|
2058
|
+
gasPrice?: bigint;
|
|
2059
|
+
maxFeePerGas?: bigint;
|
|
2060
|
+
maxPriorityFeePerGas?: bigint;
|
|
2061
|
+
nonce?: number;
|
|
2062
|
+
value?: bigint;
|
|
2063
|
+
}): Promise<`0x${string}`>;
|
|
2064
|
+
/**
|
|
2065
|
+
* setFeatures
|
|
2066
|
+
* nonpayable
|
|
2067
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2068
|
+
*/
|
|
2069
|
+
setFeatures(features: bigint, options?: {
|
|
2070
|
+
accessList?: import('viem').AccessList;
|
|
2071
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2072
|
+
chain?: import('viem').Chain | null;
|
|
2073
|
+
dataSuffix?: `0x${string}`;
|
|
2074
|
+
gas?: bigint;
|
|
2075
|
+
gasPrice?: bigint;
|
|
2076
|
+
maxFeePerGas?: bigint;
|
|
2077
|
+
maxPriorityFeePerGas?: bigint;
|
|
2078
|
+
nonce?: number;
|
|
2079
|
+
value?: bigint;
|
|
2080
|
+
}): Promise<`0x${string}`>;
|
|
2081
|
+
/**
|
|
2082
|
+
* transfer
|
|
2083
|
+
* nonpayable
|
|
2084
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2085
|
+
*/
|
|
2086
|
+
transfer(_to: `0x${string}`, _value: bigint, options?: {
|
|
2087
|
+
accessList?: import('viem').AccessList;
|
|
2088
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2089
|
+
chain?: import('viem').Chain | null;
|
|
2090
|
+
dataSuffix?: `0x${string}`;
|
|
2091
|
+
gas?: bigint;
|
|
2092
|
+
gasPrice?: bigint;
|
|
2093
|
+
maxFeePerGas?: bigint;
|
|
2094
|
+
maxPriorityFeePerGas?: bigint;
|
|
2095
|
+
nonce?: number;
|
|
2096
|
+
value?: bigint;
|
|
2097
|
+
}): Promise<`0x${string}`>;
|
|
2098
|
+
/**
|
|
2099
|
+
* transferFrom
|
|
2100
|
+
* nonpayable
|
|
2101
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2102
|
+
*/
|
|
2103
|
+
transferFrom(_from: `0x${string}`, _to: `0x${string}`, _value: bigint, options?: {
|
|
2104
|
+
accessList?: import('viem').AccessList;
|
|
2105
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2106
|
+
chain?: import('viem').Chain | null;
|
|
2107
|
+
dataSuffix?: `0x${string}`;
|
|
2108
|
+
gas?: bigint;
|
|
2109
|
+
gasPrice?: bigint;
|
|
2110
|
+
maxFeePerGas?: bigint;
|
|
2111
|
+
maxPriorityFeePerGas?: bigint;
|
|
2112
|
+
nonce?: number;
|
|
2113
|
+
value?: bigint;
|
|
2114
|
+
}): Promise<`0x${string}`>;
|
|
2115
|
+
/**
|
|
2116
|
+
* transferOwnership
|
|
2117
|
+
* nonpayable
|
|
2118
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2119
|
+
*/
|
|
2120
|
+
transferOwnership(newOwner: `0x${string}`, options?: {
|
|
2121
|
+
accessList?: import('viem').AccessList;
|
|
2122
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2123
|
+
chain?: import('viem').Chain | null;
|
|
2124
|
+
dataSuffix?: `0x${string}`;
|
|
2125
|
+
gas?: bigint;
|
|
2126
|
+
gasPrice?: bigint;
|
|
2127
|
+
maxFeePerGas?: bigint;
|
|
2128
|
+
maxPriorityFeePerGas?: bigint;
|
|
2129
|
+
nonce?: number;
|
|
2130
|
+
value?: bigint;
|
|
2131
|
+
}): Promise<`0x${string}`>;
|
|
2132
|
+
/**
|
|
2133
|
+
* unpause
|
|
2134
|
+
* nonpayable
|
|
2135
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2136
|
+
*/
|
|
2137
|
+
unpause(options?: {
|
|
2138
|
+
accessList?: import('viem').AccessList;
|
|
2139
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2140
|
+
chain?: import('viem').Chain | null;
|
|
2141
|
+
dataSuffix?: `0x${string}`;
|
|
2142
|
+
gas?: bigint;
|
|
2143
|
+
gasPrice?: bigint;
|
|
2144
|
+
maxFeePerGas?: bigint;
|
|
2145
|
+
maxPriorityFeePerGas?: bigint;
|
|
2146
|
+
nonce?: number;
|
|
2147
|
+
value?: bigint;
|
|
2148
|
+
}): Promise<`0x${string}`>;
|
|
2149
|
+
/**
|
|
2150
|
+
* updateOmnibusInvestorBalance
|
|
2151
|
+
* nonpayable
|
|
2152
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2153
|
+
*/
|
|
2154
|
+
updateOmnibusInvestorBalance(_omnibusWallet: `0x${string}`, _wallet: `0x${string}`, _value: bigint, _increase: bigint, options?: {
|
|
2155
|
+
accessList?: import('viem').AccessList;
|
|
2156
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2157
|
+
chain?: import('viem').Chain | null;
|
|
2158
|
+
dataSuffix?: `0x${string}`;
|
|
2159
|
+
gas?: bigint;
|
|
2160
|
+
gasPrice?: bigint;
|
|
2161
|
+
maxFeePerGas?: bigint;
|
|
2162
|
+
maxPriorityFeePerGas?: bigint;
|
|
2163
|
+
nonce?: number;
|
|
2164
|
+
value?: bigint;
|
|
2165
|
+
}): Promise<`0x${string}`>;
|
|
2166
|
+
/**
|
|
2167
|
+
* upgradeToAndCall
|
|
2168
|
+
* payable
|
|
2169
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2170
|
+
*/
|
|
2171
|
+
upgradeToAndCall(newImplementation: `0x${string}`, data: `0x${string}`, options?: {
|
|
2172
|
+
accessList?: import('viem').AccessList;
|
|
2173
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2174
|
+
chain?: import('viem').Chain | null;
|
|
2175
|
+
dataSuffix?: `0x${string}`;
|
|
2176
|
+
gas?: bigint;
|
|
2177
|
+
gasPrice?: bigint;
|
|
2178
|
+
maxFeePerGas?: bigint;
|
|
2179
|
+
maxPriorityFeePerGas?: bigint;
|
|
2180
|
+
nonce?: number;
|
|
2181
|
+
value?: bigint;
|
|
2182
|
+
}): Promise<`0x${string}`>;
|
|
2183
|
+
/**
|
|
2184
|
+
* Simulate contract write operations (dry-run without sending transaction)
|
|
2185
|
+
*
|
|
2186
|
+
* @example
|
|
2187
|
+
* const result = await contract.simulate.transfer('0x...', 1000n);
|
|
2188
|
+
* console.log('Gas estimate:', result.request.gas);
|
|
2189
|
+
* console.log('Would succeed:', result.result);
|
|
2190
|
+
*/
|
|
2191
|
+
get simulate(): {
|
|
2192
|
+
/**
|
|
2193
|
+
* Simulate __BaseDSContract_init
|
|
2194
|
+
* Returns gas estimate and result without sending transaction
|
|
2195
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2196
|
+
*/
|
|
2197
|
+
__BaseDSContract_init(options?: {
|
|
2198
|
+
accessList?: import("viem").AccessList;
|
|
2199
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2200
|
+
chain?: import("viem").Chain | null;
|
|
2201
|
+
dataSuffix?: `0x${string}`;
|
|
2202
|
+
gas?: bigint;
|
|
2203
|
+
gasPrice?: bigint;
|
|
2204
|
+
maxFeePerGas?: bigint;
|
|
2205
|
+
maxPriorityFeePerGas?: bigint;
|
|
2206
|
+
nonce?: number;
|
|
2207
|
+
value?: bigint;
|
|
2208
|
+
}): Promise<void>;
|
|
2209
|
+
/**
|
|
2210
|
+
* Simulate __ServiceConsumer_init
|
|
2211
|
+
* Returns gas estimate and result without sending transaction
|
|
2212
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2213
|
+
*/
|
|
2214
|
+
__ServiceConsumer_init(options?: {
|
|
2215
|
+
accessList?: import("viem").AccessList;
|
|
2216
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2217
|
+
chain?: import("viem").Chain | null;
|
|
2218
|
+
dataSuffix?: `0x${string}`;
|
|
2219
|
+
gas?: bigint;
|
|
2220
|
+
gasPrice?: bigint;
|
|
2221
|
+
maxFeePerGas?: bigint;
|
|
2222
|
+
maxPriorityFeePerGas?: bigint;
|
|
2223
|
+
nonce?: number;
|
|
2224
|
+
value?: bigint;
|
|
2225
|
+
}): Promise<void>;
|
|
2226
|
+
/**
|
|
2227
|
+
* Simulate __StandardToken_init
|
|
2228
|
+
* Returns gas estimate and result without sending transaction
|
|
2229
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2230
|
+
*/
|
|
2231
|
+
__StandardToken_init(options?: {
|
|
2232
|
+
accessList?: import("viem").AccessList;
|
|
2233
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2234
|
+
chain?: import("viem").Chain | null;
|
|
2235
|
+
dataSuffix?: `0x${string}`;
|
|
2236
|
+
gas?: bigint;
|
|
2237
|
+
gasPrice?: bigint;
|
|
2238
|
+
maxFeePerGas?: bigint;
|
|
2239
|
+
maxPriorityFeePerGas?: bigint;
|
|
2240
|
+
nonce?: number;
|
|
2241
|
+
value?: bigint;
|
|
2242
|
+
}): Promise<void>;
|
|
2243
|
+
/**
|
|
2244
|
+
* Simulate approve
|
|
2245
|
+
* Returns gas estimate and result without sending transaction
|
|
2246
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2247
|
+
*/
|
|
2248
|
+
approve(_spender: `0x${string}`, _value: bigint, options?: {
|
|
2249
|
+
accessList?: import("viem").AccessList;
|
|
2250
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2251
|
+
chain?: import("viem").Chain | null;
|
|
2252
|
+
dataSuffix?: `0x${string}`;
|
|
2253
|
+
gas?: bigint;
|
|
2254
|
+
gasPrice?: bigint;
|
|
2255
|
+
maxFeePerGas?: bigint;
|
|
2256
|
+
maxPriorityFeePerGas?: bigint;
|
|
2257
|
+
nonce?: number;
|
|
2258
|
+
value?: bigint;
|
|
2259
|
+
}): Promise<boolean>;
|
|
2260
|
+
/**
|
|
2261
|
+
* Simulate burn
|
|
2262
|
+
* Returns gas estimate and result without sending transaction
|
|
2263
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2264
|
+
*/
|
|
2265
|
+
burn(_who: `0x${string}`, _value: bigint, _reason: string, options?: {
|
|
2266
|
+
accessList?: import("viem").AccessList;
|
|
2267
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2268
|
+
chain?: import("viem").Chain | null;
|
|
2269
|
+
dataSuffix?: `0x${string}`;
|
|
2270
|
+
gas?: bigint;
|
|
2271
|
+
gasPrice?: bigint;
|
|
2272
|
+
maxFeePerGas?: bigint;
|
|
2273
|
+
maxPriorityFeePerGas?: bigint;
|
|
2274
|
+
nonce?: number;
|
|
2275
|
+
value?: bigint;
|
|
2276
|
+
}): Promise<void>;
|
|
2277
|
+
/**
|
|
2278
|
+
* Simulate decreaseApproval
|
|
2279
|
+
* Returns gas estimate and result without sending transaction
|
|
2280
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2281
|
+
*/
|
|
2282
|
+
decreaseApproval(_spender: `0x${string}`, _subtractedValue: bigint, options?: {
|
|
2283
|
+
accessList?: import("viem").AccessList;
|
|
2284
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2285
|
+
chain?: import("viem").Chain | null;
|
|
2286
|
+
dataSuffix?: `0x${string}`;
|
|
2287
|
+
gas?: bigint;
|
|
2288
|
+
gasPrice?: bigint;
|
|
2289
|
+
maxFeePerGas?: bigint;
|
|
2290
|
+
maxPriorityFeePerGas?: bigint;
|
|
2291
|
+
nonce?: number;
|
|
2292
|
+
value?: bigint;
|
|
2293
|
+
}): Promise<boolean>;
|
|
2294
|
+
/**
|
|
2295
|
+
* Simulate emitOmnibusTBEEvent
|
|
2296
|
+
* Returns gas estimate and result without sending transaction
|
|
2297
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2298
|
+
*/
|
|
2299
|
+
emitOmnibusTBEEvent(omnibusWallet: `0x${string}`, totalDelta: bigint, accreditedDelta: bigint, usAccreditedDelta: bigint, usTotalDelta: bigint, jpTotalDelta: bigint, options?: {
|
|
2300
|
+
accessList?: import("viem").AccessList;
|
|
2301
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2302
|
+
chain?: import("viem").Chain | null;
|
|
2303
|
+
dataSuffix?: `0x${string}`;
|
|
2304
|
+
gas?: bigint;
|
|
2305
|
+
gasPrice?: bigint;
|
|
2306
|
+
maxFeePerGas?: bigint;
|
|
2307
|
+
maxPriorityFeePerGas?: bigint;
|
|
2308
|
+
nonce?: number;
|
|
2309
|
+
value?: bigint;
|
|
2310
|
+
}): Promise<void>;
|
|
2311
|
+
/**
|
|
2312
|
+
* Simulate emitOmnibusTBETransferEvent
|
|
2313
|
+
* Returns gas estimate and result without sending transaction
|
|
2314
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2315
|
+
*/
|
|
2316
|
+
emitOmnibusTBETransferEvent(omnibusWallet: `0x${string}`, externalId: string, options?: {
|
|
2317
|
+
accessList?: import("viem").AccessList;
|
|
2318
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2319
|
+
chain?: import("viem").Chain | null;
|
|
2320
|
+
dataSuffix?: `0x${string}`;
|
|
2321
|
+
gas?: bigint;
|
|
2322
|
+
gasPrice?: bigint;
|
|
2323
|
+
maxFeePerGas?: bigint;
|
|
2324
|
+
maxPriorityFeePerGas?: bigint;
|
|
2325
|
+
nonce?: number;
|
|
2326
|
+
value?: bigint;
|
|
2327
|
+
}): Promise<void>;
|
|
2328
|
+
/**
|
|
2329
|
+
* Simulate emitOmnibusTransferEvent
|
|
2330
|
+
* Returns gas estimate and result without sending transaction
|
|
2331
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2332
|
+
*/
|
|
2333
|
+
emitOmnibusTransferEvent(_omnibusWallet: `0x${string}`, _from: `0x${string}`, _to: `0x${string}`, _value: bigint, options?: {
|
|
2334
|
+
accessList?: import("viem").AccessList;
|
|
2335
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2336
|
+
chain?: import("viem").Chain | null;
|
|
2337
|
+
dataSuffix?: `0x${string}`;
|
|
2338
|
+
gas?: bigint;
|
|
2339
|
+
gasPrice?: bigint;
|
|
2340
|
+
maxFeePerGas?: bigint;
|
|
2341
|
+
maxPriorityFeePerGas?: bigint;
|
|
2342
|
+
nonce?: number;
|
|
2343
|
+
value?: bigint;
|
|
2344
|
+
}): Promise<void>;
|
|
2345
|
+
/**
|
|
2346
|
+
* Simulate increaseApproval
|
|
2347
|
+
* Returns gas estimate and result without sending transaction
|
|
2348
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2349
|
+
*/
|
|
2350
|
+
increaseApproval(_spender: `0x${string}`, _addedValue: bigint, options?: {
|
|
2351
|
+
accessList?: import("viem").AccessList;
|
|
2352
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2353
|
+
chain?: import("viem").Chain | null;
|
|
2354
|
+
dataSuffix?: `0x${string}`;
|
|
2355
|
+
gas?: bigint;
|
|
2356
|
+
gasPrice?: bigint;
|
|
2357
|
+
maxFeePerGas?: bigint;
|
|
2358
|
+
maxPriorityFeePerGas?: bigint;
|
|
2359
|
+
nonce?: number;
|
|
2360
|
+
value?: bigint;
|
|
2361
|
+
}): Promise<boolean>;
|
|
2362
|
+
/**
|
|
2363
|
+
* Simulate initialize
|
|
2364
|
+
* Returns gas estimate and result without sending transaction
|
|
2365
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2366
|
+
*/
|
|
2367
|
+
initialize(_name: string, _symbol: string, _decimals: bigint, options?: {
|
|
2368
|
+
accessList?: import("viem").AccessList;
|
|
2369
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2370
|
+
chain?: import("viem").Chain | null;
|
|
2371
|
+
dataSuffix?: `0x${string}`;
|
|
2372
|
+
gas?: bigint;
|
|
2373
|
+
gasPrice?: bigint;
|
|
2374
|
+
maxFeePerGas?: bigint;
|
|
2375
|
+
maxPriorityFeePerGas?: bigint;
|
|
2376
|
+
nonce?: number;
|
|
2377
|
+
value?: bigint;
|
|
2378
|
+
}): Promise<void>;
|
|
2379
|
+
/**
|
|
2380
|
+
* Simulate issueTokens
|
|
2381
|
+
* Returns gas estimate and result without sending transaction
|
|
2382
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2383
|
+
*/
|
|
2384
|
+
issueTokens(_to: `0x${string}`, _value: bigint, options?: {
|
|
2385
|
+
accessList?: import("viem").AccessList;
|
|
2386
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2387
|
+
chain?: import("viem").Chain | null;
|
|
2388
|
+
dataSuffix?: `0x${string}`;
|
|
2389
|
+
gas?: bigint;
|
|
2390
|
+
gasPrice?: bigint;
|
|
2391
|
+
maxFeePerGas?: bigint;
|
|
2392
|
+
maxPriorityFeePerGas?: bigint;
|
|
2393
|
+
nonce?: number;
|
|
2394
|
+
value?: bigint;
|
|
2395
|
+
}): Promise<boolean>;
|
|
2396
|
+
/**
|
|
2397
|
+
* Simulate issueTokensCustom
|
|
2398
|
+
* Returns gas estimate and result without sending transaction
|
|
2399
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2400
|
+
*/
|
|
2401
|
+
issueTokensCustom(_to: `0x${string}`, _value: bigint, _issuanceTime: bigint, _valueLocked: bigint, _reason: string, _releaseTime: bigint, options?: {
|
|
2402
|
+
accessList?: import("viem").AccessList;
|
|
2403
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2404
|
+
chain?: import("viem").Chain | null;
|
|
2405
|
+
dataSuffix?: `0x${string}`;
|
|
2406
|
+
gas?: bigint;
|
|
2407
|
+
gasPrice?: bigint;
|
|
2408
|
+
maxFeePerGas?: bigint;
|
|
2409
|
+
maxPriorityFeePerGas?: bigint;
|
|
2410
|
+
nonce?: number;
|
|
2411
|
+
value?: bigint;
|
|
2412
|
+
}): Promise<boolean>;
|
|
2413
|
+
/**
|
|
2414
|
+
* Simulate issueTokensWithMultipleLocks
|
|
2415
|
+
* Returns gas estimate and result without sending transaction
|
|
2416
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2417
|
+
*/
|
|
2418
|
+
issueTokensWithMultipleLocks(_to: `0x${string}`, _value: bigint, _issuanceTime: bigint, _valuesLocked: bigint[], _reason: string, _releaseTimes: bigint[], options?: {
|
|
2419
|
+
accessList?: import("viem").AccessList;
|
|
2420
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2421
|
+
chain?: import("viem").Chain | null;
|
|
2422
|
+
dataSuffix?: `0x${string}`;
|
|
2423
|
+
gas?: bigint;
|
|
2424
|
+
gasPrice?: bigint;
|
|
2425
|
+
maxFeePerGas?: bigint;
|
|
2426
|
+
maxPriorityFeePerGas?: bigint;
|
|
2427
|
+
nonce?: number;
|
|
2428
|
+
value?: bigint;
|
|
2429
|
+
}): Promise<boolean>;
|
|
2430
|
+
/**
|
|
2431
|
+
* Simulate issueTokensWithNoCompliance
|
|
2432
|
+
* Returns gas estimate and result without sending transaction
|
|
2433
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2434
|
+
*/
|
|
2435
|
+
issueTokensWithNoCompliance(_to: `0x${string}`, _value: bigint, options?: {
|
|
2436
|
+
accessList?: import("viem").AccessList;
|
|
2437
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2438
|
+
chain?: import("viem").Chain | null;
|
|
2439
|
+
dataSuffix?: `0x${string}`;
|
|
2440
|
+
gas?: bigint;
|
|
2441
|
+
gasPrice?: bigint;
|
|
2442
|
+
maxFeePerGas?: bigint;
|
|
2443
|
+
maxPriorityFeePerGas?: bigint;
|
|
2444
|
+
nonce?: number;
|
|
2445
|
+
value?: bigint;
|
|
2446
|
+
}): Promise<void>;
|
|
2447
|
+
/**
|
|
2448
|
+
* Simulate omnibusBurn
|
|
2449
|
+
* Returns gas estimate and result without sending transaction
|
|
2450
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2451
|
+
*/
|
|
2452
|
+
omnibusBurn(_omnibusWallet: `0x${string}`, _who: `0x${string}`, _value: bigint, _reason: string, options?: {
|
|
2453
|
+
accessList?: import("viem").AccessList;
|
|
2454
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2455
|
+
chain?: import("viem").Chain | null;
|
|
2456
|
+
dataSuffix?: `0x${string}`;
|
|
2457
|
+
gas?: bigint;
|
|
2458
|
+
gasPrice?: bigint;
|
|
2459
|
+
maxFeePerGas?: bigint;
|
|
2460
|
+
maxPriorityFeePerGas?: bigint;
|
|
2461
|
+
nonce?: number;
|
|
2462
|
+
value?: bigint;
|
|
2463
|
+
}): Promise<void>;
|
|
2464
|
+
/**
|
|
2465
|
+
* Simulate omnibusSeize
|
|
2466
|
+
* Returns gas estimate and result without sending transaction
|
|
2467
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2468
|
+
*/
|
|
2469
|
+
omnibusSeize(_omnibusWallet: `0x${string}`, _from: `0x${string}`, _to: `0x${string}`, _value: bigint, _reason: string, options?: {
|
|
2470
|
+
accessList?: import("viem").AccessList;
|
|
2471
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2472
|
+
chain?: import("viem").Chain | null;
|
|
2473
|
+
dataSuffix?: `0x${string}`;
|
|
2474
|
+
gas?: bigint;
|
|
2475
|
+
gasPrice?: bigint;
|
|
2476
|
+
maxFeePerGas?: bigint;
|
|
2477
|
+
maxPriorityFeePerGas?: bigint;
|
|
2478
|
+
nonce?: number;
|
|
2479
|
+
value?: bigint;
|
|
2480
|
+
}): Promise<void>;
|
|
2481
|
+
/**
|
|
2482
|
+
* Simulate pause
|
|
2483
|
+
* Returns gas estimate and result without sending transaction
|
|
2484
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2485
|
+
*/
|
|
2486
|
+
pause(options?: {
|
|
2487
|
+
accessList?: import("viem").AccessList;
|
|
2488
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2489
|
+
chain?: import("viem").Chain | null;
|
|
2490
|
+
dataSuffix?: `0x${string}`;
|
|
2491
|
+
gas?: bigint;
|
|
2492
|
+
gasPrice?: bigint;
|
|
2493
|
+
maxFeePerGas?: bigint;
|
|
2494
|
+
maxPriorityFeePerGas?: bigint;
|
|
2495
|
+
nonce?: number;
|
|
2496
|
+
value?: bigint;
|
|
2497
|
+
}): Promise<void>;
|
|
2498
|
+
/**
|
|
2499
|
+
* Simulate renounceOwnership
|
|
2500
|
+
* Returns gas estimate and result without sending transaction
|
|
2501
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2502
|
+
*/
|
|
2503
|
+
renounceOwnership(options?: {
|
|
2504
|
+
accessList?: import("viem").AccessList;
|
|
2505
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2506
|
+
chain?: import("viem").Chain | null;
|
|
2507
|
+
dataSuffix?: `0x${string}`;
|
|
2508
|
+
gas?: bigint;
|
|
2509
|
+
gasPrice?: bigint;
|
|
2510
|
+
maxFeePerGas?: bigint;
|
|
2511
|
+
maxPriorityFeePerGas?: bigint;
|
|
2512
|
+
nonce?: number;
|
|
2513
|
+
value?: bigint;
|
|
2514
|
+
}): Promise<void>;
|
|
2515
|
+
/**
|
|
2516
|
+
* Simulate seize
|
|
2517
|
+
* Returns gas estimate and result without sending transaction
|
|
2518
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2519
|
+
*/
|
|
2520
|
+
seize(_from: `0x${string}`, _to: `0x${string}`, _value: bigint, _reason: string, options?: {
|
|
2521
|
+
accessList?: import("viem").AccessList;
|
|
2522
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2523
|
+
chain?: import("viem").Chain | null;
|
|
2524
|
+
dataSuffix?: `0x${string}`;
|
|
2525
|
+
gas?: bigint;
|
|
2526
|
+
gasPrice?: bigint;
|
|
2527
|
+
maxFeePerGas?: bigint;
|
|
2528
|
+
maxPriorityFeePerGas?: bigint;
|
|
2529
|
+
nonce?: number;
|
|
2530
|
+
value?: bigint;
|
|
2531
|
+
}): Promise<void>;
|
|
2532
|
+
/**
|
|
2533
|
+
* Simulate setCap
|
|
2534
|
+
* Returns gas estimate and result without sending transaction
|
|
2535
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2536
|
+
*/
|
|
2537
|
+
setCap(_cap: bigint, options?: {
|
|
2538
|
+
accessList?: import("viem").AccessList;
|
|
2539
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2540
|
+
chain?: import("viem").Chain | null;
|
|
2541
|
+
dataSuffix?: `0x${string}`;
|
|
2542
|
+
gas?: bigint;
|
|
2543
|
+
gasPrice?: bigint;
|
|
2544
|
+
maxFeePerGas?: bigint;
|
|
2545
|
+
maxPriorityFeePerGas?: bigint;
|
|
2546
|
+
nonce?: number;
|
|
2547
|
+
value?: bigint;
|
|
2548
|
+
}): Promise<void>;
|
|
2549
|
+
/**
|
|
2550
|
+
* Simulate setDSService
|
|
2551
|
+
* Returns gas estimate and result without sending transaction
|
|
2552
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2553
|
+
*/
|
|
2554
|
+
setDSService(_serviceId: bigint, _address: `0x${string}`, options?: {
|
|
2555
|
+
accessList?: import("viem").AccessList;
|
|
2556
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2557
|
+
chain?: import("viem").Chain | null;
|
|
2558
|
+
dataSuffix?: `0x${string}`;
|
|
2559
|
+
gas?: bigint;
|
|
2560
|
+
gasPrice?: bigint;
|
|
2561
|
+
maxFeePerGas?: bigint;
|
|
2562
|
+
maxPriorityFeePerGas?: bigint;
|
|
2563
|
+
nonce?: number;
|
|
2564
|
+
value?: bigint;
|
|
2565
|
+
}): Promise<boolean>;
|
|
2566
|
+
/**
|
|
2567
|
+
* Simulate setFeature
|
|
2568
|
+
* Returns gas estimate and result without sending transaction
|
|
2569
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2570
|
+
*/
|
|
2571
|
+
setFeature(featureIndex: bigint, enable: boolean, options?: {
|
|
2572
|
+
accessList?: import("viem").AccessList;
|
|
2573
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2574
|
+
chain?: import("viem").Chain | null;
|
|
2575
|
+
dataSuffix?: `0x${string}`;
|
|
2576
|
+
gas?: bigint;
|
|
2577
|
+
gasPrice?: bigint;
|
|
2578
|
+
maxFeePerGas?: bigint;
|
|
2579
|
+
maxPriorityFeePerGas?: bigint;
|
|
2580
|
+
nonce?: number;
|
|
2581
|
+
value?: bigint;
|
|
2582
|
+
}): Promise<void>;
|
|
2583
|
+
/**
|
|
2584
|
+
* Simulate setFeatures
|
|
2585
|
+
* Returns gas estimate and result without sending transaction
|
|
2586
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2587
|
+
*/
|
|
2588
|
+
setFeatures(features: bigint, options?: {
|
|
2589
|
+
accessList?: import("viem").AccessList;
|
|
2590
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2591
|
+
chain?: import("viem").Chain | null;
|
|
2592
|
+
dataSuffix?: `0x${string}`;
|
|
2593
|
+
gas?: bigint;
|
|
2594
|
+
gasPrice?: bigint;
|
|
2595
|
+
maxFeePerGas?: bigint;
|
|
2596
|
+
maxPriorityFeePerGas?: bigint;
|
|
2597
|
+
nonce?: number;
|
|
2598
|
+
value?: bigint;
|
|
2599
|
+
}): Promise<void>;
|
|
2600
|
+
/**
|
|
2601
|
+
* Simulate transfer
|
|
2602
|
+
* Returns gas estimate and result without sending transaction
|
|
2603
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2604
|
+
*/
|
|
2605
|
+
transfer(_to: `0x${string}`, _value: bigint, options?: {
|
|
2606
|
+
accessList?: import("viem").AccessList;
|
|
2607
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2608
|
+
chain?: import("viem").Chain | null;
|
|
2609
|
+
dataSuffix?: `0x${string}`;
|
|
2610
|
+
gas?: bigint;
|
|
2611
|
+
gasPrice?: bigint;
|
|
2612
|
+
maxFeePerGas?: bigint;
|
|
2613
|
+
maxPriorityFeePerGas?: bigint;
|
|
2614
|
+
nonce?: number;
|
|
2615
|
+
value?: bigint;
|
|
2616
|
+
}): Promise<boolean>;
|
|
2617
|
+
/**
|
|
2618
|
+
* Simulate transferFrom
|
|
2619
|
+
* Returns gas estimate and result without sending transaction
|
|
2620
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2621
|
+
*/
|
|
2622
|
+
transferFrom(_from: `0x${string}`, _to: `0x${string}`, _value: bigint, options?: {
|
|
2623
|
+
accessList?: import("viem").AccessList;
|
|
2624
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2625
|
+
chain?: import("viem").Chain | null;
|
|
2626
|
+
dataSuffix?: `0x${string}`;
|
|
2627
|
+
gas?: bigint;
|
|
2628
|
+
gasPrice?: bigint;
|
|
2629
|
+
maxFeePerGas?: bigint;
|
|
2630
|
+
maxPriorityFeePerGas?: bigint;
|
|
2631
|
+
nonce?: number;
|
|
2632
|
+
value?: bigint;
|
|
2633
|
+
}): Promise<boolean>;
|
|
2634
|
+
/**
|
|
2635
|
+
* Simulate transferOwnership
|
|
2636
|
+
* Returns gas estimate and result without sending transaction
|
|
2637
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2638
|
+
*/
|
|
2639
|
+
transferOwnership(newOwner: `0x${string}`, options?: {
|
|
2640
|
+
accessList?: import("viem").AccessList;
|
|
2641
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2642
|
+
chain?: import("viem").Chain | null;
|
|
2643
|
+
dataSuffix?: `0x${string}`;
|
|
2644
|
+
gas?: bigint;
|
|
2645
|
+
gasPrice?: bigint;
|
|
2646
|
+
maxFeePerGas?: bigint;
|
|
2647
|
+
maxPriorityFeePerGas?: bigint;
|
|
2648
|
+
nonce?: number;
|
|
2649
|
+
value?: bigint;
|
|
2650
|
+
}): Promise<void>;
|
|
2651
|
+
/**
|
|
2652
|
+
* Simulate unpause
|
|
2653
|
+
* Returns gas estimate and result without sending transaction
|
|
2654
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2655
|
+
*/
|
|
2656
|
+
unpause(options?: {
|
|
2657
|
+
accessList?: import("viem").AccessList;
|
|
2658
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2659
|
+
chain?: import("viem").Chain | null;
|
|
2660
|
+
dataSuffix?: `0x${string}`;
|
|
2661
|
+
gas?: bigint;
|
|
2662
|
+
gasPrice?: bigint;
|
|
2663
|
+
maxFeePerGas?: bigint;
|
|
2664
|
+
maxPriorityFeePerGas?: bigint;
|
|
2665
|
+
nonce?: number;
|
|
2666
|
+
value?: bigint;
|
|
2667
|
+
}): Promise<void>;
|
|
2668
|
+
/**
|
|
2669
|
+
* Simulate updateOmnibusInvestorBalance
|
|
2670
|
+
* Returns gas estimate and result without sending transaction
|
|
2671
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2672
|
+
*/
|
|
2673
|
+
updateOmnibusInvestorBalance(_omnibusWallet: `0x${string}`, _wallet: `0x${string}`, _value: bigint, _increase: bigint, options?: {
|
|
2674
|
+
accessList?: import("viem").AccessList;
|
|
2675
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2676
|
+
chain?: import("viem").Chain | null;
|
|
2677
|
+
dataSuffix?: `0x${string}`;
|
|
2678
|
+
gas?: bigint;
|
|
2679
|
+
gasPrice?: bigint;
|
|
2680
|
+
maxFeePerGas?: bigint;
|
|
2681
|
+
maxPriorityFeePerGas?: bigint;
|
|
2682
|
+
nonce?: number;
|
|
2683
|
+
value?: bigint;
|
|
2684
|
+
}): Promise<boolean>;
|
|
2685
|
+
/**
|
|
2686
|
+
* Simulate upgradeToAndCall
|
|
2687
|
+
* Returns gas estimate and result without sending transaction
|
|
2688
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2689
|
+
*/
|
|
2690
|
+
upgradeToAndCall(newImplementation: `0x${string}`, data: `0x${string}`, options?: {
|
|
2691
|
+
accessList?: import("viem").AccessList;
|
|
2692
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
2693
|
+
chain?: import("viem").Chain | null;
|
|
2694
|
+
dataSuffix?: `0x${string}`;
|
|
2695
|
+
gas?: bigint;
|
|
2696
|
+
gasPrice?: bigint;
|
|
2697
|
+
maxFeePerGas?: bigint;
|
|
2698
|
+
maxPriorityFeePerGas?: bigint;
|
|
2699
|
+
nonce?: number;
|
|
2700
|
+
value?: bigint;
|
|
2701
|
+
}): Promise<void>;
|
|
2702
|
+
};
|
|
2703
|
+
/**
|
|
2704
|
+
* Watch contract events
|
|
2705
|
+
*
|
|
2706
|
+
* @example
|
|
2707
|
+
* // Watch all Transfer events
|
|
2708
|
+
* const unwatch = contract.watch.Transfer((event) => {
|
|
2709
|
+
* console.log('Transfer:', event);
|
|
2710
|
+
* });
|
|
2711
|
+
*
|
|
2712
|
+
* // Stop watching
|
|
2713
|
+
* unwatch();
|
|
2714
|
+
*/
|
|
2715
|
+
get watch(): {
|
|
2716
|
+
/**
|
|
2717
|
+
* Watch Approval events
|
|
2718
|
+
* @param callback Function to call when event is emitted
|
|
2719
|
+
* @param filter Optional filter for indexed parameters
|
|
2720
|
+
* @returns Unwatch function to stop listening
|
|
2721
|
+
*/
|
|
2722
|
+
Approval: (callback: (event: {
|
|
2723
|
+
owner: `0x${string}`;
|
|
2724
|
+
spender: `0x${string}`;
|
|
2725
|
+
value: bigint;
|
|
2726
|
+
}) => void, filter?: {
|
|
2727
|
+
owner?: `0x${string}` | `0x${string}`[] | null;
|
|
2728
|
+
spender?: `0x${string}` | `0x${string}`[] | null;
|
|
2729
|
+
}) => () => void;
|
|
2730
|
+
/**
|
|
2731
|
+
* Watch Burn events
|
|
2732
|
+
* @param callback Function to call when event is emitted
|
|
2733
|
+
* @param filter Optional filter for indexed parameters
|
|
2734
|
+
* @returns Unwatch function to stop listening
|
|
2735
|
+
*/
|
|
2736
|
+
Burn: (callback: (event: {
|
|
2737
|
+
burner: `0x${string}`;
|
|
2738
|
+
value: bigint;
|
|
2739
|
+
reason: string;
|
|
2740
|
+
}) => void, filter?: {
|
|
2741
|
+
burner?: `0x${string}` | `0x${string}`[] | null;
|
|
2742
|
+
}) => () => void;
|
|
2743
|
+
/**
|
|
2744
|
+
* Watch DSServiceSet events
|
|
2745
|
+
* @param callback Function to call when event is emitted
|
|
2746
|
+
* @param filter Optional filter for indexed parameters
|
|
2747
|
+
* @returns Unwatch function to stop listening
|
|
2748
|
+
*/
|
|
2749
|
+
DSServiceSet: (callback: (event: {
|
|
2750
|
+
serviceId: bigint;
|
|
2751
|
+
serviceAddress: `0x${string}`;
|
|
2752
|
+
}) => void) => () => void;
|
|
2753
|
+
/**
|
|
2754
|
+
* Watch Initialized events
|
|
2755
|
+
* @param callback Function to call when event is emitted
|
|
2756
|
+
* @param filter Optional filter for indexed parameters
|
|
2757
|
+
* @returns Unwatch function to stop listening
|
|
2758
|
+
*/
|
|
2759
|
+
Initialized: (callback: (event: {
|
|
2760
|
+
version: bigint;
|
|
2761
|
+
}) => void) => () => void;
|
|
2762
|
+
/**
|
|
2763
|
+
* Watch Issue events
|
|
2764
|
+
* @param callback Function to call when event is emitted
|
|
2765
|
+
* @param filter Optional filter for indexed parameters
|
|
2766
|
+
* @returns Unwatch function to stop listening
|
|
2767
|
+
*/
|
|
2768
|
+
Issue: (callback: (event: {
|
|
2769
|
+
to: `0x${string}`;
|
|
2770
|
+
value: bigint;
|
|
2771
|
+
valueLocked: bigint;
|
|
2772
|
+
}) => void, filter?: {
|
|
2773
|
+
to?: `0x${string}` | `0x${string}`[] | null;
|
|
2774
|
+
}) => () => void;
|
|
2775
|
+
/**
|
|
2776
|
+
* Watch OmnibusBurn events
|
|
2777
|
+
* @param callback Function to call when event is emitted
|
|
2778
|
+
* @param filter Optional filter for indexed parameters
|
|
2779
|
+
* @returns Unwatch function to stop listening
|
|
2780
|
+
*/
|
|
2781
|
+
OmnibusBurn: (callback: (event: {
|
|
2782
|
+
omnibusWallet: `0x${string}`;
|
|
2783
|
+
who: `0x${string}`;
|
|
2784
|
+
value: bigint;
|
|
2785
|
+
reason: string;
|
|
2786
|
+
assetTrackingMode: bigint;
|
|
2787
|
+
}) => void, filter?: {
|
|
2788
|
+
omnibusWallet?: `0x${string}` | `0x${string}`[] | null;
|
|
2789
|
+
}) => () => void;
|
|
2790
|
+
/**
|
|
2791
|
+
* Watch OmnibusDeposit events
|
|
2792
|
+
* @param callback Function to call when event is emitted
|
|
2793
|
+
* @param filter Optional filter for indexed parameters
|
|
2794
|
+
* @returns Unwatch function to stop listening
|
|
2795
|
+
*/
|
|
2796
|
+
OmnibusDeposit: (callback: (event: {
|
|
2797
|
+
omnibusWallet: `0x${string}`;
|
|
2798
|
+
to: `0x${string}`;
|
|
2799
|
+
value: bigint;
|
|
2800
|
+
assetTrackingMode: bigint;
|
|
2801
|
+
}) => void, filter?: {
|
|
2802
|
+
omnibusWallet?: `0x${string}` | `0x${string}`[] | null;
|
|
2803
|
+
}) => () => void;
|
|
2804
|
+
/**
|
|
2805
|
+
* Watch OmnibusSeize events
|
|
2806
|
+
* @param callback Function to call when event is emitted
|
|
2807
|
+
* @param filter Optional filter for indexed parameters
|
|
2808
|
+
* @returns Unwatch function to stop listening
|
|
2809
|
+
*/
|
|
2810
|
+
OmnibusSeize: (callback: (event: {
|
|
2811
|
+
omnibusWallet: `0x${string}`;
|
|
2812
|
+
from: `0x${string}`;
|
|
2813
|
+
value: bigint;
|
|
2814
|
+
reason: string;
|
|
2815
|
+
assetTrackingMode: bigint;
|
|
2816
|
+
}) => void, filter?: {
|
|
2817
|
+
omnibusWallet?: `0x${string}` | `0x${string}`[] | null;
|
|
2818
|
+
}) => () => void;
|
|
2819
|
+
/**
|
|
2820
|
+
* Watch OmnibusTBEOperation events
|
|
2821
|
+
* @param callback Function to call when event is emitted
|
|
2822
|
+
* @param filter Optional filter for indexed parameters
|
|
2823
|
+
* @returns Unwatch function to stop listening
|
|
2824
|
+
*/
|
|
2825
|
+
OmnibusTBEOperation: (callback: (event: {
|
|
2826
|
+
omnibusWallet: `0x${string}`;
|
|
2827
|
+
totalDelta: bigint;
|
|
2828
|
+
accreditedDelta: bigint;
|
|
2829
|
+
usAccreditedDelta: bigint;
|
|
2830
|
+
usTotalDelta: bigint;
|
|
2831
|
+
jpTotalDelta: bigint;
|
|
2832
|
+
}) => void, filter?: {
|
|
2833
|
+
omnibusWallet?: `0x${string}` | `0x${string}`[] | null;
|
|
2834
|
+
}) => () => void;
|
|
2835
|
+
/**
|
|
2836
|
+
* Watch OmnibusTBETransfer events
|
|
2837
|
+
* @param callback Function to call when event is emitted
|
|
2838
|
+
* @param filter Optional filter for indexed parameters
|
|
2839
|
+
* @returns Unwatch function to stop listening
|
|
2840
|
+
*/
|
|
2841
|
+
OmnibusTBETransfer: (callback: (event: {
|
|
2842
|
+
omnibusWallet: `0x${string}`;
|
|
2843
|
+
externalId: string;
|
|
2844
|
+
}) => void) => () => void;
|
|
2845
|
+
/**
|
|
2846
|
+
* Watch OmnibusTransfer events
|
|
2847
|
+
* @param callback Function to call when event is emitted
|
|
2848
|
+
* @param filter Optional filter for indexed parameters
|
|
2849
|
+
* @returns Unwatch function to stop listening
|
|
2850
|
+
*/
|
|
2851
|
+
OmnibusTransfer: (callback: (event: {
|
|
2852
|
+
omnibusWallet: `0x${string}`;
|
|
2853
|
+
from: `0x${string}`;
|
|
2854
|
+
to: `0x${string}`;
|
|
2855
|
+
value: bigint;
|
|
2856
|
+
assetTrackingMode: bigint;
|
|
2857
|
+
}) => void, filter?: {
|
|
2858
|
+
omnibusWallet?: `0x${string}` | `0x${string}`[] | null;
|
|
2859
|
+
}) => () => void;
|
|
2860
|
+
/**
|
|
2861
|
+
* Watch OmnibusWithdraw events
|
|
2862
|
+
* @param callback Function to call when event is emitted
|
|
2863
|
+
* @param filter Optional filter for indexed parameters
|
|
2864
|
+
* @returns Unwatch function to stop listening
|
|
2865
|
+
*/
|
|
2866
|
+
OmnibusWithdraw: (callback: (event: {
|
|
2867
|
+
omnibusWallet: `0x${string}`;
|
|
2868
|
+
from: `0x${string}`;
|
|
2869
|
+
value: bigint;
|
|
2870
|
+
assetTrackingMode: bigint;
|
|
2871
|
+
}) => void, filter?: {
|
|
2872
|
+
omnibusWallet?: `0x${string}` | `0x${string}`[] | null;
|
|
2873
|
+
}) => () => void;
|
|
2874
|
+
/**
|
|
2875
|
+
* Watch OwnershipTransferred events
|
|
2876
|
+
* @param callback Function to call when event is emitted
|
|
2877
|
+
* @param filter Optional filter for indexed parameters
|
|
2878
|
+
* @returns Unwatch function to stop listening
|
|
2879
|
+
*/
|
|
2880
|
+
OwnershipTransferred: (callback: (event: {
|
|
2881
|
+
previousOwner: `0x${string}`;
|
|
2882
|
+
newOwner: `0x${string}`;
|
|
2883
|
+
}) => void, filter?: {
|
|
2884
|
+
previousOwner?: `0x${string}` | `0x${string}`[] | null;
|
|
2885
|
+
newOwner?: `0x${string}` | `0x${string}`[] | null;
|
|
2886
|
+
}) => () => void;
|
|
2887
|
+
/**
|
|
2888
|
+
* Watch Pause events
|
|
2889
|
+
* @param callback Function to call when event is emitted
|
|
2890
|
+
* @param filter Optional filter for indexed parameters
|
|
2891
|
+
* @returns Unwatch function to stop listening
|
|
2892
|
+
*/
|
|
2893
|
+
Pause: (callback: (event: {}) => void) => () => void;
|
|
2894
|
+
/**
|
|
2895
|
+
* Watch Seize events
|
|
2896
|
+
* @param callback Function to call when event is emitted
|
|
2897
|
+
* @param filter Optional filter for indexed parameters
|
|
2898
|
+
* @returns Unwatch function to stop listening
|
|
2899
|
+
*/
|
|
2900
|
+
Seize: (callback: (event: {
|
|
2901
|
+
from: `0x${string}`;
|
|
2902
|
+
to: `0x${string}`;
|
|
2903
|
+
value: bigint;
|
|
2904
|
+
reason: string;
|
|
2905
|
+
}) => void, filter?: {
|
|
2906
|
+
from?: `0x${string}` | `0x${string}`[] | null;
|
|
2907
|
+
to?: `0x${string}` | `0x${string}`[] | null;
|
|
2908
|
+
}) => () => void;
|
|
2909
|
+
/**
|
|
2910
|
+
* Watch Transfer events
|
|
2911
|
+
* @param callback Function to call when event is emitted
|
|
2912
|
+
* @param filter Optional filter for indexed parameters
|
|
2913
|
+
* @returns Unwatch function to stop listening
|
|
2914
|
+
*/
|
|
2915
|
+
Transfer: (callback: (event: {
|
|
2916
|
+
from: `0x${string}`;
|
|
2917
|
+
to: `0x${string}`;
|
|
2918
|
+
value: bigint;
|
|
2919
|
+
}) => void, filter?: {
|
|
2920
|
+
from?: `0x${string}` | `0x${string}`[] | null;
|
|
2921
|
+
to?: `0x${string}` | `0x${string}`[] | null;
|
|
2922
|
+
}) => () => void;
|
|
2923
|
+
/**
|
|
2924
|
+
* Watch Unpause events
|
|
2925
|
+
* @param callback Function to call when event is emitted
|
|
2926
|
+
* @param filter Optional filter for indexed parameters
|
|
2927
|
+
* @returns Unwatch function to stop listening
|
|
2928
|
+
*/
|
|
2929
|
+
Unpause: (callback: (event: {}) => void) => () => void;
|
|
2930
|
+
/**
|
|
2931
|
+
* Watch Upgraded events
|
|
2932
|
+
* @param callback Function to call when event is emitted
|
|
2933
|
+
* @param filter Optional filter for indexed parameters
|
|
2934
|
+
* @returns Unwatch function to stop listening
|
|
2935
|
+
*/
|
|
2936
|
+
Upgraded: (callback: (event: {
|
|
2937
|
+
implementation: `0x${string}`;
|
|
2938
|
+
}) => void, filter?: {
|
|
2939
|
+
implementation?: `0x${string}` | `0x${string}`[] | null;
|
|
2940
|
+
}) => () => void;
|
|
2941
|
+
/**
|
|
2942
|
+
* Watch WalletAdded events
|
|
2943
|
+
* @param callback Function to call when event is emitted
|
|
2944
|
+
* @param filter Optional filter for indexed parameters
|
|
2945
|
+
* @returns Unwatch function to stop listening
|
|
2946
|
+
*/
|
|
2947
|
+
WalletAdded: (callback: (event: {
|
|
2948
|
+
wallet: `0x${string}`;
|
|
2949
|
+
}) => void) => () => void;
|
|
2950
|
+
/**
|
|
2951
|
+
* Watch WalletRemoved events
|
|
2952
|
+
* @param callback Function to call when event is emitted
|
|
2953
|
+
* @param filter Optional filter for indexed parameters
|
|
2954
|
+
* @returns Unwatch function to stop listening
|
|
2955
|
+
*/
|
|
2956
|
+
WalletRemoved: (callback: (event: {
|
|
2957
|
+
wallet: `0x${string}`;
|
|
2958
|
+
}) => void) => () => void;
|
|
2959
|
+
};
|
|
2960
|
+
}
|