@gitmyabi/tpro 1.0.0

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.
@@ -0,0 +1,1393 @@
1
+ import type { Address, PublicClient, WalletClient } from 'viem';
2
+ /**
3
+ * Token_json ABI
4
+ *
5
+ * This ABI is typed using viem's type system for full type safety.
6
+ */
7
+ export declare const Token_jsonAbi: readonly [{
8
+ readonly inputs: readonly [{
9
+ readonly internalType: "uint256";
10
+ readonly name: "amount";
11
+ readonly type: "uint256";
12
+ }, {
13
+ readonly internalType: "string";
14
+ readonly name: "name";
15
+ readonly type: "string";
16
+ }, {
17
+ readonly internalType: "string";
18
+ readonly name: "symbol";
19
+ readonly type: "string";
20
+ }, {
21
+ readonly internalType: "uint8";
22
+ readonly name: "dec";
23
+ readonly type: "uint8";
24
+ }];
25
+ readonly stateMutability: "nonpayable";
26
+ readonly type: "constructor";
27
+ }, {
28
+ readonly anonymous: false;
29
+ readonly inputs: readonly [{
30
+ readonly indexed: true;
31
+ readonly internalType: "address";
32
+ readonly name: "owner";
33
+ readonly type: "address";
34
+ }, {
35
+ readonly indexed: true;
36
+ readonly internalType: "address";
37
+ readonly name: "spender";
38
+ readonly type: "address";
39
+ }, {
40
+ readonly indexed: false;
41
+ readonly internalType: "uint256";
42
+ readonly name: "value";
43
+ readonly type: "uint256";
44
+ }];
45
+ readonly name: "Approval";
46
+ readonly type: "event";
47
+ }, {
48
+ readonly anonymous: false;
49
+ readonly inputs: readonly [{
50
+ readonly indexed: true;
51
+ readonly internalType: "address";
52
+ readonly name: "addr";
53
+ readonly type: "address";
54
+ }];
55
+ readonly name: "DelegateAddressChanged";
56
+ readonly type: "event";
57
+ }, {
58
+ readonly anonymous: false;
59
+ readonly inputs: readonly [{
60
+ readonly indexed: true;
61
+ readonly internalType: "address";
62
+ readonly name: "account";
63
+ readonly type: "address";
64
+ }, {
65
+ readonly indexed: false;
66
+ readonly internalType: "bool";
67
+ readonly name: "isUnthrottled";
68
+ readonly type: "bool";
69
+ }];
70
+ readonly name: "MarkedUnthrottled";
71
+ readonly type: "event";
72
+ }, {
73
+ readonly anonymous: false;
74
+ readonly inputs: readonly [{
75
+ readonly indexed: true;
76
+ readonly internalType: "address";
77
+ readonly name: "account";
78
+ readonly type: "address";
79
+ }, {
80
+ readonly indexed: false;
81
+ readonly internalType: "bool";
82
+ readonly name: "isWhitelisted";
83
+ readonly type: "bool";
84
+ }];
85
+ readonly name: "MarkedWhitelisted";
86
+ readonly type: "event";
87
+ }, {
88
+ readonly anonymous: false;
89
+ readonly inputs: readonly [{
90
+ readonly indexed: true;
91
+ readonly internalType: "address";
92
+ readonly name: "previousOwner";
93
+ readonly type: "address";
94
+ }, {
95
+ readonly indexed: true;
96
+ readonly internalType: "address";
97
+ readonly name: "newOwner";
98
+ readonly type: "address";
99
+ }];
100
+ readonly name: "OwnershipTransferred";
101
+ readonly type: "event";
102
+ }, {
103
+ readonly anonymous: false;
104
+ readonly inputs: readonly [{
105
+ readonly indexed: false;
106
+ readonly internalType: "bool";
107
+ readonly name: "active";
108
+ readonly type: "bool";
109
+ }];
110
+ readonly name: "RestrictionActiveChanged";
111
+ readonly type: "event";
112
+ }, {
113
+ readonly anonymous: false;
114
+ readonly inputs: readonly [{
115
+ readonly indexed: false;
116
+ readonly internalType: "uint256";
117
+ readonly name: "timestamp";
118
+ readonly type: "uint256";
119
+ }];
120
+ readonly name: "StartTimestampChanged";
121
+ readonly type: "event";
122
+ }, {
123
+ readonly anonymous: false;
124
+ readonly inputs: readonly [{
125
+ readonly indexed: true;
126
+ readonly internalType: "address";
127
+ readonly name: "from";
128
+ readonly type: "address";
129
+ }, {
130
+ readonly indexed: true;
131
+ readonly internalType: "address";
132
+ readonly name: "to";
133
+ readonly type: "address";
134
+ }, {
135
+ readonly indexed: false;
136
+ readonly internalType: "uint256";
137
+ readonly name: "value";
138
+ readonly type: "uint256";
139
+ }];
140
+ readonly name: "Transfer";
141
+ readonly type: "event";
142
+ }, {
143
+ readonly anonymous: false;
144
+ readonly inputs: readonly [{
145
+ readonly indexed: false;
146
+ readonly internalType: "uint256";
147
+ readonly name: "maxValue";
148
+ readonly type: "uint256";
149
+ }];
150
+ readonly name: "TransferMaxValueChanged";
151
+ readonly type: "event";
152
+ }, {
153
+ readonly anonymous: false;
154
+ readonly inputs: readonly [{
155
+ readonly indexed: false;
156
+ readonly internalType: "uint256";
157
+ readonly name: "minDelay";
158
+ readonly type: "uint256";
159
+ }];
160
+ readonly name: "TransferMinDelayChanged";
161
+ readonly type: "event";
162
+ }, {
163
+ readonly inputs: readonly [{
164
+ readonly internalType: "address";
165
+ readonly name: "owner";
166
+ readonly type: "address";
167
+ }, {
168
+ readonly internalType: "address";
169
+ readonly name: "spender";
170
+ readonly type: "address";
171
+ }];
172
+ readonly name: "allowance";
173
+ readonly outputs: readonly [{
174
+ readonly internalType: "uint256";
175
+ readonly name: "";
176
+ readonly type: "uint256";
177
+ }];
178
+ readonly stateMutability: "view";
179
+ readonly type: "function";
180
+ }, {
181
+ readonly inputs: readonly [{
182
+ readonly internalType: "address";
183
+ readonly name: "spender";
184
+ readonly type: "address";
185
+ }, {
186
+ readonly internalType: "uint256";
187
+ readonly name: "amount";
188
+ readonly type: "uint256";
189
+ }];
190
+ readonly name: "approve";
191
+ readonly outputs: readonly [{
192
+ readonly internalType: "bool";
193
+ readonly name: "";
194
+ readonly type: "bool";
195
+ }];
196
+ readonly stateMutability: "nonpayable";
197
+ readonly type: "function";
198
+ }, {
199
+ readonly inputs: readonly [{
200
+ readonly internalType: "address";
201
+ readonly name: "account";
202
+ readonly type: "address";
203
+ }];
204
+ readonly name: "balanceOf";
205
+ readonly outputs: readonly [{
206
+ readonly internalType: "uint256";
207
+ readonly name: "";
208
+ readonly type: "uint256";
209
+ }];
210
+ readonly stateMutability: "view";
211
+ readonly type: "function";
212
+ }, {
213
+ readonly inputs: readonly [{
214
+ readonly internalType: "uint256";
215
+ readonly name: "amount";
216
+ readonly type: "uint256";
217
+ }];
218
+ readonly name: "burn";
219
+ readonly outputs: readonly [];
220
+ readonly stateMutability: "nonpayable";
221
+ readonly type: "function";
222
+ }, {
223
+ readonly inputs: readonly [{
224
+ readonly internalType: "address";
225
+ readonly name: "account";
226
+ readonly type: "address";
227
+ }, {
228
+ readonly internalType: "uint256";
229
+ readonly name: "amount";
230
+ readonly type: "uint256";
231
+ }];
232
+ readonly name: "burnFrom";
233
+ readonly outputs: readonly [];
234
+ readonly stateMutability: "nonpayable";
235
+ readonly type: "function";
236
+ }, {
237
+ readonly inputs: readonly [];
238
+ readonly name: "decimals";
239
+ readonly outputs: readonly [{
240
+ readonly internalType: "uint8";
241
+ readonly name: "";
242
+ readonly type: "uint8";
243
+ }];
244
+ readonly stateMutability: "view";
245
+ readonly type: "function";
246
+ }, {
247
+ readonly inputs: readonly [{
248
+ readonly internalType: "address";
249
+ readonly name: "spender";
250
+ readonly type: "address";
251
+ }, {
252
+ readonly internalType: "uint256";
253
+ readonly name: "subtractedValue";
254
+ readonly type: "uint256";
255
+ }];
256
+ readonly name: "decreaseAllowance";
257
+ readonly outputs: readonly [{
258
+ readonly internalType: "bool";
259
+ readonly name: "";
260
+ readonly type: "bool";
261
+ }];
262
+ readonly stateMutability: "nonpayable";
263
+ readonly type: "function";
264
+ }, {
265
+ readonly inputs: readonly [];
266
+ readonly name: "delegate";
267
+ readonly outputs: readonly [{
268
+ readonly internalType: "contract ITokenDelegate";
269
+ readonly name: "";
270
+ readonly type: "address";
271
+ }];
272
+ readonly stateMutability: "view";
273
+ readonly type: "function";
274
+ }, {
275
+ readonly inputs: readonly [];
276
+ readonly name: "getOwner";
277
+ readonly outputs: readonly [{
278
+ readonly internalType: "address";
279
+ readonly name: "";
280
+ readonly type: "address";
281
+ }];
282
+ readonly stateMutability: "view";
283
+ readonly type: "function";
284
+ }, {
285
+ readonly inputs: readonly [{
286
+ readonly internalType: "address";
287
+ readonly name: "spender";
288
+ readonly type: "address";
289
+ }, {
290
+ readonly internalType: "uint256";
291
+ readonly name: "addedValue";
292
+ readonly type: "uint256";
293
+ }];
294
+ readonly name: "increaseAllowance";
295
+ readonly outputs: readonly [{
296
+ readonly internalType: "bool";
297
+ readonly name: "";
298
+ readonly type: "bool";
299
+ }];
300
+ readonly stateMutability: "nonpayable";
301
+ readonly type: "function";
302
+ }, {
303
+ readonly inputs: readonly [{
304
+ readonly internalType: "uint256";
305
+ readonly name: "tradingStart";
306
+ readonly type: "uint256";
307
+ }, {
308
+ readonly internalType: "uint256";
309
+ readonly name: "maxValue";
310
+ readonly type: "uint256";
311
+ }, {
312
+ readonly internalType: "uint256";
313
+ readonly name: "minDelay";
314
+ readonly type: "uint256";
315
+ }];
316
+ readonly name: "initAntibot";
317
+ readonly outputs: readonly [];
318
+ readonly stateMutability: "nonpayable";
319
+ readonly type: "function";
320
+ }, {
321
+ readonly inputs: readonly [{
322
+ readonly internalType: "address";
323
+ readonly name: "account";
324
+ readonly type: "address";
325
+ }];
326
+ readonly name: "isUnthrottled";
327
+ readonly outputs: readonly [{
328
+ readonly internalType: "bool";
329
+ readonly name: "";
330
+ readonly type: "bool";
331
+ }];
332
+ readonly stateMutability: "view";
333
+ readonly type: "function";
334
+ }, {
335
+ readonly inputs: readonly [{
336
+ readonly internalType: "address";
337
+ readonly name: "account";
338
+ readonly type: "address";
339
+ }];
340
+ readonly name: "isWhitelisted";
341
+ readonly outputs: readonly [{
342
+ readonly internalType: "bool";
343
+ readonly name: "";
344
+ readonly type: "bool";
345
+ }];
346
+ readonly stateMutability: "view";
347
+ readonly type: "function";
348
+ }, {
349
+ readonly inputs: readonly [];
350
+ readonly name: "name";
351
+ readonly outputs: readonly [{
352
+ readonly internalType: "string";
353
+ readonly name: "";
354
+ readonly type: "string";
355
+ }];
356
+ readonly stateMutability: "view";
357
+ readonly type: "function";
358
+ }, {
359
+ readonly inputs: readonly [];
360
+ readonly name: "owner";
361
+ readonly outputs: readonly [{
362
+ readonly internalType: "address";
363
+ readonly name: "";
364
+ readonly type: "address";
365
+ }];
366
+ readonly stateMutability: "view";
367
+ readonly type: "function";
368
+ }, {
369
+ readonly inputs: readonly [];
370
+ readonly name: "renounceOwnership";
371
+ readonly outputs: readonly [];
372
+ readonly stateMutability: "nonpayable";
373
+ readonly type: "function";
374
+ }, {
375
+ readonly inputs: readonly [{
376
+ readonly internalType: "contract ITokenDelegate";
377
+ readonly name: "_delegate";
378
+ readonly type: "address";
379
+ }];
380
+ readonly name: "setDelegateAddress";
381
+ readonly outputs: readonly [];
382
+ readonly stateMutability: "nonpayable";
383
+ readonly type: "function";
384
+ }, {
385
+ readonly inputs: readonly [{
386
+ readonly internalType: "bool";
387
+ readonly name: "_active";
388
+ readonly type: "bool";
389
+ }];
390
+ readonly name: "setRestrictionActive";
391
+ readonly outputs: readonly [];
392
+ readonly stateMutability: "nonpayable";
393
+ readonly type: "function";
394
+ }, {
395
+ readonly inputs: readonly [{
396
+ readonly internalType: "uint256";
397
+ readonly name: "_time";
398
+ readonly type: "uint256";
399
+ }];
400
+ readonly name: "setStartTimestamp";
401
+ readonly outputs: readonly [];
402
+ readonly stateMutability: "nonpayable";
403
+ readonly type: "function";
404
+ }, {
405
+ readonly inputs: readonly [{
406
+ readonly internalType: "uint256";
407
+ readonly name: "_value";
408
+ readonly type: "uint256";
409
+ }];
410
+ readonly name: "setTransferMaxValue";
411
+ readonly outputs: readonly [];
412
+ readonly stateMutability: "nonpayable";
413
+ readonly type: "function";
414
+ }, {
415
+ readonly inputs: readonly [{
416
+ readonly internalType: "uint256";
417
+ readonly name: "_delay";
418
+ readonly type: "uint256";
419
+ }];
420
+ readonly name: "setTransferMinDelay";
421
+ readonly outputs: readonly [];
422
+ readonly stateMutability: "nonpayable";
423
+ readonly type: "function";
424
+ }, {
425
+ readonly inputs: readonly [];
426
+ readonly name: "startTimestamp";
427
+ readonly outputs: readonly [{
428
+ readonly internalType: "uint256";
429
+ readonly name: "";
430
+ readonly type: "uint256";
431
+ }];
432
+ readonly stateMutability: "view";
433
+ readonly type: "function";
434
+ }, {
435
+ readonly inputs: readonly [];
436
+ readonly name: "symbol";
437
+ readonly outputs: readonly [{
438
+ readonly internalType: "string";
439
+ readonly name: "";
440
+ readonly type: "string";
441
+ }];
442
+ readonly stateMutability: "view";
443
+ readonly type: "function";
444
+ }, {
445
+ readonly inputs: readonly [];
446
+ readonly name: "totalSupply";
447
+ readonly outputs: readonly [{
448
+ readonly internalType: "uint256";
449
+ readonly name: "";
450
+ readonly type: "uint256";
451
+ }];
452
+ readonly stateMutability: "view";
453
+ readonly type: "function";
454
+ }, {
455
+ readonly inputs: readonly [{
456
+ readonly internalType: "address";
457
+ readonly name: "recipient";
458
+ readonly type: "address";
459
+ }, {
460
+ readonly internalType: "uint256";
461
+ readonly name: "amount";
462
+ readonly type: "uint256";
463
+ }];
464
+ readonly name: "transfer";
465
+ readonly outputs: readonly [{
466
+ readonly internalType: "bool";
467
+ readonly name: "";
468
+ readonly type: "bool";
469
+ }];
470
+ readonly stateMutability: "nonpayable";
471
+ readonly type: "function";
472
+ }, {
473
+ readonly inputs: readonly [{
474
+ readonly internalType: "address";
475
+ readonly name: "sender";
476
+ readonly type: "address";
477
+ }, {
478
+ readonly internalType: "address";
479
+ readonly name: "recipient";
480
+ readonly type: "address";
481
+ }, {
482
+ readonly internalType: "uint256";
483
+ readonly name: "amount";
484
+ readonly type: "uint256";
485
+ }];
486
+ readonly name: "transferFrom";
487
+ readonly outputs: readonly [{
488
+ readonly internalType: "bool";
489
+ readonly name: "";
490
+ readonly type: "bool";
491
+ }];
492
+ readonly stateMutability: "nonpayable";
493
+ readonly type: "function";
494
+ }, {
495
+ readonly inputs: readonly [];
496
+ readonly name: "transferMaxValue";
497
+ readonly outputs: readonly [{
498
+ readonly internalType: "uint256";
499
+ readonly name: "";
500
+ readonly type: "uint256";
501
+ }];
502
+ readonly stateMutability: "view";
503
+ readonly type: "function";
504
+ }, {
505
+ readonly inputs: readonly [];
506
+ readonly name: "transferMinDelay";
507
+ readonly outputs: readonly [{
508
+ readonly internalType: "uint256";
509
+ readonly name: "";
510
+ readonly type: "uint256";
511
+ }];
512
+ readonly stateMutability: "view";
513
+ readonly type: "function";
514
+ }, {
515
+ readonly inputs: readonly [{
516
+ readonly internalType: "address";
517
+ readonly name: "newOwner";
518
+ readonly type: "address";
519
+ }];
520
+ readonly name: "transferOwnership";
521
+ readonly outputs: readonly [];
522
+ readonly stateMutability: "nonpayable";
523
+ readonly type: "function";
524
+ }, {
525
+ readonly inputs: readonly [{
526
+ readonly internalType: "address";
527
+ readonly name: "_account";
528
+ readonly type: "address";
529
+ }, {
530
+ readonly internalType: "bool";
531
+ readonly name: "_unthrottled";
532
+ readonly type: "bool";
533
+ }];
534
+ readonly name: "unthrottleAccount";
535
+ readonly outputs: readonly [];
536
+ readonly stateMutability: "nonpayable";
537
+ readonly type: "function";
538
+ }, {
539
+ readonly inputs: readonly [{
540
+ readonly internalType: "address";
541
+ readonly name: "_account";
542
+ readonly type: "address";
543
+ }, {
544
+ readonly internalType: "bool";
545
+ readonly name: "_whitelisted";
546
+ readonly type: "bool";
547
+ }];
548
+ readonly name: "whitelistAccount";
549
+ readonly outputs: readonly [];
550
+ readonly stateMutability: "nonpayable";
551
+ readonly type: "function";
552
+ }];
553
+ /**
554
+ * Type-safe ABI for Token_json
555
+ */
556
+ export type Token_jsonAbi = typeof Token_jsonAbi;
557
+ /**
558
+ * Contract instance type for Token_json
559
+ */
560
+ export type Token_jsonContract = any;
561
+ /**
562
+ * Token_json Contract Class
563
+ *
564
+ * Provides a class-based API similar to TypeChain for interacting with the contract.
565
+ *
566
+ * @example
567
+ * ```typescript
568
+ * import { createPublicClient, createWalletClient, http } from 'viem';
569
+ * import { mainnet } from 'viem/chains';
570
+ * import { Token_json } from 'Token_json';
571
+ *
572
+ * const publicClient = createPublicClient({ chain: mainnet, transport: http() });
573
+ * const walletClient = createWalletClient({ chain: mainnet, transport: http() });
574
+ *
575
+ * const contract = new Token_json('0x...', { publicClient, walletClient });
576
+ *
577
+ * // Read functions
578
+ * const result = await contract.balanceOf('0x...');
579
+ *
580
+ * // Write functions
581
+ * const hash = await contract.transfer('0x...', 1000n);
582
+ *
583
+ * // Simulate transactions (dry-run)
584
+ * const simulation = await contract.simulate.transfer('0x...', 1000n);
585
+ * console.log('Gas estimate:', simulation.request.gas);
586
+ *
587
+ * // Watch events
588
+ * const unwatch = contract.watch.Transfer((event) => {
589
+ * console.log('Transfer event:', event);
590
+ * });
591
+ * ```
592
+ */
593
+ export declare class Token_json {
594
+ private contract;
595
+ private contractAddress;
596
+ private publicClient;
597
+ constructor(address: Address, clients: {
598
+ publicClient: PublicClient;
599
+ walletClient?: WalletClient;
600
+ });
601
+ /**
602
+ * Get the contract address
603
+ */
604
+ get address(): Address;
605
+ /**
606
+ * Get the underlying viem contract instance
607
+ */
608
+ getContract(): Token_jsonContract;
609
+ /**
610
+ * allowance
611
+ * view
612
+ */
613
+ allowance(owner: `0x${string}`, spender: `0x${string}`): Promise<bigint>;
614
+ /**
615
+ * balanceOf
616
+ * view
617
+ */
618
+ balanceOf(account: `0x${string}`): Promise<bigint>;
619
+ /**
620
+ * decimals
621
+ * view
622
+ */
623
+ decimals(): Promise<bigint>;
624
+ /**
625
+ * delegate
626
+ * view
627
+ */
628
+ delegate(): Promise<`0x${string}`>;
629
+ /**
630
+ * getOwner
631
+ * view
632
+ */
633
+ getOwner(): Promise<`0x${string}`>;
634
+ /**
635
+ * isUnthrottled
636
+ * view
637
+ */
638
+ isUnthrottled(account: `0x${string}`): Promise<boolean>;
639
+ /**
640
+ * isWhitelisted
641
+ * view
642
+ */
643
+ isWhitelisted(account: `0x${string}`): Promise<boolean>;
644
+ /**
645
+ * name
646
+ * view
647
+ */
648
+ name(): Promise<string>;
649
+ /**
650
+ * owner
651
+ * view
652
+ */
653
+ owner(): Promise<`0x${string}`>;
654
+ /**
655
+ * startTimestamp
656
+ * view
657
+ */
658
+ startTimestamp(): Promise<bigint>;
659
+ /**
660
+ * symbol
661
+ * view
662
+ */
663
+ symbol(): Promise<string>;
664
+ /**
665
+ * totalSupply
666
+ * view
667
+ */
668
+ totalSupply(): Promise<bigint>;
669
+ /**
670
+ * transferMaxValue
671
+ * view
672
+ */
673
+ transferMaxValue(): Promise<bigint>;
674
+ /**
675
+ * transferMinDelay
676
+ * view
677
+ */
678
+ transferMinDelay(): Promise<bigint>;
679
+ /**
680
+ * approve
681
+ * nonpayable
682
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
683
+ */
684
+ approve(spender: `0x${string}`, amount: bigint, options?: {
685
+ accessList?: import('viem').AccessList;
686
+ authorizationList?: import('viem').AuthorizationList;
687
+ chain?: import('viem').Chain | null;
688
+ dataSuffix?: `0x${string}`;
689
+ gas?: bigint;
690
+ gasPrice?: bigint;
691
+ maxFeePerGas?: bigint;
692
+ maxPriorityFeePerGas?: bigint;
693
+ nonce?: number;
694
+ value?: bigint;
695
+ }): Promise<`0x${string}`>;
696
+ /**
697
+ * burn
698
+ * nonpayable
699
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
700
+ */
701
+ burn(amount: bigint, options?: {
702
+ accessList?: import('viem').AccessList;
703
+ authorizationList?: import('viem').AuthorizationList;
704
+ chain?: import('viem').Chain | null;
705
+ dataSuffix?: `0x${string}`;
706
+ gas?: bigint;
707
+ gasPrice?: bigint;
708
+ maxFeePerGas?: bigint;
709
+ maxPriorityFeePerGas?: bigint;
710
+ nonce?: number;
711
+ value?: bigint;
712
+ }): Promise<`0x${string}`>;
713
+ /**
714
+ * burnFrom
715
+ * nonpayable
716
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
717
+ */
718
+ burnFrom(account: `0x${string}`, amount: bigint, options?: {
719
+ accessList?: import('viem').AccessList;
720
+ authorizationList?: import('viem').AuthorizationList;
721
+ chain?: import('viem').Chain | null;
722
+ dataSuffix?: `0x${string}`;
723
+ gas?: bigint;
724
+ gasPrice?: bigint;
725
+ maxFeePerGas?: bigint;
726
+ maxPriorityFeePerGas?: bigint;
727
+ nonce?: number;
728
+ value?: bigint;
729
+ }): Promise<`0x${string}`>;
730
+ /**
731
+ * decreaseAllowance
732
+ * nonpayable
733
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
734
+ */
735
+ decreaseAllowance(spender: `0x${string}`, subtractedValue: bigint, options?: {
736
+ accessList?: import('viem').AccessList;
737
+ authorizationList?: import('viem').AuthorizationList;
738
+ chain?: import('viem').Chain | null;
739
+ dataSuffix?: `0x${string}`;
740
+ gas?: bigint;
741
+ gasPrice?: bigint;
742
+ maxFeePerGas?: bigint;
743
+ maxPriorityFeePerGas?: bigint;
744
+ nonce?: number;
745
+ value?: bigint;
746
+ }): Promise<`0x${string}`>;
747
+ /**
748
+ * increaseAllowance
749
+ * nonpayable
750
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
751
+ */
752
+ increaseAllowance(spender: `0x${string}`, addedValue: bigint, options?: {
753
+ accessList?: import('viem').AccessList;
754
+ authorizationList?: import('viem').AuthorizationList;
755
+ chain?: import('viem').Chain | null;
756
+ dataSuffix?: `0x${string}`;
757
+ gas?: bigint;
758
+ gasPrice?: bigint;
759
+ maxFeePerGas?: bigint;
760
+ maxPriorityFeePerGas?: bigint;
761
+ nonce?: number;
762
+ value?: bigint;
763
+ }): Promise<`0x${string}`>;
764
+ /**
765
+ * initAntibot
766
+ * nonpayable
767
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
768
+ */
769
+ initAntibot(tradingStart: bigint, maxValue: bigint, minDelay: bigint, options?: {
770
+ accessList?: import('viem').AccessList;
771
+ authorizationList?: import('viem').AuthorizationList;
772
+ chain?: import('viem').Chain | null;
773
+ dataSuffix?: `0x${string}`;
774
+ gas?: bigint;
775
+ gasPrice?: bigint;
776
+ maxFeePerGas?: bigint;
777
+ maxPriorityFeePerGas?: bigint;
778
+ nonce?: number;
779
+ value?: bigint;
780
+ }): Promise<`0x${string}`>;
781
+ /**
782
+ * renounceOwnership
783
+ * nonpayable
784
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
785
+ */
786
+ renounceOwnership(options?: {
787
+ accessList?: import('viem').AccessList;
788
+ authorizationList?: import('viem').AuthorizationList;
789
+ chain?: import('viem').Chain | null;
790
+ dataSuffix?: `0x${string}`;
791
+ gas?: bigint;
792
+ gasPrice?: bigint;
793
+ maxFeePerGas?: bigint;
794
+ maxPriorityFeePerGas?: bigint;
795
+ nonce?: number;
796
+ value?: bigint;
797
+ }): Promise<`0x${string}`>;
798
+ /**
799
+ * setDelegateAddress
800
+ * nonpayable
801
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
802
+ */
803
+ setDelegateAddress(_delegate: `0x${string}`, options?: {
804
+ accessList?: import('viem').AccessList;
805
+ authorizationList?: import('viem').AuthorizationList;
806
+ chain?: import('viem').Chain | null;
807
+ dataSuffix?: `0x${string}`;
808
+ gas?: bigint;
809
+ gasPrice?: bigint;
810
+ maxFeePerGas?: bigint;
811
+ maxPriorityFeePerGas?: bigint;
812
+ nonce?: number;
813
+ value?: bigint;
814
+ }): Promise<`0x${string}`>;
815
+ /**
816
+ * setRestrictionActive
817
+ * nonpayable
818
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
819
+ */
820
+ setRestrictionActive(_active: boolean, options?: {
821
+ accessList?: import('viem').AccessList;
822
+ authorizationList?: import('viem').AuthorizationList;
823
+ chain?: import('viem').Chain | null;
824
+ dataSuffix?: `0x${string}`;
825
+ gas?: bigint;
826
+ gasPrice?: bigint;
827
+ maxFeePerGas?: bigint;
828
+ maxPriorityFeePerGas?: bigint;
829
+ nonce?: number;
830
+ value?: bigint;
831
+ }): Promise<`0x${string}`>;
832
+ /**
833
+ * setStartTimestamp
834
+ * nonpayable
835
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
836
+ */
837
+ setStartTimestamp(_time: bigint, options?: {
838
+ accessList?: import('viem').AccessList;
839
+ authorizationList?: import('viem').AuthorizationList;
840
+ chain?: import('viem').Chain | null;
841
+ dataSuffix?: `0x${string}`;
842
+ gas?: bigint;
843
+ gasPrice?: bigint;
844
+ maxFeePerGas?: bigint;
845
+ maxPriorityFeePerGas?: bigint;
846
+ nonce?: number;
847
+ value?: bigint;
848
+ }): Promise<`0x${string}`>;
849
+ /**
850
+ * setTransferMaxValue
851
+ * nonpayable
852
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
853
+ */
854
+ setTransferMaxValue(_value: bigint, options?: {
855
+ accessList?: import('viem').AccessList;
856
+ authorizationList?: import('viem').AuthorizationList;
857
+ chain?: import('viem').Chain | null;
858
+ dataSuffix?: `0x${string}`;
859
+ gas?: bigint;
860
+ gasPrice?: bigint;
861
+ maxFeePerGas?: bigint;
862
+ maxPriorityFeePerGas?: bigint;
863
+ nonce?: number;
864
+ value?: bigint;
865
+ }): Promise<`0x${string}`>;
866
+ /**
867
+ * setTransferMinDelay
868
+ * nonpayable
869
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
870
+ */
871
+ setTransferMinDelay(_delay: bigint, options?: {
872
+ accessList?: import('viem').AccessList;
873
+ authorizationList?: import('viem').AuthorizationList;
874
+ chain?: import('viem').Chain | null;
875
+ dataSuffix?: `0x${string}`;
876
+ gas?: bigint;
877
+ gasPrice?: bigint;
878
+ maxFeePerGas?: bigint;
879
+ maxPriorityFeePerGas?: bigint;
880
+ nonce?: number;
881
+ value?: bigint;
882
+ }): Promise<`0x${string}`>;
883
+ /**
884
+ * transfer
885
+ * nonpayable
886
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
887
+ */
888
+ transfer(recipient: `0x${string}`, amount: bigint, options?: {
889
+ accessList?: import('viem').AccessList;
890
+ authorizationList?: import('viem').AuthorizationList;
891
+ chain?: import('viem').Chain | null;
892
+ dataSuffix?: `0x${string}`;
893
+ gas?: bigint;
894
+ gasPrice?: bigint;
895
+ maxFeePerGas?: bigint;
896
+ maxPriorityFeePerGas?: bigint;
897
+ nonce?: number;
898
+ value?: bigint;
899
+ }): Promise<`0x${string}`>;
900
+ /**
901
+ * transferFrom
902
+ * nonpayable
903
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
904
+ */
905
+ transferFrom(sender: `0x${string}`, recipient: `0x${string}`, amount: bigint, options?: {
906
+ accessList?: import('viem').AccessList;
907
+ authorizationList?: import('viem').AuthorizationList;
908
+ chain?: import('viem').Chain | null;
909
+ dataSuffix?: `0x${string}`;
910
+ gas?: bigint;
911
+ gasPrice?: bigint;
912
+ maxFeePerGas?: bigint;
913
+ maxPriorityFeePerGas?: bigint;
914
+ nonce?: number;
915
+ value?: bigint;
916
+ }): Promise<`0x${string}`>;
917
+ /**
918
+ * transferOwnership
919
+ * nonpayable
920
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
921
+ */
922
+ transferOwnership(newOwner: `0x${string}`, options?: {
923
+ accessList?: import('viem').AccessList;
924
+ authorizationList?: import('viem').AuthorizationList;
925
+ chain?: import('viem').Chain | null;
926
+ dataSuffix?: `0x${string}`;
927
+ gas?: bigint;
928
+ gasPrice?: bigint;
929
+ maxFeePerGas?: bigint;
930
+ maxPriorityFeePerGas?: bigint;
931
+ nonce?: number;
932
+ value?: bigint;
933
+ }): Promise<`0x${string}`>;
934
+ /**
935
+ * unthrottleAccount
936
+ * nonpayable
937
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
938
+ */
939
+ unthrottleAccount(_account: `0x${string}`, _unthrottled: boolean, options?: {
940
+ accessList?: import('viem').AccessList;
941
+ authorizationList?: import('viem').AuthorizationList;
942
+ chain?: import('viem').Chain | null;
943
+ dataSuffix?: `0x${string}`;
944
+ gas?: bigint;
945
+ gasPrice?: bigint;
946
+ maxFeePerGas?: bigint;
947
+ maxPriorityFeePerGas?: bigint;
948
+ nonce?: number;
949
+ value?: bigint;
950
+ }): Promise<`0x${string}`>;
951
+ /**
952
+ * whitelistAccount
953
+ * nonpayable
954
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
955
+ */
956
+ whitelistAccount(_account: `0x${string}`, _whitelisted: boolean, options?: {
957
+ accessList?: import('viem').AccessList;
958
+ authorizationList?: import('viem').AuthorizationList;
959
+ chain?: import('viem').Chain | null;
960
+ dataSuffix?: `0x${string}`;
961
+ gas?: bigint;
962
+ gasPrice?: bigint;
963
+ maxFeePerGas?: bigint;
964
+ maxPriorityFeePerGas?: bigint;
965
+ nonce?: number;
966
+ value?: bigint;
967
+ }): Promise<`0x${string}`>;
968
+ /**
969
+ * Simulate contract write operations (dry-run without sending transaction)
970
+ *
971
+ * @example
972
+ * const result = await contract.simulate.transfer('0x...', 1000n);
973
+ * console.log('Gas estimate:', result.request.gas);
974
+ * console.log('Would succeed:', result.result);
975
+ */
976
+ get simulate(): {
977
+ /**
978
+ * Simulate approve
979
+ * Returns gas estimate and result without sending transaction
980
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
981
+ */
982
+ approve(spender: `0x${string}`, amount: bigint, options?: {
983
+ accessList?: import("viem").AccessList;
984
+ authorizationList?: import("viem").AuthorizationList;
985
+ chain?: import("viem").Chain | null;
986
+ dataSuffix?: `0x${string}`;
987
+ gas?: bigint;
988
+ gasPrice?: bigint;
989
+ maxFeePerGas?: bigint;
990
+ maxPriorityFeePerGas?: bigint;
991
+ nonce?: number;
992
+ value?: bigint;
993
+ }): Promise<boolean>;
994
+ /**
995
+ * Simulate burn
996
+ * Returns gas estimate and result without sending transaction
997
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
998
+ */
999
+ burn(amount: bigint, options?: {
1000
+ accessList?: import("viem").AccessList;
1001
+ authorizationList?: import("viem").AuthorizationList;
1002
+ chain?: import("viem").Chain | null;
1003
+ dataSuffix?: `0x${string}`;
1004
+ gas?: bigint;
1005
+ gasPrice?: bigint;
1006
+ maxFeePerGas?: bigint;
1007
+ maxPriorityFeePerGas?: bigint;
1008
+ nonce?: number;
1009
+ value?: bigint;
1010
+ }): Promise<void>;
1011
+ /**
1012
+ * Simulate burnFrom
1013
+ * Returns gas estimate and result without sending transaction
1014
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1015
+ */
1016
+ burnFrom(account: `0x${string}`, amount: bigint, options?: {
1017
+ accessList?: import("viem").AccessList;
1018
+ authorizationList?: import("viem").AuthorizationList;
1019
+ chain?: import("viem").Chain | null;
1020
+ dataSuffix?: `0x${string}`;
1021
+ gas?: bigint;
1022
+ gasPrice?: bigint;
1023
+ maxFeePerGas?: bigint;
1024
+ maxPriorityFeePerGas?: bigint;
1025
+ nonce?: number;
1026
+ value?: bigint;
1027
+ }): Promise<void>;
1028
+ /**
1029
+ * Simulate decreaseAllowance
1030
+ * Returns gas estimate and result without sending transaction
1031
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1032
+ */
1033
+ decreaseAllowance(spender: `0x${string}`, subtractedValue: bigint, options?: {
1034
+ accessList?: import("viem").AccessList;
1035
+ authorizationList?: import("viem").AuthorizationList;
1036
+ chain?: import("viem").Chain | null;
1037
+ dataSuffix?: `0x${string}`;
1038
+ gas?: bigint;
1039
+ gasPrice?: bigint;
1040
+ maxFeePerGas?: bigint;
1041
+ maxPriorityFeePerGas?: bigint;
1042
+ nonce?: number;
1043
+ value?: bigint;
1044
+ }): Promise<boolean>;
1045
+ /**
1046
+ * Simulate increaseAllowance
1047
+ * Returns gas estimate and result without sending transaction
1048
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1049
+ */
1050
+ increaseAllowance(spender: `0x${string}`, addedValue: bigint, options?: {
1051
+ accessList?: import("viem").AccessList;
1052
+ authorizationList?: import("viem").AuthorizationList;
1053
+ chain?: import("viem").Chain | null;
1054
+ dataSuffix?: `0x${string}`;
1055
+ gas?: bigint;
1056
+ gasPrice?: bigint;
1057
+ maxFeePerGas?: bigint;
1058
+ maxPriorityFeePerGas?: bigint;
1059
+ nonce?: number;
1060
+ value?: bigint;
1061
+ }): Promise<boolean>;
1062
+ /**
1063
+ * Simulate initAntibot
1064
+ * Returns gas estimate and result without sending transaction
1065
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1066
+ */
1067
+ initAntibot(tradingStart: bigint, maxValue: bigint, minDelay: bigint, options?: {
1068
+ accessList?: import("viem").AccessList;
1069
+ authorizationList?: import("viem").AuthorizationList;
1070
+ chain?: import("viem").Chain | null;
1071
+ dataSuffix?: `0x${string}`;
1072
+ gas?: bigint;
1073
+ gasPrice?: bigint;
1074
+ maxFeePerGas?: bigint;
1075
+ maxPriorityFeePerGas?: bigint;
1076
+ nonce?: number;
1077
+ value?: bigint;
1078
+ }): Promise<void>;
1079
+ /**
1080
+ * Simulate renounceOwnership
1081
+ * Returns gas estimate and result without sending transaction
1082
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1083
+ */
1084
+ renounceOwnership(options?: {
1085
+ accessList?: import("viem").AccessList;
1086
+ authorizationList?: import("viem").AuthorizationList;
1087
+ chain?: import("viem").Chain | null;
1088
+ dataSuffix?: `0x${string}`;
1089
+ gas?: bigint;
1090
+ gasPrice?: bigint;
1091
+ maxFeePerGas?: bigint;
1092
+ maxPriorityFeePerGas?: bigint;
1093
+ nonce?: number;
1094
+ value?: bigint;
1095
+ }): Promise<void>;
1096
+ /**
1097
+ * Simulate setDelegateAddress
1098
+ * Returns gas estimate and result without sending transaction
1099
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1100
+ */
1101
+ setDelegateAddress(_delegate: `0x${string}`, options?: {
1102
+ accessList?: import("viem").AccessList;
1103
+ authorizationList?: import("viem").AuthorizationList;
1104
+ chain?: import("viem").Chain | null;
1105
+ dataSuffix?: `0x${string}`;
1106
+ gas?: bigint;
1107
+ gasPrice?: bigint;
1108
+ maxFeePerGas?: bigint;
1109
+ maxPriorityFeePerGas?: bigint;
1110
+ nonce?: number;
1111
+ value?: bigint;
1112
+ }): Promise<void>;
1113
+ /**
1114
+ * Simulate setRestrictionActive
1115
+ * Returns gas estimate and result without sending transaction
1116
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1117
+ */
1118
+ setRestrictionActive(_active: boolean, options?: {
1119
+ accessList?: import("viem").AccessList;
1120
+ authorizationList?: import("viem").AuthorizationList;
1121
+ chain?: import("viem").Chain | null;
1122
+ dataSuffix?: `0x${string}`;
1123
+ gas?: bigint;
1124
+ gasPrice?: bigint;
1125
+ maxFeePerGas?: bigint;
1126
+ maxPriorityFeePerGas?: bigint;
1127
+ nonce?: number;
1128
+ value?: bigint;
1129
+ }): Promise<void>;
1130
+ /**
1131
+ * Simulate setStartTimestamp
1132
+ * Returns gas estimate and result without sending transaction
1133
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1134
+ */
1135
+ setStartTimestamp(_time: bigint, options?: {
1136
+ accessList?: import("viem").AccessList;
1137
+ authorizationList?: import("viem").AuthorizationList;
1138
+ chain?: import("viem").Chain | null;
1139
+ dataSuffix?: `0x${string}`;
1140
+ gas?: bigint;
1141
+ gasPrice?: bigint;
1142
+ maxFeePerGas?: bigint;
1143
+ maxPriorityFeePerGas?: bigint;
1144
+ nonce?: number;
1145
+ value?: bigint;
1146
+ }): Promise<void>;
1147
+ /**
1148
+ * Simulate setTransferMaxValue
1149
+ * Returns gas estimate and result without sending transaction
1150
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1151
+ */
1152
+ setTransferMaxValue(_value: bigint, options?: {
1153
+ accessList?: import("viem").AccessList;
1154
+ authorizationList?: import("viem").AuthorizationList;
1155
+ chain?: import("viem").Chain | null;
1156
+ dataSuffix?: `0x${string}`;
1157
+ gas?: bigint;
1158
+ gasPrice?: bigint;
1159
+ maxFeePerGas?: bigint;
1160
+ maxPriorityFeePerGas?: bigint;
1161
+ nonce?: number;
1162
+ value?: bigint;
1163
+ }): Promise<void>;
1164
+ /**
1165
+ * Simulate setTransferMinDelay
1166
+ * Returns gas estimate and result without sending transaction
1167
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1168
+ */
1169
+ setTransferMinDelay(_delay: bigint, options?: {
1170
+ accessList?: import("viem").AccessList;
1171
+ authorizationList?: import("viem").AuthorizationList;
1172
+ chain?: import("viem").Chain | null;
1173
+ dataSuffix?: `0x${string}`;
1174
+ gas?: bigint;
1175
+ gasPrice?: bigint;
1176
+ maxFeePerGas?: bigint;
1177
+ maxPriorityFeePerGas?: bigint;
1178
+ nonce?: number;
1179
+ value?: bigint;
1180
+ }): Promise<void>;
1181
+ /**
1182
+ * Simulate transfer
1183
+ * Returns gas estimate and result without sending transaction
1184
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1185
+ */
1186
+ transfer(recipient: `0x${string}`, amount: bigint, options?: {
1187
+ accessList?: import("viem").AccessList;
1188
+ authorizationList?: import("viem").AuthorizationList;
1189
+ chain?: import("viem").Chain | null;
1190
+ dataSuffix?: `0x${string}`;
1191
+ gas?: bigint;
1192
+ gasPrice?: bigint;
1193
+ maxFeePerGas?: bigint;
1194
+ maxPriorityFeePerGas?: bigint;
1195
+ nonce?: number;
1196
+ value?: bigint;
1197
+ }): Promise<boolean>;
1198
+ /**
1199
+ * Simulate transferFrom
1200
+ * Returns gas estimate and result without sending transaction
1201
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1202
+ */
1203
+ transferFrom(sender: `0x${string}`, recipient: `0x${string}`, amount: bigint, options?: {
1204
+ accessList?: import("viem").AccessList;
1205
+ authorizationList?: import("viem").AuthorizationList;
1206
+ chain?: import("viem").Chain | null;
1207
+ dataSuffix?: `0x${string}`;
1208
+ gas?: bigint;
1209
+ gasPrice?: bigint;
1210
+ maxFeePerGas?: bigint;
1211
+ maxPriorityFeePerGas?: bigint;
1212
+ nonce?: number;
1213
+ value?: bigint;
1214
+ }): Promise<boolean>;
1215
+ /**
1216
+ * Simulate transferOwnership
1217
+ * Returns gas estimate and result without sending transaction
1218
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1219
+ */
1220
+ transferOwnership(newOwner: `0x${string}`, options?: {
1221
+ accessList?: import("viem").AccessList;
1222
+ authorizationList?: import("viem").AuthorizationList;
1223
+ chain?: import("viem").Chain | null;
1224
+ dataSuffix?: `0x${string}`;
1225
+ gas?: bigint;
1226
+ gasPrice?: bigint;
1227
+ maxFeePerGas?: bigint;
1228
+ maxPriorityFeePerGas?: bigint;
1229
+ nonce?: number;
1230
+ value?: bigint;
1231
+ }): Promise<void>;
1232
+ /**
1233
+ * Simulate unthrottleAccount
1234
+ * Returns gas estimate and result without sending transaction
1235
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1236
+ */
1237
+ unthrottleAccount(_account: `0x${string}`, _unthrottled: boolean, options?: {
1238
+ accessList?: import("viem").AccessList;
1239
+ authorizationList?: import("viem").AuthorizationList;
1240
+ chain?: import("viem").Chain | null;
1241
+ dataSuffix?: `0x${string}`;
1242
+ gas?: bigint;
1243
+ gasPrice?: bigint;
1244
+ maxFeePerGas?: bigint;
1245
+ maxPriorityFeePerGas?: bigint;
1246
+ nonce?: number;
1247
+ value?: bigint;
1248
+ }): Promise<void>;
1249
+ /**
1250
+ * Simulate whitelistAccount
1251
+ * Returns gas estimate and result without sending transaction
1252
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1253
+ */
1254
+ whitelistAccount(_account: `0x${string}`, _whitelisted: boolean, options?: {
1255
+ accessList?: import("viem").AccessList;
1256
+ authorizationList?: import("viem").AuthorizationList;
1257
+ chain?: import("viem").Chain | null;
1258
+ dataSuffix?: `0x${string}`;
1259
+ gas?: bigint;
1260
+ gasPrice?: bigint;
1261
+ maxFeePerGas?: bigint;
1262
+ maxPriorityFeePerGas?: bigint;
1263
+ nonce?: number;
1264
+ value?: bigint;
1265
+ }): Promise<void>;
1266
+ };
1267
+ /**
1268
+ * Watch contract events
1269
+ *
1270
+ * @example
1271
+ * // Watch all Transfer events
1272
+ * const unwatch = contract.watch.Transfer((event) => {
1273
+ * console.log('Transfer:', event);
1274
+ * });
1275
+ *
1276
+ * // Stop watching
1277
+ * unwatch();
1278
+ */
1279
+ get watch(): {
1280
+ /**
1281
+ * Watch Approval events
1282
+ * @param callback Function to call when event is emitted
1283
+ * @param filter Optional filter for indexed parameters
1284
+ * @returns Unwatch function to stop listening
1285
+ */
1286
+ Approval: (callback: (event: {
1287
+ owner: `0x${string}`;
1288
+ spender: `0x${string}`;
1289
+ value: bigint;
1290
+ }) => void, filter?: {
1291
+ owner: `0x${string}`;
1292
+ spender: `0x${string}`;
1293
+ }) => () => void;
1294
+ /**
1295
+ * Watch DelegateAddressChanged events
1296
+ * @param callback Function to call when event is emitted
1297
+ * @param filter Optional filter for indexed parameters
1298
+ * @returns Unwatch function to stop listening
1299
+ */
1300
+ DelegateAddressChanged: (callback: (event: {
1301
+ addr: `0x${string}`;
1302
+ }) => void, filter?: {
1303
+ addr: `0x${string}`;
1304
+ }) => () => void;
1305
+ /**
1306
+ * Watch MarkedUnthrottled events
1307
+ * @param callback Function to call when event is emitted
1308
+ * @param filter Optional filter for indexed parameters
1309
+ * @returns Unwatch function to stop listening
1310
+ */
1311
+ MarkedUnthrottled: (callback: (event: {
1312
+ account: `0x${string}`;
1313
+ isUnthrottled: boolean;
1314
+ }) => void, filter?: {
1315
+ account: `0x${string}`;
1316
+ }) => () => void;
1317
+ /**
1318
+ * Watch MarkedWhitelisted events
1319
+ * @param callback Function to call when event is emitted
1320
+ * @param filter Optional filter for indexed parameters
1321
+ * @returns Unwatch function to stop listening
1322
+ */
1323
+ MarkedWhitelisted: (callback: (event: {
1324
+ account: `0x${string}`;
1325
+ isWhitelisted: boolean;
1326
+ }) => void, filter?: {
1327
+ account: `0x${string}`;
1328
+ }) => () => void;
1329
+ /**
1330
+ * Watch OwnershipTransferred events
1331
+ * @param callback Function to call when event is emitted
1332
+ * @param filter Optional filter for indexed parameters
1333
+ * @returns Unwatch function to stop listening
1334
+ */
1335
+ OwnershipTransferred: (callback: (event: {
1336
+ previousOwner: `0x${string}`;
1337
+ newOwner: `0x${string}`;
1338
+ }) => void, filter?: {
1339
+ previousOwner: `0x${string}`;
1340
+ newOwner: `0x${string}`;
1341
+ }) => () => void;
1342
+ /**
1343
+ * Watch RestrictionActiveChanged events
1344
+ * @param callback Function to call when event is emitted
1345
+ * @param filter Optional filter for indexed parameters
1346
+ * @returns Unwatch function to stop listening
1347
+ */
1348
+ RestrictionActiveChanged: (callback: (event: {
1349
+ active: boolean;
1350
+ }) => void) => () => void;
1351
+ /**
1352
+ * Watch StartTimestampChanged events
1353
+ * @param callback Function to call when event is emitted
1354
+ * @param filter Optional filter for indexed parameters
1355
+ * @returns Unwatch function to stop listening
1356
+ */
1357
+ StartTimestampChanged: (callback: (event: {
1358
+ timestamp: bigint;
1359
+ }) => void) => () => void;
1360
+ /**
1361
+ * Watch Transfer events
1362
+ * @param callback Function to call when event is emitted
1363
+ * @param filter Optional filter for indexed parameters
1364
+ * @returns Unwatch function to stop listening
1365
+ */
1366
+ Transfer: (callback: (event: {
1367
+ from: `0x${string}`;
1368
+ to: `0x${string}`;
1369
+ value: bigint;
1370
+ }) => void, filter?: {
1371
+ from: `0x${string}`;
1372
+ to: `0x${string}`;
1373
+ }) => () => void;
1374
+ /**
1375
+ * Watch TransferMaxValueChanged events
1376
+ * @param callback Function to call when event is emitted
1377
+ * @param filter Optional filter for indexed parameters
1378
+ * @returns Unwatch function to stop listening
1379
+ */
1380
+ TransferMaxValueChanged: (callback: (event: {
1381
+ maxValue: bigint;
1382
+ }) => void) => () => void;
1383
+ /**
1384
+ * Watch TransferMinDelayChanged events
1385
+ * @param callback Function to call when event is emitted
1386
+ * @param filter Optional filter for indexed parameters
1387
+ * @returns Unwatch function to stop listening
1388
+ */
1389
+ TransferMinDelayChanged: (callback: (event: {
1390
+ minDelay: bigint;
1391
+ }) => void) => () => void;
1392
+ };
1393
+ }