@gitmyabi-stg/ausd 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/AgoraDollar.d.ts +4199 -0
- package/contracts/AgoraDollar.js +4435 -0
- package/contracts/AgoraDollar.ts +5590 -0
- package/contracts/AgoraDollarErc1967Proxy.d.ts +752 -0
- package/contracts/AgoraDollarErc1967Proxy.js +865 -0
- package/contracts/AgoraDollarErc1967Proxy.ts +1000 -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,4199 @@
|
|
|
1
|
+
import type { Address, PublicClient, WalletClient } from 'viem';
|
|
2
|
+
/**
|
|
3
|
+
* ConstructorParams struct type
|
|
4
|
+
*/
|
|
5
|
+
export type ConstructorParams = {
|
|
6
|
+
name: string;
|
|
7
|
+
symbol: string;
|
|
8
|
+
eip712Name: string;
|
|
9
|
+
eip712Version: string;
|
|
10
|
+
proxyAddress: `0x${string}`;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* AgoraDollarMintRateLimit.MintRateLimitConfig struct type
|
|
14
|
+
*/
|
|
15
|
+
export type AgoraDollarMintRateLimit_MintRateLimitConfig = {
|
|
16
|
+
minter: `0x${string}`;
|
|
17
|
+
limit: bigint;
|
|
18
|
+
window: bigint;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* StorageLib.Erc20AccountData struct type
|
|
22
|
+
*/
|
|
23
|
+
export type StorageLib_Erc20AccountData = {
|
|
24
|
+
isFrozen: boolean;
|
|
25
|
+
balance: bigint;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Erc20Privileged.BatchBurnFromParam struct type
|
|
29
|
+
*/
|
|
30
|
+
export type Erc20Privileged_BatchBurnFromParam = {
|
|
31
|
+
burnFromAddress: `0x${string}`;
|
|
32
|
+
value: bigint;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Erc20Privileged.BatchMintParam struct type
|
|
36
|
+
*/
|
|
37
|
+
export type Erc20Privileged_BatchMintParam = {
|
|
38
|
+
receiverAddress: `0x${string}`;
|
|
39
|
+
value: bigint;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* StorageLib.RateLimit struct type
|
|
43
|
+
*/
|
|
44
|
+
export type StorageLib_RateLimit = {
|
|
45
|
+
amountInFlight: bigint;
|
|
46
|
+
lastUpdated: bigint;
|
|
47
|
+
limit: bigint;
|
|
48
|
+
window: bigint;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* InitializeParams struct type
|
|
52
|
+
*/
|
|
53
|
+
export type InitializeParams = {
|
|
54
|
+
initialAdminAddress: `0x${string}`;
|
|
55
|
+
initialMinterAddress: `0x${string}`;
|
|
56
|
+
initialBurnerAddress: `0x${string}`;
|
|
57
|
+
initialPauserAddress: `0x${string}`;
|
|
58
|
+
initialFreezerAddress: `0x${string}`;
|
|
59
|
+
initialRateLimitManagerAddress: `0x${string}`;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* AgoraDollar.Version struct type
|
|
63
|
+
*/
|
|
64
|
+
export type AgoraDollar_Version = {
|
|
65
|
+
major: bigint;
|
|
66
|
+
minor: bigint;
|
|
67
|
+
patch: bigint;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* AgoraDollar ABI
|
|
71
|
+
*
|
|
72
|
+
* This ABI is typed using viem's type system for full type safety.
|
|
73
|
+
*/
|
|
74
|
+
export declare const AgoraDollarAbi: readonly [{
|
|
75
|
+
readonly inputs: readonly [{
|
|
76
|
+
readonly components: readonly [{
|
|
77
|
+
readonly internalType: "string";
|
|
78
|
+
readonly name: "name";
|
|
79
|
+
readonly type: "string";
|
|
80
|
+
}, {
|
|
81
|
+
readonly internalType: "string";
|
|
82
|
+
readonly name: "symbol";
|
|
83
|
+
readonly type: "string";
|
|
84
|
+
}, {
|
|
85
|
+
readonly internalType: "string";
|
|
86
|
+
readonly name: "eip712Name";
|
|
87
|
+
readonly type: "string";
|
|
88
|
+
}, {
|
|
89
|
+
readonly internalType: "string";
|
|
90
|
+
readonly name: "eip712Version";
|
|
91
|
+
readonly type: "string";
|
|
92
|
+
}, {
|
|
93
|
+
readonly internalType: "address";
|
|
94
|
+
readonly name: "proxyAddress";
|
|
95
|
+
readonly type: "address";
|
|
96
|
+
}];
|
|
97
|
+
readonly internalType: "struct ConstructorParams";
|
|
98
|
+
readonly name: "_params";
|
|
99
|
+
readonly type: "tuple";
|
|
100
|
+
}];
|
|
101
|
+
readonly stateMutability: "nonpayable";
|
|
102
|
+
readonly type: "constructor";
|
|
103
|
+
}, {
|
|
104
|
+
readonly inputs: readonly [{
|
|
105
|
+
readonly internalType: "address";
|
|
106
|
+
readonly name: "frozenAccount";
|
|
107
|
+
readonly type: "address";
|
|
108
|
+
}];
|
|
109
|
+
readonly name: "AccountIsFrozen";
|
|
110
|
+
readonly type: "error";
|
|
111
|
+
}, {
|
|
112
|
+
readonly inputs: readonly [];
|
|
113
|
+
readonly name: "AddressIsNotBurnerRole";
|
|
114
|
+
readonly type: "error";
|
|
115
|
+
}, {
|
|
116
|
+
readonly inputs: readonly [];
|
|
117
|
+
readonly name: "AddressIsNotMinterRole";
|
|
118
|
+
readonly type: "error";
|
|
119
|
+
}, {
|
|
120
|
+
readonly inputs: readonly [{
|
|
121
|
+
readonly internalType: "string";
|
|
122
|
+
readonly name: "role";
|
|
123
|
+
readonly type: "string";
|
|
124
|
+
}];
|
|
125
|
+
readonly name: "AddressIsNotRole";
|
|
126
|
+
readonly type: "error";
|
|
127
|
+
}, {
|
|
128
|
+
readonly inputs: readonly [];
|
|
129
|
+
readonly name: "BridgingPaused";
|
|
130
|
+
readonly type: "error";
|
|
131
|
+
}, {
|
|
132
|
+
readonly inputs: readonly [];
|
|
133
|
+
readonly name: "BurnFromPaused";
|
|
134
|
+
readonly type: "error";
|
|
135
|
+
}, {
|
|
136
|
+
readonly inputs: readonly [{
|
|
137
|
+
readonly internalType: "string";
|
|
138
|
+
readonly name: "role";
|
|
139
|
+
readonly type: "string";
|
|
140
|
+
}];
|
|
141
|
+
readonly name: "CannotRemoveRoleWithMembers";
|
|
142
|
+
readonly type: "error";
|
|
143
|
+
}, {
|
|
144
|
+
readonly inputs: readonly [];
|
|
145
|
+
readonly name: "CannotRevokeSelf";
|
|
146
|
+
readonly type: "error";
|
|
147
|
+
}, {
|
|
148
|
+
readonly inputs: readonly [{
|
|
149
|
+
readonly internalType: "address";
|
|
150
|
+
readonly name: "spender";
|
|
151
|
+
readonly type: "address";
|
|
152
|
+
}, {
|
|
153
|
+
readonly internalType: "uint256";
|
|
154
|
+
readonly name: "allowance";
|
|
155
|
+
readonly type: "uint256";
|
|
156
|
+
}, {
|
|
157
|
+
readonly internalType: "uint256";
|
|
158
|
+
readonly name: "needed";
|
|
159
|
+
readonly type: "uint256";
|
|
160
|
+
}];
|
|
161
|
+
readonly name: "ERC20InsufficientAllowance";
|
|
162
|
+
readonly type: "error";
|
|
163
|
+
}, {
|
|
164
|
+
readonly inputs: readonly [{
|
|
165
|
+
readonly internalType: "address";
|
|
166
|
+
readonly name: "sender";
|
|
167
|
+
readonly type: "address";
|
|
168
|
+
}, {
|
|
169
|
+
readonly internalType: "uint256";
|
|
170
|
+
readonly name: "balance";
|
|
171
|
+
readonly type: "uint256";
|
|
172
|
+
}, {
|
|
173
|
+
readonly internalType: "uint256";
|
|
174
|
+
readonly name: "needed";
|
|
175
|
+
readonly type: "uint256";
|
|
176
|
+
}];
|
|
177
|
+
readonly name: "ERC20InsufficientBalance";
|
|
178
|
+
readonly type: "error";
|
|
179
|
+
}, {
|
|
180
|
+
readonly inputs: readonly [{
|
|
181
|
+
readonly internalType: "address";
|
|
182
|
+
readonly name: "approver";
|
|
183
|
+
readonly type: "address";
|
|
184
|
+
}];
|
|
185
|
+
readonly name: "ERC20InvalidApprover";
|
|
186
|
+
readonly type: "error";
|
|
187
|
+
}, {
|
|
188
|
+
readonly inputs: readonly [{
|
|
189
|
+
readonly internalType: "address";
|
|
190
|
+
readonly name: "receiver";
|
|
191
|
+
readonly type: "address";
|
|
192
|
+
}];
|
|
193
|
+
readonly name: "ERC20InvalidReceiver";
|
|
194
|
+
readonly type: "error";
|
|
195
|
+
}, {
|
|
196
|
+
readonly inputs: readonly [{
|
|
197
|
+
readonly internalType: "address";
|
|
198
|
+
readonly name: "sender";
|
|
199
|
+
readonly type: "address";
|
|
200
|
+
}];
|
|
201
|
+
readonly name: "ERC20InvalidSender";
|
|
202
|
+
readonly type: "error";
|
|
203
|
+
}, {
|
|
204
|
+
readonly inputs: readonly [{
|
|
205
|
+
readonly internalType: "address";
|
|
206
|
+
readonly name: "spender";
|
|
207
|
+
readonly type: "address";
|
|
208
|
+
}];
|
|
209
|
+
readonly name: "ERC20InvalidSpender";
|
|
210
|
+
readonly type: "error";
|
|
211
|
+
}, {
|
|
212
|
+
readonly inputs: readonly [{
|
|
213
|
+
readonly internalType: "uint256";
|
|
214
|
+
readonly name: "deadline";
|
|
215
|
+
readonly type: "uint256";
|
|
216
|
+
}];
|
|
217
|
+
readonly name: "Erc2612ExpiredSignature";
|
|
218
|
+
readonly type: "error";
|
|
219
|
+
}, {
|
|
220
|
+
readonly inputs: readonly [];
|
|
221
|
+
readonly name: "Erc2612InvalidSignature";
|
|
222
|
+
readonly type: "error";
|
|
223
|
+
}, {
|
|
224
|
+
readonly inputs: readonly [];
|
|
225
|
+
readonly name: "ExpiredAuthorization";
|
|
226
|
+
readonly type: "error";
|
|
227
|
+
}, {
|
|
228
|
+
readonly inputs: readonly [];
|
|
229
|
+
readonly name: "FreezingPaused";
|
|
230
|
+
readonly type: "error";
|
|
231
|
+
}, {
|
|
232
|
+
readonly inputs: readonly [];
|
|
233
|
+
readonly name: "InvalidAuthorization";
|
|
234
|
+
readonly type: "error";
|
|
235
|
+
}, {
|
|
236
|
+
readonly inputs: readonly [];
|
|
237
|
+
readonly name: "InvalidInitialization";
|
|
238
|
+
readonly type: "error";
|
|
239
|
+
}, {
|
|
240
|
+
readonly inputs: readonly [{
|
|
241
|
+
readonly internalType: "address";
|
|
242
|
+
readonly name: "caller";
|
|
243
|
+
readonly type: "address";
|
|
244
|
+
}, {
|
|
245
|
+
readonly internalType: "address";
|
|
246
|
+
readonly name: "payee";
|
|
247
|
+
readonly type: "address";
|
|
248
|
+
}];
|
|
249
|
+
readonly name: "InvalidPayee";
|
|
250
|
+
readonly type: "error";
|
|
251
|
+
}, {
|
|
252
|
+
readonly inputs: readonly [];
|
|
253
|
+
readonly name: "InvalidShortString";
|
|
254
|
+
readonly type: "error";
|
|
255
|
+
}, {
|
|
256
|
+
readonly inputs: readonly [];
|
|
257
|
+
readonly name: "InvalidSignature";
|
|
258
|
+
readonly type: "error";
|
|
259
|
+
}, {
|
|
260
|
+
readonly inputs: readonly [];
|
|
261
|
+
readonly name: "MintPaused";
|
|
262
|
+
readonly type: "error";
|
|
263
|
+
}, {
|
|
264
|
+
readonly inputs: readonly [];
|
|
265
|
+
readonly name: "NotInitializing";
|
|
266
|
+
readonly type: "error";
|
|
267
|
+
}, {
|
|
268
|
+
readonly inputs: readonly [];
|
|
269
|
+
readonly name: "RateLimitExceeded";
|
|
270
|
+
readonly type: "error";
|
|
271
|
+
}, {
|
|
272
|
+
readonly inputs: readonly [{
|
|
273
|
+
readonly internalType: "string";
|
|
274
|
+
readonly name: "role";
|
|
275
|
+
readonly type: "string";
|
|
276
|
+
}];
|
|
277
|
+
readonly name: "RoleDoesNotExist";
|
|
278
|
+
readonly type: "error";
|
|
279
|
+
}, {
|
|
280
|
+
readonly inputs: readonly [];
|
|
281
|
+
readonly name: "RoleNameTooLong";
|
|
282
|
+
readonly type: "error";
|
|
283
|
+
}, {
|
|
284
|
+
readonly inputs: readonly [];
|
|
285
|
+
readonly name: "SignatureVerificationPaused";
|
|
286
|
+
readonly type: "error";
|
|
287
|
+
}, {
|
|
288
|
+
readonly inputs: readonly [{
|
|
289
|
+
readonly internalType: "string";
|
|
290
|
+
readonly name: "str";
|
|
291
|
+
readonly type: "string";
|
|
292
|
+
}];
|
|
293
|
+
readonly name: "StringTooLong";
|
|
294
|
+
readonly type: "error";
|
|
295
|
+
}, {
|
|
296
|
+
readonly inputs: readonly [];
|
|
297
|
+
readonly name: "UsedOrCanceledAuthorization";
|
|
298
|
+
readonly type: "error";
|
|
299
|
+
}, {
|
|
300
|
+
readonly inputs: readonly [];
|
|
301
|
+
readonly name: "ZeroAmount";
|
|
302
|
+
readonly type: "error";
|
|
303
|
+
}, {
|
|
304
|
+
readonly anonymous: false;
|
|
305
|
+
readonly inputs: readonly [{
|
|
306
|
+
readonly indexed: true;
|
|
307
|
+
readonly internalType: "address";
|
|
308
|
+
readonly name: "account";
|
|
309
|
+
readonly type: "address";
|
|
310
|
+
}];
|
|
311
|
+
readonly name: "AccountFrozen";
|
|
312
|
+
readonly type: "event";
|
|
313
|
+
}, {
|
|
314
|
+
readonly anonymous: false;
|
|
315
|
+
readonly inputs: readonly [{
|
|
316
|
+
readonly indexed: true;
|
|
317
|
+
readonly internalType: "address";
|
|
318
|
+
readonly name: "account";
|
|
319
|
+
readonly type: "address";
|
|
320
|
+
}];
|
|
321
|
+
readonly name: "AccountUnfrozen";
|
|
322
|
+
readonly type: "event";
|
|
323
|
+
}, {
|
|
324
|
+
readonly anonymous: false;
|
|
325
|
+
readonly inputs: readonly [{
|
|
326
|
+
readonly indexed: true;
|
|
327
|
+
readonly internalType: "address";
|
|
328
|
+
readonly name: "owner";
|
|
329
|
+
readonly type: "address";
|
|
330
|
+
}, {
|
|
331
|
+
readonly indexed: true;
|
|
332
|
+
readonly internalType: "address";
|
|
333
|
+
readonly name: "spender";
|
|
334
|
+
readonly type: "address";
|
|
335
|
+
}, {
|
|
336
|
+
readonly indexed: false;
|
|
337
|
+
readonly internalType: "uint256";
|
|
338
|
+
readonly name: "value";
|
|
339
|
+
readonly type: "uint256";
|
|
340
|
+
}];
|
|
341
|
+
readonly name: "Approval";
|
|
342
|
+
readonly type: "event";
|
|
343
|
+
}, {
|
|
344
|
+
readonly anonymous: false;
|
|
345
|
+
readonly inputs: readonly [{
|
|
346
|
+
readonly indexed: true;
|
|
347
|
+
readonly internalType: "address";
|
|
348
|
+
readonly name: "authorizer";
|
|
349
|
+
readonly type: "address";
|
|
350
|
+
}, {
|
|
351
|
+
readonly indexed: true;
|
|
352
|
+
readonly internalType: "bytes32";
|
|
353
|
+
readonly name: "nonce";
|
|
354
|
+
readonly type: "bytes32";
|
|
355
|
+
}];
|
|
356
|
+
readonly name: "AuthorizationCanceled";
|
|
357
|
+
readonly type: "event";
|
|
358
|
+
}, {
|
|
359
|
+
readonly anonymous: false;
|
|
360
|
+
readonly inputs: readonly [{
|
|
361
|
+
readonly indexed: true;
|
|
362
|
+
readonly internalType: "address";
|
|
363
|
+
readonly name: "authorizer";
|
|
364
|
+
readonly type: "address";
|
|
365
|
+
}, {
|
|
366
|
+
readonly indexed: true;
|
|
367
|
+
readonly internalType: "bytes32";
|
|
368
|
+
readonly name: "nonce";
|
|
369
|
+
readonly type: "bytes32";
|
|
370
|
+
}];
|
|
371
|
+
readonly name: "AuthorizationUsed";
|
|
372
|
+
readonly type: "event";
|
|
373
|
+
}, {
|
|
374
|
+
readonly anonymous: false;
|
|
375
|
+
readonly inputs: readonly [{
|
|
376
|
+
readonly indexed: true;
|
|
377
|
+
readonly internalType: "address";
|
|
378
|
+
readonly name: "sender";
|
|
379
|
+
readonly type: "address";
|
|
380
|
+
}, {
|
|
381
|
+
readonly indexed: true;
|
|
382
|
+
readonly internalType: "address";
|
|
383
|
+
readonly name: "burnFrom";
|
|
384
|
+
readonly type: "address";
|
|
385
|
+
}, {
|
|
386
|
+
readonly indexed: false;
|
|
387
|
+
readonly internalType: "uint256";
|
|
388
|
+
readonly name: "value";
|
|
389
|
+
readonly type: "uint256";
|
|
390
|
+
}];
|
|
391
|
+
readonly name: "Burned";
|
|
392
|
+
readonly type: "event";
|
|
393
|
+
}, {
|
|
394
|
+
readonly anonymous: false;
|
|
395
|
+
readonly inputs: readonly [{
|
|
396
|
+
readonly indexed: false;
|
|
397
|
+
readonly internalType: "uint64";
|
|
398
|
+
readonly name: "version";
|
|
399
|
+
readonly type: "uint64";
|
|
400
|
+
}];
|
|
401
|
+
readonly name: "Initialized";
|
|
402
|
+
readonly type: "event";
|
|
403
|
+
}, {
|
|
404
|
+
readonly anonymous: false;
|
|
405
|
+
readonly inputs: readonly [{
|
|
406
|
+
readonly components: readonly [{
|
|
407
|
+
readonly internalType: "address";
|
|
408
|
+
readonly name: "minter";
|
|
409
|
+
readonly type: "address";
|
|
410
|
+
}, {
|
|
411
|
+
readonly internalType: "uint256";
|
|
412
|
+
readonly name: "limit";
|
|
413
|
+
readonly type: "uint256";
|
|
414
|
+
}, {
|
|
415
|
+
readonly internalType: "uint256";
|
|
416
|
+
readonly name: "window";
|
|
417
|
+
readonly type: "uint256";
|
|
418
|
+
}];
|
|
419
|
+
readonly indexed: false;
|
|
420
|
+
readonly internalType: "struct AgoraDollarMintRateLimit.MintRateLimitConfig";
|
|
421
|
+
readonly name: "rateLimitConfig";
|
|
422
|
+
readonly type: "tuple";
|
|
423
|
+
}];
|
|
424
|
+
readonly name: "MintRateLimitChanged";
|
|
425
|
+
readonly type: "event";
|
|
426
|
+
}, {
|
|
427
|
+
readonly anonymous: false;
|
|
428
|
+
readonly inputs: readonly [{
|
|
429
|
+
readonly indexed: true;
|
|
430
|
+
readonly internalType: "address";
|
|
431
|
+
readonly name: "sender";
|
|
432
|
+
readonly type: "address";
|
|
433
|
+
}, {
|
|
434
|
+
readonly indexed: true;
|
|
435
|
+
readonly internalType: "address";
|
|
436
|
+
readonly name: "receiver";
|
|
437
|
+
readonly type: "address";
|
|
438
|
+
}, {
|
|
439
|
+
readonly indexed: false;
|
|
440
|
+
readonly internalType: "uint256";
|
|
441
|
+
readonly name: "value";
|
|
442
|
+
readonly type: "uint256";
|
|
443
|
+
}];
|
|
444
|
+
readonly name: "Minted";
|
|
445
|
+
readonly type: "event";
|
|
446
|
+
}, {
|
|
447
|
+
readonly anonymous: false;
|
|
448
|
+
readonly inputs: readonly [{
|
|
449
|
+
readonly indexed: true;
|
|
450
|
+
readonly internalType: "string";
|
|
451
|
+
readonly name: "role";
|
|
452
|
+
readonly type: "string";
|
|
453
|
+
}, {
|
|
454
|
+
readonly indexed: true;
|
|
455
|
+
readonly internalType: "address";
|
|
456
|
+
readonly name: "member";
|
|
457
|
+
readonly type: "address";
|
|
458
|
+
}];
|
|
459
|
+
readonly name: "RoleAssigned";
|
|
460
|
+
readonly type: "event";
|
|
461
|
+
}, {
|
|
462
|
+
readonly anonymous: false;
|
|
463
|
+
readonly inputs: readonly [{
|
|
464
|
+
readonly indexed: true;
|
|
465
|
+
readonly internalType: "string";
|
|
466
|
+
readonly name: "role";
|
|
467
|
+
readonly type: "string";
|
|
468
|
+
}, {
|
|
469
|
+
readonly indexed: true;
|
|
470
|
+
readonly internalType: "address";
|
|
471
|
+
readonly name: "member";
|
|
472
|
+
readonly type: "address";
|
|
473
|
+
}];
|
|
474
|
+
readonly name: "RoleRevoked";
|
|
475
|
+
readonly type: "event";
|
|
476
|
+
}, {
|
|
477
|
+
readonly anonymous: false;
|
|
478
|
+
readonly inputs: readonly [{
|
|
479
|
+
readonly indexed: false;
|
|
480
|
+
readonly internalType: "bool";
|
|
481
|
+
readonly name: "isPaused";
|
|
482
|
+
readonly type: "bool";
|
|
483
|
+
}];
|
|
484
|
+
readonly name: "SetIsBridgingPaused";
|
|
485
|
+
readonly type: "event";
|
|
486
|
+
}, {
|
|
487
|
+
readonly anonymous: false;
|
|
488
|
+
readonly inputs: readonly [{
|
|
489
|
+
readonly indexed: false;
|
|
490
|
+
readonly internalType: "bool";
|
|
491
|
+
readonly name: "isPaused";
|
|
492
|
+
readonly type: "bool";
|
|
493
|
+
}];
|
|
494
|
+
readonly name: "SetIsBurnFromPaused";
|
|
495
|
+
readonly type: "event";
|
|
496
|
+
}, {
|
|
497
|
+
readonly anonymous: false;
|
|
498
|
+
readonly inputs: readonly [{
|
|
499
|
+
readonly indexed: false;
|
|
500
|
+
readonly internalType: "bool";
|
|
501
|
+
readonly name: "isPaused";
|
|
502
|
+
readonly type: "bool";
|
|
503
|
+
}];
|
|
504
|
+
readonly name: "SetIsFreezingPaused";
|
|
505
|
+
readonly type: "event";
|
|
506
|
+
}, {
|
|
507
|
+
readonly anonymous: false;
|
|
508
|
+
readonly inputs: readonly [{
|
|
509
|
+
readonly indexed: false;
|
|
510
|
+
readonly internalType: "bool";
|
|
511
|
+
readonly name: "isPaused";
|
|
512
|
+
readonly type: "bool";
|
|
513
|
+
}];
|
|
514
|
+
readonly name: "SetIsMintPaused";
|
|
515
|
+
readonly type: "event";
|
|
516
|
+
}, {
|
|
517
|
+
readonly anonymous: false;
|
|
518
|
+
readonly inputs: readonly [{
|
|
519
|
+
readonly indexed: false;
|
|
520
|
+
readonly internalType: "bool";
|
|
521
|
+
readonly name: "isEnabled";
|
|
522
|
+
readonly type: "bool";
|
|
523
|
+
}];
|
|
524
|
+
readonly name: "SetIsMsgSenderCheckEnabled";
|
|
525
|
+
readonly type: "event";
|
|
526
|
+
}, {
|
|
527
|
+
readonly anonymous: false;
|
|
528
|
+
readonly inputs: readonly [{
|
|
529
|
+
readonly indexed: false;
|
|
530
|
+
readonly internalType: "bool";
|
|
531
|
+
readonly name: "isUpgraded";
|
|
532
|
+
readonly type: "bool";
|
|
533
|
+
}];
|
|
534
|
+
readonly name: "SetIsReceiveWithAuthorizationUpgraded";
|
|
535
|
+
readonly type: "event";
|
|
536
|
+
}, {
|
|
537
|
+
readonly anonymous: false;
|
|
538
|
+
readonly inputs: readonly [{
|
|
539
|
+
readonly indexed: false;
|
|
540
|
+
readonly internalType: "bool";
|
|
541
|
+
readonly name: "isPaused";
|
|
542
|
+
readonly type: "bool";
|
|
543
|
+
}];
|
|
544
|
+
readonly name: "SetIsSignatureVerificationPaused";
|
|
545
|
+
readonly type: "event";
|
|
546
|
+
}, {
|
|
547
|
+
readonly anonymous: false;
|
|
548
|
+
readonly inputs: readonly [{
|
|
549
|
+
readonly indexed: false;
|
|
550
|
+
readonly internalType: "bool";
|
|
551
|
+
readonly name: "isUpgraded";
|
|
552
|
+
readonly type: "bool";
|
|
553
|
+
}];
|
|
554
|
+
readonly name: "SetIsTransferFromUpgraded";
|
|
555
|
+
readonly type: "event";
|
|
556
|
+
}, {
|
|
557
|
+
readonly anonymous: false;
|
|
558
|
+
readonly inputs: readonly [{
|
|
559
|
+
readonly indexed: false;
|
|
560
|
+
readonly internalType: "bool";
|
|
561
|
+
readonly name: "isPaused";
|
|
562
|
+
readonly type: "bool";
|
|
563
|
+
}];
|
|
564
|
+
readonly name: "SetIsTransferPaused";
|
|
565
|
+
readonly type: "event";
|
|
566
|
+
}, {
|
|
567
|
+
readonly anonymous: false;
|
|
568
|
+
readonly inputs: readonly [{
|
|
569
|
+
readonly indexed: false;
|
|
570
|
+
readonly internalType: "bool";
|
|
571
|
+
readonly name: "isUpgraded";
|
|
572
|
+
readonly type: "bool";
|
|
573
|
+
}];
|
|
574
|
+
readonly name: "SetIsTransferUpgraded";
|
|
575
|
+
readonly type: "event";
|
|
576
|
+
}, {
|
|
577
|
+
readonly anonymous: false;
|
|
578
|
+
readonly inputs: readonly [{
|
|
579
|
+
readonly indexed: false;
|
|
580
|
+
readonly internalType: "bool";
|
|
581
|
+
readonly name: "isUpgraded";
|
|
582
|
+
readonly type: "bool";
|
|
583
|
+
}];
|
|
584
|
+
readonly name: "SetIsTransferWithAuthorizationUpgraded";
|
|
585
|
+
readonly type: "event";
|
|
586
|
+
}, {
|
|
587
|
+
readonly anonymous: false;
|
|
588
|
+
readonly inputs: readonly [{
|
|
589
|
+
readonly indexed: true;
|
|
590
|
+
readonly internalType: "address";
|
|
591
|
+
readonly name: "from";
|
|
592
|
+
readonly type: "address";
|
|
593
|
+
}, {
|
|
594
|
+
readonly indexed: true;
|
|
595
|
+
readonly internalType: "address";
|
|
596
|
+
readonly name: "to";
|
|
597
|
+
readonly type: "address";
|
|
598
|
+
}, {
|
|
599
|
+
readonly indexed: false;
|
|
600
|
+
readonly internalType: "uint256";
|
|
601
|
+
readonly name: "value";
|
|
602
|
+
readonly type: "uint256";
|
|
603
|
+
}];
|
|
604
|
+
readonly name: "Transfer";
|
|
605
|
+
readonly type: "event";
|
|
606
|
+
}, {
|
|
607
|
+
readonly inputs: readonly [];
|
|
608
|
+
readonly name: "ACCESS_CONTROL_MANAGER_ROLE";
|
|
609
|
+
readonly outputs: readonly [{
|
|
610
|
+
readonly internalType: "string";
|
|
611
|
+
readonly name: "";
|
|
612
|
+
readonly type: "string";
|
|
613
|
+
}];
|
|
614
|
+
readonly stateMutability: "view";
|
|
615
|
+
readonly type: "function";
|
|
616
|
+
}, {
|
|
617
|
+
readonly inputs: readonly [];
|
|
618
|
+
readonly name: "AGORA_ACCESS_CONTROL_STORAGE_SLOT";
|
|
619
|
+
readonly outputs: readonly [{
|
|
620
|
+
readonly internalType: "bytes32";
|
|
621
|
+
readonly name: "";
|
|
622
|
+
readonly type: "bytes32";
|
|
623
|
+
}];
|
|
624
|
+
readonly stateMutability: "view";
|
|
625
|
+
readonly type: "function";
|
|
626
|
+
}, {
|
|
627
|
+
readonly inputs: readonly [];
|
|
628
|
+
readonly name: "BRIDGE_BURNER_ROLE";
|
|
629
|
+
readonly outputs: readonly [{
|
|
630
|
+
readonly internalType: "string";
|
|
631
|
+
readonly name: "";
|
|
632
|
+
readonly type: "string";
|
|
633
|
+
}];
|
|
634
|
+
readonly stateMutability: "view";
|
|
635
|
+
readonly type: "function";
|
|
636
|
+
}, {
|
|
637
|
+
readonly inputs: readonly [];
|
|
638
|
+
readonly name: "BRIDGE_MINTER_ROLE";
|
|
639
|
+
readonly outputs: readonly [{
|
|
640
|
+
readonly internalType: "string";
|
|
641
|
+
readonly name: "";
|
|
642
|
+
readonly type: "string";
|
|
643
|
+
}];
|
|
644
|
+
readonly stateMutability: "view";
|
|
645
|
+
readonly type: "function";
|
|
646
|
+
}, {
|
|
647
|
+
readonly inputs: readonly [];
|
|
648
|
+
readonly name: "BURNER_ROLE";
|
|
649
|
+
readonly outputs: readonly [{
|
|
650
|
+
readonly internalType: "string";
|
|
651
|
+
readonly name: "";
|
|
652
|
+
readonly type: "string";
|
|
653
|
+
}];
|
|
654
|
+
readonly stateMutability: "view";
|
|
655
|
+
readonly type: "function";
|
|
656
|
+
}, {
|
|
657
|
+
readonly inputs: readonly [];
|
|
658
|
+
readonly name: "CANCEL_AUTHORIZATION_TYPEHASH";
|
|
659
|
+
readonly outputs: readonly [{
|
|
660
|
+
readonly internalType: "bytes32";
|
|
661
|
+
readonly name: "";
|
|
662
|
+
readonly type: "bytes32";
|
|
663
|
+
}];
|
|
664
|
+
readonly stateMutability: "pure";
|
|
665
|
+
readonly type: "function";
|
|
666
|
+
}, {
|
|
667
|
+
readonly inputs: readonly [];
|
|
668
|
+
readonly name: "DOMAIN_SEPARATOR";
|
|
669
|
+
readonly outputs: readonly [{
|
|
670
|
+
readonly internalType: "bytes32";
|
|
671
|
+
readonly name: "_domainSeparator";
|
|
672
|
+
readonly type: "bytes32";
|
|
673
|
+
}];
|
|
674
|
+
readonly stateMutability: "view";
|
|
675
|
+
readonly type: "function";
|
|
676
|
+
}, {
|
|
677
|
+
readonly inputs: readonly [];
|
|
678
|
+
readonly name: "ERC20_CORE_STORAGE_SLOT";
|
|
679
|
+
readonly outputs: readonly [{
|
|
680
|
+
readonly internalType: "bytes32";
|
|
681
|
+
readonly name: "";
|
|
682
|
+
readonly type: "bytes32";
|
|
683
|
+
}];
|
|
684
|
+
readonly stateMutability: "pure";
|
|
685
|
+
readonly type: "function";
|
|
686
|
+
}, {
|
|
687
|
+
readonly inputs: readonly [];
|
|
688
|
+
readonly name: "ERC2612_STORAGE_SLOT";
|
|
689
|
+
readonly outputs: readonly [{
|
|
690
|
+
readonly internalType: "bytes32";
|
|
691
|
+
readonly name: "";
|
|
692
|
+
readonly type: "bytes32";
|
|
693
|
+
}];
|
|
694
|
+
readonly stateMutability: "pure";
|
|
695
|
+
readonly type: "function";
|
|
696
|
+
}, {
|
|
697
|
+
readonly inputs: readonly [];
|
|
698
|
+
readonly name: "FREEZER_ROLE";
|
|
699
|
+
readonly outputs: readonly [{
|
|
700
|
+
readonly internalType: "string";
|
|
701
|
+
readonly name: "";
|
|
702
|
+
readonly type: "string";
|
|
703
|
+
}];
|
|
704
|
+
readonly stateMutability: "view";
|
|
705
|
+
readonly type: "function";
|
|
706
|
+
}, {
|
|
707
|
+
readonly inputs: readonly [];
|
|
708
|
+
readonly name: "IS_BURN_FROM_PAUSED_BIT_POSITION";
|
|
709
|
+
readonly outputs: readonly [{
|
|
710
|
+
readonly internalType: "uint256";
|
|
711
|
+
readonly name: "";
|
|
712
|
+
readonly type: "uint256";
|
|
713
|
+
}];
|
|
714
|
+
readonly stateMutability: "pure";
|
|
715
|
+
readonly type: "function";
|
|
716
|
+
}, {
|
|
717
|
+
readonly inputs: readonly [];
|
|
718
|
+
readonly name: "IS_FREEZING_PAUSED_BIT_POSITION";
|
|
719
|
+
readonly outputs: readonly [{
|
|
720
|
+
readonly internalType: "uint256";
|
|
721
|
+
readonly name: "";
|
|
722
|
+
readonly type: "uint256";
|
|
723
|
+
}];
|
|
724
|
+
readonly stateMutability: "pure";
|
|
725
|
+
readonly type: "function";
|
|
726
|
+
}, {
|
|
727
|
+
readonly inputs: readonly [];
|
|
728
|
+
readonly name: "IS_MINT_PAUSED_BIT_POSITION";
|
|
729
|
+
readonly outputs: readonly [{
|
|
730
|
+
readonly internalType: "uint256";
|
|
731
|
+
readonly name: "";
|
|
732
|
+
readonly type: "uint256";
|
|
733
|
+
}];
|
|
734
|
+
readonly stateMutability: "pure";
|
|
735
|
+
readonly type: "function";
|
|
736
|
+
}, {
|
|
737
|
+
readonly inputs: readonly [];
|
|
738
|
+
readonly name: "IS_MSG_SENDER_FROZEN_CHECK_ENABLED_BIT_POSITION";
|
|
739
|
+
readonly outputs: readonly [{
|
|
740
|
+
readonly internalType: "uint256";
|
|
741
|
+
readonly name: "";
|
|
742
|
+
readonly type: "uint256";
|
|
743
|
+
}];
|
|
744
|
+
readonly stateMutability: "pure";
|
|
745
|
+
readonly type: "function";
|
|
746
|
+
}, {
|
|
747
|
+
readonly inputs: readonly [];
|
|
748
|
+
readonly name: "IS_RECEIVE_WITH_AUTHORIZATION_UPGRADED_BIT_POSITION";
|
|
749
|
+
readonly outputs: readonly [{
|
|
750
|
+
readonly internalType: "uint256";
|
|
751
|
+
readonly name: "";
|
|
752
|
+
readonly type: "uint256";
|
|
753
|
+
}];
|
|
754
|
+
readonly stateMutability: "pure";
|
|
755
|
+
readonly type: "function";
|
|
756
|
+
}, {
|
|
757
|
+
readonly inputs: readonly [];
|
|
758
|
+
readonly name: "IS_SIGNATURE_VERIFICATION_PAUSED_BIT_POSITION";
|
|
759
|
+
readonly outputs: readonly [{
|
|
760
|
+
readonly internalType: "uint256";
|
|
761
|
+
readonly name: "";
|
|
762
|
+
readonly type: "uint256";
|
|
763
|
+
}];
|
|
764
|
+
readonly stateMutability: "pure";
|
|
765
|
+
readonly type: "function";
|
|
766
|
+
}, {
|
|
767
|
+
readonly inputs: readonly [];
|
|
768
|
+
readonly name: "IS_TRANSFER_FROM_UPGRADED_BIT_POSITION";
|
|
769
|
+
readonly outputs: readonly [{
|
|
770
|
+
readonly internalType: "uint256";
|
|
771
|
+
readonly name: "";
|
|
772
|
+
readonly type: "uint256";
|
|
773
|
+
}];
|
|
774
|
+
readonly stateMutability: "pure";
|
|
775
|
+
readonly type: "function";
|
|
776
|
+
}, {
|
|
777
|
+
readonly inputs: readonly [];
|
|
778
|
+
readonly name: "IS_TRANSFER_PAUSED_BIT_POSITION";
|
|
779
|
+
readonly outputs: readonly [{
|
|
780
|
+
readonly internalType: "uint256";
|
|
781
|
+
readonly name: "";
|
|
782
|
+
readonly type: "uint256";
|
|
783
|
+
}];
|
|
784
|
+
readonly stateMutability: "pure";
|
|
785
|
+
readonly type: "function";
|
|
786
|
+
}, {
|
|
787
|
+
readonly inputs: readonly [];
|
|
788
|
+
readonly name: "IS_TRANSFER_UPGRADED_BIT_POSITION";
|
|
789
|
+
readonly outputs: readonly [{
|
|
790
|
+
readonly internalType: "uint256";
|
|
791
|
+
readonly name: "";
|
|
792
|
+
readonly type: "uint256";
|
|
793
|
+
}];
|
|
794
|
+
readonly stateMutability: "pure";
|
|
795
|
+
readonly type: "function";
|
|
796
|
+
}, {
|
|
797
|
+
readonly inputs: readonly [];
|
|
798
|
+
readonly name: "IS_TRANSFER_WITH_AUTHORIZATION_UPGRADED_BIT_POSITION";
|
|
799
|
+
readonly outputs: readonly [{
|
|
800
|
+
readonly internalType: "uint256";
|
|
801
|
+
readonly name: "";
|
|
802
|
+
readonly type: "uint256";
|
|
803
|
+
}];
|
|
804
|
+
readonly stateMutability: "pure";
|
|
805
|
+
readonly type: "function";
|
|
806
|
+
}, {
|
|
807
|
+
readonly inputs: readonly [];
|
|
808
|
+
readonly name: "MINTER_ROLE";
|
|
809
|
+
readonly outputs: readonly [{
|
|
810
|
+
readonly internalType: "string";
|
|
811
|
+
readonly name: "";
|
|
812
|
+
readonly type: "string";
|
|
813
|
+
}];
|
|
814
|
+
readonly stateMutability: "view";
|
|
815
|
+
readonly type: "function";
|
|
816
|
+
}, {
|
|
817
|
+
readonly inputs: readonly [];
|
|
818
|
+
readonly name: "PAUSER_ROLE";
|
|
819
|
+
readonly outputs: readonly [{
|
|
820
|
+
readonly internalType: "string";
|
|
821
|
+
readonly name: "";
|
|
822
|
+
readonly type: "string";
|
|
823
|
+
}];
|
|
824
|
+
readonly stateMutability: "view";
|
|
825
|
+
readonly type: "function";
|
|
826
|
+
}, {
|
|
827
|
+
readonly inputs: readonly [];
|
|
828
|
+
readonly name: "PERMIT_TYPEHASH";
|
|
829
|
+
readonly outputs: readonly [{
|
|
830
|
+
readonly internalType: "bytes32";
|
|
831
|
+
readonly name: "";
|
|
832
|
+
readonly type: "bytes32";
|
|
833
|
+
}];
|
|
834
|
+
readonly stateMutability: "view";
|
|
835
|
+
readonly type: "function";
|
|
836
|
+
}, {
|
|
837
|
+
readonly inputs: readonly [];
|
|
838
|
+
readonly name: "RATE_LIMIT_MANAGER_ROLE";
|
|
839
|
+
readonly outputs: readonly [{
|
|
840
|
+
readonly internalType: "string";
|
|
841
|
+
readonly name: "";
|
|
842
|
+
readonly type: "string";
|
|
843
|
+
}];
|
|
844
|
+
readonly stateMutability: "view";
|
|
845
|
+
readonly type: "function";
|
|
846
|
+
}, {
|
|
847
|
+
readonly inputs: readonly [];
|
|
848
|
+
readonly name: "RECEIVE_WITH_AUTHORIZATION_TYPEHASH";
|
|
849
|
+
readonly outputs: readonly [{
|
|
850
|
+
readonly internalType: "bytes32";
|
|
851
|
+
readonly name: "";
|
|
852
|
+
readonly type: "bytes32";
|
|
853
|
+
}];
|
|
854
|
+
readonly stateMutability: "pure";
|
|
855
|
+
readonly type: "function";
|
|
856
|
+
}, {
|
|
857
|
+
readonly inputs: readonly [];
|
|
858
|
+
readonly name: "TRANSFER_WITH_AUTHORIZATION_TYPEHASH";
|
|
859
|
+
readonly outputs: readonly [{
|
|
860
|
+
readonly internalType: "bytes32";
|
|
861
|
+
readonly name: "";
|
|
862
|
+
readonly type: "bytes32";
|
|
863
|
+
}];
|
|
864
|
+
readonly stateMutability: "pure";
|
|
865
|
+
readonly type: "function";
|
|
866
|
+
}, {
|
|
867
|
+
readonly inputs: readonly [{
|
|
868
|
+
readonly internalType: "address";
|
|
869
|
+
readonly name: "_account";
|
|
870
|
+
readonly type: "address";
|
|
871
|
+
}];
|
|
872
|
+
readonly name: "accountData";
|
|
873
|
+
readonly outputs: readonly [{
|
|
874
|
+
readonly components: readonly [{
|
|
875
|
+
readonly internalType: "bool";
|
|
876
|
+
readonly name: "isFrozen";
|
|
877
|
+
readonly type: "bool";
|
|
878
|
+
}, {
|
|
879
|
+
readonly internalType: "uint248";
|
|
880
|
+
readonly name: "balance";
|
|
881
|
+
readonly type: "uint248";
|
|
882
|
+
}];
|
|
883
|
+
readonly internalType: "struct StorageLib.Erc20AccountData";
|
|
884
|
+
readonly name: "";
|
|
885
|
+
readonly type: "tuple";
|
|
886
|
+
}];
|
|
887
|
+
readonly stateMutability: "view";
|
|
888
|
+
readonly type: "function";
|
|
889
|
+
}, {
|
|
890
|
+
readonly inputs: readonly [{
|
|
891
|
+
readonly internalType: "address";
|
|
892
|
+
readonly name: "_owner";
|
|
893
|
+
readonly type: "address";
|
|
894
|
+
}, {
|
|
895
|
+
readonly internalType: "address";
|
|
896
|
+
readonly name: "_spender";
|
|
897
|
+
readonly type: "address";
|
|
898
|
+
}];
|
|
899
|
+
readonly name: "allowance";
|
|
900
|
+
readonly outputs: readonly [{
|
|
901
|
+
readonly internalType: "uint256";
|
|
902
|
+
readonly name: "";
|
|
903
|
+
readonly type: "uint256";
|
|
904
|
+
}];
|
|
905
|
+
readonly stateMutability: "view";
|
|
906
|
+
readonly type: "function";
|
|
907
|
+
}, {
|
|
908
|
+
readonly inputs: readonly [{
|
|
909
|
+
readonly internalType: "address";
|
|
910
|
+
readonly name: "_spender";
|
|
911
|
+
readonly type: "address";
|
|
912
|
+
}, {
|
|
913
|
+
readonly internalType: "uint256";
|
|
914
|
+
readonly name: "_value";
|
|
915
|
+
readonly type: "uint256";
|
|
916
|
+
}];
|
|
917
|
+
readonly name: "approve";
|
|
918
|
+
readonly outputs: readonly [{
|
|
919
|
+
readonly internalType: "bool";
|
|
920
|
+
readonly name: "";
|
|
921
|
+
readonly type: "bool";
|
|
922
|
+
}];
|
|
923
|
+
readonly stateMutability: "nonpayable";
|
|
924
|
+
readonly type: "function";
|
|
925
|
+
}, {
|
|
926
|
+
readonly inputs: readonly [{
|
|
927
|
+
readonly internalType: "address";
|
|
928
|
+
readonly name: "_authorizer";
|
|
929
|
+
readonly type: "address";
|
|
930
|
+
}, {
|
|
931
|
+
readonly internalType: "bytes32";
|
|
932
|
+
readonly name: "_nonce";
|
|
933
|
+
readonly type: "bytes32";
|
|
934
|
+
}];
|
|
935
|
+
readonly name: "authorizationState";
|
|
936
|
+
readonly outputs: readonly [{
|
|
937
|
+
readonly internalType: "bool";
|
|
938
|
+
readonly name: "_isNonceUsed";
|
|
939
|
+
readonly type: "bool";
|
|
940
|
+
}];
|
|
941
|
+
readonly stateMutability: "view";
|
|
942
|
+
readonly type: "function";
|
|
943
|
+
}, {
|
|
944
|
+
readonly inputs: readonly [{
|
|
945
|
+
readonly internalType: "address";
|
|
946
|
+
readonly name: "_account";
|
|
947
|
+
readonly type: "address";
|
|
948
|
+
}];
|
|
949
|
+
readonly name: "balanceOf";
|
|
950
|
+
readonly outputs: readonly [{
|
|
951
|
+
readonly internalType: "uint256";
|
|
952
|
+
readonly name: "";
|
|
953
|
+
readonly type: "uint256";
|
|
954
|
+
}];
|
|
955
|
+
readonly stateMutability: "view";
|
|
956
|
+
readonly type: "function";
|
|
957
|
+
}, {
|
|
958
|
+
readonly inputs: readonly [{
|
|
959
|
+
readonly components: readonly [{
|
|
960
|
+
readonly internalType: "address";
|
|
961
|
+
readonly name: "burnFromAddress";
|
|
962
|
+
readonly type: "address";
|
|
963
|
+
}, {
|
|
964
|
+
readonly internalType: "uint256";
|
|
965
|
+
readonly name: "value";
|
|
966
|
+
readonly type: "uint256";
|
|
967
|
+
}];
|
|
968
|
+
readonly internalType: "struct Erc20Privileged.BatchBurnFromParam[]";
|
|
969
|
+
readonly name: "_burns";
|
|
970
|
+
readonly type: "tuple[]";
|
|
971
|
+
}];
|
|
972
|
+
readonly name: "batchBurnFrom";
|
|
973
|
+
readonly outputs: readonly [];
|
|
974
|
+
readonly stateMutability: "nonpayable";
|
|
975
|
+
readonly type: "function";
|
|
976
|
+
}, {
|
|
977
|
+
readonly inputs: readonly [{
|
|
978
|
+
readonly internalType: "address[]";
|
|
979
|
+
readonly name: "_addresses";
|
|
980
|
+
readonly type: "address[]";
|
|
981
|
+
}];
|
|
982
|
+
readonly name: "batchFreeze";
|
|
983
|
+
readonly outputs: readonly [];
|
|
984
|
+
readonly stateMutability: "nonpayable";
|
|
985
|
+
readonly type: "function";
|
|
986
|
+
}, {
|
|
987
|
+
readonly inputs: readonly [{
|
|
988
|
+
readonly components: readonly [{
|
|
989
|
+
readonly internalType: "address";
|
|
990
|
+
readonly name: "receiverAddress";
|
|
991
|
+
readonly type: "address";
|
|
992
|
+
}, {
|
|
993
|
+
readonly internalType: "uint256";
|
|
994
|
+
readonly name: "value";
|
|
995
|
+
readonly type: "uint256";
|
|
996
|
+
}];
|
|
997
|
+
readonly internalType: "struct Erc20Privileged.BatchMintParam[]";
|
|
998
|
+
readonly name: "_mints";
|
|
999
|
+
readonly type: "tuple[]";
|
|
1000
|
+
}];
|
|
1001
|
+
readonly name: "batchMint";
|
|
1002
|
+
readonly outputs: readonly [];
|
|
1003
|
+
readonly stateMutability: "nonpayable";
|
|
1004
|
+
readonly type: "function";
|
|
1005
|
+
}, {
|
|
1006
|
+
readonly inputs: readonly [{
|
|
1007
|
+
readonly internalType: "address[]";
|
|
1008
|
+
readonly name: "_addresses";
|
|
1009
|
+
readonly type: "address[]";
|
|
1010
|
+
}];
|
|
1011
|
+
readonly name: "batchUnfreeze";
|
|
1012
|
+
readonly outputs: readonly [];
|
|
1013
|
+
readonly stateMutability: "nonpayable";
|
|
1014
|
+
readonly type: "function";
|
|
1015
|
+
}, {
|
|
1016
|
+
readonly inputs: readonly [{
|
|
1017
|
+
readonly internalType: "address";
|
|
1018
|
+
readonly name: "_from";
|
|
1019
|
+
readonly type: "address";
|
|
1020
|
+
}, {
|
|
1021
|
+
readonly internalType: "uint256";
|
|
1022
|
+
readonly name: "_amount";
|
|
1023
|
+
readonly type: "uint256";
|
|
1024
|
+
}];
|
|
1025
|
+
readonly name: "burn";
|
|
1026
|
+
readonly outputs: readonly [{
|
|
1027
|
+
readonly internalType: "bool";
|
|
1028
|
+
readonly name: "";
|
|
1029
|
+
readonly type: "bool";
|
|
1030
|
+
}];
|
|
1031
|
+
readonly stateMutability: "nonpayable";
|
|
1032
|
+
readonly type: "function";
|
|
1033
|
+
}, {
|
|
1034
|
+
readonly inputs: readonly [{
|
|
1035
|
+
readonly internalType: "address";
|
|
1036
|
+
readonly name: "_authorizer";
|
|
1037
|
+
readonly type: "address";
|
|
1038
|
+
}, {
|
|
1039
|
+
readonly internalType: "bytes32";
|
|
1040
|
+
readonly name: "_nonce";
|
|
1041
|
+
readonly type: "bytes32";
|
|
1042
|
+
}, {
|
|
1043
|
+
readonly internalType: "uint8";
|
|
1044
|
+
readonly name: "_v";
|
|
1045
|
+
readonly type: "uint8";
|
|
1046
|
+
}, {
|
|
1047
|
+
readonly internalType: "bytes32";
|
|
1048
|
+
readonly name: "_r";
|
|
1049
|
+
readonly type: "bytes32";
|
|
1050
|
+
}, {
|
|
1051
|
+
readonly internalType: "bytes32";
|
|
1052
|
+
readonly name: "_s";
|
|
1053
|
+
readonly type: "bytes32";
|
|
1054
|
+
}];
|
|
1055
|
+
readonly name: "cancelAuthorization";
|
|
1056
|
+
readonly outputs: readonly [];
|
|
1057
|
+
readonly stateMutability: "nonpayable";
|
|
1058
|
+
readonly type: "function";
|
|
1059
|
+
}, {
|
|
1060
|
+
readonly inputs: readonly [{
|
|
1061
|
+
readonly internalType: "address";
|
|
1062
|
+
readonly name: "_authorizer";
|
|
1063
|
+
readonly type: "address";
|
|
1064
|
+
}, {
|
|
1065
|
+
readonly internalType: "bytes32";
|
|
1066
|
+
readonly name: "_nonce";
|
|
1067
|
+
readonly type: "bytes32";
|
|
1068
|
+
}, {
|
|
1069
|
+
readonly internalType: "bytes";
|
|
1070
|
+
readonly name: "_signature";
|
|
1071
|
+
readonly type: "bytes";
|
|
1072
|
+
}];
|
|
1073
|
+
readonly name: "cancelAuthorization";
|
|
1074
|
+
readonly outputs: readonly [];
|
|
1075
|
+
readonly stateMutability: "nonpayable";
|
|
1076
|
+
readonly type: "function";
|
|
1077
|
+
}, {
|
|
1078
|
+
readonly inputs: readonly [];
|
|
1079
|
+
readonly name: "decimals";
|
|
1080
|
+
readonly outputs: readonly [{
|
|
1081
|
+
readonly internalType: "uint8";
|
|
1082
|
+
readonly name: "";
|
|
1083
|
+
readonly type: "uint8";
|
|
1084
|
+
}];
|
|
1085
|
+
readonly stateMutability: "view";
|
|
1086
|
+
readonly type: "function";
|
|
1087
|
+
}, {
|
|
1088
|
+
readonly inputs: readonly [];
|
|
1089
|
+
readonly name: "domainSeparatorV4";
|
|
1090
|
+
readonly outputs: readonly [{
|
|
1091
|
+
readonly internalType: "bytes32";
|
|
1092
|
+
readonly name: "";
|
|
1093
|
+
readonly type: "bytes32";
|
|
1094
|
+
}];
|
|
1095
|
+
readonly stateMutability: "view";
|
|
1096
|
+
readonly type: "function";
|
|
1097
|
+
}, {
|
|
1098
|
+
readonly inputs: readonly [];
|
|
1099
|
+
readonly name: "eip712Domain";
|
|
1100
|
+
readonly outputs: readonly [{
|
|
1101
|
+
readonly internalType: "bytes1";
|
|
1102
|
+
readonly name: "_fields";
|
|
1103
|
+
readonly type: "bytes1";
|
|
1104
|
+
}, {
|
|
1105
|
+
readonly internalType: "string";
|
|
1106
|
+
readonly name: "_name";
|
|
1107
|
+
readonly type: "string";
|
|
1108
|
+
}, {
|
|
1109
|
+
readonly internalType: "string";
|
|
1110
|
+
readonly name: "_version";
|
|
1111
|
+
readonly type: "string";
|
|
1112
|
+
}, {
|
|
1113
|
+
readonly internalType: "uint256";
|
|
1114
|
+
readonly name: "_chainId";
|
|
1115
|
+
readonly type: "uint256";
|
|
1116
|
+
}, {
|
|
1117
|
+
readonly internalType: "address";
|
|
1118
|
+
readonly name: "_verifyingContract";
|
|
1119
|
+
readonly type: "address";
|
|
1120
|
+
}, {
|
|
1121
|
+
readonly internalType: "bytes32";
|
|
1122
|
+
readonly name: "_salt";
|
|
1123
|
+
readonly type: "bytes32";
|
|
1124
|
+
}, {
|
|
1125
|
+
readonly internalType: "uint256[]";
|
|
1126
|
+
readonly name: "_extensions";
|
|
1127
|
+
readonly type: "uint256[]";
|
|
1128
|
+
}];
|
|
1129
|
+
readonly stateMutability: "view";
|
|
1130
|
+
readonly type: "function";
|
|
1131
|
+
}, {
|
|
1132
|
+
readonly inputs: readonly [];
|
|
1133
|
+
readonly name: "getAccessControlManagerRoleMembers";
|
|
1134
|
+
readonly outputs: readonly [{
|
|
1135
|
+
readonly internalType: "address[]";
|
|
1136
|
+
readonly name: "";
|
|
1137
|
+
readonly type: "address[]";
|
|
1138
|
+
}];
|
|
1139
|
+
readonly stateMutability: "view";
|
|
1140
|
+
readonly type: "function";
|
|
1141
|
+
}, {
|
|
1142
|
+
readonly inputs: readonly [];
|
|
1143
|
+
readonly name: "getAllRoles";
|
|
1144
|
+
readonly outputs: readonly [{
|
|
1145
|
+
readonly internalType: "string[]";
|
|
1146
|
+
readonly name: "_roles";
|
|
1147
|
+
readonly type: "string[]";
|
|
1148
|
+
}];
|
|
1149
|
+
readonly stateMutability: "view";
|
|
1150
|
+
readonly type: "function";
|
|
1151
|
+
}, {
|
|
1152
|
+
readonly inputs: readonly [{
|
|
1153
|
+
readonly internalType: "address";
|
|
1154
|
+
readonly name: "_minter";
|
|
1155
|
+
readonly type: "address";
|
|
1156
|
+
}];
|
|
1157
|
+
readonly name: "getAmountCanBeMinted";
|
|
1158
|
+
readonly outputs: readonly [{
|
|
1159
|
+
readonly internalType: "uint256";
|
|
1160
|
+
readonly name: "currentAmountInFlight";
|
|
1161
|
+
readonly type: "uint256";
|
|
1162
|
+
}, {
|
|
1163
|
+
readonly internalType: "uint256";
|
|
1164
|
+
readonly name: "amountCanBeMinted";
|
|
1165
|
+
readonly type: "uint256";
|
|
1166
|
+
}];
|
|
1167
|
+
readonly stateMutability: "view";
|
|
1168
|
+
readonly type: "function";
|
|
1169
|
+
}, {
|
|
1170
|
+
readonly inputs: readonly [];
|
|
1171
|
+
readonly name: "getBridgeBurnerRoleMembers";
|
|
1172
|
+
readonly outputs: readonly [{
|
|
1173
|
+
readonly internalType: "address[]";
|
|
1174
|
+
readonly name: "";
|
|
1175
|
+
readonly type: "address[]";
|
|
1176
|
+
}];
|
|
1177
|
+
readonly stateMutability: "view";
|
|
1178
|
+
readonly type: "function";
|
|
1179
|
+
}, {
|
|
1180
|
+
readonly inputs: readonly [];
|
|
1181
|
+
readonly name: "getBridgeMinterRoleMembers";
|
|
1182
|
+
readonly outputs: readonly [{
|
|
1183
|
+
readonly internalType: "address[]";
|
|
1184
|
+
readonly name: "";
|
|
1185
|
+
readonly type: "address[]";
|
|
1186
|
+
}];
|
|
1187
|
+
readonly stateMutability: "view";
|
|
1188
|
+
readonly type: "function";
|
|
1189
|
+
}, {
|
|
1190
|
+
readonly inputs: readonly [];
|
|
1191
|
+
readonly name: "getBurnerRoleMembers";
|
|
1192
|
+
readonly outputs: readonly [{
|
|
1193
|
+
readonly internalType: "address[]";
|
|
1194
|
+
readonly name: "";
|
|
1195
|
+
readonly type: "address[]";
|
|
1196
|
+
}];
|
|
1197
|
+
readonly stateMutability: "view";
|
|
1198
|
+
readonly type: "function";
|
|
1199
|
+
}, {
|
|
1200
|
+
readonly inputs: readonly [];
|
|
1201
|
+
readonly name: "getFreezerRoleMembers";
|
|
1202
|
+
readonly outputs: readonly [{
|
|
1203
|
+
readonly internalType: "address[]";
|
|
1204
|
+
readonly name: "";
|
|
1205
|
+
readonly type: "address[]";
|
|
1206
|
+
}];
|
|
1207
|
+
readonly stateMutability: "view";
|
|
1208
|
+
readonly type: "function";
|
|
1209
|
+
}, {
|
|
1210
|
+
readonly inputs: readonly [{
|
|
1211
|
+
readonly internalType: "address";
|
|
1212
|
+
readonly name: "_minter";
|
|
1213
|
+
readonly type: "address";
|
|
1214
|
+
}];
|
|
1215
|
+
readonly name: "getMintRateLimit";
|
|
1216
|
+
readonly outputs: readonly [{
|
|
1217
|
+
readonly components: readonly [{
|
|
1218
|
+
readonly internalType: "uint256";
|
|
1219
|
+
readonly name: "amountInFlight";
|
|
1220
|
+
readonly type: "uint256";
|
|
1221
|
+
}, {
|
|
1222
|
+
readonly internalType: "uint256";
|
|
1223
|
+
readonly name: "lastUpdated";
|
|
1224
|
+
readonly type: "uint256";
|
|
1225
|
+
}, {
|
|
1226
|
+
readonly internalType: "uint256";
|
|
1227
|
+
readonly name: "limit";
|
|
1228
|
+
readonly type: "uint256";
|
|
1229
|
+
}, {
|
|
1230
|
+
readonly internalType: "uint256";
|
|
1231
|
+
readonly name: "window";
|
|
1232
|
+
readonly type: "uint256";
|
|
1233
|
+
}];
|
|
1234
|
+
readonly internalType: "struct StorageLib.RateLimit";
|
|
1235
|
+
readonly name: "";
|
|
1236
|
+
readonly type: "tuple";
|
|
1237
|
+
}];
|
|
1238
|
+
readonly stateMutability: "view";
|
|
1239
|
+
readonly type: "function";
|
|
1240
|
+
}, {
|
|
1241
|
+
readonly inputs: readonly [];
|
|
1242
|
+
readonly name: "getMinterRoleMembers";
|
|
1243
|
+
readonly outputs: readonly [{
|
|
1244
|
+
readonly internalType: "address[]";
|
|
1245
|
+
readonly name: "";
|
|
1246
|
+
readonly type: "address[]";
|
|
1247
|
+
}];
|
|
1248
|
+
readonly stateMutability: "view";
|
|
1249
|
+
readonly type: "function";
|
|
1250
|
+
}, {
|
|
1251
|
+
readonly inputs: readonly [];
|
|
1252
|
+
readonly name: "getPauserRoleMembers";
|
|
1253
|
+
readonly outputs: readonly [{
|
|
1254
|
+
readonly internalType: "address[]";
|
|
1255
|
+
readonly name: "";
|
|
1256
|
+
readonly type: "address[]";
|
|
1257
|
+
}];
|
|
1258
|
+
readonly stateMutability: "view";
|
|
1259
|
+
readonly type: "function";
|
|
1260
|
+
}, {
|
|
1261
|
+
readonly inputs: readonly [];
|
|
1262
|
+
readonly name: "getRateLimitManagerRoleMembers";
|
|
1263
|
+
readonly outputs: readonly [{
|
|
1264
|
+
readonly internalType: "address[]";
|
|
1265
|
+
readonly name: "";
|
|
1266
|
+
readonly type: "address[]";
|
|
1267
|
+
}];
|
|
1268
|
+
readonly stateMutability: "view";
|
|
1269
|
+
readonly type: "function";
|
|
1270
|
+
}, {
|
|
1271
|
+
readonly inputs: readonly [{
|
|
1272
|
+
readonly internalType: "string";
|
|
1273
|
+
readonly name: "_role";
|
|
1274
|
+
readonly type: "string";
|
|
1275
|
+
}];
|
|
1276
|
+
readonly name: "getRoleMembers";
|
|
1277
|
+
readonly outputs: readonly [{
|
|
1278
|
+
readonly internalType: "address[]";
|
|
1279
|
+
readonly name: "";
|
|
1280
|
+
readonly type: "address[]";
|
|
1281
|
+
}];
|
|
1282
|
+
readonly stateMutability: "view";
|
|
1283
|
+
readonly type: "function";
|
|
1284
|
+
}, {
|
|
1285
|
+
readonly inputs: readonly [{
|
|
1286
|
+
readonly internalType: "address";
|
|
1287
|
+
readonly name: "_member";
|
|
1288
|
+
readonly type: "address";
|
|
1289
|
+
}];
|
|
1290
|
+
readonly name: "grantAccessControlManagerRole";
|
|
1291
|
+
readonly outputs: readonly [];
|
|
1292
|
+
readonly stateMutability: "nonpayable";
|
|
1293
|
+
readonly type: "function";
|
|
1294
|
+
}, {
|
|
1295
|
+
readonly inputs: readonly [{
|
|
1296
|
+
readonly internalType: "address";
|
|
1297
|
+
readonly name: "_member";
|
|
1298
|
+
readonly type: "address";
|
|
1299
|
+
}];
|
|
1300
|
+
readonly name: "grantBridgeBurnerRole";
|
|
1301
|
+
readonly outputs: readonly [];
|
|
1302
|
+
readonly stateMutability: "nonpayable";
|
|
1303
|
+
readonly type: "function";
|
|
1304
|
+
}, {
|
|
1305
|
+
readonly inputs: readonly [{
|
|
1306
|
+
readonly internalType: "address";
|
|
1307
|
+
readonly name: "_member";
|
|
1308
|
+
readonly type: "address";
|
|
1309
|
+
}];
|
|
1310
|
+
readonly name: "grantBridgeMinterRole";
|
|
1311
|
+
readonly outputs: readonly [];
|
|
1312
|
+
readonly stateMutability: "nonpayable";
|
|
1313
|
+
readonly type: "function";
|
|
1314
|
+
}, {
|
|
1315
|
+
readonly inputs: readonly [{
|
|
1316
|
+
readonly internalType: "address";
|
|
1317
|
+
readonly name: "_member";
|
|
1318
|
+
readonly type: "address";
|
|
1319
|
+
}];
|
|
1320
|
+
readonly name: "grantBurnerRole";
|
|
1321
|
+
readonly outputs: readonly [];
|
|
1322
|
+
readonly stateMutability: "nonpayable";
|
|
1323
|
+
readonly type: "function";
|
|
1324
|
+
}, {
|
|
1325
|
+
readonly inputs: readonly [{
|
|
1326
|
+
readonly internalType: "address";
|
|
1327
|
+
readonly name: "_member";
|
|
1328
|
+
readonly type: "address";
|
|
1329
|
+
}];
|
|
1330
|
+
readonly name: "grantFreezerRole";
|
|
1331
|
+
readonly outputs: readonly [];
|
|
1332
|
+
readonly stateMutability: "nonpayable";
|
|
1333
|
+
readonly type: "function";
|
|
1334
|
+
}, {
|
|
1335
|
+
readonly inputs: readonly [{
|
|
1336
|
+
readonly internalType: "address";
|
|
1337
|
+
readonly name: "_member";
|
|
1338
|
+
readonly type: "address";
|
|
1339
|
+
}];
|
|
1340
|
+
readonly name: "grantMinterRole";
|
|
1341
|
+
readonly outputs: readonly [];
|
|
1342
|
+
readonly stateMutability: "nonpayable";
|
|
1343
|
+
readonly type: "function";
|
|
1344
|
+
}, {
|
|
1345
|
+
readonly inputs: readonly [{
|
|
1346
|
+
readonly internalType: "address";
|
|
1347
|
+
readonly name: "_member";
|
|
1348
|
+
readonly type: "address";
|
|
1349
|
+
}];
|
|
1350
|
+
readonly name: "grantPauserRole";
|
|
1351
|
+
readonly outputs: readonly [];
|
|
1352
|
+
readonly stateMutability: "nonpayable";
|
|
1353
|
+
readonly type: "function";
|
|
1354
|
+
}, {
|
|
1355
|
+
readonly inputs: readonly [{
|
|
1356
|
+
readonly internalType: "address";
|
|
1357
|
+
readonly name: "_member";
|
|
1358
|
+
readonly type: "address";
|
|
1359
|
+
}];
|
|
1360
|
+
readonly name: "grantRateLimitManagerRole";
|
|
1361
|
+
readonly outputs: readonly [];
|
|
1362
|
+
readonly stateMutability: "nonpayable";
|
|
1363
|
+
readonly type: "function";
|
|
1364
|
+
}, {
|
|
1365
|
+
readonly inputs: readonly [{
|
|
1366
|
+
readonly internalType: "string";
|
|
1367
|
+
readonly name: "_role";
|
|
1368
|
+
readonly type: "string";
|
|
1369
|
+
}, {
|
|
1370
|
+
readonly internalType: "address";
|
|
1371
|
+
readonly name: "_member";
|
|
1372
|
+
readonly type: "address";
|
|
1373
|
+
}];
|
|
1374
|
+
readonly name: "hasRole";
|
|
1375
|
+
readonly outputs: readonly [{
|
|
1376
|
+
readonly internalType: "bool";
|
|
1377
|
+
readonly name: "";
|
|
1378
|
+
readonly type: "bool";
|
|
1379
|
+
}];
|
|
1380
|
+
readonly stateMutability: "view";
|
|
1381
|
+
readonly type: "function";
|
|
1382
|
+
}, {
|
|
1383
|
+
readonly inputs: readonly [{
|
|
1384
|
+
readonly internalType: "bytes32";
|
|
1385
|
+
readonly name: "_structHash";
|
|
1386
|
+
readonly type: "bytes32";
|
|
1387
|
+
}];
|
|
1388
|
+
readonly name: "hashTypedDataV4";
|
|
1389
|
+
readonly outputs: readonly [{
|
|
1390
|
+
readonly internalType: "bytes32";
|
|
1391
|
+
readonly name: "";
|
|
1392
|
+
readonly type: "bytes32";
|
|
1393
|
+
}];
|
|
1394
|
+
readonly stateMutability: "view";
|
|
1395
|
+
readonly type: "function";
|
|
1396
|
+
}, {
|
|
1397
|
+
readonly inputs: readonly [];
|
|
1398
|
+
readonly name: "implementation";
|
|
1399
|
+
readonly outputs: readonly [{
|
|
1400
|
+
readonly internalType: "address";
|
|
1401
|
+
readonly name: "";
|
|
1402
|
+
readonly type: "address";
|
|
1403
|
+
}];
|
|
1404
|
+
readonly stateMutability: "view";
|
|
1405
|
+
readonly type: "function";
|
|
1406
|
+
}, {
|
|
1407
|
+
readonly inputs: readonly [{
|
|
1408
|
+
readonly components: readonly [{
|
|
1409
|
+
readonly internalType: "address";
|
|
1410
|
+
readonly name: "initialAdminAddress";
|
|
1411
|
+
readonly type: "address";
|
|
1412
|
+
}, {
|
|
1413
|
+
readonly internalType: "address";
|
|
1414
|
+
readonly name: "initialMinterAddress";
|
|
1415
|
+
readonly type: "address";
|
|
1416
|
+
}, {
|
|
1417
|
+
readonly internalType: "address";
|
|
1418
|
+
readonly name: "initialBurnerAddress";
|
|
1419
|
+
readonly type: "address";
|
|
1420
|
+
}, {
|
|
1421
|
+
readonly internalType: "address";
|
|
1422
|
+
readonly name: "initialPauserAddress";
|
|
1423
|
+
readonly type: "address";
|
|
1424
|
+
}, {
|
|
1425
|
+
readonly internalType: "address";
|
|
1426
|
+
readonly name: "initialFreezerAddress";
|
|
1427
|
+
readonly type: "address";
|
|
1428
|
+
}, {
|
|
1429
|
+
readonly internalType: "address";
|
|
1430
|
+
readonly name: "initialRateLimitManagerAddress";
|
|
1431
|
+
readonly type: "address";
|
|
1432
|
+
}];
|
|
1433
|
+
readonly internalType: "struct InitializeParams";
|
|
1434
|
+
readonly name: "_params";
|
|
1435
|
+
readonly type: "tuple";
|
|
1436
|
+
}];
|
|
1437
|
+
readonly name: "initialize";
|
|
1438
|
+
readonly outputs: readonly [];
|
|
1439
|
+
readonly stateMutability: "nonpayable";
|
|
1440
|
+
readonly type: "function";
|
|
1441
|
+
}, {
|
|
1442
|
+
readonly inputs: readonly [{
|
|
1443
|
+
readonly internalType: "address";
|
|
1444
|
+
readonly name: "_account";
|
|
1445
|
+
readonly type: "address";
|
|
1446
|
+
}];
|
|
1447
|
+
readonly name: "isAccountFrozen";
|
|
1448
|
+
readonly outputs: readonly [{
|
|
1449
|
+
readonly internalType: "bool";
|
|
1450
|
+
readonly name: "";
|
|
1451
|
+
readonly type: "bool";
|
|
1452
|
+
}];
|
|
1453
|
+
readonly stateMutability: "view";
|
|
1454
|
+
readonly type: "function";
|
|
1455
|
+
}, {
|
|
1456
|
+
readonly inputs: readonly [];
|
|
1457
|
+
readonly name: "isBridgingPaused";
|
|
1458
|
+
readonly outputs: readonly [{
|
|
1459
|
+
readonly internalType: "bool";
|
|
1460
|
+
readonly name: "";
|
|
1461
|
+
readonly type: "bool";
|
|
1462
|
+
}];
|
|
1463
|
+
readonly stateMutability: "view";
|
|
1464
|
+
readonly type: "function";
|
|
1465
|
+
}, {
|
|
1466
|
+
readonly inputs: readonly [];
|
|
1467
|
+
readonly name: "isBurnFromPaused";
|
|
1468
|
+
readonly outputs: readonly [{
|
|
1469
|
+
readonly internalType: "bool";
|
|
1470
|
+
readonly name: "";
|
|
1471
|
+
readonly type: "bool";
|
|
1472
|
+
}];
|
|
1473
|
+
readonly stateMutability: "view";
|
|
1474
|
+
readonly type: "function";
|
|
1475
|
+
}, {
|
|
1476
|
+
readonly inputs: readonly [];
|
|
1477
|
+
readonly name: "isFreezingPaused";
|
|
1478
|
+
readonly outputs: readonly [{
|
|
1479
|
+
readonly internalType: "bool";
|
|
1480
|
+
readonly name: "";
|
|
1481
|
+
readonly type: "bool";
|
|
1482
|
+
}];
|
|
1483
|
+
readonly stateMutability: "view";
|
|
1484
|
+
readonly type: "function";
|
|
1485
|
+
}, {
|
|
1486
|
+
readonly inputs: readonly [];
|
|
1487
|
+
readonly name: "isMintPaused";
|
|
1488
|
+
readonly outputs: readonly [{
|
|
1489
|
+
readonly internalType: "bool";
|
|
1490
|
+
readonly name: "";
|
|
1491
|
+
readonly type: "bool";
|
|
1492
|
+
}];
|
|
1493
|
+
readonly stateMutability: "view";
|
|
1494
|
+
readonly type: "function";
|
|
1495
|
+
}, {
|
|
1496
|
+
readonly inputs: readonly [];
|
|
1497
|
+
readonly name: "isMsgSenderFrozenCheckEnabled";
|
|
1498
|
+
readonly outputs: readonly [{
|
|
1499
|
+
readonly internalType: "bool";
|
|
1500
|
+
readonly name: "";
|
|
1501
|
+
readonly type: "bool";
|
|
1502
|
+
}];
|
|
1503
|
+
readonly stateMutability: "view";
|
|
1504
|
+
readonly type: "function";
|
|
1505
|
+
}, {
|
|
1506
|
+
readonly inputs: readonly [];
|
|
1507
|
+
readonly name: "isReceiveWithAuthorizationUpgraded";
|
|
1508
|
+
readonly outputs: readonly [{
|
|
1509
|
+
readonly internalType: "bool";
|
|
1510
|
+
readonly name: "";
|
|
1511
|
+
readonly type: "bool";
|
|
1512
|
+
}];
|
|
1513
|
+
readonly stateMutability: "view";
|
|
1514
|
+
readonly type: "function";
|
|
1515
|
+
}, {
|
|
1516
|
+
readonly inputs: readonly [];
|
|
1517
|
+
readonly name: "isSignatureVerificationPaused";
|
|
1518
|
+
readonly outputs: readonly [{
|
|
1519
|
+
readonly internalType: "bool";
|
|
1520
|
+
readonly name: "";
|
|
1521
|
+
readonly type: "bool";
|
|
1522
|
+
}];
|
|
1523
|
+
readonly stateMutability: "view";
|
|
1524
|
+
readonly type: "function";
|
|
1525
|
+
}, {
|
|
1526
|
+
readonly inputs: readonly [];
|
|
1527
|
+
readonly name: "isTransferFromUpgraded";
|
|
1528
|
+
readonly outputs: readonly [{
|
|
1529
|
+
readonly internalType: "bool";
|
|
1530
|
+
readonly name: "";
|
|
1531
|
+
readonly type: "bool";
|
|
1532
|
+
}];
|
|
1533
|
+
readonly stateMutability: "view";
|
|
1534
|
+
readonly type: "function";
|
|
1535
|
+
}, {
|
|
1536
|
+
readonly inputs: readonly [];
|
|
1537
|
+
readonly name: "isTransferPaused";
|
|
1538
|
+
readonly outputs: readonly [{
|
|
1539
|
+
readonly internalType: "bool";
|
|
1540
|
+
readonly name: "";
|
|
1541
|
+
readonly type: "bool";
|
|
1542
|
+
}];
|
|
1543
|
+
readonly stateMutability: "view";
|
|
1544
|
+
readonly type: "function";
|
|
1545
|
+
}, {
|
|
1546
|
+
readonly inputs: readonly [];
|
|
1547
|
+
readonly name: "isTransferUpgraded";
|
|
1548
|
+
readonly outputs: readonly [{
|
|
1549
|
+
readonly internalType: "bool";
|
|
1550
|
+
readonly name: "";
|
|
1551
|
+
readonly type: "bool";
|
|
1552
|
+
}];
|
|
1553
|
+
readonly stateMutability: "view";
|
|
1554
|
+
readonly type: "function";
|
|
1555
|
+
}, {
|
|
1556
|
+
readonly inputs: readonly [];
|
|
1557
|
+
readonly name: "isTransferWithAuthorizationUpgraded";
|
|
1558
|
+
readonly outputs: readonly [{
|
|
1559
|
+
readonly internalType: "bool";
|
|
1560
|
+
readonly name: "";
|
|
1561
|
+
readonly type: "bool";
|
|
1562
|
+
}];
|
|
1563
|
+
readonly stateMutability: "view";
|
|
1564
|
+
readonly type: "function";
|
|
1565
|
+
}, {
|
|
1566
|
+
readonly inputs: readonly [{
|
|
1567
|
+
readonly internalType: "address";
|
|
1568
|
+
readonly name: "_to";
|
|
1569
|
+
readonly type: "address";
|
|
1570
|
+
}, {
|
|
1571
|
+
readonly internalType: "uint256";
|
|
1572
|
+
readonly name: "_amount";
|
|
1573
|
+
readonly type: "uint256";
|
|
1574
|
+
}];
|
|
1575
|
+
readonly name: "mint";
|
|
1576
|
+
readonly outputs: readonly [{
|
|
1577
|
+
readonly internalType: "bool";
|
|
1578
|
+
readonly name: "";
|
|
1579
|
+
readonly type: "bool";
|
|
1580
|
+
}];
|
|
1581
|
+
readonly stateMutability: "nonpayable";
|
|
1582
|
+
readonly type: "function";
|
|
1583
|
+
}, {
|
|
1584
|
+
readonly inputs: readonly [];
|
|
1585
|
+
readonly name: "name";
|
|
1586
|
+
readonly outputs: readonly [{
|
|
1587
|
+
readonly internalType: "string";
|
|
1588
|
+
readonly name: "";
|
|
1589
|
+
readonly type: "string";
|
|
1590
|
+
}];
|
|
1591
|
+
readonly stateMutability: "view";
|
|
1592
|
+
readonly type: "function";
|
|
1593
|
+
}, {
|
|
1594
|
+
readonly inputs: readonly [{
|
|
1595
|
+
readonly internalType: "address";
|
|
1596
|
+
readonly name: "_account";
|
|
1597
|
+
readonly type: "address";
|
|
1598
|
+
}];
|
|
1599
|
+
readonly name: "nonces";
|
|
1600
|
+
readonly outputs: readonly [{
|
|
1601
|
+
readonly internalType: "uint256";
|
|
1602
|
+
readonly name: "_nonce";
|
|
1603
|
+
readonly type: "uint256";
|
|
1604
|
+
}];
|
|
1605
|
+
readonly stateMutability: "view";
|
|
1606
|
+
readonly type: "function";
|
|
1607
|
+
}, {
|
|
1608
|
+
readonly inputs: readonly [{
|
|
1609
|
+
readonly internalType: "address";
|
|
1610
|
+
readonly name: "_owner";
|
|
1611
|
+
readonly type: "address";
|
|
1612
|
+
}, {
|
|
1613
|
+
readonly internalType: "address";
|
|
1614
|
+
readonly name: "_spender";
|
|
1615
|
+
readonly type: "address";
|
|
1616
|
+
}, {
|
|
1617
|
+
readonly internalType: "uint256";
|
|
1618
|
+
readonly name: "_value";
|
|
1619
|
+
readonly type: "uint256";
|
|
1620
|
+
}, {
|
|
1621
|
+
readonly internalType: "uint256";
|
|
1622
|
+
readonly name: "_deadline";
|
|
1623
|
+
readonly type: "uint256";
|
|
1624
|
+
}, {
|
|
1625
|
+
readonly internalType: "bytes";
|
|
1626
|
+
readonly name: "_signature";
|
|
1627
|
+
readonly type: "bytes";
|
|
1628
|
+
}];
|
|
1629
|
+
readonly name: "permit";
|
|
1630
|
+
readonly outputs: readonly [];
|
|
1631
|
+
readonly stateMutability: "nonpayable";
|
|
1632
|
+
readonly type: "function";
|
|
1633
|
+
}, {
|
|
1634
|
+
readonly inputs: readonly [{
|
|
1635
|
+
readonly internalType: "address";
|
|
1636
|
+
readonly name: "_owner";
|
|
1637
|
+
readonly type: "address";
|
|
1638
|
+
}, {
|
|
1639
|
+
readonly internalType: "address";
|
|
1640
|
+
readonly name: "_spender";
|
|
1641
|
+
readonly type: "address";
|
|
1642
|
+
}, {
|
|
1643
|
+
readonly internalType: "uint256";
|
|
1644
|
+
readonly name: "_value";
|
|
1645
|
+
readonly type: "uint256";
|
|
1646
|
+
}, {
|
|
1647
|
+
readonly internalType: "uint256";
|
|
1648
|
+
readonly name: "_deadline";
|
|
1649
|
+
readonly type: "uint256";
|
|
1650
|
+
}, {
|
|
1651
|
+
readonly internalType: "uint8";
|
|
1652
|
+
readonly name: "_v";
|
|
1653
|
+
readonly type: "uint8";
|
|
1654
|
+
}, {
|
|
1655
|
+
readonly internalType: "bytes32";
|
|
1656
|
+
readonly name: "_r";
|
|
1657
|
+
readonly type: "bytes32";
|
|
1658
|
+
}, {
|
|
1659
|
+
readonly internalType: "bytes32";
|
|
1660
|
+
readonly name: "_s";
|
|
1661
|
+
readonly type: "bytes32";
|
|
1662
|
+
}];
|
|
1663
|
+
readonly name: "permit";
|
|
1664
|
+
readonly outputs: readonly [];
|
|
1665
|
+
readonly stateMutability: "nonpayable";
|
|
1666
|
+
readonly type: "function";
|
|
1667
|
+
}, {
|
|
1668
|
+
readonly inputs: readonly [];
|
|
1669
|
+
readonly name: "proxyAdminAddress";
|
|
1670
|
+
readonly outputs: readonly [{
|
|
1671
|
+
readonly internalType: "address";
|
|
1672
|
+
readonly name: "";
|
|
1673
|
+
readonly type: "address";
|
|
1674
|
+
}];
|
|
1675
|
+
readonly stateMutability: "view";
|
|
1676
|
+
readonly type: "function";
|
|
1677
|
+
}, {
|
|
1678
|
+
readonly inputs: readonly [{
|
|
1679
|
+
readonly internalType: "address";
|
|
1680
|
+
readonly name: "_from";
|
|
1681
|
+
readonly type: "address";
|
|
1682
|
+
}, {
|
|
1683
|
+
readonly internalType: "address";
|
|
1684
|
+
readonly name: "_to";
|
|
1685
|
+
readonly type: "address";
|
|
1686
|
+
}, {
|
|
1687
|
+
readonly internalType: "uint256";
|
|
1688
|
+
readonly name: "_value";
|
|
1689
|
+
readonly type: "uint256";
|
|
1690
|
+
}, {
|
|
1691
|
+
readonly internalType: "uint256";
|
|
1692
|
+
readonly name: "_validAfter";
|
|
1693
|
+
readonly type: "uint256";
|
|
1694
|
+
}, {
|
|
1695
|
+
readonly internalType: "uint256";
|
|
1696
|
+
readonly name: "_validBefore";
|
|
1697
|
+
readonly type: "uint256";
|
|
1698
|
+
}, {
|
|
1699
|
+
readonly internalType: "bytes32";
|
|
1700
|
+
readonly name: "_nonce";
|
|
1701
|
+
readonly type: "bytes32";
|
|
1702
|
+
}, {
|
|
1703
|
+
readonly internalType: "bytes";
|
|
1704
|
+
readonly name: "_signature";
|
|
1705
|
+
readonly type: "bytes";
|
|
1706
|
+
}];
|
|
1707
|
+
readonly name: "receiveWithAuthorization";
|
|
1708
|
+
readonly outputs: readonly [];
|
|
1709
|
+
readonly stateMutability: "nonpayable";
|
|
1710
|
+
readonly type: "function";
|
|
1711
|
+
}, {
|
|
1712
|
+
readonly inputs: readonly [{
|
|
1713
|
+
readonly internalType: "address";
|
|
1714
|
+
readonly name: "_from";
|
|
1715
|
+
readonly type: "address";
|
|
1716
|
+
}, {
|
|
1717
|
+
readonly internalType: "address";
|
|
1718
|
+
readonly name: "_to";
|
|
1719
|
+
readonly type: "address";
|
|
1720
|
+
}, {
|
|
1721
|
+
readonly internalType: "uint256";
|
|
1722
|
+
readonly name: "_value";
|
|
1723
|
+
readonly type: "uint256";
|
|
1724
|
+
}, {
|
|
1725
|
+
readonly internalType: "uint256";
|
|
1726
|
+
readonly name: "_validAfter";
|
|
1727
|
+
readonly type: "uint256";
|
|
1728
|
+
}, {
|
|
1729
|
+
readonly internalType: "uint256";
|
|
1730
|
+
readonly name: "_validBefore";
|
|
1731
|
+
readonly type: "uint256";
|
|
1732
|
+
}, {
|
|
1733
|
+
readonly internalType: "bytes32";
|
|
1734
|
+
readonly name: "_nonce";
|
|
1735
|
+
readonly type: "bytes32";
|
|
1736
|
+
}, {
|
|
1737
|
+
readonly internalType: "uint8";
|
|
1738
|
+
readonly name: "_v";
|
|
1739
|
+
readonly type: "uint8";
|
|
1740
|
+
}, {
|
|
1741
|
+
readonly internalType: "bytes32";
|
|
1742
|
+
readonly name: "_r";
|
|
1743
|
+
readonly type: "bytes32";
|
|
1744
|
+
}, {
|
|
1745
|
+
readonly internalType: "bytes32";
|
|
1746
|
+
readonly name: "_s";
|
|
1747
|
+
readonly type: "bytes32";
|
|
1748
|
+
}];
|
|
1749
|
+
readonly name: "receiveWithAuthorization";
|
|
1750
|
+
readonly outputs: readonly [];
|
|
1751
|
+
readonly stateMutability: "nonpayable";
|
|
1752
|
+
readonly type: "function";
|
|
1753
|
+
}, {
|
|
1754
|
+
readonly inputs: readonly [{
|
|
1755
|
+
readonly internalType: "address";
|
|
1756
|
+
readonly name: "_member";
|
|
1757
|
+
readonly type: "address";
|
|
1758
|
+
}];
|
|
1759
|
+
readonly name: "revokeAccessControlManagerRole";
|
|
1760
|
+
readonly outputs: readonly [];
|
|
1761
|
+
readonly stateMutability: "nonpayable";
|
|
1762
|
+
readonly type: "function";
|
|
1763
|
+
}, {
|
|
1764
|
+
readonly inputs: readonly [{
|
|
1765
|
+
readonly internalType: "address";
|
|
1766
|
+
readonly name: "_member";
|
|
1767
|
+
readonly type: "address";
|
|
1768
|
+
}];
|
|
1769
|
+
readonly name: "revokeBridgeBurnerRole";
|
|
1770
|
+
readonly outputs: readonly [];
|
|
1771
|
+
readonly stateMutability: "nonpayable";
|
|
1772
|
+
readonly type: "function";
|
|
1773
|
+
}, {
|
|
1774
|
+
readonly inputs: readonly [{
|
|
1775
|
+
readonly internalType: "address";
|
|
1776
|
+
readonly name: "_member";
|
|
1777
|
+
readonly type: "address";
|
|
1778
|
+
}];
|
|
1779
|
+
readonly name: "revokeBridgeMinterRole";
|
|
1780
|
+
readonly outputs: readonly [];
|
|
1781
|
+
readonly stateMutability: "nonpayable";
|
|
1782
|
+
readonly type: "function";
|
|
1783
|
+
}, {
|
|
1784
|
+
readonly inputs: readonly [{
|
|
1785
|
+
readonly internalType: "address";
|
|
1786
|
+
readonly name: "_member";
|
|
1787
|
+
readonly type: "address";
|
|
1788
|
+
}];
|
|
1789
|
+
readonly name: "revokeBurnerRole";
|
|
1790
|
+
readonly outputs: readonly [];
|
|
1791
|
+
readonly stateMutability: "nonpayable";
|
|
1792
|
+
readonly type: "function";
|
|
1793
|
+
}, {
|
|
1794
|
+
readonly inputs: readonly [{
|
|
1795
|
+
readonly internalType: "address";
|
|
1796
|
+
readonly name: "_member";
|
|
1797
|
+
readonly type: "address";
|
|
1798
|
+
}];
|
|
1799
|
+
readonly name: "revokeFreezerRole";
|
|
1800
|
+
readonly outputs: readonly [];
|
|
1801
|
+
readonly stateMutability: "nonpayable";
|
|
1802
|
+
readonly type: "function";
|
|
1803
|
+
}, {
|
|
1804
|
+
readonly inputs: readonly [{
|
|
1805
|
+
readonly internalType: "address";
|
|
1806
|
+
readonly name: "_member";
|
|
1807
|
+
readonly type: "address";
|
|
1808
|
+
}];
|
|
1809
|
+
readonly name: "revokeMinterRole";
|
|
1810
|
+
readonly outputs: readonly [];
|
|
1811
|
+
readonly stateMutability: "nonpayable";
|
|
1812
|
+
readonly type: "function";
|
|
1813
|
+
}, {
|
|
1814
|
+
readonly inputs: readonly [{
|
|
1815
|
+
readonly internalType: "address";
|
|
1816
|
+
readonly name: "_member";
|
|
1817
|
+
readonly type: "address";
|
|
1818
|
+
}];
|
|
1819
|
+
readonly name: "revokePauserRole";
|
|
1820
|
+
readonly outputs: readonly [];
|
|
1821
|
+
readonly stateMutability: "nonpayable";
|
|
1822
|
+
readonly type: "function";
|
|
1823
|
+
}, {
|
|
1824
|
+
readonly inputs: readonly [{
|
|
1825
|
+
readonly internalType: "address";
|
|
1826
|
+
readonly name: "_member";
|
|
1827
|
+
readonly type: "address";
|
|
1828
|
+
}];
|
|
1829
|
+
readonly name: "revokeRateLimitManagerRole";
|
|
1830
|
+
readonly outputs: readonly [];
|
|
1831
|
+
readonly stateMutability: "nonpayable";
|
|
1832
|
+
readonly type: "function";
|
|
1833
|
+
}, {
|
|
1834
|
+
readonly inputs: readonly [{
|
|
1835
|
+
readonly internalType: "bool";
|
|
1836
|
+
readonly name: "_isPaused";
|
|
1837
|
+
readonly type: "bool";
|
|
1838
|
+
}];
|
|
1839
|
+
readonly name: "setIsBridgingPaused";
|
|
1840
|
+
readonly outputs: readonly [];
|
|
1841
|
+
readonly stateMutability: "nonpayable";
|
|
1842
|
+
readonly type: "function";
|
|
1843
|
+
}, {
|
|
1844
|
+
readonly inputs: readonly [{
|
|
1845
|
+
readonly internalType: "bool";
|
|
1846
|
+
readonly name: "_isPaused";
|
|
1847
|
+
readonly type: "bool";
|
|
1848
|
+
}];
|
|
1849
|
+
readonly name: "setIsBurnFromPaused";
|
|
1850
|
+
readonly outputs: readonly [];
|
|
1851
|
+
readonly stateMutability: "nonpayable";
|
|
1852
|
+
readonly type: "function";
|
|
1853
|
+
}, {
|
|
1854
|
+
readonly inputs: readonly [{
|
|
1855
|
+
readonly internalType: "bool";
|
|
1856
|
+
readonly name: "_isPaused";
|
|
1857
|
+
readonly type: "bool";
|
|
1858
|
+
}];
|
|
1859
|
+
readonly name: "setIsFreezingPaused";
|
|
1860
|
+
readonly outputs: readonly [];
|
|
1861
|
+
readonly stateMutability: "nonpayable";
|
|
1862
|
+
readonly type: "function";
|
|
1863
|
+
}, {
|
|
1864
|
+
readonly inputs: readonly [{
|
|
1865
|
+
readonly internalType: "bool";
|
|
1866
|
+
readonly name: "_isPaused";
|
|
1867
|
+
readonly type: "bool";
|
|
1868
|
+
}];
|
|
1869
|
+
readonly name: "setIsMintPaused";
|
|
1870
|
+
readonly outputs: readonly [];
|
|
1871
|
+
readonly stateMutability: "nonpayable";
|
|
1872
|
+
readonly type: "function";
|
|
1873
|
+
}, {
|
|
1874
|
+
readonly inputs: readonly [{
|
|
1875
|
+
readonly internalType: "bool";
|
|
1876
|
+
readonly name: "_isEnabled";
|
|
1877
|
+
readonly type: "bool";
|
|
1878
|
+
}];
|
|
1879
|
+
readonly name: "setIsMsgSenderCheckEnabled";
|
|
1880
|
+
readonly outputs: readonly [];
|
|
1881
|
+
readonly stateMutability: "nonpayable";
|
|
1882
|
+
readonly type: "function";
|
|
1883
|
+
}, {
|
|
1884
|
+
readonly inputs: readonly [{
|
|
1885
|
+
readonly internalType: "bool";
|
|
1886
|
+
readonly name: "_isUpgraded";
|
|
1887
|
+
readonly type: "bool";
|
|
1888
|
+
}];
|
|
1889
|
+
readonly name: "setIsReceiveWithAuthorizationUpgraded";
|
|
1890
|
+
readonly outputs: readonly [];
|
|
1891
|
+
readonly stateMutability: "nonpayable";
|
|
1892
|
+
readonly type: "function";
|
|
1893
|
+
}, {
|
|
1894
|
+
readonly inputs: readonly [{
|
|
1895
|
+
readonly internalType: "bool";
|
|
1896
|
+
readonly name: "_isPaused";
|
|
1897
|
+
readonly type: "bool";
|
|
1898
|
+
}];
|
|
1899
|
+
readonly name: "setIsSignatureVerificationPaused";
|
|
1900
|
+
readonly outputs: readonly [];
|
|
1901
|
+
readonly stateMutability: "nonpayable";
|
|
1902
|
+
readonly type: "function";
|
|
1903
|
+
}, {
|
|
1904
|
+
readonly inputs: readonly [{
|
|
1905
|
+
readonly internalType: "bool";
|
|
1906
|
+
readonly name: "_isUpgraded";
|
|
1907
|
+
readonly type: "bool";
|
|
1908
|
+
}];
|
|
1909
|
+
readonly name: "setIsTransferFromUpgraded";
|
|
1910
|
+
readonly outputs: readonly [];
|
|
1911
|
+
readonly stateMutability: "nonpayable";
|
|
1912
|
+
readonly type: "function";
|
|
1913
|
+
}, {
|
|
1914
|
+
readonly inputs: readonly [{
|
|
1915
|
+
readonly internalType: "bool";
|
|
1916
|
+
readonly name: "_isPaused";
|
|
1917
|
+
readonly type: "bool";
|
|
1918
|
+
}];
|
|
1919
|
+
readonly name: "setIsTransferPaused";
|
|
1920
|
+
readonly outputs: readonly [];
|
|
1921
|
+
readonly stateMutability: "nonpayable";
|
|
1922
|
+
readonly type: "function";
|
|
1923
|
+
}, {
|
|
1924
|
+
readonly inputs: readonly [{
|
|
1925
|
+
readonly internalType: "bool";
|
|
1926
|
+
readonly name: "_isUpgraded";
|
|
1927
|
+
readonly type: "bool";
|
|
1928
|
+
}];
|
|
1929
|
+
readonly name: "setIsTransferUpgraded";
|
|
1930
|
+
readonly outputs: readonly [];
|
|
1931
|
+
readonly stateMutability: "nonpayable";
|
|
1932
|
+
readonly type: "function";
|
|
1933
|
+
}, {
|
|
1934
|
+
readonly inputs: readonly [{
|
|
1935
|
+
readonly internalType: "bool";
|
|
1936
|
+
readonly name: "_isUpgraded";
|
|
1937
|
+
readonly type: "bool";
|
|
1938
|
+
}];
|
|
1939
|
+
readonly name: "setIsTransferWithAuthorizationUpgraded";
|
|
1940
|
+
readonly outputs: readonly [];
|
|
1941
|
+
readonly stateMutability: "nonpayable";
|
|
1942
|
+
readonly type: "function";
|
|
1943
|
+
}, {
|
|
1944
|
+
readonly inputs: readonly [{
|
|
1945
|
+
readonly components: readonly [{
|
|
1946
|
+
readonly internalType: "address";
|
|
1947
|
+
readonly name: "minter";
|
|
1948
|
+
readonly type: "address";
|
|
1949
|
+
}, {
|
|
1950
|
+
readonly internalType: "uint256";
|
|
1951
|
+
readonly name: "limit";
|
|
1952
|
+
readonly type: "uint256";
|
|
1953
|
+
}, {
|
|
1954
|
+
readonly internalType: "uint256";
|
|
1955
|
+
readonly name: "window";
|
|
1956
|
+
readonly type: "uint256";
|
|
1957
|
+
}];
|
|
1958
|
+
readonly internalType: "struct AgoraDollarMintRateLimit.MintRateLimitConfig";
|
|
1959
|
+
readonly name: "_rateLimitConfig";
|
|
1960
|
+
readonly type: "tuple";
|
|
1961
|
+
}];
|
|
1962
|
+
readonly name: "setMintRateLimit";
|
|
1963
|
+
readonly outputs: readonly [];
|
|
1964
|
+
readonly stateMutability: "nonpayable";
|
|
1965
|
+
readonly type: "function";
|
|
1966
|
+
}, {
|
|
1967
|
+
readonly inputs: readonly [];
|
|
1968
|
+
readonly name: "symbol";
|
|
1969
|
+
readonly outputs: readonly [{
|
|
1970
|
+
readonly internalType: "string";
|
|
1971
|
+
readonly name: "";
|
|
1972
|
+
readonly type: "string";
|
|
1973
|
+
}];
|
|
1974
|
+
readonly stateMutability: "view";
|
|
1975
|
+
readonly type: "function";
|
|
1976
|
+
}, {
|
|
1977
|
+
readonly inputs: readonly [];
|
|
1978
|
+
readonly name: "totalSupply";
|
|
1979
|
+
readonly outputs: readonly [{
|
|
1980
|
+
readonly internalType: "uint256";
|
|
1981
|
+
readonly name: "";
|
|
1982
|
+
readonly type: "uint256";
|
|
1983
|
+
}];
|
|
1984
|
+
readonly stateMutability: "view";
|
|
1985
|
+
readonly type: "function";
|
|
1986
|
+
}, {
|
|
1987
|
+
readonly inputs: readonly [{
|
|
1988
|
+
readonly internalType: "address";
|
|
1989
|
+
readonly name: "_to";
|
|
1990
|
+
readonly type: "address";
|
|
1991
|
+
}, {
|
|
1992
|
+
readonly internalType: "uint256";
|
|
1993
|
+
readonly name: "_value";
|
|
1994
|
+
readonly type: "uint256";
|
|
1995
|
+
}];
|
|
1996
|
+
readonly name: "transfer";
|
|
1997
|
+
readonly outputs: readonly [{
|
|
1998
|
+
readonly internalType: "bool";
|
|
1999
|
+
readonly name: "";
|
|
2000
|
+
readonly type: "bool";
|
|
2001
|
+
}];
|
|
2002
|
+
readonly stateMutability: "nonpayable";
|
|
2003
|
+
readonly type: "function";
|
|
2004
|
+
}, {
|
|
2005
|
+
readonly inputs: readonly [{
|
|
2006
|
+
readonly internalType: "address";
|
|
2007
|
+
readonly name: "_from";
|
|
2008
|
+
readonly type: "address";
|
|
2009
|
+
}, {
|
|
2010
|
+
readonly internalType: "address";
|
|
2011
|
+
readonly name: "_to";
|
|
2012
|
+
readonly type: "address";
|
|
2013
|
+
}, {
|
|
2014
|
+
readonly internalType: "uint256";
|
|
2015
|
+
readonly name: "_value";
|
|
2016
|
+
readonly type: "uint256";
|
|
2017
|
+
}];
|
|
2018
|
+
readonly name: "transferFrom";
|
|
2019
|
+
readonly outputs: readonly [{
|
|
2020
|
+
readonly internalType: "bool";
|
|
2021
|
+
readonly name: "";
|
|
2022
|
+
readonly type: "bool";
|
|
2023
|
+
}];
|
|
2024
|
+
readonly stateMutability: "nonpayable";
|
|
2025
|
+
readonly type: "function";
|
|
2026
|
+
}, {
|
|
2027
|
+
readonly inputs: readonly [{
|
|
2028
|
+
readonly internalType: "address";
|
|
2029
|
+
readonly name: "_from";
|
|
2030
|
+
readonly type: "address";
|
|
2031
|
+
}, {
|
|
2032
|
+
readonly internalType: "address";
|
|
2033
|
+
readonly name: "_to";
|
|
2034
|
+
readonly type: "address";
|
|
2035
|
+
}, {
|
|
2036
|
+
readonly internalType: "uint256";
|
|
2037
|
+
readonly name: "_value";
|
|
2038
|
+
readonly type: "uint256";
|
|
2039
|
+
}, {
|
|
2040
|
+
readonly internalType: "uint256";
|
|
2041
|
+
readonly name: "_validAfter";
|
|
2042
|
+
readonly type: "uint256";
|
|
2043
|
+
}, {
|
|
2044
|
+
readonly internalType: "uint256";
|
|
2045
|
+
readonly name: "_validBefore";
|
|
2046
|
+
readonly type: "uint256";
|
|
2047
|
+
}, {
|
|
2048
|
+
readonly internalType: "bytes32";
|
|
2049
|
+
readonly name: "_nonce";
|
|
2050
|
+
readonly type: "bytes32";
|
|
2051
|
+
}, {
|
|
2052
|
+
readonly internalType: "bytes";
|
|
2053
|
+
readonly name: "_signature";
|
|
2054
|
+
readonly type: "bytes";
|
|
2055
|
+
}];
|
|
2056
|
+
readonly name: "transferWithAuthorization";
|
|
2057
|
+
readonly outputs: readonly [];
|
|
2058
|
+
readonly stateMutability: "nonpayable";
|
|
2059
|
+
readonly type: "function";
|
|
2060
|
+
}, {
|
|
2061
|
+
readonly inputs: readonly [{
|
|
2062
|
+
readonly internalType: "address";
|
|
2063
|
+
readonly name: "_from";
|
|
2064
|
+
readonly type: "address";
|
|
2065
|
+
}, {
|
|
2066
|
+
readonly internalType: "address";
|
|
2067
|
+
readonly name: "_to";
|
|
2068
|
+
readonly type: "address";
|
|
2069
|
+
}, {
|
|
2070
|
+
readonly internalType: "uint256";
|
|
2071
|
+
readonly name: "_value";
|
|
2072
|
+
readonly type: "uint256";
|
|
2073
|
+
}, {
|
|
2074
|
+
readonly internalType: "uint256";
|
|
2075
|
+
readonly name: "_validAfter";
|
|
2076
|
+
readonly type: "uint256";
|
|
2077
|
+
}, {
|
|
2078
|
+
readonly internalType: "uint256";
|
|
2079
|
+
readonly name: "_validBefore";
|
|
2080
|
+
readonly type: "uint256";
|
|
2081
|
+
}, {
|
|
2082
|
+
readonly internalType: "bytes32";
|
|
2083
|
+
readonly name: "_nonce";
|
|
2084
|
+
readonly type: "bytes32";
|
|
2085
|
+
}, {
|
|
2086
|
+
readonly internalType: "uint8";
|
|
2087
|
+
readonly name: "_v";
|
|
2088
|
+
readonly type: "uint8";
|
|
2089
|
+
}, {
|
|
2090
|
+
readonly internalType: "bytes32";
|
|
2091
|
+
readonly name: "_r";
|
|
2092
|
+
readonly type: "bytes32";
|
|
2093
|
+
}, {
|
|
2094
|
+
readonly internalType: "bytes32";
|
|
2095
|
+
readonly name: "_s";
|
|
2096
|
+
readonly type: "bytes32";
|
|
2097
|
+
}];
|
|
2098
|
+
readonly name: "transferWithAuthorization";
|
|
2099
|
+
readonly outputs: readonly [];
|
|
2100
|
+
readonly stateMutability: "nonpayable";
|
|
2101
|
+
readonly type: "function";
|
|
2102
|
+
}, {
|
|
2103
|
+
readonly inputs: readonly [];
|
|
2104
|
+
readonly name: "version";
|
|
2105
|
+
readonly outputs: readonly [{
|
|
2106
|
+
readonly components: readonly [{
|
|
2107
|
+
readonly internalType: "uint256";
|
|
2108
|
+
readonly name: "major";
|
|
2109
|
+
readonly type: "uint256";
|
|
2110
|
+
}, {
|
|
2111
|
+
readonly internalType: "uint256";
|
|
2112
|
+
readonly name: "minor";
|
|
2113
|
+
readonly type: "uint256";
|
|
2114
|
+
}, {
|
|
2115
|
+
readonly internalType: "uint256";
|
|
2116
|
+
readonly name: "patch";
|
|
2117
|
+
readonly type: "uint256";
|
|
2118
|
+
}];
|
|
2119
|
+
readonly internalType: "struct AgoraDollar.Version";
|
|
2120
|
+
readonly name: "_version";
|
|
2121
|
+
readonly type: "tuple";
|
|
2122
|
+
}];
|
|
2123
|
+
readonly stateMutability: "pure";
|
|
2124
|
+
readonly type: "function";
|
|
2125
|
+
}];
|
|
2126
|
+
/**
|
|
2127
|
+
* Type-safe ABI for AgoraDollar
|
|
2128
|
+
*/
|
|
2129
|
+
export type AgoraDollarAbi = typeof AgoraDollarAbi;
|
|
2130
|
+
/**
|
|
2131
|
+
* Contract instance type for AgoraDollar
|
|
2132
|
+
*/
|
|
2133
|
+
export type AgoraDollarContract = any;
|
|
2134
|
+
/**
|
|
2135
|
+
* AgoraDollar Contract Class
|
|
2136
|
+
*
|
|
2137
|
+
* Provides a class-based API similar to TypeChain for interacting with the contract.
|
|
2138
|
+
*
|
|
2139
|
+
* @example
|
|
2140
|
+
* ```typescript
|
|
2141
|
+
* import { createPublicClient, createWalletClient, http } from 'viem';
|
|
2142
|
+
* import { mainnet } from 'viem/chains';
|
|
2143
|
+
* import { AgoraDollar } from 'AgoraDollar';
|
|
2144
|
+
*
|
|
2145
|
+
* const publicClient = createPublicClient({ chain: mainnet, transport: http() });
|
|
2146
|
+
* const walletClient = createWalletClient({ chain: mainnet, transport: http() });
|
|
2147
|
+
*
|
|
2148
|
+
* const contract = new AgoraDollar('0x...', { publicClient, walletClient });
|
|
2149
|
+
*
|
|
2150
|
+
* // Read functions
|
|
2151
|
+
* const result = await contract.balanceOf('0x...');
|
|
2152
|
+
*
|
|
2153
|
+
* // Write functions
|
|
2154
|
+
* const hash = await contract.transfer('0x...', 1000n);
|
|
2155
|
+
*
|
|
2156
|
+
* // Simulate transactions (dry-run)
|
|
2157
|
+
* const simulation = await contract.simulate.transfer('0x...', 1000n);
|
|
2158
|
+
* console.log('Gas estimate:', simulation.request.gas);
|
|
2159
|
+
*
|
|
2160
|
+
* // Watch events
|
|
2161
|
+
* const unwatch = contract.watch.Transfer((event) => {
|
|
2162
|
+
* console.log('Transfer event:', event);
|
|
2163
|
+
* });
|
|
2164
|
+
* ```
|
|
2165
|
+
*/
|
|
2166
|
+
export declare class AgoraDollar {
|
|
2167
|
+
private contract;
|
|
2168
|
+
private contractAddress;
|
|
2169
|
+
private publicClient;
|
|
2170
|
+
constructor(address: Address, clients: {
|
|
2171
|
+
publicClient: PublicClient;
|
|
2172
|
+
walletClient?: WalletClient;
|
|
2173
|
+
});
|
|
2174
|
+
/**
|
|
2175
|
+
* Get the contract address
|
|
2176
|
+
*/
|
|
2177
|
+
get address(): Address;
|
|
2178
|
+
/**
|
|
2179
|
+
* Get the underlying viem contract instance.
|
|
2180
|
+
*/
|
|
2181
|
+
getContract(): AgoraDollarContract;
|
|
2182
|
+
/**
|
|
2183
|
+
* ACCESS_CONTROL_MANAGER_ROLE
|
|
2184
|
+
* view
|
|
2185
|
+
*/
|
|
2186
|
+
ACCESS_CONTROL_MANAGER_ROLE(): Promise<string>;
|
|
2187
|
+
/**
|
|
2188
|
+
* AGORA_ACCESS_CONTROL_STORAGE_SLOT
|
|
2189
|
+
* view
|
|
2190
|
+
*/
|
|
2191
|
+
AGORA_ACCESS_CONTROL_STORAGE_SLOT(): Promise<`0x${string}`>;
|
|
2192
|
+
/**
|
|
2193
|
+
* BRIDGE_BURNER_ROLE
|
|
2194
|
+
* view
|
|
2195
|
+
*/
|
|
2196
|
+
BRIDGE_BURNER_ROLE(): Promise<string>;
|
|
2197
|
+
/**
|
|
2198
|
+
* BRIDGE_MINTER_ROLE
|
|
2199
|
+
* view
|
|
2200
|
+
*/
|
|
2201
|
+
BRIDGE_MINTER_ROLE(): Promise<string>;
|
|
2202
|
+
/**
|
|
2203
|
+
* BURNER_ROLE
|
|
2204
|
+
* view
|
|
2205
|
+
*/
|
|
2206
|
+
BURNER_ROLE(): Promise<string>;
|
|
2207
|
+
/**
|
|
2208
|
+
* CANCEL_AUTHORIZATION_TYPEHASH
|
|
2209
|
+
* pure
|
|
2210
|
+
*/
|
|
2211
|
+
CANCEL_AUTHORIZATION_TYPEHASH(): Promise<`0x${string}`>;
|
|
2212
|
+
/**
|
|
2213
|
+
* DOMAIN_SEPARATOR
|
|
2214
|
+
* view
|
|
2215
|
+
*/
|
|
2216
|
+
DOMAIN_SEPARATOR(): Promise<`0x${string}`>;
|
|
2217
|
+
/**
|
|
2218
|
+
* ERC20_CORE_STORAGE_SLOT
|
|
2219
|
+
* pure
|
|
2220
|
+
*/
|
|
2221
|
+
ERC20_CORE_STORAGE_SLOT(): Promise<`0x${string}`>;
|
|
2222
|
+
/**
|
|
2223
|
+
* ERC2612_STORAGE_SLOT
|
|
2224
|
+
* pure
|
|
2225
|
+
*/
|
|
2226
|
+
ERC2612_STORAGE_SLOT(): Promise<`0x${string}`>;
|
|
2227
|
+
/**
|
|
2228
|
+
* FREEZER_ROLE
|
|
2229
|
+
* view
|
|
2230
|
+
*/
|
|
2231
|
+
FREEZER_ROLE(): Promise<string>;
|
|
2232
|
+
/**
|
|
2233
|
+
* IS_BURN_FROM_PAUSED_BIT_POSITION
|
|
2234
|
+
* pure
|
|
2235
|
+
*/
|
|
2236
|
+
IS_BURN_FROM_PAUSED_BIT_POSITION(): Promise<bigint>;
|
|
2237
|
+
/**
|
|
2238
|
+
* IS_FREEZING_PAUSED_BIT_POSITION
|
|
2239
|
+
* pure
|
|
2240
|
+
*/
|
|
2241
|
+
IS_FREEZING_PAUSED_BIT_POSITION(): Promise<bigint>;
|
|
2242
|
+
/**
|
|
2243
|
+
* IS_MINT_PAUSED_BIT_POSITION
|
|
2244
|
+
* pure
|
|
2245
|
+
*/
|
|
2246
|
+
IS_MINT_PAUSED_BIT_POSITION(): Promise<bigint>;
|
|
2247
|
+
/**
|
|
2248
|
+
* IS_MSG_SENDER_FROZEN_CHECK_ENABLED_BIT_POSITION
|
|
2249
|
+
* pure
|
|
2250
|
+
*/
|
|
2251
|
+
IS_MSG_SENDER_FROZEN_CHECK_ENABLED_BIT_POSITION(): Promise<bigint>;
|
|
2252
|
+
/**
|
|
2253
|
+
* IS_RECEIVE_WITH_AUTHORIZATION_UPGRADED_BIT_POSITION
|
|
2254
|
+
* pure
|
|
2255
|
+
*/
|
|
2256
|
+
IS_RECEIVE_WITH_AUTHORIZATION_UPGRADED_BIT_POSITION(): Promise<bigint>;
|
|
2257
|
+
/**
|
|
2258
|
+
* IS_SIGNATURE_VERIFICATION_PAUSED_BIT_POSITION
|
|
2259
|
+
* pure
|
|
2260
|
+
*/
|
|
2261
|
+
IS_SIGNATURE_VERIFICATION_PAUSED_BIT_POSITION(): Promise<bigint>;
|
|
2262
|
+
/**
|
|
2263
|
+
* IS_TRANSFER_FROM_UPGRADED_BIT_POSITION
|
|
2264
|
+
* pure
|
|
2265
|
+
*/
|
|
2266
|
+
IS_TRANSFER_FROM_UPGRADED_BIT_POSITION(): Promise<bigint>;
|
|
2267
|
+
/**
|
|
2268
|
+
* IS_TRANSFER_PAUSED_BIT_POSITION
|
|
2269
|
+
* pure
|
|
2270
|
+
*/
|
|
2271
|
+
IS_TRANSFER_PAUSED_BIT_POSITION(): Promise<bigint>;
|
|
2272
|
+
/**
|
|
2273
|
+
* IS_TRANSFER_UPGRADED_BIT_POSITION
|
|
2274
|
+
* pure
|
|
2275
|
+
*/
|
|
2276
|
+
IS_TRANSFER_UPGRADED_BIT_POSITION(): Promise<bigint>;
|
|
2277
|
+
/**
|
|
2278
|
+
* IS_TRANSFER_WITH_AUTHORIZATION_UPGRADED_BIT_POSITION
|
|
2279
|
+
* pure
|
|
2280
|
+
*/
|
|
2281
|
+
IS_TRANSFER_WITH_AUTHORIZATION_UPGRADED_BIT_POSITION(): Promise<bigint>;
|
|
2282
|
+
/**
|
|
2283
|
+
* MINTER_ROLE
|
|
2284
|
+
* view
|
|
2285
|
+
*/
|
|
2286
|
+
MINTER_ROLE(): Promise<string>;
|
|
2287
|
+
/**
|
|
2288
|
+
* PAUSER_ROLE
|
|
2289
|
+
* view
|
|
2290
|
+
*/
|
|
2291
|
+
PAUSER_ROLE(): Promise<string>;
|
|
2292
|
+
/**
|
|
2293
|
+
* PERMIT_TYPEHASH
|
|
2294
|
+
* view
|
|
2295
|
+
*/
|
|
2296
|
+
PERMIT_TYPEHASH(): Promise<`0x${string}`>;
|
|
2297
|
+
/**
|
|
2298
|
+
* RATE_LIMIT_MANAGER_ROLE
|
|
2299
|
+
* view
|
|
2300
|
+
*/
|
|
2301
|
+
RATE_LIMIT_MANAGER_ROLE(): Promise<string>;
|
|
2302
|
+
/**
|
|
2303
|
+
* RECEIVE_WITH_AUTHORIZATION_TYPEHASH
|
|
2304
|
+
* pure
|
|
2305
|
+
*/
|
|
2306
|
+
RECEIVE_WITH_AUTHORIZATION_TYPEHASH(): Promise<`0x${string}`>;
|
|
2307
|
+
/**
|
|
2308
|
+
* TRANSFER_WITH_AUTHORIZATION_TYPEHASH
|
|
2309
|
+
* pure
|
|
2310
|
+
*/
|
|
2311
|
+
TRANSFER_WITH_AUTHORIZATION_TYPEHASH(): Promise<`0x${string}`>;
|
|
2312
|
+
/**
|
|
2313
|
+
* accountData
|
|
2314
|
+
* view
|
|
2315
|
+
*/
|
|
2316
|
+
accountData(_account: `0x${string}`): Promise<StorageLib_Erc20AccountData>;
|
|
2317
|
+
/**
|
|
2318
|
+
* allowance
|
|
2319
|
+
* view
|
|
2320
|
+
*/
|
|
2321
|
+
allowance(_owner: `0x${string}`, _spender: `0x${string}`): Promise<bigint>;
|
|
2322
|
+
/**
|
|
2323
|
+
* authorizationState
|
|
2324
|
+
* view
|
|
2325
|
+
*/
|
|
2326
|
+
authorizationState(_authorizer: `0x${string}`, _nonce: `0x${string}`): Promise<boolean>;
|
|
2327
|
+
/**
|
|
2328
|
+
* balanceOf
|
|
2329
|
+
* view
|
|
2330
|
+
*/
|
|
2331
|
+
balanceOf(_account: `0x${string}`): Promise<bigint>;
|
|
2332
|
+
/**
|
|
2333
|
+
* decimals
|
|
2334
|
+
* view
|
|
2335
|
+
*/
|
|
2336
|
+
decimals(): Promise<bigint>;
|
|
2337
|
+
/**
|
|
2338
|
+
* domainSeparatorV4
|
|
2339
|
+
* view
|
|
2340
|
+
*/
|
|
2341
|
+
domainSeparatorV4(): Promise<`0x${string}`>;
|
|
2342
|
+
/**
|
|
2343
|
+
* eip712Domain
|
|
2344
|
+
* view
|
|
2345
|
+
*/
|
|
2346
|
+
eip712Domain(): Promise<[`0x${string}`, string, string, bigint, `0x${string}`, `0x${string}`, bigint[]]>;
|
|
2347
|
+
/**
|
|
2348
|
+
* getAccessControlManagerRoleMembers
|
|
2349
|
+
* view
|
|
2350
|
+
*/
|
|
2351
|
+
getAccessControlManagerRoleMembers(): Promise<`0x${string}`[]>;
|
|
2352
|
+
/**
|
|
2353
|
+
* getAllRoles
|
|
2354
|
+
* view
|
|
2355
|
+
*/
|
|
2356
|
+
getAllRoles(): Promise<string[]>;
|
|
2357
|
+
/**
|
|
2358
|
+
* getAmountCanBeMinted
|
|
2359
|
+
* view
|
|
2360
|
+
*/
|
|
2361
|
+
getAmountCanBeMinted(_minter: `0x${string}`): Promise<[bigint, bigint]>;
|
|
2362
|
+
/**
|
|
2363
|
+
* getBridgeBurnerRoleMembers
|
|
2364
|
+
* view
|
|
2365
|
+
*/
|
|
2366
|
+
getBridgeBurnerRoleMembers(): Promise<`0x${string}`[]>;
|
|
2367
|
+
/**
|
|
2368
|
+
* getBridgeMinterRoleMembers
|
|
2369
|
+
* view
|
|
2370
|
+
*/
|
|
2371
|
+
getBridgeMinterRoleMembers(): Promise<`0x${string}`[]>;
|
|
2372
|
+
/**
|
|
2373
|
+
* getBurnerRoleMembers
|
|
2374
|
+
* view
|
|
2375
|
+
*/
|
|
2376
|
+
getBurnerRoleMembers(): Promise<`0x${string}`[]>;
|
|
2377
|
+
/**
|
|
2378
|
+
* getFreezerRoleMembers
|
|
2379
|
+
* view
|
|
2380
|
+
*/
|
|
2381
|
+
getFreezerRoleMembers(): Promise<`0x${string}`[]>;
|
|
2382
|
+
/**
|
|
2383
|
+
* getMintRateLimit
|
|
2384
|
+
* view
|
|
2385
|
+
*/
|
|
2386
|
+
getMintRateLimit(_minter: `0x${string}`): Promise<StorageLib_RateLimit>;
|
|
2387
|
+
/**
|
|
2388
|
+
* getMinterRoleMembers
|
|
2389
|
+
* view
|
|
2390
|
+
*/
|
|
2391
|
+
getMinterRoleMembers(): Promise<`0x${string}`[]>;
|
|
2392
|
+
/**
|
|
2393
|
+
* getPauserRoleMembers
|
|
2394
|
+
* view
|
|
2395
|
+
*/
|
|
2396
|
+
getPauserRoleMembers(): Promise<`0x${string}`[]>;
|
|
2397
|
+
/**
|
|
2398
|
+
* getRateLimitManagerRoleMembers
|
|
2399
|
+
* view
|
|
2400
|
+
*/
|
|
2401
|
+
getRateLimitManagerRoleMembers(): Promise<`0x${string}`[]>;
|
|
2402
|
+
/**
|
|
2403
|
+
* getRoleMembers
|
|
2404
|
+
* view
|
|
2405
|
+
*/
|
|
2406
|
+
getRoleMembers(_role: string): Promise<`0x${string}`[]>;
|
|
2407
|
+
/**
|
|
2408
|
+
* hasRole
|
|
2409
|
+
* view
|
|
2410
|
+
*/
|
|
2411
|
+
hasRole(_role: string, _member: `0x${string}`): Promise<boolean>;
|
|
2412
|
+
/**
|
|
2413
|
+
* hashTypedDataV4
|
|
2414
|
+
* view
|
|
2415
|
+
*/
|
|
2416
|
+
hashTypedDataV4(_structHash: `0x${string}`): Promise<`0x${string}`>;
|
|
2417
|
+
/**
|
|
2418
|
+
* implementation
|
|
2419
|
+
* view
|
|
2420
|
+
*/
|
|
2421
|
+
implementation(): Promise<`0x${string}`>;
|
|
2422
|
+
/**
|
|
2423
|
+
* isAccountFrozen
|
|
2424
|
+
* view
|
|
2425
|
+
*/
|
|
2426
|
+
isAccountFrozen(_account: `0x${string}`): Promise<boolean>;
|
|
2427
|
+
/**
|
|
2428
|
+
* isBridgingPaused
|
|
2429
|
+
* view
|
|
2430
|
+
*/
|
|
2431
|
+
isBridgingPaused(): Promise<boolean>;
|
|
2432
|
+
/**
|
|
2433
|
+
* isBurnFromPaused
|
|
2434
|
+
* view
|
|
2435
|
+
*/
|
|
2436
|
+
isBurnFromPaused(): Promise<boolean>;
|
|
2437
|
+
/**
|
|
2438
|
+
* isFreezingPaused
|
|
2439
|
+
* view
|
|
2440
|
+
*/
|
|
2441
|
+
isFreezingPaused(): Promise<boolean>;
|
|
2442
|
+
/**
|
|
2443
|
+
* isMintPaused
|
|
2444
|
+
* view
|
|
2445
|
+
*/
|
|
2446
|
+
isMintPaused(): Promise<boolean>;
|
|
2447
|
+
/**
|
|
2448
|
+
* isMsgSenderFrozenCheckEnabled
|
|
2449
|
+
* view
|
|
2450
|
+
*/
|
|
2451
|
+
isMsgSenderFrozenCheckEnabled(): Promise<boolean>;
|
|
2452
|
+
/**
|
|
2453
|
+
* isReceiveWithAuthorizationUpgraded
|
|
2454
|
+
* view
|
|
2455
|
+
*/
|
|
2456
|
+
isReceiveWithAuthorizationUpgraded(): Promise<boolean>;
|
|
2457
|
+
/**
|
|
2458
|
+
* isSignatureVerificationPaused
|
|
2459
|
+
* view
|
|
2460
|
+
*/
|
|
2461
|
+
isSignatureVerificationPaused(): Promise<boolean>;
|
|
2462
|
+
/**
|
|
2463
|
+
* isTransferFromUpgraded
|
|
2464
|
+
* view
|
|
2465
|
+
*/
|
|
2466
|
+
isTransferFromUpgraded(): Promise<boolean>;
|
|
2467
|
+
/**
|
|
2468
|
+
* isTransferPaused
|
|
2469
|
+
* view
|
|
2470
|
+
*/
|
|
2471
|
+
isTransferPaused(): Promise<boolean>;
|
|
2472
|
+
/**
|
|
2473
|
+
* isTransferUpgraded
|
|
2474
|
+
* view
|
|
2475
|
+
*/
|
|
2476
|
+
isTransferUpgraded(): Promise<boolean>;
|
|
2477
|
+
/**
|
|
2478
|
+
* isTransferWithAuthorizationUpgraded
|
|
2479
|
+
* view
|
|
2480
|
+
*/
|
|
2481
|
+
isTransferWithAuthorizationUpgraded(): Promise<boolean>;
|
|
2482
|
+
/**
|
|
2483
|
+
* name
|
|
2484
|
+
* view
|
|
2485
|
+
*/
|
|
2486
|
+
name(): Promise<string>;
|
|
2487
|
+
/**
|
|
2488
|
+
* nonces
|
|
2489
|
+
* view
|
|
2490
|
+
*/
|
|
2491
|
+
nonces(_account: `0x${string}`): Promise<bigint>;
|
|
2492
|
+
/**
|
|
2493
|
+
* proxyAdminAddress
|
|
2494
|
+
* view
|
|
2495
|
+
*/
|
|
2496
|
+
proxyAdminAddress(): Promise<`0x${string}`>;
|
|
2497
|
+
/**
|
|
2498
|
+
* symbol
|
|
2499
|
+
* view
|
|
2500
|
+
*/
|
|
2501
|
+
symbol(): Promise<string>;
|
|
2502
|
+
/**
|
|
2503
|
+
* totalSupply
|
|
2504
|
+
* view
|
|
2505
|
+
*/
|
|
2506
|
+
totalSupply(): Promise<bigint>;
|
|
2507
|
+
/**
|
|
2508
|
+
* version
|
|
2509
|
+
* pure
|
|
2510
|
+
*/
|
|
2511
|
+
version(): Promise<AgoraDollar_Version>;
|
|
2512
|
+
/**
|
|
2513
|
+
* approve
|
|
2514
|
+
* nonpayable
|
|
2515
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2516
|
+
*/
|
|
2517
|
+
approve(_spender: `0x${string}`, _value: bigint, options?: {
|
|
2518
|
+
accessList?: import('viem').AccessList;
|
|
2519
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2520
|
+
chain?: import('viem').Chain | null;
|
|
2521
|
+
dataSuffix?: `0x${string}`;
|
|
2522
|
+
gas?: bigint;
|
|
2523
|
+
gasPrice?: bigint;
|
|
2524
|
+
maxFeePerGas?: bigint;
|
|
2525
|
+
maxPriorityFeePerGas?: bigint;
|
|
2526
|
+
nonce?: number;
|
|
2527
|
+
value?: bigint;
|
|
2528
|
+
}): Promise<`0x${string}`>;
|
|
2529
|
+
/**
|
|
2530
|
+
* batchBurnFrom
|
|
2531
|
+
* nonpayable
|
|
2532
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2533
|
+
*/
|
|
2534
|
+
batchBurnFrom(_burns: Erc20Privileged_BatchBurnFromParam[], options?: {
|
|
2535
|
+
accessList?: import('viem').AccessList;
|
|
2536
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2537
|
+
chain?: import('viem').Chain | null;
|
|
2538
|
+
dataSuffix?: `0x${string}`;
|
|
2539
|
+
gas?: bigint;
|
|
2540
|
+
gasPrice?: bigint;
|
|
2541
|
+
maxFeePerGas?: bigint;
|
|
2542
|
+
maxPriorityFeePerGas?: bigint;
|
|
2543
|
+
nonce?: number;
|
|
2544
|
+
value?: bigint;
|
|
2545
|
+
}): Promise<`0x${string}`>;
|
|
2546
|
+
/**
|
|
2547
|
+
* batchFreeze
|
|
2548
|
+
* nonpayable
|
|
2549
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2550
|
+
*/
|
|
2551
|
+
batchFreeze(_addresses: `0x${string}`[], options?: {
|
|
2552
|
+
accessList?: import('viem').AccessList;
|
|
2553
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2554
|
+
chain?: import('viem').Chain | null;
|
|
2555
|
+
dataSuffix?: `0x${string}`;
|
|
2556
|
+
gas?: bigint;
|
|
2557
|
+
gasPrice?: bigint;
|
|
2558
|
+
maxFeePerGas?: bigint;
|
|
2559
|
+
maxPriorityFeePerGas?: bigint;
|
|
2560
|
+
nonce?: number;
|
|
2561
|
+
value?: bigint;
|
|
2562
|
+
}): Promise<`0x${string}`>;
|
|
2563
|
+
/**
|
|
2564
|
+
* batchMint
|
|
2565
|
+
* nonpayable
|
|
2566
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2567
|
+
*/
|
|
2568
|
+
batchMint(_mints: Erc20Privileged_BatchMintParam[], options?: {
|
|
2569
|
+
accessList?: import('viem').AccessList;
|
|
2570
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2571
|
+
chain?: import('viem').Chain | null;
|
|
2572
|
+
dataSuffix?: `0x${string}`;
|
|
2573
|
+
gas?: bigint;
|
|
2574
|
+
gasPrice?: bigint;
|
|
2575
|
+
maxFeePerGas?: bigint;
|
|
2576
|
+
maxPriorityFeePerGas?: bigint;
|
|
2577
|
+
nonce?: number;
|
|
2578
|
+
value?: bigint;
|
|
2579
|
+
}): Promise<`0x${string}`>;
|
|
2580
|
+
/**
|
|
2581
|
+
* batchUnfreeze
|
|
2582
|
+
* nonpayable
|
|
2583
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2584
|
+
*/
|
|
2585
|
+
batchUnfreeze(_addresses: `0x${string}`[], options?: {
|
|
2586
|
+
accessList?: import('viem').AccessList;
|
|
2587
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2588
|
+
chain?: import('viem').Chain | null;
|
|
2589
|
+
dataSuffix?: `0x${string}`;
|
|
2590
|
+
gas?: bigint;
|
|
2591
|
+
gasPrice?: bigint;
|
|
2592
|
+
maxFeePerGas?: bigint;
|
|
2593
|
+
maxPriorityFeePerGas?: bigint;
|
|
2594
|
+
nonce?: number;
|
|
2595
|
+
value?: bigint;
|
|
2596
|
+
}): Promise<`0x${string}`>;
|
|
2597
|
+
/**
|
|
2598
|
+
* burn
|
|
2599
|
+
* nonpayable
|
|
2600
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2601
|
+
*/
|
|
2602
|
+
burn(_from: `0x${string}`, _amount: bigint, options?: {
|
|
2603
|
+
accessList?: import('viem').AccessList;
|
|
2604
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2605
|
+
chain?: import('viem').Chain | null;
|
|
2606
|
+
dataSuffix?: `0x${string}`;
|
|
2607
|
+
gas?: bigint;
|
|
2608
|
+
gasPrice?: bigint;
|
|
2609
|
+
maxFeePerGas?: bigint;
|
|
2610
|
+
maxPriorityFeePerGas?: bigint;
|
|
2611
|
+
nonce?: number;
|
|
2612
|
+
value?: bigint;
|
|
2613
|
+
}): Promise<`0x${string}`>;
|
|
2614
|
+
cancelAuthorization(_authorizer: `0x${string}`, _nonce: `0x${string}`, _v: bigint, _r: `0x${string}`, _s: `0x${string}`, options?: {
|
|
2615
|
+
accessList?: import('viem').AccessList;
|
|
2616
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2617
|
+
chain?: import('viem').Chain | null;
|
|
2618
|
+
dataSuffix?: `0x${string}`;
|
|
2619
|
+
gas?: bigint;
|
|
2620
|
+
gasPrice?: bigint;
|
|
2621
|
+
maxFeePerGas?: bigint;
|
|
2622
|
+
maxPriorityFeePerGas?: bigint;
|
|
2623
|
+
nonce?: number;
|
|
2624
|
+
value?: bigint;
|
|
2625
|
+
}): Promise<`0x${string}`>;
|
|
2626
|
+
cancelAuthorization(_authorizer: `0x${string}`, _nonce: `0x${string}`, _signature: `0x${string}`, options?: {
|
|
2627
|
+
accessList?: import('viem').AccessList;
|
|
2628
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2629
|
+
chain?: import('viem').Chain | null;
|
|
2630
|
+
dataSuffix?: `0x${string}`;
|
|
2631
|
+
gas?: bigint;
|
|
2632
|
+
gasPrice?: bigint;
|
|
2633
|
+
maxFeePerGas?: bigint;
|
|
2634
|
+
maxPriorityFeePerGas?: bigint;
|
|
2635
|
+
nonce?: number;
|
|
2636
|
+
value?: bigint;
|
|
2637
|
+
}): Promise<`0x${string}`>;
|
|
2638
|
+
/**
|
|
2639
|
+
* grantAccessControlManagerRole
|
|
2640
|
+
* nonpayable
|
|
2641
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2642
|
+
*/
|
|
2643
|
+
grantAccessControlManagerRole(_member: `0x${string}`, options?: {
|
|
2644
|
+
accessList?: import('viem').AccessList;
|
|
2645
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2646
|
+
chain?: import('viem').Chain | null;
|
|
2647
|
+
dataSuffix?: `0x${string}`;
|
|
2648
|
+
gas?: bigint;
|
|
2649
|
+
gasPrice?: bigint;
|
|
2650
|
+
maxFeePerGas?: bigint;
|
|
2651
|
+
maxPriorityFeePerGas?: bigint;
|
|
2652
|
+
nonce?: number;
|
|
2653
|
+
value?: bigint;
|
|
2654
|
+
}): Promise<`0x${string}`>;
|
|
2655
|
+
/**
|
|
2656
|
+
* grantBridgeBurnerRole
|
|
2657
|
+
* nonpayable
|
|
2658
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2659
|
+
*/
|
|
2660
|
+
grantBridgeBurnerRole(_member: `0x${string}`, options?: {
|
|
2661
|
+
accessList?: import('viem').AccessList;
|
|
2662
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2663
|
+
chain?: import('viem').Chain | null;
|
|
2664
|
+
dataSuffix?: `0x${string}`;
|
|
2665
|
+
gas?: bigint;
|
|
2666
|
+
gasPrice?: bigint;
|
|
2667
|
+
maxFeePerGas?: bigint;
|
|
2668
|
+
maxPriorityFeePerGas?: bigint;
|
|
2669
|
+
nonce?: number;
|
|
2670
|
+
value?: bigint;
|
|
2671
|
+
}): Promise<`0x${string}`>;
|
|
2672
|
+
/**
|
|
2673
|
+
* grantBridgeMinterRole
|
|
2674
|
+
* nonpayable
|
|
2675
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2676
|
+
*/
|
|
2677
|
+
grantBridgeMinterRole(_member: `0x${string}`, options?: {
|
|
2678
|
+
accessList?: import('viem').AccessList;
|
|
2679
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2680
|
+
chain?: import('viem').Chain | null;
|
|
2681
|
+
dataSuffix?: `0x${string}`;
|
|
2682
|
+
gas?: bigint;
|
|
2683
|
+
gasPrice?: bigint;
|
|
2684
|
+
maxFeePerGas?: bigint;
|
|
2685
|
+
maxPriorityFeePerGas?: bigint;
|
|
2686
|
+
nonce?: number;
|
|
2687
|
+
value?: bigint;
|
|
2688
|
+
}): Promise<`0x${string}`>;
|
|
2689
|
+
/**
|
|
2690
|
+
* grantBurnerRole
|
|
2691
|
+
* nonpayable
|
|
2692
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2693
|
+
*/
|
|
2694
|
+
grantBurnerRole(_member: `0x${string}`, options?: {
|
|
2695
|
+
accessList?: import('viem').AccessList;
|
|
2696
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2697
|
+
chain?: import('viem').Chain | null;
|
|
2698
|
+
dataSuffix?: `0x${string}`;
|
|
2699
|
+
gas?: bigint;
|
|
2700
|
+
gasPrice?: bigint;
|
|
2701
|
+
maxFeePerGas?: bigint;
|
|
2702
|
+
maxPriorityFeePerGas?: bigint;
|
|
2703
|
+
nonce?: number;
|
|
2704
|
+
value?: bigint;
|
|
2705
|
+
}): Promise<`0x${string}`>;
|
|
2706
|
+
/**
|
|
2707
|
+
* grantFreezerRole
|
|
2708
|
+
* nonpayable
|
|
2709
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2710
|
+
*/
|
|
2711
|
+
grantFreezerRole(_member: `0x${string}`, options?: {
|
|
2712
|
+
accessList?: import('viem').AccessList;
|
|
2713
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2714
|
+
chain?: import('viem').Chain | null;
|
|
2715
|
+
dataSuffix?: `0x${string}`;
|
|
2716
|
+
gas?: bigint;
|
|
2717
|
+
gasPrice?: bigint;
|
|
2718
|
+
maxFeePerGas?: bigint;
|
|
2719
|
+
maxPriorityFeePerGas?: bigint;
|
|
2720
|
+
nonce?: number;
|
|
2721
|
+
value?: bigint;
|
|
2722
|
+
}): Promise<`0x${string}`>;
|
|
2723
|
+
/**
|
|
2724
|
+
* grantMinterRole
|
|
2725
|
+
* nonpayable
|
|
2726
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2727
|
+
*/
|
|
2728
|
+
grantMinterRole(_member: `0x${string}`, options?: {
|
|
2729
|
+
accessList?: import('viem').AccessList;
|
|
2730
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2731
|
+
chain?: import('viem').Chain | null;
|
|
2732
|
+
dataSuffix?: `0x${string}`;
|
|
2733
|
+
gas?: bigint;
|
|
2734
|
+
gasPrice?: bigint;
|
|
2735
|
+
maxFeePerGas?: bigint;
|
|
2736
|
+
maxPriorityFeePerGas?: bigint;
|
|
2737
|
+
nonce?: number;
|
|
2738
|
+
value?: bigint;
|
|
2739
|
+
}): Promise<`0x${string}`>;
|
|
2740
|
+
/**
|
|
2741
|
+
* grantPauserRole
|
|
2742
|
+
* nonpayable
|
|
2743
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2744
|
+
*/
|
|
2745
|
+
grantPauserRole(_member: `0x${string}`, options?: {
|
|
2746
|
+
accessList?: import('viem').AccessList;
|
|
2747
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2748
|
+
chain?: import('viem').Chain | null;
|
|
2749
|
+
dataSuffix?: `0x${string}`;
|
|
2750
|
+
gas?: bigint;
|
|
2751
|
+
gasPrice?: bigint;
|
|
2752
|
+
maxFeePerGas?: bigint;
|
|
2753
|
+
maxPriorityFeePerGas?: bigint;
|
|
2754
|
+
nonce?: number;
|
|
2755
|
+
value?: bigint;
|
|
2756
|
+
}): Promise<`0x${string}`>;
|
|
2757
|
+
/**
|
|
2758
|
+
* grantRateLimitManagerRole
|
|
2759
|
+
* nonpayable
|
|
2760
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2761
|
+
*/
|
|
2762
|
+
grantRateLimitManagerRole(_member: `0x${string}`, options?: {
|
|
2763
|
+
accessList?: import('viem').AccessList;
|
|
2764
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2765
|
+
chain?: import('viem').Chain | null;
|
|
2766
|
+
dataSuffix?: `0x${string}`;
|
|
2767
|
+
gas?: bigint;
|
|
2768
|
+
gasPrice?: bigint;
|
|
2769
|
+
maxFeePerGas?: bigint;
|
|
2770
|
+
maxPriorityFeePerGas?: bigint;
|
|
2771
|
+
nonce?: number;
|
|
2772
|
+
value?: bigint;
|
|
2773
|
+
}): Promise<`0x${string}`>;
|
|
2774
|
+
/**
|
|
2775
|
+
* initialize
|
|
2776
|
+
* nonpayable
|
|
2777
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2778
|
+
*/
|
|
2779
|
+
initialize(_params: InitializeParams, options?: {
|
|
2780
|
+
accessList?: import('viem').AccessList;
|
|
2781
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2782
|
+
chain?: import('viem').Chain | null;
|
|
2783
|
+
dataSuffix?: `0x${string}`;
|
|
2784
|
+
gas?: bigint;
|
|
2785
|
+
gasPrice?: bigint;
|
|
2786
|
+
maxFeePerGas?: bigint;
|
|
2787
|
+
maxPriorityFeePerGas?: bigint;
|
|
2788
|
+
nonce?: number;
|
|
2789
|
+
value?: bigint;
|
|
2790
|
+
}): Promise<`0x${string}`>;
|
|
2791
|
+
/**
|
|
2792
|
+
* mint
|
|
2793
|
+
* nonpayable
|
|
2794
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2795
|
+
*/
|
|
2796
|
+
mint(_to: `0x${string}`, _amount: bigint, options?: {
|
|
2797
|
+
accessList?: import('viem').AccessList;
|
|
2798
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2799
|
+
chain?: import('viem').Chain | null;
|
|
2800
|
+
dataSuffix?: `0x${string}`;
|
|
2801
|
+
gas?: bigint;
|
|
2802
|
+
gasPrice?: bigint;
|
|
2803
|
+
maxFeePerGas?: bigint;
|
|
2804
|
+
maxPriorityFeePerGas?: bigint;
|
|
2805
|
+
nonce?: number;
|
|
2806
|
+
value?: bigint;
|
|
2807
|
+
}): Promise<`0x${string}`>;
|
|
2808
|
+
permit(_owner: `0x${string}`, _spender: `0x${string}`, _value: bigint, _deadline: bigint, _signature: `0x${string}`, options?: {
|
|
2809
|
+
accessList?: import('viem').AccessList;
|
|
2810
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2811
|
+
chain?: import('viem').Chain | null;
|
|
2812
|
+
dataSuffix?: `0x${string}`;
|
|
2813
|
+
gas?: bigint;
|
|
2814
|
+
gasPrice?: bigint;
|
|
2815
|
+
maxFeePerGas?: bigint;
|
|
2816
|
+
maxPriorityFeePerGas?: bigint;
|
|
2817
|
+
nonce?: number;
|
|
2818
|
+
value?: bigint;
|
|
2819
|
+
}): Promise<`0x${string}`>;
|
|
2820
|
+
permit(_owner: `0x${string}`, _spender: `0x${string}`, _value: bigint, _deadline: bigint, _v: bigint, _r: `0x${string}`, _s: `0x${string}`, options?: {
|
|
2821
|
+
accessList?: import('viem').AccessList;
|
|
2822
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2823
|
+
chain?: import('viem').Chain | null;
|
|
2824
|
+
dataSuffix?: `0x${string}`;
|
|
2825
|
+
gas?: bigint;
|
|
2826
|
+
gasPrice?: bigint;
|
|
2827
|
+
maxFeePerGas?: bigint;
|
|
2828
|
+
maxPriorityFeePerGas?: bigint;
|
|
2829
|
+
nonce?: number;
|
|
2830
|
+
value?: bigint;
|
|
2831
|
+
}): Promise<`0x${string}`>;
|
|
2832
|
+
receiveWithAuthorization(_from: `0x${string}`, _to: `0x${string}`, _value: bigint, _validAfter: bigint, _validBefore: bigint, _nonce: `0x${string}`, _signature: `0x${string}`, options?: {
|
|
2833
|
+
accessList?: import('viem').AccessList;
|
|
2834
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2835
|
+
chain?: import('viem').Chain | null;
|
|
2836
|
+
dataSuffix?: `0x${string}`;
|
|
2837
|
+
gas?: bigint;
|
|
2838
|
+
gasPrice?: bigint;
|
|
2839
|
+
maxFeePerGas?: bigint;
|
|
2840
|
+
maxPriorityFeePerGas?: bigint;
|
|
2841
|
+
nonce?: number;
|
|
2842
|
+
value?: bigint;
|
|
2843
|
+
}): Promise<`0x${string}`>;
|
|
2844
|
+
receiveWithAuthorization(_from: `0x${string}`, _to: `0x${string}`, _value: bigint, _validAfter: bigint, _validBefore: bigint, _nonce: `0x${string}`, _v: bigint, _r: `0x${string}`, _s: `0x${string}`, options?: {
|
|
2845
|
+
accessList?: import('viem').AccessList;
|
|
2846
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2847
|
+
chain?: import('viem').Chain | null;
|
|
2848
|
+
dataSuffix?: `0x${string}`;
|
|
2849
|
+
gas?: bigint;
|
|
2850
|
+
gasPrice?: bigint;
|
|
2851
|
+
maxFeePerGas?: bigint;
|
|
2852
|
+
maxPriorityFeePerGas?: bigint;
|
|
2853
|
+
nonce?: number;
|
|
2854
|
+
value?: bigint;
|
|
2855
|
+
}): Promise<`0x${string}`>;
|
|
2856
|
+
/**
|
|
2857
|
+
* revokeAccessControlManagerRole
|
|
2858
|
+
* nonpayable
|
|
2859
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2860
|
+
*/
|
|
2861
|
+
revokeAccessControlManagerRole(_member: `0x${string}`, options?: {
|
|
2862
|
+
accessList?: import('viem').AccessList;
|
|
2863
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2864
|
+
chain?: import('viem').Chain | null;
|
|
2865
|
+
dataSuffix?: `0x${string}`;
|
|
2866
|
+
gas?: bigint;
|
|
2867
|
+
gasPrice?: bigint;
|
|
2868
|
+
maxFeePerGas?: bigint;
|
|
2869
|
+
maxPriorityFeePerGas?: bigint;
|
|
2870
|
+
nonce?: number;
|
|
2871
|
+
value?: bigint;
|
|
2872
|
+
}): Promise<`0x${string}`>;
|
|
2873
|
+
/**
|
|
2874
|
+
* revokeBridgeBurnerRole
|
|
2875
|
+
* nonpayable
|
|
2876
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2877
|
+
*/
|
|
2878
|
+
revokeBridgeBurnerRole(_member: `0x${string}`, options?: {
|
|
2879
|
+
accessList?: import('viem').AccessList;
|
|
2880
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2881
|
+
chain?: import('viem').Chain | null;
|
|
2882
|
+
dataSuffix?: `0x${string}`;
|
|
2883
|
+
gas?: bigint;
|
|
2884
|
+
gasPrice?: bigint;
|
|
2885
|
+
maxFeePerGas?: bigint;
|
|
2886
|
+
maxPriorityFeePerGas?: bigint;
|
|
2887
|
+
nonce?: number;
|
|
2888
|
+
value?: bigint;
|
|
2889
|
+
}): Promise<`0x${string}`>;
|
|
2890
|
+
/**
|
|
2891
|
+
* revokeBridgeMinterRole
|
|
2892
|
+
* nonpayable
|
|
2893
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2894
|
+
*/
|
|
2895
|
+
revokeBridgeMinterRole(_member: `0x${string}`, options?: {
|
|
2896
|
+
accessList?: import('viem').AccessList;
|
|
2897
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2898
|
+
chain?: import('viem').Chain | null;
|
|
2899
|
+
dataSuffix?: `0x${string}`;
|
|
2900
|
+
gas?: bigint;
|
|
2901
|
+
gasPrice?: bigint;
|
|
2902
|
+
maxFeePerGas?: bigint;
|
|
2903
|
+
maxPriorityFeePerGas?: bigint;
|
|
2904
|
+
nonce?: number;
|
|
2905
|
+
value?: bigint;
|
|
2906
|
+
}): Promise<`0x${string}`>;
|
|
2907
|
+
/**
|
|
2908
|
+
* revokeBurnerRole
|
|
2909
|
+
* nonpayable
|
|
2910
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2911
|
+
*/
|
|
2912
|
+
revokeBurnerRole(_member: `0x${string}`, options?: {
|
|
2913
|
+
accessList?: import('viem').AccessList;
|
|
2914
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2915
|
+
chain?: import('viem').Chain | null;
|
|
2916
|
+
dataSuffix?: `0x${string}`;
|
|
2917
|
+
gas?: bigint;
|
|
2918
|
+
gasPrice?: bigint;
|
|
2919
|
+
maxFeePerGas?: bigint;
|
|
2920
|
+
maxPriorityFeePerGas?: bigint;
|
|
2921
|
+
nonce?: number;
|
|
2922
|
+
value?: bigint;
|
|
2923
|
+
}): Promise<`0x${string}`>;
|
|
2924
|
+
/**
|
|
2925
|
+
* revokeFreezerRole
|
|
2926
|
+
* nonpayable
|
|
2927
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2928
|
+
*/
|
|
2929
|
+
revokeFreezerRole(_member: `0x${string}`, options?: {
|
|
2930
|
+
accessList?: import('viem').AccessList;
|
|
2931
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2932
|
+
chain?: import('viem').Chain | null;
|
|
2933
|
+
dataSuffix?: `0x${string}`;
|
|
2934
|
+
gas?: bigint;
|
|
2935
|
+
gasPrice?: bigint;
|
|
2936
|
+
maxFeePerGas?: bigint;
|
|
2937
|
+
maxPriorityFeePerGas?: bigint;
|
|
2938
|
+
nonce?: number;
|
|
2939
|
+
value?: bigint;
|
|
2940
|
+
}): Promise<`0x${string}`>;
|
|
2941
|
+
/**
|
|
2942
|
+
* revokeMinterRole
|
|
2943
|
+
* nonpayable
|
|
2944
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2945
|
+
*/
|
|
2946
|
+
revokeMinterRole(_member: `0x${string}`, options?: {
|
|
2947
|
+
accessList?: import('viem').AccessList;
|
|
2948
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2949
|
+
chain?: import('viem').Chain | null;
|
|
2950
|
+
dataSuffix?: `0x${string}`;
|
|
2951
|
+
gas?: bigint;
|
|
2952
|
+
gasPrice?: bigint;
|
|
2953
|
+
maxFeePerGas?: bigint;
|
|
2954
|
+
maxPriorityFeePerGas?: bigint;
|
|
2955
|
+
nonce?: number;
|
|
2956
|
+
value?: bigint;
|
|
2957
|
+
}): Promise<`0x${string}`>;
|
|
2958
|
+
/**
|
|
2959
|
+
* revokePauserRole
|
|
2960
|
+
* nonpayable
|
|
2961
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2962
|
+
*/
|
|
2963
|
+
revokePauserRole(_member: `0x${string}`, options?: {
|
|
2964
|
+
accessList?: import('viem').AccessList;
|
|
2965
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2966
|
+
chain?: import('viem').Chain | null;
|
|
2967
|
+
dataSuffix?: `0x${string}`;
|
|
2968
|
+
gas?: bigint;
|
|
2969
|
+
gasPrice?: bigint;
|
|
2970
|
+
maxFeePerGas?: bigint;
|
|
2971
|
+
maxPriorityFeePerGas?: bigint;
|
|
2972
|
+
nonce?: number;
|
|
2973
|
+
value?: bigint;
|
|
2974
|
+
}): Promise<`0x${string}`>;
|
|
2975
|
+
/**
|
|
2976
|
+
* revokeRateLimitManagerRole
|
|
2977
|
+
* nonpayable
|
|
2978
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2979
|
+
*/
|
|
2980
|
+
revokeRateLimitManagerRole(_member: `0x${string}`, options?: {
|
|
2981
|
+
accessList?: import('viem').AccessList;
|
|
2982
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
2983
|
+
chain?: import('viem').Chain | null;
|
|
2984
|
+
dataSuffix?: `0x${string}`;
|
|
2985
|
+
gas?: bigint;
|
|
2986
|
+
gasPrice?: bigint;
|
|
2987
|
+
maxFeePerGas?: bigint;
|
|
2988
|
+
maxPriorityFeePerGas?: bigint;
|
|
2989
|
+
nonce?: number;
|
|
2990
|
+
value?: bigint;
|
|
2991
|
+
}): Promise<`0x${string}`>;
|
|
2992
|
+
/**
|
|
2993
|
+
* setIsBridgingPaused
|
|
2994
|
+
* nonpayable
|
|
2995
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2996
|
+
*/
|
|
2997
|
+
setIsBridgingPaused(_isPaused: boolean, options?: {
|
|
2998
|
+
accessList?: import('viem').AccessList;
|
|
2999
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3000
|
+
chain?: import('viem').Chain | null;
|
|
3001
|
+
dataSuffix?: `0x${string}`;
|
|
3002
|
+
gas?: bigint;
|
|
3003
|
+
gasPrice?: bigint;
|
|
3004
|
+
maxFeePerGas?: bigint;
|
|
3005
|
+
maxPriorityFeePerGas?: bigint;
|
|
3006
|
+
nonce?: number;
|
|
3007
|
+
value?: bigint;
|
|
3008
|
+
}): Promise<`0x${string}`>;
|
|
3009
|
+
/**
|
|
3010
|
+
* setIsBurnFromPaused
|
|
3011
|
+
* nonpayable
|
|
3012
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3013
|
+
*/
|
|
3014
|
+
setIsBurnFromPaused(_isPaused: boolean, options?: {
|
|
3015
|
+
accessList?: import('viem').AccessList;
|
|
3016
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3017
|
+
chain?: import('viem').Chain | null;
|
|
3018
|
+
dataSuffix?: `0x${string}`;
|
|
3019
|
+
gas?: bigint;
|
|
3020
|
+
gasPrice?: bigint;
|
|
3021
|
+
maxFeePerGas?: bigint;
|
|
3022
|
+
maxPriorityFeePerGas?: bigint;
|
|
3023
|
+
nonce?: number;
|
|
3024
|
+
value?: bigint;
|
|
3025
|
+
}): Promise<`0x${string}`>;
|
|
3026
|
+
/**
|
|
3027
|
+
* setIsFreezingPaused
|
|
3028
|
+
* nonpayable
|
|
3029
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3030
|
+
*/
|
|
3031
|
+
setIsFreezingPaused(_isPaused: boolean, options?: {
|
|
3032
|
+
accessList?: import('viem').AccessList;
|
|
3033
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3034
|
+
chain?: import('viem').Chain | null;
|
|
3035
|
+
dataSuffix?: `0x${string}`;
|
|
3036
|
+
gas?: bigint;
|
|
3037
|
+
gasPrice?: bigint;
|
|
3038
|
+
maxFeePerGas?: bigint;
|
|
3039
|
+
maxPriorityFeePerGas?: bigint;
|
|
3040
|
+
nonce?: number;
|
|
3041
|
+
value?: bigint;
|
|
3042
|
+
}): Promise<`0x${string}`>;
|
|
3043
|
+
/**
|
|
3044
|
+
* setIsMintPaused
|
|
3045
|
+
* nonpayable
|
|
3046
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3047
|
+
*/
|
|
3048
|
+
setIsMintPaused(_isPaused: boolean, options?: {
|
|
3049
|
+
accessList?: import('viem').AccessList;
|
|
3050
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3051
|
+
chain?: import('viem').Chain | null;
|
|
3052
|
+
dataSuffix?: `0x${string}`;
|
|
3053
|
+
gas?: bigint;
|
|
3054
|
+
gasPrice?: bigint;
|
|
3055
|
+
maxFeePerGas?: bigint;
|
|
3056
|
+
maxPriorityFeePerGas?: bigint;
|
|
3057
|
+
nonce?: number;
|
|
3058
|
+
value?: bigint;
|
|
3059
|
+
}): Promise<`0x${string}`>;
|
|
3060
|
+
/**
|
|
3061
|
+
* setIsMsgSenderCheckEnabled
|
|
3062
|
+
* nonpayable
|
|
3063
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3064
|
+
*/
|
|
3065
|
+
setIsMsgSenderCheckEnabled(_isEnabled: boolean, options?: {
|
|
3066
|
+
accessList?: import('viem').AccessList;
|
|
3067
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3068
|
+
chain?: import('viem').Chain | null;
|
|
3069
|
+
dataSuffix?: `0x${string}`;
|
|
3070
|
+
gas?: bigint;
|
|
3071
|
+
gasPrice?: bigint;
|
|
3072
|
+
maxFeePerGas?: bigint;
|
|
3073
|
+
maxPriorityFeePerGas?: bigint;
|
|
3074
|
+
nonce?: number;
|
|
3075
|
+
value?: bigint;
|
|
3076
|
+
}): Promise<`0x${string}`>;
|
|
3077
|
+
/**
|
|
3078
|
+
* setIsReceiveWithAuthorizationUpgraded
|
|
3079
|
+
* nonpayable
|
|
3080
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3081
|
+
*/
|
|
3082
|
+
setIsReceiveWithAuthorizationUpgraded(_isUpgraded: boolean, options?: {
|
|
3083
|
+
accessList?: import('viem').AccessList;
|
|
3084
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3085
|
+
chain?: import('viem').Chain | null;
|
|
3086
|
+
dataSuffix?: `0x${string}`;
|
|
3087
|
+
gas?: bigint;
|
|
3088
|
+
gasPrice?: bigint;
|
|
3089
|
+
maxFeePerGas?: bigint;
|
|
3090
|
+
maxPriorityFeePerGas?: bigint;
|
|
3091
|
+
nonce?: number;
|
|
3092
|
+
value?: bigint;
|
|
3093
|
+
}): Promise<`0x${string}`>;
|
|
3094
|
+
/**
|
|
3095
|
+
* setIsSignatureVerificationPaused
|
|
3096
|
+
* nonpayable
|
|
3097
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3098
|
+
*/
|
|
3099
|
+
setIsSignatureVerificationPaused(_isPaused: boolean, options?: {
|
|
3100
|
+
accessList?: import('viem').AccessList;
|
|
3101
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3102
|
+
chain?: import('viem').Chain | null;
|
|
3103
|
+
dataSuffix?: `0x${string}`;
|
|
3104
|
+
gas?: bigint;
|
|
3105
|
+
gasPrice?: bigint;
|
|
3106
|
+
maxFeePerGas?: bigint;
|
|
3107
|
+
maxPriorityFeePerGas?: bigint;
|
|
3108
|
+
nonce?: number;
|
|
3109
|
+
value?: bigint;
|
|
3110
|
+
}): Promise<`0x${string}`>;
|
|
3111
|
+
/**
|
|
3112
|
+
* setIsTransferFromUpgraded
|
|
3113
|
+
* nonpayable
|
|
3114
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3115
|
+
*/
|
|
3116
|
+
setIsTransferFromUpgraded(_isUpgraded: boolean, options?: {
|
|
3117
|
+
accessList?: import('viem').AccessList;
|
|
3118
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3119
|
+
chain?: import('viem').Chain | null;
|
|
3120
|
+
dataSuffix?: `0x${string}`;
|
|
3121
|
+
gas?: bigint;
|
|
3122
|
+
gasPrice?: bigint;
|
|
3123
|
+
maxFeePerGas?: bigint;
|
|
3124
|
+
maxPriorityFeePerGas?: bigint;
|
|
3125
|
+
nonce?: number;
|
|
3126
|
+
value?: bigint;
|
|
3127
|
+
}): Promise<`0x${string}`>;
|
|
3128
|
+
/**
|
|
3129
|
+
* setIsTransferPaused
|
|
3130
|
+
* nonpayable
|
|
3131
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3132
|
+
*/
|
|
3133
|
+
setIsTransferPaused(_isPaused: boolean, options?: {
|
|
3134
|
+
accessList?: import('viem').AccessList;
|
|
3135
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3136
|
+
chain?: import('viem').Chain | null;
|
|
3137
|
+
dataSuffix?: `0x${string}`;
|
|
3138
|
+
gas?: bigint;
|
|
3139
|
+
gasPrice?: bigint;
|
|
3140
|
+
maxFeePerGas?: bigint;
|
|
3141
|
+
maxPriorityFeePerGas?: bigint;
|
|
3142
|
+
nonce?: number;
|
|
3143
|
+
value?: bigint;
|
|
3144
|
+
}): Promise<`0x${string}`>;
|
|
3145
|
+
/**
|
|
3146
|
+
* setIsTransferUpgraded
|
|
3147
|
+
* nonpayable
|
|
3148
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3149
|
+
*/
|
|
3150
|
+
setIsTransferUpgraded(_isUpgraded: boolean, options?: {
|
|
3151
|
+
accessList?: import('viem').AccessList;
|
|
3152
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3153
|
+
chain?: import('viem').Chain | null;
|
|
3154
|
+
dataSuffix?: `0x${string}`;
|
|
3155
|
+
gas?: bigint;
|
|
3156
|
+
gasPrice?: bigint;
|
|
3157
|
+
maxFeePerGas?: bigint;
|
|
3158
|
+
maxPriorityFeePerGas?: bigint;
|
|
3159
|
+
nonce?: number;
|
|
3160
|
+
value?: bigint;
|
|
3161
|
+
}): Promise<`0x${string}`>;
|
|
3162
|
+
/**
|
|
3163
|
+
* setIsTransferWithAuthorizationUpgraded
|
|
3164
|
+
* nonpayable
|
|
3165
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3166
|
+
*/
|
|
3167
|
+
setIsTransferWithAuthorizationUpgraded(_isUpgraded: boolean, options?: {
|
|
3168
|
+
accessList?: import('viem').AccessList;
|
|
3169
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3170
|
+
chain?: import('viem').Chain | null;
|
|
3171
|
+
dataSuffix?: `0x${string}`;
|
|
3172
|
+
gas?: bigint;
|
|
3173
|
+
gasPrice?: bigint;
|
|
3174
|
+
maxFeePerGas?: bigint;
|
|
3175
|
+
maxPriorityFeePerGas?: bigint;
|
|
3176
|
+
nonce?: number;
|
|
3177
|
+
value?: bigint;
|
|
3178
|
+
}): Promise<`0x${string}`>;
|
|
3179
|
+
/**
|
|
3180
|
+
* setMintRateLimit
|
|
3181
|
+
* nonpayable
|
|
3182
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3183
|
+
*/
|
|
3184
|
+
setMintRateLimit(_rateLimitConfig: AgoraDollarMintRateLimit_MintRateLimitConfig, options?: {
|
|
3185
|
+
accessList?: import('viem').AccessList;
|
|
3186
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3187
|
+
chain?: import('viem').Chain | null;
|
|
3188
|
+
dataSuffix?: `0x${string}`;
|
|
3189
|
+
gas?: bigint;
|
|
3190
|
+
gasPrice?: bigint;
|
|
3191
|
+
maxFeePerGas?: bigint;
|
|
3192
|
+
maxPriorityFeePerGas?: bigint;
|
|
3193
|
+
nonce?: number;
|
|
3194
|
+
value?: bigint;
|
|
3195
|
+
}): Promise<`0x${string}`>;
|
|
3196
|
+
/**
|
|
3197
|
+
* transfer
|
|
3198
|
+
* nonpayable
|
|
3199
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3200
|
+
*/
|
|
3201
|
+
transfer(_to: `0x${string}`, _value: bigint, options?: {
|
|
3202
|
+
accessList?: import('viem').AccessList;
|
|
3203
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3204
|
+
chain?: import('viem').Chain | null;
|
|
3205
|
+
dataSuffix?: `0x${string}`;
|
|
3206
|
+
gas?: bigint;
|
|
3207
|
+
gasPrice?: bigint;
|
|
3208
|
+
maxFeePerGas?: bigint;
|
|
3209
|
+
maxPriorityFeePerGas?: bigint;
|
|
3210
|
+
nonce?: number;
|
|
3211
|
+
value?: bigint;
|
|
3212
|
+
}): Promise<`0x${string}`>;
|
|
3213
|
+
/**
|
|
3214
|
+
* transferFrom
|
|
3215
|
+
* nonpayable
|
|
3216
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3217
|
+
*/
|
|
3218
|
+
transferFrom(_from: `0x${string}`, _to: `0x${string}`, _value: bigint, options?: {
|
|
3219
|
+
accessList?: import('viem').AccessList;
|
|
3220
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3221
|
+
chain?: import('viem').Chain | null;
|
|
3222
|
+
dataSuffix?: `0x${string}`;
|
|
3223
|
+
gas?: bigint;
|
|
3224
|
+
gasPrice?: bigint;
|
|
3225
|
+
maxFeePerGas?: bigint;
|
|
3226
|
+
maxPriorityFeePerGas?: bigint;
|
|
3227
|
+
nonce?: number;
|
|
3228
|
+
value?: bigint;
|
|
3229
|
+
}): Promise<`0x${string}`>;
|
|
3230
|
+
transferWithAuthorization(_from: `0x${string}`, _to: `0x${string}`, _value: bigint, _validAfter: bigint, _validBefore: bigint, _nonce: `0x${string}`, _signature: `0x${string}`, options?: {
|
|
3231
|
+
accessList?: import('viem').AccessList;
|
|
3232
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3233
|
+
chain?: import('viem').Chain | null;
|
|
3234
|
+
dataSuffix?: `0x${string}`;
|
|
3235
|
+
gas?: bigint;
|
|
3236
|
+
gasPrice?: bigint;
|
|
3237
|
+
maxFeePerGas?: bigint;
|
|
3238
|
+
maxPriorityFeePerGas?: bigint;
|
|
3239
|
+
nonce?: number;
|
|
3240
|
+
value?: bigint;
|
|
3241
|
+
}): Promise<`0x${string}`>;
|
|
3242
|
+
transferWithAuthorization(_from: `0x${string}`, _to: `0x${string}`, _value: bigint, _validAfter: bigint, _validBefore: bigint, _nonce: `0x${string}`, _v: bigint, _r: `0x${string}`, _s: `0x${string}`, options?: {
|
|
3243
|
+
accessList?: import('viem').AccessList;
|
|
3244
|
+
authorizationList?: import('viem').AuthorizationList;
|
|
3245
|
+
chain?: import('viem').Chain | null;
|
|
3246
|
+
dataSuffix?: `0x${string}`;
|
|
3247
|
+
gas?: bigint;
|
|
3248
|
+
gasPrice?: bigint;
|
|
3249
|
+
maxFeePerGas?: bigint;
|
|
3250
|
+
maxPriorityFeePerGas?: bigint;
|
|
3251
|
+
nonce?: number;
|
|
3252
|
+
value?: bigint;
|
|
3253
|
+
}): Promise<`0x${string}`>;
|
|
3254
|
+
/**
|
|
3255
|
+
* Simulate contract write operations (dry-run without sending transaction)
|
|
3256
|
+
*
|
|
3257
|
+
* @example
|
|
3258
|
+
* const result = await contract.simulate.transfer('0x...', 1000n);
|
|
3259
|
+
* console.log('Gas estimate:', result.request.gas);
|
|
3260
|
+
* console.log('Would succeed:', result.result);
|
|
3261
|
+
*/
|
|
3262
|
+
get simulate(): {
|
|
3263
|
+
/**
|
|
3264
|
+
* Simulate approve
|
|
3265
|
+
* Returns gas estimate and result without sending transaction
|
|
3266
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3267
|
+
*/
|
|
3268
|
+
approve(_spender: `0x${string}`, _value: bigint, options?: {
|
|
3269
|
+
accessList?: import("viem").AccessList;
|
|
3270
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3271
|
+
chain?: import("viem").Chain | null;
|
|
3272
|
+
dataSuffix?: `0x${string}`;
|
|
3273
|
+
gas?: bigint;
|
|
3274
|
+
gasPrice?: bigint;
|
|
3275
|
+
maxFeePerGas?: bigint;
|
|
3276
|
+
maxPriorityFeePerGas?: bigint;
|
|
3277
|
+
nonce?: number;
|
|
3278
|
+
value?: bigint;
|
|
3279
|
+
}): Promise<boolean>;
|
|
3280
|
+
/**
|
|
3281
|
+
* Simulate batchBurnFrom
|
|
3282
|
+
* Returns gas estimate and result without sending transaction
|
|
3283
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3284
|
+
*/
|
|
3285
|
+
batchBurnFrom(_burns: Erc20Privileged_BatchBurnFromParam[], options?: {
|
|
3286
|
+
accessList?: import("viem").AccessList;
|
|
3287
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3288
|
+
chain?: import("viem").Chain | null;
|
|
3289
|
+
dataSuffix?: `0x${string}`;
|
|
3290
|
+
gas?: bigint;
|
|
3291
|
+
gasPrice?: bigint;
|
|
3292
|
+
maxFeePerGas?: bigint;
|
|
3293
|
+
maxPriorityFeePerGas?: bigint;
|
|
3294
|
+
nonce?: number;
|
|
3295
|
+
value?: bigint;
|
|
3296
|
+
}): Promise<void>;
|
|
3297
|
+
/**
|
|
3298
|
+
* Simulate batchFreeze
|
|
3299
|
+
* Returns gas estimate and result without sending transaction
|
|
3300
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3301
|
+
*/
|
|
3302
|
+
batchFreeze(_addresses: `0x${string}`[], options?: {
|
|
3303
|
+
accessList?: import("viem").AccessList;
|
|
3304
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3305
|
+
chain?: import("viem").Chain | null;
|
|
3306
|
+
dataSuffix?: `0x${string}`;
|
|
3307
|
+
gas?: bigint;
|
|
3308
|
+
gasPrice?: bigint;
|
|
3309
|
+
maxFeePerGas?: bigint;
|
|
3310
|
+
maxPriorityFeePerGas?: bigint;
|
|
3311
|
+
nonce?: number;
|
|
3312
|
+
value?: bigint;
|
|
3313
|
+
}): Promise<void>;
|
|
3314
|
+
/**
|
|
3315
|
+
* Simulate batchMint
|
|
3316
|
+
* Returns gas estimate and result without sending transaction
|
|
3317
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3318
|
+
*/
|
|
3319
|
+
batchMint(_mints: Erc20Privileged_BatchMintParam[], options?: {
|
|
3320
|
+
accessList?: import("viem").AccessList;
|
|
3321
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3322
|
+
chain?: import("viem").Chain | null;
|
|
3323
|
+
dataSuffix?: `0x${string}`;
|
|
3324
|
+
gas?: bigint;
|
|
3325
|
+
gasPrice?: bigint;
|
|
3326
|
+
maxFeePerGas?: bigint;
|
|
3327
|
+
maxPriorityFeePerGas?: bigint;
|
|
3328
|
+
nonce?: number;
|
|
3329
|
+
value?: bigint;
|
|
3330
|
+
}): Promise<void>;
|
|
3331
|
+
/**
|
|
3332
|
+
* Simulate batchUnfreeze
|
|
3333
|
+
* Returns gas estimate and result without sending transaction
|
|
3334
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3335
|
+
*/
|
|
3336
|
+
batchUnfreeze(_addresses: `0x${string}`[], options?: {
|
|
3337
|
+
accessList?: import("viem").AccessList;
|
|
3338
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3339
|
+
chain?: import("viem").Chain | null;
|
|
3340
|
+
dataSuffix?: `0x${string}`;
|
|
3341
|
+
gas?: bigint;
|
|
3342
|
+
gasPrice?: bigint;
|
|
3343
|
+
maxFeePerGas?: bigint;
|
|
3344
|
+
maxPriorityFeePerGas?: bigint;
|
|
3345
|
+
nonce?: number;
|
|
3346
|
+
value?: bigint;
|
|
3347
|
+
}): Promise<void>;
|
|
3348
|
+
/**
|
|
3349
|
+
* Simulate burn
|
|
3350
|
+
* Returns gas estimate and result without sending transaction
|
|
3351
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3352
|
+
*/
|
|
3353
|
+
burn(_from: `0x${string}`, _amount: bigint, options?: {
|
|
3354
|
+
accessList?: import("viem").AccessList;
|
|
3355
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3356
|
+
chain?: import("viem").Chain | null;
|
|
3357
|
+
dataSuffix?: `0x${string}`;
|
|
3358
|
+
gas?: bigint;
|
|
3359
|
+
gasPrice?: bigint;
|
|
3360
|
+
maxFeePerGas?: bigint;
|
|
3361
|
+
maxPriorityFeePerGas?: bigint;
|
|
3362
|
+
nonce?: number;
|
|
3363
|
+
value?: bigint;
|
|
3364
|
+
}): Promise<boolean>;
|
|
3365
|
+
/**
|
|
3366
|
+
* Simulate cancelAuthorization
|
|
3367
|
+
* Returns gas estimate and result without sending transaction
|
|
3368
|
+
* Supports multiple overloads: (address, bytes32, uint8, bytes32, bytes32), (address, bytes32, bytes)
|
|
3369
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3370
|
+
*/
|
|
3371
|
+
cancelAuthorization(...args: any[]): Promise<any>;
|
|
3372
|
+
/**
|
|
3373
|
+
* Simulate grantAccessControlManagerRole
|
|
3374
|
+
* Returns gas estimate and result without sending transaction
|
|
3375
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3376
|
+
*/
|
|
3377
|
+
grantAccessControlManagerRole(_member: `0x${string}`, options?: {
|
|
3378
|
+
accessList?: import("viem").AccessList;
|
|
3379
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3380
|
+
chain?: import("viem").Chain | null;
|
|
3381
|
+
dataSuffix?: `0x${string}`;
|
|
3382
|
+
gas?: bigint;
|
|
3383
|
+
gasPrice?: bigint;
|
|
3384
|
+
maxFeePerGas?: bigint;
|
|
3385
|
+
maxPriorityFeePerGas?: bigint;
|
|
3386
|
+
nonce?: number;
|
|
3387
|
+
value?: bigint;
|
|
3388
|
+
}): Promise<void>;
|
|
3389
|
+
/**
|
|
3390
|
+
* Simulate grantBridgeBurnerRole
|
|
3391
|
+
* Returns gas estimate and result without sending transaction
|
|
3392
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3393
|
+
*/
|
|
3394
|
+
grantBridgeBurnerRole(_member: `0x${string}`, options?: {
|
|
3395
|
+
accessList?: import("viem").AccessList;
|
|
3396
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3397
|
+
chain?: import("viem").Chain | null;
|
|
3398
|
+
dataSuffix?: `0x${string}`;
|
|
3399
|
+
gas?: bigint;
|
|
3400
|
+
gasPrice?: bigint;
|
|
3401
|
+
maxFeePerGas?: bigint;
|
|
3402
|
+
maxPriorityFeePerGas?: bigint;
|
|
3403
|
+
nonce?: number;
|
|
3404
|
+
value?: bigint;
|
|
3405
|
+
}): Promise<void>;
|
|
3406
|
+
/**
|
|
3407
|
+
* Simulate grantBridgeMinterRole
|
|
3408
|
+
* Returns gas estimate and result without sending transaction
|
|
3409
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3410
|
+
*/
|
|
3411
|
+
grantBridgeMinterRole(_member: `0x${string}`, options?: {
|
|
3412
|
+
accessList?: import("viem").AccessList;
|
|
3413
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3414
|
+
chain?: import("viem").Chain | null;
|
|
3415
|
+
dataSuffix?: `0x${string}`;
|
|
3416
|
+
gas?: bigint;
|
|
3417
|
+
gasPrice?: bigint;
|
|
3418
|
+
maxFeePerGas?: bigint;
|
|
3419
|
+
maxPriorityFeePerGas?: bigint;
|
|
3420
|
+
nonce?: number;
|
|
3421
|
+
value?: bigint;
|
|
3422
|
+
}): Promise<void>;
|
|
3423
|
+
/**
|
|
3424
|
+
* Simulate grantBurnerRole
|
|
3425
|
+
* Returns gas estimate and result without sending transaction
|
|
3426
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3427
|
+
*/
|
|
3428
|
+
grantBurnerRole(_member: `0x${string}`, options?: {
|
|
3429
|
+
accessList?: import("viem").AccessList;
|
|
3430
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3431
|
+
chain?: import("viem").Chain | null;
|
|
3432
|
+
dataSuffix?: `0x${string}`;
|
|
3433
|
+
gas?: bigint;
|
|
3434
|
+
gasPrice?: bigint;
|
|
3435
|
+
maxFeePerGas?: bigint;
|
|
3436
|
+
maxPriorityFeePerGas?: bigint;
|
|
3437
|
+
nonce?: number;
|
|
3438
|
+
value?: bigint;
|
|
3439
|
+
}): Promise<void>;
|
|
3440
|
+
/**
|
|
3441
|
+
* Simulate grantFreezerRole
|
|
3442
|
+
* Returns gas estimate and result without sending transaction
|
|
3443
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3444
|
+
*/
|
|
3445
|
+
grantFreezerRole(_member: `0x${string}`, options?: {
|
|
3446
|
+
accessList?: import("viem").AccessList;
|
|
3447
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3448
|
+
chain?: import("viem").Chain | null;
|
|
3449
|
+
dataSuffix?: `0x${string}`;
|
|
3450
|
+
gas?: bigint;
|
|
3451
|
+
gasPrice?: bigint;
|
|
3452
|
+
maxFeePerGas?: bigint;
|
|
3453
|
+
maxPriorityFeePerGas?: bigint;
|
|
3454
|
+
nonce?: number;
|
|
3455
|
+
value?: bigint;
|
|
3456
|
+
}): Promise<void>;
|
|
3457
|
+
/**
|
|
3458
|
+
* Simulate grantMinterRole
|
|
3459
|
+
* Returns gas estimate and result without sending transaction
|
|
3460
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3461
|
+
*/
|
|
3462
|
+
grantMinterRole(_member: `0x${string}`, options?: {
|
|
3463
|
+
accessList?: import("viem").AccessList;
|
|
3464
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3465
|
+
chain?: import("viem").Chain | null;
|
|
3466
|
+
dataSuffix?: `0x${string}`;
|
|
3467
|
+
gas?: bigint;
|
|
3468
|
+
gasPrice?: bigint;
|
|
3469
|
+
maxFeePerGas?: bigint;
|
|
3470
|
+
maxPriorityFeePerGas?: bigint;
|
|
3471
|
+
nonce?: number;
|
|
3472
|
+
value?: bigint;
|
|
3473
|
+
}): Promise<void>;
|
|
3474
|
+
/**
|
|
3475
|
+
* Simulate grantPauserRole
|
|
3476
|
+
* Returns gas estimate and result without sending transaction
|
|
3477
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3478
|
+
*/
|
|
3479
|
+
grantPauserRole(_member: `0x${string}`, options?: {
|
|
3480
|
+
accessList?: import("viem").AccessList;
|
|
3481
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3482
|
+
chain?: import("viem").Chain | null;
|
|
3483
|
+
dataSuffix?: `0x${string}`;
|
|
3484
|
+
gas?: bigint;
|
|
3485
|
+
gasPrice?: bigint;
|
|
3486
|
+
maxFeePerGas?: bigint;
|
|
3487
|
+
maxPriorityFeePerGas?: bigint;
|
|
3488
|
+
nonce?: number;
|
|
3489
|
+
value?: bigint;
|
|
3490
|
+
}): Promise<void>;
|
|
3491
|
+
/**
|
|
3492
|
+
* Simulate grantRateLimitManagerRole
|
|
3493
|
+
* Returns gas estimate and result without sending transaction
|
|
3494
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3495
|
+
*/
|
|
3496
|
+
grantRateLimitManagerRole(_member: `0x${string}`, options?: {
|
|
3497
|
+
accessList?: import("viem").AccessList;
|
|
3498
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3499
|
+
chain?: import("viem").Chain | null;
|
|
3500
|
+
dataSuffix?: `0x${string}`;
|
|
3501
|
+
gas?: bigint;
|
|
3502
|
+
gasPrice?: bigint;
|
|
3503
|
+
maxFeePerGas?: bigint;
|
|
3504
|
+
maxPriorityFeePerGas?: bigint;
|
|
3505
|
+
nonce?: number;
|
|
3506
|
+
value?: bigint;
|
|
3507
|
+
}): Promise<void>;
|
|
3508
|
+
/**
|
|
3509
|
+
* Simulate initialize
|
|
3510
|
+
* Returns gas estimate and result without sending transaction
|
|
3511
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3512
|
+
*/
|
|
3513
|
+
initialize(_params: InitializeParams, options?: {
|
|
3514
|
+
accessList?: import("viem").AccessList;
|
|
3515
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3516
|
+
chain?: import("viem").Chain | null;
|
|
3517
|
+
dataSuffix?: `0x${string}`;
|
|
3518
|
+
gas?: bigint;
|
|
3519
|
+
gasPrice?: bigint;
|
|
3520
|
+
maxFeePerGas?: bigint;
|
|
3521
|
+
maxPriorityFeePerGas?: bigint;
|
|
3522
|
+
nonce?: number;
|
|
3523
|
+
value?: bigint;
|
|
3524
|
+
}): Promise<void>;
|
|
3525
|
+
/**
|
|
3526
|
+
* Simulate mint
|
|
3527
|
+
* Returns gas estimate and result without sending transaction
|
|
3528
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3529
|
+
*/
|
|
3530
|
+
mint(_to: `0x${string}`, _amount: bigint, options?: {
|
|
3531
|
+
accessList?: import("viem").AccessList;
|
|
3532
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3533
|
+
chain?: import("viem").Chain | null;
|
|
3534
|
+
dataSuffix?: `0x${string}`;
|
|
3535
|
+
gas?: bigint;
|
|
3536
|
+
gasPrice?: bigint;
|
|
3537
|
+
maxFeePerGas?: bigint;
|
|
3538
|
+
maxPriorityFeePerGas?: bigint;
|
|
3539
|
+
nonce?: number;
|
|
3540
|
+
value?: bigint;
|
|
3541
|
+
}): Promise<boolean>;
|
|
3542
|
+
/**
|
|
3543
|
+
* Simulate permit
|
|
3544
|
+
* Returns gas estimate and result without sending transaction
|
|
3545
|
+
* Supports multiple overloads: (address, address, uint256, uint256, bytes), (address, address, uint256, uint256, uint8, bytes32, bytes32)
|
|
3546
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3547
|
+
*/
|
|
3548
|
+
permit(...args: any[]): Promise<any>;
|
|
3549
|
+
/**
|
|
3550
|
+
* Simulate receiveWithAuthorization
|
|
3551
|
+
* Returns gas estimate and result without sending transaction
|
|
3552
|
+
* Supports multiple overloads: (address, address, uint256, uint256, uint256, bytes32, bytes), (address, address, uint256, uint256, uint256, bytes32, uint8, bytes32, bytes32)
|
|
3553
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3554
|
+
*/
|
|
3555
|
+
receiveWithAuthorization(...args: any[]): Promise<any>;
|
|
3556
|
+
/**
|
|
3557
|
+
* Simulate revokeAccessControlManagerRole
|
|
3558
|
+
* Returns gas estimate and result without sending transaction
|
|
3559
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3560
|
+
*/
|
|
3561
|
+
revokeAccessControlManagerRole(_member: `0x${string}`, options?: {
|
|
3562
|
+
accessList?: import("viem").AccessList;
|
|
3563
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3564
|
+
chain?: import("viem").Chain | null;
|
|
3565
|
+
dataSuffix?: `0x${string}`;
|
|
3566
|
+
gas?: bigint;
|
|
3567
|
+
gasPrice?: bigint;
|
|
3568
|
+
maxFeePerGas?: bigint;
|
|
3569
|
+
maxPriorityFeePerGas?: bigint;
|
|
3570
|
+
nonce?: number;
|
|
3571
|
+
value?: bigint;
|
|
3572
|
+
}): Promise<void>;
|
|
3573
|
+
/**
|
|
3574
|
+
* Simulate revokeBridgeBurnerRole
|
|
3575
|
+
* Returns gas estimate and result without sending transaction
|
|
3576
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3577
|
+
*/
|
|
3578
|
+
revokeBridgeBurnerRole(_member: `0x${string}`, options?: {
|
|
3579
|
+
accessList?: import("viem").AccessList;
|
|
3580
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3581
|
+
chain?: import("viem").Chain | null;
|
|
3582
|
+
dataSuffix?: `0x${string}`;
|
|
3583
|
+
gas?: bigint;
|
|
3584
|
+
gasPrice?: bigint;
|
|
3585
|
+
maxFeePerGas?: bigint;
|
|
3586
|
+
maxPriorityFeePerGas?: bigint;
|
|
3587
|
+
nonce?: number;
|
|
3588
|
+
value?: bigint;
|
|
3589
|
+
}): Promise<void>;
|
|
3590
|
+
/**
|
|
3591
|
+
* Simulate revokeBridgeMinterRole
|
|
3592
|
+
* Returns gas estimate and result without sending transaction
|
|
3593
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3594
|
+
*/
|
|
3595
|
+
revokeBridgeMinterRole(_member: `0x${string}`, options?: {
|
|
3596
|
+
accessList?: import("viem").AccessList;
|
|
3597
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3598
|
+
chain?: import("viem").Chain | null;
|
|
3599
|
+
dataSuffix?: `0x${string}`;
|
|
3600
|
+
gas?: bigint;
|
|
3601
|
+
gasPrice?: bigint;
|
|
3602
|
+
maxFeePerGas?: bigint;
|
|
3603
|
+
maxPriorityFeePerGas?: bigint;
|
|
3604
|
+
nonce?: number;
|
|
3605
|
+
value?: bigint;
|
|
3606
|
+
}): Promise<void>;
|
|
3607
|
+
/**
|
|
3608
|
+
* Simulate revokeBurnerRole
|
|
3609
|
+
* Returns gas estimate and result without sending transaction
|
|
3610
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3611
|
+
*/
|
|
3612
|
+
revokeBurnerRole(_member: `0x${string}`, options?: {
|
|
3613
|
+
accessList?: import("viem").AccessList;
|
|
3614
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3615
|
+
chain?: import("viem").Chain | null;
|
|
3616
|
+
dataSuffix?: `0x${string}`;
|
|
3617
|
+
gas?: bigint;
|
|
3618
|
+
gasPrice?: bigint;
|
|
3619
|
+
maxFeePerGas?: bigint;
|
|
3620
|
+
maxPriorityFeePerGas?: bigint;
|
|
3621
|
+
nonce?: number;
|
|
3622
|
+
value?: bigint;
|
|
3623
|
+
}): Promise<void>;
|
|
3624
|
+
/**
|
|
3625
|
+
* Simulate revokeFreezerRole
|
|
3626
|
+
* Returns gas estimate and result without sending transaction
|
|
3627
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3628
|
+
*/
|
|
3629
|
+
revokeFreezerRole(_member: `0x${string}`, options?: {
|
|
3630
|
+
accessList?: import("viem").AccessList;
|
|
3631
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3632
|
+
chain?: import("viem").Chain | null;
|
|
3633
|
+
dataSuffix?: `0x${string}`;
|
|
3634
|
+
gas?: bigint;
|
|
3635
|
+
gasPrice?: bigint;
|
|
3636
|
+
maxFeePerGas?: bigint;
|
|
3637
|
+
maxPriorityFeePerGas?: bigint;
|
|
3638
|
+
nonce?: number;
|
|
3639
|
+
value?: bigint;
|
|
3640
|
+
}): Promise<void>;
|
|
3641
|
+
/**
|
|
3642
|
+
* Simulate revokeMinterRole
|
|
3643
|
+
* Returns gas estimate and result without sending transaction
|
|
3644
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3645
|
+
*/
|
|
3646
|
+
revokeMinterRole(_member: `0x${string}`, options?: {
|
|
3647
|
+
accessList?: import("viem").AccessList;
|
|
3648
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3649
|
+
chain?: import("viem").Chain | null;
|
|
3650
|
+
dataSuffix?: `0x${string}`;
|
|
3651
|
+
gas?: bigint;
|
|
3652
|
+
gasPrice?: bigint;
|
|
3653
|
+
maxFeePerGas?: bigint;
|
|
3654
|
+
maxPriorityFeePerGas?: bigint;
|
|
3655
|
+
nonce?: number;
|
|
3656
|
+
value?: bigint;
|
|
3657
|
+
}): Promise<void>;
|
|
3658
|
+
/**
|
|
3659
|
+
* Simulate revokePauserRole
|
|
3660
|
+
* Returns gas estimate and result without sending transaction
|
|
3661
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3662
|
+
*/
|
|
3663
|
+
revokePauserRole(_member: `0x${string}`, options?: {
|
|
3664
|
+
accessList?: import("viem").AccessList;
|
|
3665
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3666
|
+
chain?: import("viem").Chain | null;
|
|
3667
|
+
dataSuffix?: `0x${string}`;
|
|
3668
|
+
gas?: bigint;
|
|
3669
|
+
gasPrice?: bigint;
|
|
3670
|
+
maxFeePerGas?: bigint;
|
|
3671
|
+
maxPriorityFeePerGas?: bigint;
|
|
3672
|
+
nonce?: number;
|
|
3673
|
+
value?: bigint;
|
|
3674
|
+
}): Promise<void>;
|
|
3675
|
+
/**
|
|
3676
|
+
* Simulate revokeRateLimitManagerRole
|
|
3677
|
+
* Returns gas estimate and result without sending transaction
|
|
3678
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3679
|
+
*/
|
|
3680
|
+
revokeRateLimitManagerRole(_member: `0x${string}`, options?: {
|
|
3681
|
+
accessList?: import("viem").AccessList;
|
|
3682
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3683
|
+
chain?: import("viem").Chain | null;
|
|
3684
|
+
dataSuffix?: `0x${string}`;
|
|
3685
|
+
gas?: bigint;
|
|
3686
|
+
gasPrice?: bigint;
|
|
3687
|
+
maxFeePerGas?: bigint;
|
|
3688
|
+
maxPriorityFeePerGas?: bigint;
|
|
3689
|
+
nonce?: number;
|
|
3690
|
+
value?: bigint;
|
|
3691
|
+
}): Promise<void>;
|
|
3692
|
+
/**
|
|
3693
|
+
* Simulate setIsBridgingPaused
|
|
3694
|
+
* Returns gas estimate and result without sending transaction
|
|
3695
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3696
|
+
*/
|
|
3697
|
+
setIsBridgingPaused(_isPaused: boolean, options?: {
|
|
3698
|
+
accessList?: import("viem").AccessList;
|
|
3699
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3700
|
+
chain?: import("viem").Chain | null;
|
|
3701
|
+
dataSuffix?: `0x${string}`;
|
|
3702
|
+
gas?: bigint;
|
|
3703
|
+
gasPrice?: bigint;
|
|
3704
|
+
maxFeePerGas?: bigint;
|
|
3705
|
+
maxPriorityFeePerGas?: bigint;
|
|
3706
|
+
nonce?: number;
|
|
3707
|
+
value?: bigint;
|
|
3708
|
+
}): Promise<void>;
|
|
3709
|
+
/**
|
|
3710
|
+
* Simulate setIsBurnFromPaused
|
|
3711
|
+
* Returns gas estimate and result without sending transaction
|
|
3712
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3713
|
+
*/
|
|
3714
|
+
setIsBurnFromPaused(_isPaused: boolean, options?: {
|
|
3715
|
+
accessList?: import("viem").AccessList;
|
|
3716
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3717
|
+
chain?: import("viem").Chain | null;
|
|
3718
|
+
dataSuffix?: `0x${string}`;
|
|
3719
|
+
gas?: bigint;
|
|
3720
|
+
gasPrice?: bigint;
|
|
3721
|
+
maxFeePerGas?: bigint;
|
|
3722
|
+
maxPriorityFeePerGas?: bigint;
|
|
3723
|
+
nonce?: number;
|
|
3724
|
+
value?: bigint;
|
|
3725
|
+
}): Promise<void>;
|
|
3726
|
+
/**
|
|
3727
|
+
* Simulate setIsFreezingPaused
|
|
3728
|
+
* Returns gas estimate and result without sending transaction
|
|
3729
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3730
|
+
*/
|
|
3731
|
+
setIsFreezingPaused(_isPaused: boolean, options?: {
|
|
3732
|
+
accessList?: import("viem").AccessList;
|
|
3733
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3734
|
+
chain?: import("viem").Chain | null;
|
|
3735
|
+
dataSuffix?: `0x${string}`;
|
|
3736
|
+
gas?: bigint;
|
|
3737
|
+
gasPrice?: bigint;
|
|
3738
|
+
maxFeePerGas?: bigint;
|
|
3739
|
+
maxPriorityFeePerGas?: bigint;
|
|
3740
|
+
nonce?: number;
|
|
3741
|
+
value?: bigint;
|
|
3742
|
+
}): Promise<void>;
|
|
3743
|
+
/**
|
|
3744
|
+
* Simulate setIsMintPaused
|
|
3745
|
+
* Returns gas estimate and result without sending transaction
|
|
3746
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3747
|
+
*/
|
|
3748
|
+
setIsMintPaused(_isPaused: boolean, options?: {
|
|
3749
|
+
accessList?: import("viem").AccessList;
|
|
3750
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3751
|
+
chain?: import("viem").Chain | null;
|
|
3752
|
+
dataSuffix?: `0x${string}`;
|
|
3753
|
+
gas?: bigint;
|
|
3754
|
+
gasPrice?: bigint;
|
|
3755
|
+
maxFeePerGas?: bigint;
|
|
3756
|
+
maxPriorityFeePerGas?: bigint;
|
|
3757
|
+
nonce?: number;
|
|
3758
|
+
value?: bigint;
|
|
3759
|
+
}): Promise<void>;
|
|
3760
|
+
/**
|
|
3761
|
+
* Simulate setIsMsgSenderCheckEnabled
|
|
3762
|
+
* Returns gas estimate and result without sending transaction
|
|
3763
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3764
|
+
*/
|
|
3765
|
+
setIsMsgSenderCheckEnabled(_isEnabled: boolean, options?: {
|
|
3766
|
+
accessList?: import("viem").AccessList;
|
|
3767
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3768
|
+
chain?: import("viem").Chain | null;
|
|
3769
|
+
dataSuffix?: `0x${string}`;
|
|
3770
|
+
gas?: bigint;
|
|
3771
|
+
gasPrice?: bigint;
|
|
3772
|
+
maxFeePerGas?: bigint;
|
|
3773
|
+
maxPriorityFeePerGas?: bigint;
|
|
3774
|
+
nonce?: number;
|
|
3775
|
+
value?: bigint;
|
|
3776
|
+
}): Promise<void>;
|
|
3777
|
+
/**
|
|
3778
|
+
* Simulate setIsReceiveWithAuthorizationUpgraded
|
|
3779
|
+
* Returns gas estimate and result without sending transaction
|
|
3780
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3781
|
+
*/
|
|
3782
|
+
setIsReceiveWithAuthorizationUpgraded(_isUpgraded: boolean, options?: {
|
|
3783
|
+
accessList?: import("viem").AccessList;
|
|
3784
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3785
|
+
chain?: import("viem").Chain | null;
|
|
3786
|
+
dataSuffix?: `0x${string}`;
|
|
3787
|
+
gas?: bigint;
|
|
3788
|
+
gasPrice?: bigint;
|
|
3789
|
+
maxFeePerGas?: bigint;
|
|
3790
|
+
maxPriorityFeePerGas?: bigint;
|
|
3791
|
+
nonce?: number;
|
|
3792
|
+
value?: bigint;
|
|
3793
|
+
}): Promise<void>;
|
|
3794
|
+
/**
|
|
3795
|
+
* Simulate setIsSignatureVerificationPaused
|
|
3796
|
+
* Returns gas estimate and result without sending transaction
|
|
3797
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3798
|
+
*/
|
|
3799
|
+
setIsSignatureVerificationPaused(_isPaused: boolean, options?: {
|
|
3800
|
+
accessList?: import("viem").AccessList;
|
|
3801
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3802
|
+
chain?: import("viem").Chain | null;
|
|
3803
|
+
dataSuffix?: `0x${string}`;
|
|
3804
|
+
gas?: bigint;
|
|
3805
|
+
gasPrice?: bigint;
|
|
3806
|
+
maxFeePerGas?: bigint;
|
|
3807
|
+
maxPriorityFeePerGas?: bigint;
|
|
3808
|
+
nonce?: number;
|
|
3809
|
+
value?: bigint;
|
|
3810
|
+
}): Promise<void>;
|
|
3811
|
+
/**
|
|
3812
|
+
* Simulate setIsTransferFromUpgraded
|
|
3813
|
+
* Returns gas estimate and result without sending transaction
|
|
3814
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3815
|
+
*/
|
|
3816
|
+
setIsTransferFromUpgraded(_isUpgraded: boolean, options?: {
|
|
3817
|
+
accessList?: import("viem").AccessList;
|
|
3818
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3819
|
+
chain?: import("viem").Chain | null;
|
|
3820
|
+
dataSuffix?: `0x${string}`;
|
|
3821
|
+
gas?: bigint;
|
|
3822
|
+
gasPrice?: bigint;
|
|
3823
|
+
maxFeePerGas?: bigint;
|
|
3824
|
+
maxPriorityFeePerGas?: bigint;
|
|
3825
|
+
nonce?: number;
|
|
3826
|
+
value?: bigint;
|
|
3827
|
+
}): Promise<void>;
|
|
3828
|
+
/**
|
|
3829
|
+
* Simulate setIsTransferPaused
|
|
3830
|
+
* Returns gas estimate and result without sending transaction
|
|
3831
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3832
|
+
*/
|
|
3833
|
+
setIsTransferPaused(_isPaused: boolean, options?: {
|
|
3834
|
+
accessList?: import("viem").AccessList;
|
|
3835
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3836
|
+
chain?: import("viem").Chain | null;
|
|
3837
|
+
dataSuffix?: `0x${string}`;
|
|
3838
|
+
gas?: bigint;
|
|
3839
|
+
gasPrice?: bigint;
|
|
3840
|
+
maxFeePerGas?: bigint;
|
|
3841
|
+
maxPriorityFeePerGas?: bigint;
|
|
3842
|
+
nonce?: number;
|
|
3843
|
+
value?: bigint;
|
|
3844
|
+
}): Promise<void>;
|
|
3845
|
+
/**
|
|
3846
|
+
* Simulate setIsTransferUpgraded
|
|
3847
|
+
* Returns gas estimate and result without sending transaction
|
|
3848
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3849
|
+
*/
|
|
3850
|
+
setIsTransferUpgraded(_isUpgraded: boolean, options?: {
|
|
3851
|
+
accessList?: import("viem").AccessList;
|
|
3852
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3853
|
+
chain?: import("viem").Chain | null;
|
|
3854
|
+
dataSuffix?: `0x${string}`;
|
|
3855
|
+
gas?: bigint;
|
|
3856
|
+
gasPrice?: bigint;
|
|
3857
|
+
maxFeePerGas?: bigint;
|
|
3858
|
+
maxPriorityFeePerGas?: bigint;
|
|
3859
|
+
nonce?: number;
|
|
3860
|
+
value?: bigint;
|
|
3861
|
+
}): Promise<void>;
|
|
3862
|
+
/**
|
|
3863
|
+
* Simulate setIsTransferWithAuthorizationUpgraded
|
|
3864
|
+
* Returns gas estimate and result without sending transaction
|
|
3865
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3866
|
+
*/
|
|
3867
|
+
setIsTransferWithAuthorizationUpgraded(_isUpgraded: boolean, options?: {
|
|
3868
|
+
accessList?: import("viem").AccessList;
|
|
3869
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3870
|
+
chain?: import("viem").Chain | null;
|
|
3871
|
+
dataSuffix?: `0x${string}`;
|
|
3872
|
+
gas?: bigint;
|
|
3873
|
+
gasPrice?: bigint;
|
|
3874
|
+
maxFeePerGas?: bigint;
|
|
3875
|
+
maxPriorityFeePerGas?: bigint;
|
|
3876
|
+
nonce?: number;
|
|
3877
|
+
value?: bigint;
|
|
3878
|
+
}): Promise<void>;
|
|
3879
|
+
/**
|
|
3880
|
+
* Simulate setMintRateLimit
|
|
3881
|
+
* Returns gas estimate and result without sending transaction
|
|
3882
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3883
|
+
*/
|
|
3884
|
+
setMintRateLimit(_rateLimitConfig: AgoraDollarMintRateLimit_MintRateLimitConfig, options?: {
|
|
3885
|
+
accessList?: import("viem").AccessList;
|
|
3886
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3887
|
+
chain?: import("viem").Chain | null;
|
|
3888
|
+
dataSuffix?: `0x${string}`;
|
|
3889
|
+
gas?: bigint;
|
|
3890
|
+
gasPrice?: bigint;
|
|
3891
|
+
maxFeePerGas?: bigint;
|
|
3892
|
+
maxPriorityFeePerGas?: bigint;
|
|
3893
|
+
nonce?: number;
|
|
3894
|
+
value?: bigint;
|
|
3895
|
+
}): Promise<void>;
|
|
3896
|
+
/**
|
|
3897
|
+
* Simulate transfer
|
|
3898
|
+
* Returns gas estimate and result without sending transaction
|
|
3899
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3900
|
+
*/
|
|
3901
|
+
transfer(_to: `0x${string}`, _value: bigint, options?: {
|
|
3902
|
+
accessList?: import("viem").AccessList;
|
|
3903
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3904
|
+
chain?: import("viem").Chain | null;
|
|
3905
|
+
dataSuffix?: `0x${string}`;
|
|
3906
|
+
gas?: bigint;
|
|
3907
|
+
gasPrice?: bigint;
|
|
3908
|
+
maxFeePerGas?: bigint;
|
|
3909
|
+
maxPriorityFeePerGas?: bigint;
|
|
3910
|
+
nonce?: number;
|
|
3911
|
+
value?: bigint;
|
|
3912
|
+
}): Promise<boolean>;
|
|
3913
|
+
/**
|
|
3914
|
+
* Simulate transferFrom
|
|
3915
|
+
* Returns gas estimate and result without sending transaction
|
|
3916
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3917
|
+
*/
|
|
3918
|
+
transferFrom(_from: `0x${string}`, _to: `0x${string}`, _value: bigint, options?: {
|
|
3919
|
+
accessList?: import("viem").AccessList;
|
|
3920
|
+
authorizationList?: import("viem").AuthorizationList;
|
|
3921
|
+
chain?: import("viem").Chain | null;
|
|
3922
|
+
dataSuffix?: `0x${string}`;
|
|
3923
|
+
gas?: bigint;
|
|
3924
|
+
gasPrice?: bigint;
|
|
3925
|
+
maxFeePerGas?: bigint;
|
|
3926
|
+
maxPriorityFeePerGas?: bigint;
|
|
3927
|
+
nonce?: number;
|
|
3928
|
+
value?: bigint;
|
|
3929
|
+
}): Promise<boolean>;
|
|
3930
|
+
/**
|
|
3931
|
+
* Simulate transferWithAuthorization
|
|
3932
|
+
* Returns gas estimate and result without sending transaction
|
|
3933
|
+
* Supports multiple overloads: (address, address, uint256, uint256, uint256, bytes32, bytes), (address, address, uint256, uint256, uint256, bytes32, uint8, bytes32, bytes32)
|
|
3934
|
+
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
3935
|
+
*/
|
|
3936
|
+
transferWithAuthorization(...args: any[]): Promise<any>;
|
|
3937
|
+
};
|
|
3938
|
+
/**
|
|
3939
|
+
* Watch contract events
|
|
3940
|
+
*
|
|
3941
|
+
* @example
|
|
3942
|
+
* // Watch all Transfer events
|
|
3943
|
+
* const unwatch = contract.watch.Transfer((event) => {
|
|
3944
|
+
* console.log('Transfer:', event);
|
|
3945
|
+
* });
|
|
3946
|
+
*
|
|
3947
|
+
* // Stop watching
|
|
3948
|
+
* unwatch();
|
|
3949
|
+
*/
|
|
3950
|
+
get watch(): {
|
|
3951
|
+
/**
|
|
3952
|
+
* Watch AccountFrozen events
|
|
3953
|
+
* @param callback Function to call when event is emitted
|
|
3954
|
+
* @param filter Optional filter for indexed parameters
|
|
3955
|
+
* @returns Unwatch function to stop listening
|
|
3956
|
+
*/
|
|
3957
|
+
AccountFrozen: (callback: (event: {
|
|
3958
|
+
account: `0x${string}`;
|
|
3959
|
+
}) => void, filter?: {
|
|
3960
|
+
account?: `0x${string}` | `0x${string}`[] | null;
|
|
3961
|
+
}) => () => void;
|
|
3962
|
+
/**
|
|
3963
|
+
* Watch AccountUnfrozen events
|
|
3964
|
+
* @param callback Function to call when event is emitted
|
|
3965
|
+
* @param filter Optional filter for indexed parameters
|
|
3966
|
+
* @returns Unwatch function to stop listening
|
|
3967
|
+
*/
|
|
3968
|
+
AccountUnfrozen: (callback: (event: {
|
|
3969
|
+
account: `0x${string}`;
|
|
3970
|
+
}) => void, filter?: {
|
|
3971
|
+
account?: `0x${string}` | `0x${string}`[] | null;
|
|
3972
|
+
}) => () => void;
|
|
3973
|
+
/**
|
|
3974
|
+
* Watch Approval events
|
|
3975
|
+
* @param callback Function to call when event is emitted
|
|
3976
|
+
* @param filter Optional filter for indexed parameters
|
|
3977
|
+
* @returns Unwatch function to stop listening
|
|
3978
|
+
*/
|
|
3979
|
+
Approval: (callback: (event: {
|
|
3980
|
+
owner: `0x${string}`;
|
|
3981
|
+
spender: `0x${string}`;
|
|
3982
|
+
value: bigint;
|
|
3983
|
+
}) => void, filter?: {
|
|
3984
|
+
owner?: `0x${string}` | `0x${string}`[] | null;
|
|
3985
|
+
spender?: `0x${string}` | `0x${string}`[] | null;
|
|
3986
|
+
}) => () => void;
|
|
3987
|
+
/**
|
|
3988
|
+
* Watch AuthorizationCanceled events
|
|
3989
|
+
* @param callback Function to call when event is emitted
|
|
3990
|
+
* @param filter Optional filter for indexed parameters
|
|
3991
|
+
* @returns Unwatch function to stop listening
|
|
3992
|
+
*/
|
|
3993
|
+
AuthorizationCanceled: (callback: (event: {
|
|
3994
|
+
authorizer: `0x${string}`;
|
|
3995
|
+
nonce: `0x${string}`;
|
|
3996
|
+
}) => void, filter?: {
|
|
3997
|
+
authorizer?: `0x${string}` | `0x${string}`[] | null;
|
|
3998
|
+
nonce?: `0x${string}` | `0x${string}`[] | null;
|
|
3999
|
+
}) => () => void;
|
|
4000
|
+
/**
|
|
4001
|
+
* Watch AuthorizationUsed events
|
|
4002
|
+
* @param callback Function to call when event is emitted
|
|
4003
|
+
* @param filter Optional filter for indexed parameters
|
|
4004
|
+
* @returns Unwatch function to stop listening
|
|
4005
|
+
*/
|
|
4006
|
+
AuthorizationUsed: (callback: (event: {
|
|
4007
|
+
authorizer: `0x${string}`;
|
|
4008
|
+
nonce: `0x${string}`;
|
|
4009
|
+
}) => void, filter?: {
|
|
4010
|
+
authorizer?: `0x${string}` | `0x${string}`[] | null;
|
|
4011
|
+
nonce?: `0x${string}` | `0x${string}`[] | null;
|
|
4012
|
+
}) => () => void;
|
|
4013
|
+
/**
|
|
4014
|
+
* Watch Burned events
|
|
4015
|
+
* @param callback Function to call when event is emitted
|
|
4016
|
+
* @param filter Optional filter for indexed parameters
|
|
4017
|
+
* @returns Unwatch function to stop listening
|
|
4018
|
+
*/
|
|
4019
|
+
Burned: (callback: (event: {
|
|
4020
|
+
sender: `0x${string}`;
|
|
4021
|
+
burnFrom: `0x${string}`;
|
|
4022
|
+
value: bigint;
|
|
4023
|
+
}) => void, filter?: {
|
|
4024
|
+
sender?: `0x${string}` | `0x${string}`[] | null;
|
|
4025
|
+
burnFrom?: `0x${string}` | `0x${string}`[] | null;
|
|
4026
|
+
}) => () => void;
|
|
4027
|
+
/**
|
|
4028
|
+
* Watch Initialized events
|
|
4029
|
+
* @param callback Function to call when event is emitted
|
|
4030
|
+
* @param filter Optional filter for indexed parameters
|
|
4031
|
+
* @returns Unwatch function to stop listening
|
|
4032
|
+
*/
|
|
4033
|
+
Initialized: (callback: (event: {
|
|
4034
|
+
version: bigint;
|
|
4035
|
+
}) => void) => () => void;
|
|
4036
|
+
/**
|
|
4037
|
+
* Watch MintRateLimitChanged events
|
|
4038
|
+
* @param callback Function to call when event is emitted
|
|
4039
|
+
* @param filter Optional filter for indexed parameters
|
|
4040
|
+
* @returns Unwatch function to stop listening
|
|
4041
|
+
*/
|
|
4042
|
+
MintRateLimitChanged: (callback: (event: {
|
|
4043
|
+
rateLimitConfig: AgoraDollarMintRateLimit_MintRateLimitConfig;
|
|
4044
|
+
}) => void) => () => void;
|
|
4045
|
+
/**
|
|
4046
|
+
* Watch Minted events
|
|
4047
|
+
* @param callback Function to call when event is emitted
|
|
4048
|
+
* @param filter Optional filter for indexed parameters
|
|
4049
|
+
* @returns Unwatch function to stop listening
|
|
4050
|
+
*/
|
|
4051
|
+
Minted: (callback: (event: {
|
|
4052
|
+
sender: `0x${string}`;
|
|
4053
|
+
receiver: `0x${string}`;
|
|
4054
|
+
value: bigint;
|
|
4055
|
+
}) => void, filter?: {
|
|
4056
|
+
sender?: `0x${string}` | `0x${string}`[] | null;
|
|
4057
|
+
receiver?: `0x${string}` | `0x${string}`[] | null;
|
|
4058
|
+
}) => () => void;
|
|
4059
|
+
/**
|
|
4060
|
+
* Watch RoleAssigned events
|
|
4061
|
+
* @param callback Function to call when event is emitted
|
|
4062
|
+
* @param filter Optional filter for indexed parameters
|
|
4063
|
+
* @returns Unwatch function to stop listening
|
|
4064
|
+
*/
|
|
4065
|
+
RoleAssigned: (callback: (event: {
|
|
4066
|
+
role: string;
|
|
4067
|
+
member: `0x${string}`;
|
|
4068
|
+
}) => void, filter?: {
|
|
4069
|
+
role?: string | string[] | null;
|
|
4070
|
+
member?: `0x${string}` | `0x${string}`[] | null;
|
|
4071
|
+
}) => () => void;
|
|
4072
|
+
/**
|
|
4073
|
+
* Watch RoleRevoked events
|
|
4074
|
+
* @param callback Function to call when event is emitted
|
|
4075
|
+
* @param filter Optional filter for indexed parameters
|
|
4076
|
+
* @returns Unwatch function to stop listening
|
|
4077
|
+
*/
|
|
4078
|
+
RoleRevoked: (callback: (event: {
|
|
4079
|
+
role: string;
|
|
4080
|
+
member: `0x${string}`;
|
|
4081
|
+
}) => void, filter?: {
|
|
4082
|
+
role?: string | string[] | null;
|
|
4083
|
+
member?: `0x${string}` | `0x${string}`[] | null;
|
|
4084
|
+
}) => () => void;
|
|
4085
|
+
/**
|
|
4086
|
+
* Watch SetIsBridgingPaused events
|
|
4087
|
+
* @param callback Function to call when event is emitted
|
|
4088
|
+
* @param filter Optional filter for indexed parameters
|
|
4089
|
+
* @returns Unwatch function to stop listening
|
|
4090
|
+
*/
|
|
4091
|
+
SetIsBridgingPaused: (callback: (event: {
|
|
4092
|
+
isPaused: boolean;
|
|
4093
|
+
}) => void) => () => void;
|
|
4094
|
+
/**
|
|
4095
|
+
* Watch SetIsBurnFromPaused events
|
|
4096
|
+
* @param callback Function to call when event is emitted
|
|
4097
|
+
* @param filter Optional filter for indexed parameters
|
|
4098
|
+
* @returns Unwatch function to stop listening
|
|
4099
|
+
*/
|
|
4100
|
+
SetIsBurnFromPaused: (callback: (event: {
|
|
4101
|
+
isPaused: boolean;
|
|
4102
|
+
}) => void) => () => void;
|
|
4103
|
+
/**
|
|
4104
|
+
* Watch SetIsFreezingPaused events
|
|
4105
|
+
* @param callback Function to call when event is emitted
|
|
4106
|
+
* @param filter Optional filter for indexed parameters
|
|
4107
|
+
* @returns Unwatch function to stop listening
|
|
4108
|
+
*/
|
|
4109
|
+
SetIsFreezingPaused: (callback: (event: {
|
|
4110
|
+
isPaused: boolean;
|
|
4111
|
+
}) => void) => () => void;
|
|
4112
|
+
/**
|
|
4113
|
+
* Watch SetIsMintPaused events
|
|
4114
|
+
* @param callback Function to call when event is emitted
|
|
4115
|
+
* @param filter Optional filter for indexed parameters
|
|
4116
|
+
* @returns Unwatch function to stop listening
|
|
4117
|
+
*/
|
|
4118
|
+
SetIsMintPaused: (callback: (event: {
|
|
4119
|
+
isPaused: boolean;
|
|
4120
|
+
}) => void) => () => void;
|
|
4121
|
+
/**
|
|
4122
|
+
* Watch SetIsMsgSenderCheckEnabled events
|
|
4123
|
+
* @param callback Function to call when event is emitted
|
|
4124
|
+
* @param filter Optional filter for indexed parameters
|
|
4125
|
+
* @returns Unwatch function to stop listening
|
|
4126
|
+
*/
|
|
4127
|
+
SetIsMsgSenderCheckEnabled: (callback: (event: {
|
|
4128
|
+
isEnabled: boolean;
|
|
4129
|
+
}) => void) => () => void;
|
|
4130
|
+
/**
|
|
4131
|
+
* Watch SetIsReceiveWithAuthorizationUpgraded events
|
|
4132
|
+
* @param callback Function to call when event is emitted
|
|
4133
|
+
* @param filter Optional filter for indexed parameters
|
|
4134
|
+
* @returns Unwatch function to stop listening
|
|
4135
|
+
*/
|
|
4136
|
+
SetIsReceiveWithAuthorizationUpgraded: (callback: (event: {
|
|
4137
|
+
isUpgraded: boolean;
|
|
4138
|
+
}) => void) => () => void;
|
|
4139
|
+
/**
|
|
4140
|
+
* Watch SetIsSignatureVerificationPaused events
|
|
4141
|
+
* @param callback Function to call when event is emitted
|
|
4142
|
+
* @param filter Optional filter for indexed parameters
|
|
4143
|
+
* @returns Unwatch function to stop listening
|
|
4144
|
+
*/
|
|
4145
|
+
SetIsSignatureVerificationPaused: (callback: (event: {
|
|
4146
|
+
isPaused: boolean;
|
|
4147
|
+
}) => void) => () => void;
|
|
4148
|
+
/**
|
|
4149
|
+
* Watch SetIsTransferFromUpgraded events
|
|
4150
|
+
* @param callback Function to call when event is emitted
|
|
4151
|
+
* @param filter Optional filter for indexed parameters
|
|
4152
|
+
* @returns Unwatch function to stop listening
|
|
4153
|
+
*/
|
|
4154
|
+
SetIsTransferFromUpgraded: (callback: (event: {
|
|
4155
|
+
isUpgraded: boolean;
|
|
4156
|
+
}) => void) => () => void;
|
|
4157
|
+
/**
|
|
4158
|
+
* Watch SetIsTransferPaused events
|
|
4159
|
+
* @param callback Function to call when event is emitted
|
|
4160
|
+
* @param filter Optional filter for indexed parameters
|
|
4161
|
+
* @returns Unwatch function to stop listening
|
|
4162
|
+
*/
|
|
4163
|
+
SetIsTransferPaused: (callback: (event: {
|
|
4164
|
+
isPaused: boolean;
|
|
4165
|
+
}) => void) => () => void;
|
|
4166
|
+
/**
|
|
4167
|
+
* Watch SetIsTransferUpgraded events
|
|
4168
|
+
* @param callback Function to call when event is emitted
|
|
4169
|
+
* @param filter Optional filter for indexed parameters
|
|
4170
|
+
* @returns Unwatch function to stop listening
|
|
4171
|
+
*/
|
|
4172
|
+
SetIsTransferUpgraded: (callback: (event: {
|
|
4173
|
+
isUpgraded: boolean;
|
|
4174
|
+
}) => void) => () => void;
|
|
4175
|
+
/**
|
|
4176
|
+
* Watch SetIsTransferWithAuthorizationUpgraded events
|
|
4177
|
+
* @param callback Function to call when event is emitted
|
|
4178
|
+
* @param filter Optional filter for indexed parameters
|
|
4179
|
+
* @returns Unwatch function to stop listening
|
|
4180
|
+
*/
|
|
4181
|
+
SetIsTransferWithAuthorizationUpgraded: (callback: (event: {
|
|
4182
|
+
isUpgraded: boolean;
|
|
4183
|
+
}) => void) => () => void;
|
|
4184
|
+
/**
|
|
4185
|
+
* Watch Transfer events
|
|
4186
|
+
* @param callback Function to call when event is emitted
|
|
4187
|
+
* @param filter Optional filter for indexed parameters
|
|
4188
|
+
* @returns Unwatch function to stop listening
|
|
4189
|
+
*/
|
|
4190
|
+
Transfer: (callback: (event: {
|
|
4191
|
+
from: `0x${string}`;
|
|
4192
|
+
to: `0x${string}`;
|
|
4193
|
+
value: bigint;
|
|
4194
|
+
}) => void, filter?: {
|
|
4195
|
+
from?: `0x${string}` | `0x${string}`[] | null;
|
|
4196
|
+
to?: `0x${string}` | `0x${string}`[] | null;
|
|
4197
|
+
}) => () => void;
|
|
4198
|
+
};
|
|
4199
|
+
}
|