@sentio/sdk 2.59.0-rc.23 → 2.59.0-rc.24

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.
Files changed (47) hide show
  1. package/lib/aptos/aptos-processor.d.ts +3 -3
  2. package/lib/aptos/aptos-processor.d.ts.map +1 -1
  3. package/lib/aptos/aptos-processor.js +12 -6
  4. package/lib/aptos/aptos-processor.js.map +1 -1
  5. package/lib/aptos/builtin/0x1.d.ts +159 -159
  6. package/lib/aptos/builtin/0x1.d.ts.map +1 -1
  7. package/lib/aptos/builtin/0x1.js +316 -316
  8. package/lib/aptos/builtin/0x1.js.map +1 -1
  9. package/lib/aptos/builtin/0x3.d.ts +52 -52
  10. package/lib/aptos/builtin/0x3.d.ts.map +1 -1
  11. package/lib/aptos/builtin/0x3.js +102 -102
  12. package/lib/aptos/builtin/0x3.js.map +1 -1
  13. package/lib/aptos/builtin/0x4.d.ts +12 -12
  14. package/lib/aptos/builtin/0x4.d.ts.map +1 -1
  15. package/lib/aptos/builtin/0x4.js +22 -22
  16. package/lib/aptos/builtin/0x4.js.map +1 -1
  17. package/lib/aptos/codegen/codegen.js +10 -0
  18. package/lib/aptos/codegen/codegen.js.map +1 -1
  19. package/lib/aptos/index.d.ts +1 -0
  20. package/lib/aptos/index.d.ts.map +1 -1
  21. package/lib/aptos/index.js.map +1 -1
  22. package/lib/aptos/models.d.ts +5 -0
  23. package/lib/aptos/models.d.ts.map +1 -1
  24. package/lib/move/shared-network-codegen.d.ts.map +1 -1
  25. package/lib/move/shared-network-codegen.js +1 -0
  26. package/lib/move/shared-network-codegen.js.map +1 -1
  27. package/lib/sui/builtin/0x1.d.ts.map +1 -1
  28. package/lib/sui/builtin/0x1.js.map +1 -1
  29. package/lib/sui/builtin/0x2.d.ts.map +1 -1
  30. package/lib/sui/builtin/0x2.js.map +1 -1
  31. package/lib/sui/builtin/0x3.d.ts.map +1 -1
  32. package/lib/sui/builtin/0x3.js.map +1 -1
  33. package/lib/sui/models.d.ts +5 -0
  34. package/lib/sui/models.d.ts.map +1 -1
  35. package/package.json +3 -3
  36. package/src/aptos/aptos-processor.ts +12 -8
  37. package/src/aptos/builtin/0x1.ts +317 -316
  38. package/src/aptos/builtin/0x3.ts +103 -102
  39. package/src/aptos/builtin/0x4.ts +23 -22
  40. package/src/aptos/codegen/codegen.ts +13 -1
  41. package/src/aptos/index.ts +2 -0
  42. package/src/aptos/models.ts +7 -0
  43. package/src/move/shared-network-codegen.ts +1 -0
  44. package/src/sui/builtin/0x1.ts +1 -0
  45. package/src/sui/builtin/0x2.ts +1 -0
  46. package/src/sui/builtin/0x3.ts +1 -0
  47. package/src/sui/models.ts +7 -0
@@ -10,6 +10,7 @@ import {
10
10
  AptosBaseProcessor,
11
11
  AptosNetwork,
12
12
  TypedFunctionPayload,
13
+ HandlerOptions,
13
14
  AptosContext,
14
15
  } from "@sentio/sdk/aptos";
15
16
 
@@ -104,13 +105,13 @@ export class dkg extends AptosBaseProcessor {
104
105
 
105
106
  onEventDKGStartEvent(
106
107
  func: (event: dkg.DKGStartEventInstance, ctx: AptosContext) => void,
107
- fetchConfig?: Partial<MoveFetchConfig>,
108
+ handlerOptions?: HandlerOptions<dkg.DKGStartEventInstance>,
108
109
  eventFilter?: Omit<EventFilter, "type" | "account">,
109
110
  ): dkg {
110
111
  this.onMoveEvent(
111
112
  func,
112
113
  { ...(eventFilter ?? {}), type: "dkg::DKGStartEvent" },
113
- fetchConfig,
114
+ handlerOptions,
114
115
  );
115
116
  return this;
116
117
  }
@@ -229,13 +230,13 @@ export class code extends AptosBaseProcessor {
229
230
 
230
231
  onEventPublishPackage(
231
232
  func: (event: code.PublishPackageInstance, ctx: AptosContext) => void,
232
- fetchConfig?: Partial<MoveFetchConfig>,
233
+ handlerOptions?: HandlerOptions<code.PublishPackageInstance>,
233
234
  eventFilter?: Omit<EventFilter, "type" | "account">,
234
235
  ): code {
235
236
  this.onMoveEvent(
236
237
  func,
237
238
  { ...(eventFilter ?? {}), type: "code::PublishPackage" },
238
- fetchConfig,
239
+ handlerOptions,
239
240
  );
240
241
  return this;
241
242
  }
@@ -562,39 +563,39 @@ export class coin extends AptosBaseProcessor {
562
563
 
563
564
  onEventDepositEvent(
564
565
  func: (event: coin.DepositEventInstance, ctx: AptosContext) => void,
565
- fetchConfig?: Partial<MoveFetchConfig>,
566
+ handlerOptions?: HandlerOptions<coin.DepositEventInstance>,
566
567
  eventFilter?: Omit<EventFilter, "type" | "account">,
567
568
  ): coin {
568
569
  this.onMoveEvent(
569
570
  func,
570
571
  { ...(eventFilter ?? {}), type: "coin::DepositEvent" },
571
- fetchConfig,
572
+ handlerOptions,
572
573
  );
573
574
  return this;
574
575
  }
575
576
 
576
577
  onEventWithdrawEvent(
577
578
  func: (event: coin.WithdrawEventInstance, ctx: AptosContext) => void,
578
- fetchConfig?: Partial<MoveFetchConfig>,
579
+ handlerOptions?: HandlerOptions<coin.WithdrawEventInstance>,
579
580
  eventFilter?: Omit<EventFilter, "type" | "account">,
580
581
  ): coin {
581
582
  this.onMoveEvent(
582
583
  func,
583
584
  { ...(eventFilter ?? {}), type: "coin::WithdrawEvent" },
584
- fetchConfig,
585
+ handlerOptions,
585
586
  );
586
587
  return this;
587
588
  }
588
589
 
589
590
  onEventCoinDeposit(
590
591
  func: (event: coin.CoinDepositInstance, ctx: AptosContext) => void,
591
- fetchConfig?: Partial<MoveFetchConfig>,
592
+ handlerOptions?: HandlerOptions<coin.CoinDepositInstance>,
592
593
  eventFilter?: Omit<EventFilter, "type" | "account">,
593
594
  ): coin {
594
595
  this.onMoveEvent(
595
596
  func,
596
597
  { ...(eventFilter ?? {}), type: "coin::CoinDeposit" },
597
- fetchConfig,
598
+ handlerOptions,
598
599
  );
599
600
  return this;
600
601
  }
@@ -604,52 +605,52 @@ export class coin extends AptosBaseProcessor {
604
605
  event: coin.CoinEventHandleDeletionInstance,
605
606
  ctx: AptosContext,
606
607
  ) => void,
607
- fetchConfig?: Partial<MoveFetchConfig>,
608
+ handlerOptions?: HandlerOptions<coin.CoinEventHandleDeletionInstance>,
608
609
  eventFilter?: Omit<EventFilter, "type" | "account">,
609
610
  ): coin {
610
611
  this.onMoveEvent(
611
612
  func,
612
613
  { ...(eventFilter ?? {}), type: "coin::CoinEventHandleDeletion" },
613
- fetchConfig,
614
+ handlerOptions,
614
615
  );
615
616
  return this;
616
617
  }
617
618
 
618
619
  onEventCoinStoreDeletion(
619
620
  func: (event: coin.CoinStoreDeletionInstance, ctx: AptosContext) => void,
620
- fetchConfig?: Partial<MoveFetchConfig>,
621
+ handlerOptions?: HandlerOptions<coin.CoinStoreDeletionInstance>,
621
622
  eventFilter?: Omit<EventFilter, "type" | "account">,
622
623
  ): coin {
623
624
  this.onMoveEvent(
624
625
  func,
625
626
  { ...(eventFilter ?? {}), type: "coin::CoinStoreDeletion" },
626
- fetchConfig,
627
+ handlerOptions,
627
628
  );
628
629
  return this;
629
630
  }
630
631
 
631
632
  onEventCoinWithdraw(
632
633
  func: (event: coin.CoinWithdrawInstance, ctx: AptosContext) => void,
633
- fetchConfig?: Partial<MoveFetchConfig>,
634
+ handlerOptions?: HandlerOptions<coin.CoinWithdrawInstance>,
634
635
  eventFilter?: Omit<EventFilter, "type" | "account">,
635
636
  ): coin {
636
637
  this.onMoveEvent(
637
638
  func,
638
639
  { ...(eventFilter ?? {}), type: "coin::CoinWithdraw" },
639
- fetchConfig,
640
+ handlerOptions,
640
641
  );
641
642
  return this;
642
643
  }
643
644
 
644
645
  onEventPairCreation(
645
646
  func: (event: coin.PairCreationInstance, ctx: AptosContext) => void,
646
- fetchConfig?: Partial<MoveFetchConfig>,
647
+ handlerOptions?: HandlerOptions<coin.PairCreationInstance>,
647
648
  eventFilter?: Omit<EventFilter, "type" | "account">,
648
649
  ): coin {
649
650
  this.onMoveEvent(
650
651
  func,
651
652
  { ...(eventFilter ?? {}), type: "coin::PairCreation" },
652
- fetchConfig,
653
+ handlerOptions,
653
654
  );
654
655
  return this;
655
656
  }
@@ -1731,13 +1732,13 @@ export class jwks extends AptosBaseProcessor {
1731
1732
 
1732
1733
  onEventObservedJWKsUpdated(
1733
1734
  func: (event: jwks.ObservedJWKsUpdatedInstance, ctx: AptosContext) => void,
1734
- fetchConfig?: Partial<MoveFetchConfig>,
1735
+ handlerOptions?: HandlerOptions<jwks.ObservedJWKsUpdatedInstance>,
1735
1736
  eventFilter?: Omit<EventFilter, "type" | "account">,
1736
1737
  ): jwks {
1737
1738
  this.onMoveEvent(
1738
1739
  func,
1739
1740
  { ...(eventFilter ?? {}), type: "jwks::ObservedJWKsUpdated" },
1740
- fetchConfig,
1741
+ handlerOptions,
1741
1742
  );
1742
1743
  return this;
1743
1744
  }
@@ -2064,39 +2065,39 @@ export class block extends AptosBaseProcessor {
2064
2065
 
2065
2066
  onEventNewBlock(
2066
2067
  func: (event: block.NewBlockInstance, ctx: AptosContext) => void,
2067
- fetchConfig?: Partial<MoveFetchConfig>,
2068
+ handlerOptions?: HandlerOptions<block.NewBlockInstance>,
2068
2069
  eventFilter?: Omit<EventFilter, "type" | "account">,
2069
2070
  ): block {
2070
2071
  this.onMoveEvent(
2071
2072
  func,
2072
2073
  { ...(eventFilter ?? {}), type: "block::NewBlock" },
2073
- fetchConfig,
2074
+ handlerOptions,
2074
2075
  );
2075
2076
  return this;
2076
2077
  }
2077
2078
 
2078
2079
  onEventNewBlockEvent(
2079
2080
  func: (event: block.NewBlockEventInstance, ctx: AptosContext) => void,
2080
- fetchConfig?: Partial<MoveFetchConfig>,
2081
+ handlerOptions?: HandlerOptions<block.NewBlockEventInstance>,
2081
2082
  eventFilter?: Omit<EventFilter, "type" | "account">,
2082
2083
  ): block {
2083
2084
  this.onMoveEvent(
2084
2085
  func,
2085
2086
  { ...(eventFilter ?? {}), type: "block::NewBlockEvent" },
2086
- fetchConfig,
2087
+ handlerOptions,
2087
2088
  );
2088
2089
  return this;
2089
2090
  }
2090
2091
 
2091
2092
  onEventUpdateEpochInterval(
2092
2093
  func: (event: block.UpdateEpochIntervalInstance, ctx: AptosContext) => void,
2093
- fetchConfig?: Partial<MoveFetchConfig>,
2094
+ handlerOptions?: HandlerOptions<block.UpdateEpochIntervalInstance>,
2094
2095
  eventFilter?: Omit<EventFilter, "type" | "account">,
2095
2096
  ): block {
2096
2097
  this.onMoveEvent(
2097
2098
  func,
2098
2099
  { ...(eventFilter ?? {}), type: "block::UpdateEpochInterval" },
2099
- fetchConfig,
2100
+ handlerOptions,
2100
2101
  );
2101
2102
  return this;
2102
2103
  }
@@ -2106,13 +2107,13 @@ export class block extends AptosBaseProcessor {
2106
2107
  event: block.UpdateEpochIntervalEventInstance,
2107
2108
  ctx: AptosContext,
2108
2109
  ) => void,
2109
- fetchConfig?: Partial<MoveFetchConfig>,
2110
+ handlerOptions?: HandlerOptions<block.UpdateEpochIntervalEventInstance>,
2110
2111
  eventFilter?: Omit<EventFilter, "type" | "account">,
2111
2112
  ): block {
2112
2113
  this.onMoveEvent(
2113
2114
  func,
2114
2115
  { ...(eventFilter ?? {}), type: "block::UpdateEpochIntervalEvent" },
2115
- fetchConfig,
2116
+ handlerOptions,
2116
2117
  );
2117
2118
  return this;
2118
2119
  }
@@ -2553,39 +2554,39 @@ export class stake extends AptosBaseProcessor {
2553
2554
 
2554
2555
  onEventAddStake(
2555
2556
  func: (event: stake.AddStakeInstance, ctx: AptosContext) => void,
2556
- fetchConfig?: Partial<MoveFetchConfig>,
2557
+ handlerOptions?: HandlerOptions<stake.AddStakeInstance>,
2557
2558
  eventFilter?: Omit<EventFilter, "type" | "account">,
2558
2559
  ): stake {
2559
2560
  this.onMoveEvent(
2560
2561
  func,
2561
2562
  { ...(eventFilter ?? {}), type: "stake::AddStake" },
2562
- fetchConfig,
2563
+ handlerOptions,
2563
2564
  );
2564
2565
  return this;
2565
2566
  }
2566
2567
 
2567
2568
  onEventAddStakeEvent(
2568
2569
  func: (event: stake.AddStakeEventInstance, ctx: AptosContext) => void,
2569
- fetchConfig?: Partial<MoveFetchConfig>,
2570
+ handlerOptions?: HandlerOptions<stake.AddStakeEventInstance>,
2570
2571
  eventFilter?: Omit<EventFilter, "type" | "account">,
2571
2572
  ): stake {
2572
2573
  this.onMoveEvent(
2573
2574
  func,
2574
2575
  { ...(eventFilter ?? {}), type: "stake::AddStakeEvent" },
2575
- fetchConfig,
2576
+ handlerOptions,
2576
2577
  );
2577
2578
  return this;
2578
2579
  }
2579
2580
 
2580
2581
  onEventDistributeRewards(
2581
2582
  func: (event: stake.DistributeRewardsInstance, ctx: AptosContext) => void,
2582
- fetchConfig?: Partial<MoveFetchConfig>,
2583
+ handlerOptions?: HandlerOptions<stake.DistributeRewardsInstance>,
2583
2584
  eventFilter?: Omit<EventFilter, "type" | "account">,
2584
2585
  ): stake {
2585
2586
  this.onMoveEvent(
2586
2587
  func,
2587
2588
  { ...(eventFilter ?? {}), type: "stake::DistributeRewards" },
2588
- fetchConfig,
2589
+ handlerOptions,
2589
2590
  );
2590
2591
  return this;
2591
2592
  }
@@ -2595,52 +2596,52 @@ export class stake extends AptosBaseProcessor {
2595
2596
  event: stake.DistributeRewardsEventInstance,
2596
2597
  ctx: AptosContext,
2597
2598
  ) => void,
2598
- fetchConfig?: Partial<MoveFetchConfig>,
2599
+ handlerOptions?: HandlerOptions<stake.DistributeRewardsEventInstance>,
2599
2600
  eventFilter?: Omit<EventFilter, "type" | "account">,
2600
2601
  ): stake {
2601
2602
  this.onMoveEvent(
2602
2603
  func,
2603
2604
  { ...(eventFilter ?? {}), type: "stake::DistributeRewardsEvent" },
2604
- fetchConfig,
2605
+ handlerOptions,
2605
2606
  );
2606
2607
  return this;
2607
2608
  }
2608
2609
 
2609
2610
  onEventIncreaseLockup(
2610
2611
  func: (event: stake.IncreaseLockupInstance, ctx: AptosContext) => void,
2611
- fetchConfig?: Partial<MoveFetchConfig>,
2612
+ handlerOptions?: HandlerOptions<stake.IncreaseLockupInstance>,
2612
2613
  eventFilter?: Omit<EventFilter, "type" | "account">,
2613
2614
  ): stake {
2614
2615
  this.onMoveEvent(
2615
2616
  func,
2616
2617
  { ...(eventFilter ?? {}), type: "stake::IncreaseLockup" },
2617
- fetchConfig,
2618
+ handlerOptions,
2618
2619
  );
2619
2620
  return this;
2620
2621
  }
2621
2622
 
2622
2623
  onEventIncreaseLockupEvent(
2623
2624
  func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void,
2624
- fetchConfig?: Partial<MoveFetchConfig>,
2625
+ handlerOptions?: HandlerOptions<stake.IncreaseLockupEventInstance>,
2625
2626
  eventFilter?: Omit<EventFilter, "type" | "account">,
2626
2627
  ): stake {
2627
2628
  this.onMoveEvent(
2628
2629
  func,
2629
2630
  { ...(eventFilter ?? {}), type: "stake::IncreaseLockupEvent" },
2630
- fetchConfig,
2631
+ handlerOptions,
2631
2632
  );
2632
2633
  return this;
2633
2634
  }
2634
2635
 
2635
2636
  onEventJoinValidatorSet(
2636
2637
  func: (event: stake.JoinValidatorSetInstance, ctx: AptosContext) => void,
2637
- fetchConfig?: Partial<MoveFetchConfig>,
2638
+ handlerOptions?: HandlerOptions<stake.JoinValidatorSetInstance>,
2638
2639
  eventFilter?: Omit<EventFilter, "type" | "account">,
2639
2640
  ): stake {
2640
2641
  this.onMoveEvent(
2641
2642
  func,
2642
2643
  { ...(eventFilter ?? {}), type: "stake::JoinValidatorSet" },
2643
- fetchConfig,
2644
+ handlerOptions,
2644
2645
  );
2645
2646
  return this;
2646
2647
  }
@@ -2650,26 +2651,26 @@ export class stake extends AptosBaseProcessor {
2650
2651
  event: stake.JoinValidatorSetEventInstance,
2651
2652
  ctx: AptosContext,
2652
2653
  ) => void,
2653
- fetchConfig?: Partial<MoveFetchConfig>,
2654
+ handlerOptions?: HandlerOptions<stake.JoinValidatorSetEventInstance>,
2654
2655
  eventFilter?: Omit<EventFilter, "type" | "account">,
2655
2656
  ): stake {
2656
2657
  this.onMoveEvent(
2657
2658
  func,
2658
2659
  { ...(eventFilter ?? {}), type: "stake::JoinValidatorSetEvent" },
2659
- fetchConfig,
2660
+ handlerOptions,
2660
2661
  );
2661
2662
  return this;
2662
2663
  }
2663
2664
 
2664
2665
  onEventLeaveValidatorSet(
2665
2666
  func: (event: stake.LeaveValidatorSetInstance, ctx: AptosContext) => void,
2666
- fetchConfig?: Partial<MoveFetchConfig>,
2667
+ handlerOptions?: HandlerOptions<stake.LeaveValidatorSetInstance>,
2667
2668
  eventFilter?: Omit<EventFilter, "type" | "account">,
2668
2669
  ): stake {
2669
2670
  this.onMoveEvent(
2670
2671
  func,
2671
2672
  { ...(eventFilter ?? {}), type: "stake::LeaveValidatorSet" },
2672
- fetchConfig,
2673
+ handlerOptions,
2673
2674
  );
2674
2675
  return this;
2675
2676
  }
@@ -2679,26 +2680,26 @@ export class stake extends AptosBaseProcessor {
2679
2680
  event: stake.LeaveValidatorSetEventInstance,
2680
2681
  ctx: AptosContext,
2681
2682
  ) => void,
2682
- fetchConfig?: Partial<MoveFetchConfig>,
2683
+ handlerOptions?: HandlerOptions<stake.LeaveValidatorSetEventInstance>,
2683
2684
  eventFilter?: Omit<EventFilter, "type" | "account">,
2684
2685
  ): stake {
2685
2686
  this.onMoveEvent(
2686
2687
  func,
2687
2688
  { ...(eventFilter ?? {}), type: "stake::LeaveValidatorSetEvent" },
2688
- fetchConfig,
2689
+ handlerOptions,
2689
2690
  );
2690
2691
  return this;
2691
2692
  }
2692
2693
 
2693
2694
  onEventReactivateStake(
2694
2695
  func: (event: stake.ReactivateStakeInstance, ctx: AptosContext) => void,
2695
- fetchConfig?: Partial<MoveFetchConfig>,
2696
+ handlerOptions?: HandlerOptions<stake.ReactivateStakeInstance>,
2696
2697
  eventFilter?: Omit<EventFilter, "type" | "account">,
2697
2698
  ): stake {
2698
2699
  this.onMoveEvent(
2699
2700
  func,
2700
2701
  { ...(eventFilter ?? {}), type: "stake::ReactivateStake" },
2701
- fetchConfig,
2702
+ handlerOptions,
2702
2703
  );
2703
2704
  return this;
2704
2705
  }
@@ -2708,13 +2709,13 @@ export class stake extends AptosBaseProcessor {
2708
2709
  event: stake.ReactivateStakeEventInstance,
2709
2710
  ctx: AptosContext,
2710
2711
  ) => void,
2711
- fetchConfig?: Partial<MoveFetchConfig>,
2712
+ handlerOptions?: HandlerOptions<stake.ReactivateStakeEventInstance>,
2712
2713
  eventFilter?: Omit<EventFilter, "type" | "account">,
2713
2714
  ): stake {
2714
2715
  this.onMoveEvent(
2715
2716
  func,
2716
2717
  { ...(eventFilter ?? {}), type: "stake::ReactivateStakeEvent" },
2717
- fetchConfig,
2718
+ handlerOptions,
2718
2719
  );
2719
2720
  return this;
2720
2721
  }
@@ -2724,13 +2725,13 @@ export class stake extends AptosBaseProcessor {
2724
2725
  event: stake.RegisterValidatorCandidateInstance,
2725
2726
  ctx: AptosContext,
2726
2727
  ) => void,
2727
- fetchConfig?: Partial<MoveFetchConfig>,
2728
+ handlerOptions?: HandlerOptions<stake.RegisterValidatorCandidateInstance>,
2728
2729
  eventFilter?: Omit<EventFilter, "type" | "account">,
2729
2730
  ): stake {
2730
2731
  this.onMoveEvent(
2731
2732
  func,
2732
2733
  { ...(eventFilter ?? {}), type: "stake::RegisterValidatorCandidate" },
2733
- fetchConfig,
2734
+ handlerOptions,
2734
2735
  );
2735
2736
  return this;
2736
2737
  }
@@ -2740,7 +2741,7 @@ export class stake extends AptosBaseProcessor {
2740
2741
  event: stake.RegisterValidatorCandidateEventInstance,
2741
2742
  ctx: AptosContext,
2742
2743
  ) => void,
2743
- fetchConfig?: Partial<MoveFetchConfig>,
2744
+ handlerOptions?: HandlerOptions<stake.RegisterValidatorCandidateEventInstance>,
2744
2745
  eventFilter?: Omit<EventFilter, "type" | "account">,
2745
2746
  ): stake {
2746
2747
  this.onMoveEvent(
@@ -2749,20 +2750,20 @@ export class stake extends AptosBaseProcessor {
2749
2750
  ...(eventFilter ?? {}),
2750
2751
  type: "stake::RegisterValidatorCandidateEvent",
2751
2752
  },
2752
- fetchConfig,
2753
+ handlerOptions,
2753
2754
  );
2754
2755
  return this;
2755
2756
  }
2756
2757
 
2757
2758
  onEventRotateConsensusKey(
2758
2759
  func: (event: stake.RotateConsensusKeyInstance, ctx: AptosContext) => void,
2759
- fetchConfig?: Partial<MoveFetchConfig>,
2760
+ handlerOptions?: HandlerOptions<stake.RotateConsensusKeyInstance>,
2760
2761
  eventFilter?: Omit<EventFilter, "type" | "account">,
2761
2762
  ): stake {
2762
2763
  this.onMoveEvent(
2763
2764
  func,
2764
2765
  { ...(eventFilter ?? {}), type: "stake::RotateConsensusKey" },
2765
- fetchConfig,
2766
+ handlerOptions,
2766
2767
  );
2767
2768
  return this;
2768
2769
  }
@@ -2772,65 +2773,65 @@ export class stake extends AptosBaseProcessor {
2772
2773
  event: stake.RotateConsensusKeyEventInstance,
2773
2774
  ctx: AptosContext,
2774
2775
  ) => void,
2775
- fetchConfig?: Partial<MoveFetchConfig>,
2776
+ handlerOptions?: HandlerOptions<stake.RotateConsensusKeyEventInstance>,
2776
2777
  eventFilter?: Omit<EventFilter, "type" | "account">,
2777
2778
  ): stake {
2778
2779
  this.onMoveEvent(
2779
2780
  func,
2780
2781
  { ...(eventFilter ?? {}), type: "stake::RotateConsensusKeyEvent" },
2781
- fetchConfig,
2782
+ handlerOptions,
2782
2783
  );
2783
2784
  return this;
2784
2785
  }
2785
2786
 
2786
2787
  onEventSetOperator(
2787
2788
  func: (event: stake.SetOperatorInstance, ctx: AptosContext) => void,
2788
- fetchConfig?: Partial<MoveFetchConfig>,
2789
+ handlerOptions?: HandlerOptions<stake.SetOperatorInstance>,
2789
2790
  eventFilter?: Omit<EventFilter, "type" | "account">,
2790
2791
  ): stake {
2791
2792
  this.onMoveEvent(
2792
2793
  func,
2793
2794
  { ...(eventFilter ?? {}), type: "stake::SetOperator" },
2794
- fetchConfig,
2795
+ handlerOptions,
2795
2796
  );
2796
2797
  return this;
2797
2798
  }
2798
2799
 
2799
2800
  onEventSetOperatorEvent(
2800
2801
  func: (event: stake.SetOperatorEventInstance, ctx: AptosContext) => void,
2801
- fetchConfig?: Partial<MoveFetchConfig>,
2802
+ handlerOptions?: HandlerOptions<stake.SetOperatorEventInstance>,
2802
2803
  eventFilter?: Omit<EventFilter, "type" | "account">,
2803
2804
  ): stake {
2804
2805
  this.onMoveEvent(
2805
2806
  func,
2806
2807
  { ...(eventFilter ?? {}), type: "stake::SetOperatorEvent" },
2807
- fetchConfig,
2808
+ handlerOptions,
2808
2809
  );
2809
2810
  return this;
2810
2811
  }
2811
2812
 
2812
2813
  onEventUnlockStake(
2813
2814
  func: (event: stake.UnlockStakeInstance, ctx: AptosContext) => void,
2814
- fetchConfig?: Partial<MoveFetchConfig>,
2815
+ handlerOptions?: HandlerOptions<stake.UnlockStakeInstance>,
2815
2816
  eventFilter?: Omit<EventFilter, "type" | "account">,
2816
2817
  ): stake {
2817
2818
  this.onMoveEvent(
2818
2819
  func,
2819
2820
  { ...(eventFilter ?? {}), type: "stake::UnlockStake" },
2820
- fetchConfig,
2821
+ handlerOptions,
2821
2822
  );
2822
2823
  return this;
2823
2824
  }
2824
2825
 
2825
2826
  onEventUnlockStakeEvent(
2826
2827
  func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void,
2827
- fetchConfig?: Partial<MoveFetchConfig>,
2828
+ handlerOptions?: HandlerOptions<stake.UnlockStakeEventInstance>,
2828
2829
  eventFilter?: Omit<EventFilter, "type" | "account">,
2829
2830
  ): stake {
2830
2831
  this.onMoveEvent(
2831
2832
  func,
2832
2833
  { ...(eventFilter ?? {}), type: "stake::UnlockStakeEvent" },
2833
- fetchConfig,
2834
+ handlerOptions,
2834
2835
  );
2835
2836
  return this;
2836
2837
  }
@@ -2840,7 +2841,7 @@ export class stake extends AptosBaseProcessor {
2840
2841
  event: stake.UpdateNetworkAndFullnodeAddressesInstance,
2841
2842
  ctx: AptosContext,
2842
2843
  ) => void,
2843
- fetchConfig?: Partial<MoveFetchConfig>,
2844
+ handlerOptions?: HandlerOptions<stake.UpdateNetworkAndFullnodeAddressesInstance>,
2844
2845
  eventFilter?: Omit<EventFilter, "type" | "account">,
2845
2846
  ): stake {
2846
2847
  this.onMoveEvent(
@@ -2849,7 +2850,7 @@ export class stake extends AptosBaseProcessor {
2849
2850
  ...(eventFilter ?? {}),
2850
2851
  type: "stake::UpdateNetworkAndFullnodeAddresses",
2851
2852
  },
2852
- fetchConfig,
2853
+ handlerOptions,
2853
2854
  );
2854
2855
  return this;
2855
2856
  }
@@ -2859,7 +2860,7 @@ export class stake extends AptosBaseProcessor {
2859
2860
  event: stake.UpdateNetworkAndFullnodeAddressesEventInstance,
2860
2861
  ctx: AptosContext,
2861
2862
  ) => void,
2862
- fetchConfig?: Partial<MoveFetchConfig>,
2863
+ handlerOptions?: HandlerOptions<stake.UpdateNetworkAndFullnodeAddressesEventInstance>,
2863
2864
  eventFilter?: Omit<EventFilter, "type" | "account">,
2864
2865
  ): stake {
2865
2866
  this.onMoveEvent(
@@ -2868,33 +2869,33 @@ export class stake extends AptosBaseProcessor {
2868
2869
  ...(eventFilter ?? {}),
2869
2870
  type: "stake::UpdateNetworkAndFullnodeAddressesEvent",
2870
2871
  },
2871
- fetchConfig,
2872
+ handlerOptions,
2872
2873
  );
2873
2874
  return this;
2874
2875
  }
2875
2876
 
2876
2877
  onEventWithdrawStake(
2877
2878
  func: (event: stake.WithdrawStakeInstance, ctx: AptosContext) => void,
2878
- fetchConfig?: Partial<MoveFetchConfig>,
2879
+ handlerOptions?: HandlerOptions<stake.WithdrawStakeInstance>,
2879
2880
  eventFilter?: Omit<EventFilter, "type" | "account">,
2880
2881
  ): stake {
2881
2882
  this.onMoveEvent(
2882
2883
  func,
2883
2884
  { ...(eventFilter ?? {}), type: "stake::WithdrawStake" },
2884
- fetchConfig,
2885
+ handlerOptions,
2885
2886
  );
2886
2887
  return this;
2887
2888
  }
2888
2889
 
2889
2890
  onEventWithdrawStakeEvent(
2890
2891
  func: (event: stake.WithdrawStakeEventInstance, ctx: AptosContext) => void,
2891
- fetchConfig?: Partial<MoveFetchConfig>,
2892
+ handlerOptions?: HandlerOptions<stake.WithdrawStakeEventInstance>,
2892
2893
  eventFilter?: Omit<EventFilter, "type" | "account">,
2893
2894
  ): stake {
2894
2895
  this.onMoveEvent(
2895
2896
  func,
2896
2897
  { ...(eventFilter ?? {}), type: "stake::WithdrawStakeEvent" },
2897
- fetchConfig,
2898
+ handlerOptions,
2898
2899
  );
2899
2900
  return this;
2900
2901
  }
@@ -4413,26 +4414,26 @@ export class object$ extends AptosBaseProcessor {
4413
4414
 
4414
4415
  onEventTransfer(
4415
4416
  func: (event: object$.TransferInstance, ctx: AptosContext) => void,
4416
- fetchConfig?: Partial<MoveFetchConfig>,
4417
+ handlerOptions?: HandlerOptions<object$.TransferInstance>,
4417
4418
  eventFilter?: Omit<EventFilter, "type" | "account">,
4418
4419
  ): object$ {
4419
4420
  this.onMoveEvent(
4420
4421
  func,
4421
4422
  { ...(eventFilter ?? {}), type: "object::Transfer" },
4422
- fetchConfig,
4423
+ handlerOptions,
4423
4424
  );
4424
4425
  return this;
4425
4426
  }
4426
4427
 
4427
4428
  onEventTransferEvent(
4428
4429
  func: (event: object$.TransferEventInstance, ctx: AptosContext) => void,
4429
- fetchConfig?: Partial<MoveFetchConfig>,
4430
+ handlerOptions?: HandlerOptions<object$.TransferEventInstance>,
4430
4431
  eventFilter?: Omit<EventFilter, "type" | "account">,
4431
4432
  ): object$ {
4432
4433
  this.onMoveEvent(
4433
4434
  func,
4434
4435
  { ...(eventFilter ?? {}), type: "object::TransferEvent" },
4435
- fetchConfig,
4436
+ handlerOptions,
4436
4437
  );
4437
4438
  return this;
4438
4439
  }
@@ -4926,13 +4927,13 @@ export class voting extends AptosBaseProcessor {
4926
4927
 
4927
4928
  onEventCreateProposal(
4928
4929
  func: (event: voting.CreateProposalInstance, ctx: AptosContext) => void,
4929
- fetchConfig?: Partial<MoveFetchConfig>,
4930
+ handlerOptions?: HandlerOptions<voting.CreateProposalInstance>,
4930
4931
  eventFilter?: Omit<EventFilter, "type" | "account">,
4931
4932
  ): voting {
4932
4933
  this.onMoveEvent(
4933
4934
  func,
4934
4935
  { ...(eventFilter ?? {}), type: "voting::CreateProposal" },
4935
- fetchConfig,
4936
+ handlerOptions,
4936
4937
  );
4937
4938
  return this;
4938
4939
  }
@@ -4942,78 +4943,78 @@ export class voting extends AptosBaseProcessor {
4942
4943
  event: voting.CreateProposalEventInstance,
4943
4944
  ctx: AptosContext,
4944
4945
  ) => void,
4945
- fetchConfig?: Partial<MoveFetchConfig>,
4946
+ handlerOptions?: HandlerOptions<voting.CreateProposalEventInstance>,
4946
4947
  eventFilter?: Omit<EventFilter, "type" | "account">,
4947
4948
  ): voting {
4948
4949
  this.onMoveEvent(
4949
4950
  func,
4950
4951
  { ...(eventFilter ?? {}), type: "voting::CreateProposalEvent" },
4951
- fetchConfig,
4952
+ handlerOptions,
4952
4953
  );
4953
4954
  return this;
4954
4955
  }
4955
4956
 
4956
4957
  onEventRegisterForum(
4957
4958
  func: (event: voting.RegisterForumInstance, ctx: AptosContext) => void,
4958
- fetchConfig?: Partial<MoveFetchConfig>,
4959
+ handlerOptions?: HandlerOptions<voting.RegisterForumInstance>,
4959
4960
  eventFilter?: Omit<EventFilter, "type" | "account">,
4960
4961
  ): voting {
4961
4962
  this.onMoveEvent(
4962
4963
  func,
4963
4964
  { ...(eventFilter ?? {}), type: "voting::RegisterForum" },
4964
- fetchConfig,
4965
+ handlerOptions,
4965
4966
  );
4966
4967
  return this;
4967
4968
  }
4968
4969
 
4969
4970
  onEventRegisterForumEvent(
4970
4971
  func: (event: voting.RegisterForumEventInstance, ctx: AptosContext) => void,
4971
- fetchConfig?: Partial<MoveFetchConfig>,
4972
+ handlerOptions?: HandlerOptions<voting.RegisterForumEventInstance>,
4972
4973
  eventFilter?: Omit<EventFilter, "type" | "account">,
4973
4974
  ): voting {
4974
4975
  this.onMoveEvent(
4975
4976
  func,
4976
4977
  { ...(eventFilter ?? {}), type: "voting::RegisterForumEvent" },
4977
- fetchConfig,
4978
+ handlerOptions,
4978
4979
  );
4979
4980
  return this;
4980
4981
  }
4981
4982
 
4982
4983
  onEventResolveProposal(
4983
4984
  func: (event: voting.ResolveProposalInstance, ctx: AptosContext) => void,
4984
- fetchConfig?: Partial<MoveFetchConfig>,
4985
+ handlerOptions?: HandlerOptions<voting.ResolveProposalInstance>,
4985
4986
  eventFilter?: Omit<EventFilter, "type" | "account">,
4986
4987
  ): voting {
4987
4988
  this.onMoveEvent(
4988
4989
  func,
4989
4990
  { ...(eventFilter ?? {}), type: "voting::ResolveProposal" },
4990
- fetchConfig,
4991
+ handlerOptions,
4991
4992
  );
4992
4993
  return this;
4993
4994
  }
4994
4995
 
4995
4996
  onEventVote(
4996
4997
  func: (event: voting.VoteInstance, ctx: AptosContext) => void,
4997
- fetchConfig?: Partial<MoveFetchConfig>,
4998
+ handlerOptions?: HandlerOptions<voting.VoteInstance>,
4998
4999
  eventFilter?: Omit<EventFilter, "type" | "account">,
4999
5000
  ): voting {
5000
5001
  this.onMoveEvent(
5001
5002
  func,
5002
5003
  { ...(eventFilter ?? {}), type: "voting::Vote" },
5003
- fetchConfig,
5004
+ handlerOptions,
5004
5005
  );
5005
5006
  return this;
5006
5007
  }
5007
5008
 
5008
5009
  onEventVoteEvent(
5009
5010
  func: (event: voting.VoteEventInstance, ctx: AptosContext) => void,
5010
- fetchConfig?: Partial<MoveFetchConfig>,
5011
+ handlerOptions?: HandlerOptions<voting.VoteEventInstance>,
5011
5012
  eventFilter?: Omit<EventFilter, "type" | "account">,
5012
5013
  ): voting {
5013
5014
  this.onMoveEvent(
5014
5015
  func,
5015
5016
  { ...(eventFilter ?? {}), type: "voting::VoteEvent" },
5016
- fetchConfig,
5017
+ handlerOptions,
5017
5018
  );
5018
5019
  return this;
5019
5020
  }
@@ -5799,52 +5800,52 @@ export class account extends AptosBaseProcessor {
5799
5800
 
5800
5801
  onEventCoinRegister(
5801
5802
  func: (event: account.CoinRegisterInstance, ctx: AptosContext) => void,
5802
- fetchConfig?: Partial<MoveFetchConfig>,
5803
+ handlerOptions?: HandlerOptions<account.CoinRegisterInstance>,
5803
5804
  eventFilter?: Omit<EventFilter, "type" | "account">,
5804
5805
  ): account {
5805
5806
  this.onMoveEvent(
5806
5807
  func,
5807
5808
  { ...(eventFilter ?? {}), type: "account::CoinRegister" },
5808
- fetchConfig,
5809
+ handlerOptions,
5809
5810
  );
5810
5811
  return this;
5811
5812
  }
5812
5813
 
5813
5814
  onEventCoinRegisterEvent(
5814
5815
  func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void,
5815
- fetchConfig?: Partial<MoveFetchConfig>,
5816
+ handlerOptions?: HandlerOptions<account.CoinRegisterEventInstance>,
5816
5817
  eventFilter?: Omit<EventFilter, "type" | "account">,
5817
5818
  ): account {
5818
5819
  this.onMoveEvent(
5819
5820
  func,
5820
5821
  { ...(eventFilter ?? {}), type: "account::CoinRegisterEvent" },
5821
- fetchConfig,
5822
+ handlerOptions,
5822
5823
  );
5823
5824
  return this;
5824
5825
  }
5825
5826
 
5826
5827
  onEventKeyRotation(
5827
5828
  func: (event: account.KeyRotationInstance, ctx: AptosContext) => void,
5828
- fetchConfig?: Partial<MoveFetchConfig>,
5829
+ handlerOptions?: HandlerOptions<account.KeyRotationInstance>,
5829
5830
  eventFilter?: Omit<EventFilter, "type" | "account">,
5830
5831
  ): account {
5831
5832
  this.onMoveEvent(
5832
5833
  func,
5833
5834
  { ...(eventFilter ?? {}), type: "account::KeyRotation" },
5834
- fetchConfig,
5835
+ handlerOptions,
5835
5836
  );
5836
5837
  return this;
5837
5838
  }
5838
5839
 
5839
5840
  onEventKeyRotationEvent(
5840
5841
  func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void,
5841
- fetchConfig?: Partial<MoveFetchConfig>,
5842
+ handlerOptions?: HandlerOptions<account.KeyRotationEventInstance>,
5842
5843
  eventFilter?: Omit<EventFilter, "type" | "account">,
5843
5844
  ): account {
5844
5845
  this.onMoveEvent(
5845
5846
  func,
5846
5847
  { ...(eventFilter ?? {}), type: "account::KeyRotationEvent" },
5847
- fetchConfig,
5848
+ handlerOptions,
5848
5849
  );
5849
5850
  return this;
5850
5851
  }
@@ -7257,91 +7258,91 @@ export class vesting extends AptosBaseProcessor {
7257
7258
 
7258
7259
  onEventDistribute(
7259
7260
  func: (event: vesting.DistributeInstance, ctx: AptosContext) => void,
7260
- fetchConfig?: Partial<MoveFetchConfig>,
7261
+ handlerOptions?: HandlerOptions<vesting.DistributeInstance>,
7261
7262
  eventFilter?: Omit<EventFilter, "type" | "account">,
7262
7263
  ): vesting {
7263
7264
  this.onMoveEvent(
7264
7265
  func,
7265
7266
  { ...(eventFilter ?? {}), type: "vesting::Distribute" },
7266
- fetchConfig,
7267
+ handlerOptions,
7267
7268
  );
7268
7269
  return this;
7269
7270
  }
7270
7271
 
7271
7272
  onEventDistributeEvent(
7272
7273
  func: (event: vesting.DistributeEventInstance, ctx: AptosContext) => void,
7273
- fetchConfig?: Partial<MoveFetchConfig>,
7274
+ handlerOptions?: HandlerOptions<vesting.DistributeEventInstance>,
7274
7275
  eventFilter?: Omit<EventFilter, "type" | "account">,
7275
7276
  ): vesting {
7276
7277
  this.onMoveEvent(
7277
7278
  func,
7278
7279
  { ...(eventFilter ?? {}), type: "vesting::DistributeEvent" },
7279
- fetchConfig,
7280
+ handlerOptions,
7280
7281
  );
7281
7282
  return this;
7282
7283
  }
7283
7284
 
7284
7285
  onEventResetLockup(
7285
7286
  func: (event: vesting.ResetLockupInstance, ctx: AptosContext) => void,
7286
- fetchConfig?: Partial<MoveFetchConfig>,
7287
+ handlerOptions?: HandlerOptions<vesting.ResetLockupInstance>,
7287
7288
  eventFilter?: Omit<EventFilter, "type" | "account">,
7288
7289
  ): vesting {
7289
7290
  this.onMoveEvent(
7290
7291
  func,
7291
7292
  { ...(eventFilter ?? {}), type: "vesting::ResetLockup" },
7292
- fetchConfig,
7293
+ handlerOptions,
7293
7294
  );
7294
7295
  return this;
7295
7296
  }
7296
7297
 
7297
7298
  onEventResetLockupEvent(
7298
7299
  func: (event: vesting.ResetLockupEventInstance, ctx: AptosContext) => void,
7299
- fetchConfig?: Partial<MoveFetchConfig>,
7300
+ handlerOptions?: HandlerOptions<vesting.ResetLockupEventInstance>,
7300
7301
  eventFilter?: Omit<EventFilter, "type" | "account">,
7301
7302
  ): vesting {
7302
7303
  this.onMoveEvent(
7303
7304
  func,
7304
7305
  { ...(eventFilter ?? {}), type: "vesting::ResetLockupEvent" },
7305
- fetchConfig,
7306
+ handlerOptions,
7306
7307
  );
7307
7308
  return this;
7308
7309
  }
7309
7310
 
7310
7311
  onEventUpdateVoter(
7311
7312
  func: (event: vesting.UpdateVoterInstance, ctx: AptosContext) => void,
7312
- fetchConfig?: Partial<MoveFetchConfig>,
7313
+ handlerOptions?: HandlerOptions<vesting.UpdateVoterInstance>,
7313
7314
  eventFilter?: Omit<EventFilter, "type" | "account">,
7314
7315
  ): vesting {
7315
7316
  this.onMoveEvent(
7316
7317
  func,
7317
7318
  { ...(eventFilter ?? {}), type: "vesting::UpdateVoter" },
7318
- fetchConfig,
7319
+ handlerOptions,
7319
7320
  );
7320
7321
  return this;
7321
7322
  }
7322
7323
 
7323
7324
  onEventUpdateVoterEvent(
7324
7325
  func: (event: vesting.UpdateVoterEventInstance, ctx: AptosContext) => void,
7325
- fetchConfig?: Partial<MoveFetchConfig>,
7326
+ handlerOptions?: HandlerOptions<vesting.UpdateVoterEventInstance>,
7326
7327
  eventFilter?: Omit<EventFilter, "type" | "account">,
7327
7328
  ): vesting {
7328
7329
  this.onMoveEvent(
7329
7330
  func,
7330
7331
  { ...(eventFilter ?? {}), type: "vesting::UpdateVoterEvent" },
7331
- fetchConfig,
7332
+ handlerOptions,
7332
7333
  );
7333
7334
  return this;
7334
7335
  }
7335
7336
 
7336
7337
  onEventAdminWithdraw(
7337
7338
  func: (event: vesting.AdminWithdrawInstance, ctx: AptosContext) => void,
7338
- fetchConfig?: Partial<MoveFetchConfig>,
7339
+ handlerOptions?: HandlerOptions<vesting.AdminWithdrawInstance>,
7339
7340
  eventFilter?: Omit<EventFilter, "type" | "account">,
7340
7341
  ): vesting {
7341
7342
  this.onMoveEvent(
7342
7343
  func,
7343
7344
  { ...(eventFilter ?? {}), type: "vesting::AdminWithdraw" },
7344
- fetchConfig,
7345
+ handlerOptions,
7345
7346
  );
7346
7347
  return this;
7347
7348
  }
@@ -7351,13 +7352,13 @@ export class vesting extends AptosBaseProcessor {
7351
7352
  event: vesting.AdminWithdrawEventInstance,
7352
7353
  ctx: AptosContext,
7353
7354
  ) => void,
7354
- fetchConfig?: Partial<MoveFetchConfig>,
7355
+ handlerOptions?: HandlerOptions<vesting.AdminWithdrawEventInstance>,
7355
7356
  eventFilter?: Omit<EventFilter, "type" | "account">,
7356
7357
  ): vesting {
7357
7358
  this.onMoveEvent(
7358
7359
  func,
7359
7360
  { ...(eventFilter ?? {}), type: "vesting::AdminWithdrawEvent" },
7360
- fetchConfig,
7361
+ handlerOptions,
7361
7362
  );
7362
7363
  return this;
7363
7364
  }
@@ -7367,13 +7368,13 @@ export class vesting extends AptosBaseProcessor {
7367
7368
  event: vesting.CreateVestingContractInstance,
7368
7369
  ctx: AptosContext,
7369
7370
  ) => void,
7370
- fetchConfig?: Partial<MoveFetchConfig>,
7371
+ handlerOptions?: HandlerOptions<vesting.CreateVestingContractInstance>,
7371
7372
  eventFilter?: Omit<EventFilter, "type" | "account">,
7372
7373
  ): vesting {
7373
7374
  this.onMoveEvent(
7374
7375
  func,
7375
7376
  { ...(eventFilter ?? {}), type: "vesting::CreateVestingContract" },
7376
- fetchConfig,
7377
+ handlerOptions,
7377
7378
  );
7378
7379
  return this;
7379
7380
  }
@@ -7383,26 +7384,26 @@ export class vesting extends AptosBaseProcessor {
7383
7384
  event: vesting.CreateVestingContractEventInstance,
7384
7385
  ctx: AptosContext,
7385
7386
  ) => void,
7386
- fetchConfig?: Partial<MoveFetchConfig>,
7387
+ handlerOptions?: HandlerOptions<vesting.CreateVestingContractEventInstance>,
7387
7388
  eventFilter?: Omit<EventFilter, "type" | "account">,
7388
7389
  ): vesting {
7389
7390
  this.onMoveEvent(
7390
7391
  func,
7391
7392
  { ...(eventFilter ?? {}), type: "vesting::CreateVestingContractEvent" },
7392
- fetchConfig,
7393
+ handlerOptions,
7393
7394
  );
7394
7395
  return this;
7395
7396
  }
7396
7397
 
7397
7398
  onEventSetBeneficiary(
7398
7399
  func: (event: vesting.SetBeneficiaryInstance, ctx: AptosContext) => void,
7399
- fetchConfig?: Partial<MoveFetchConfig>,
7400
+ handlerOptions?: HandlerOptions<vesting.SetBeneficiaryInstance>,
7400
7401
  eventFilter?: Omit<EventFilter, "type" | "account">,
7401
7402
  ): vesting {
7402
7403
  this.onMoveEvent(
7403
7404
  func,
7404
7405
  { ...(eventFilter ?? {}), type: "vesting::SetBeneficiary" },
7405
- fetchConfig,
7406
+ handlerOptions,
7406
7407
  );
7407
7408
  return this;
7408
7409
  }
@@ -7412,52 +7413,52 @@ export class vesting extends AptosBaseProcessor {
7412
7413
  event: vesting.SetBeneficiaryEventInstance,
7413
7414
  ctx: AptosContext,
7414
7415
  ) => void,
7415
- fetchConfig?: Partial<MoveFetchConfig>,
7416
+ handlerOptions?: HandlerOptions<vesting.SetBeneficiaryEventInstance>,
7416
7417
  eventFilter?: Omit<EventFilter, "type" | "account">,
7417
7418
  ): vesting {
7418
7419
  this.onMoveEvent(
7419
7420
  func,
7420
7421
  { ...(eventFilter ?? {}), type: "vesting::SetBeneficiaryEvent" },
7421
- fetchConfig,
7422
+ handlerOptions,
7422
7423
  );
7423
7424
  return this;
7424
7425
  }
7425
7426
 
7426
7427
  onEventTerminate(
7427
7428
  func: (event: vesting.TerminateInstance, ctx: AptosContext) => void,
7428
- fetchConfig?: Partial<MoveFetchConfig>,
7429
+ handlerOptions?: HandlerOptions<vesting.TerminateInstance>,
7429
7430
  eventFilter?: Omit<EventFilter, "type" | "account">,
7430
7431
  ): vesting {
7431
7432
  this.onMoveEvent(
7432
7433
  func,
7433
7434
  { ...(eventFilter ?? {}), type: "vesting::Terminate" },
7434
- fetchConfig,
7435
+ handlerOptions,
7435
7436
  );
7436
7437
  return this;
7437
7438
  }
7438
7439
 
7439
7440
  onEventTerminateEvent(
7440
7441
  func: (event: vesting.TerminateEventInstance, ctx: AptosContext) => void,
7441
- fetchConfig?: Partial<MoveFetchConfig>,
7442
+ handlerOptions?: HandlerOptions<vesting.TerminateEventInstance>,
7442
7443
  eventFilter?: Omit<EventFilter, "type" | "account">,
7443
7444
  ): vesting {
7444
7445
  this.onMoveEvent(
7445
7446
  func,
7446
7447
  { ...(eventFilter ?? {}), type: "vesting::TerminateEvent" },
7447
- fetchConfig,
7448
+ handlerOptions,
7448
7449
  );
7449
7450
  return this;
7450
7451
  }
7451
7452
 
7452
7453
  onEventUnlockRewards(
7453
7454
  func: (event: vesting.UnlockRewardsInstance, ctx: AptosContext) => void,
7454
- fetchConfig?: Partial<MoveFetchConfig>,
7455
+ handlerOptions?: HandlerOptions<vesting.UnlockRewardsInstance>,
7455
7456
  eventFilter?: Omit<EventFilter, "type" | "account">,
7456
7457
  ): vesting {
7457
7458
  this.onMoveEvent(
7458
7459
  func,
7459
7460
  { ...(eventFilter ?? {}), type: "vesting::UnlockRewards" },
7460
- fetchConfig,
7461
+ handlerOptions,
7461
7462
  );
7462
7463
  return this;
7463
7464
  }
@@ -7467,26 +7468,26 @@ export class vesting extends AptosBaseProcessor {
7467
7468
  event: vesting.UnlockRewardsEventInstance,
7468
7469
  ctx: AptosContext,
7469
7470
  ) => void,
7470
- fetchConfig?: Partial<MoveFetchConfig>,
7471
+ handlerOptions?: HandlerOptions<vesting.UnlockRewardsEventInstance>,
7471
7472
  eventFilter?: Omit<EventFilter, "type" | "account">,
7472
7473
  ): vesting {
7473
7474
  this.onMoveEvent(
7474
7475
  func,
7475
7476
  { ...(eventFilter ?? {}), type: "vesting::UnlockRewardsEvent" },
7476
- fetchConfig,
7477
+ handlerOptions,
7477
7478
  );
7478
7479
  return this;
7479
7480
  }
7480
7481
 
7481
7482
  onEventUpdateOperator(
7482
7483
  func: (event: vesting.UpdateOperatorInstance, ctx: AptosContext) => void,
7483
- fetchConfig?: Partial<MoveFetchConfig>,
7484
+ handlerOptions?: HandlerOptions<vesting.UpdateOperatorInstance>,
7484
7485
  eventFilter?: Omit<EventFilter, "type" | "account">,
7485
7486
  ): vesting {
7486
7487
  this.onMoveEvent(
7487
7488
  func,
7488
7489
  { ...(eventFilter ?? {}), type: "vesting::UpdateOperator" },
7489
- fetchConfig,
7490
+ handlerOptions,
7490
7491
  );
7491
7492
  return this;
7492
7493
  }
@@ -7496,39 +7497,39 @@ export class vesting extends AptosBaseProcessor {
7496
7497
  event: vesting.UpdateOperatorEventInstance,
7497
7498
  ctx: AptosContext,
7498
7499
  ) => void,
7499
- fetchConfig?: Partial<MoveFetchConfig>,
7500
+ handlerOptions?: HandlerOptions<vesting.UpdateOperatorEventInstance>,
7500
7501
  eventFilter?: Omit<EventFilter, "type" | "account">,
7501
7502
  ): vesting {
7502
7503
  this.onMoveEvent(
7503
7504
  func,
7504
7505
  { ...(eventFilter ?? {}), type: "vesting::UpdateOperatorEvent" },
7505
- fetchConfig,
7506
+ handlerOptions,
7506
7507
  );
7507
7508
  return this;
7508
7509
  }
7509
7510
 
7510
7511
  onEventVest(
7511
7512
  func: (event: vesting.VestInstance, ctx: AptosContext) => void,
7512
- fetchConfig?: Partial<MoveFetchConfig>,
7513
+ handlerOptions?: HandlerOptions<vesting.VestInstance>,
7513
7514
  eventFilter?: Omit<EventFilter, "type" | "account">,
7514
7515
  ): vesting {
7515
7516
  this.onMoveEvent(
7516
7517
  func,
7517
7518
  { ...(eventFilter ?? {}), type: "vesting::Vest" },
7518
- fetchConfig,
7519
+ handlerOptions,
7519
7520
  );
7520
7521
  return this;
7521
7522
  }
7522
7523
 
7523
7524
  onEventVestEvent(
7524
7525
  func: (event: vesting.VestEventInstance, ctx: AptosContext) => void,
7525
- fetchConfig?: Partial<MoveFetchConfig>,
7526
+ handlerOptions?: HandlerOptions<vesting.VestEventInstance>,
7526
7527
  eventFilter?: Omit<EventFilter, "type" | "account">,
7527
7528
  ): vesting {
7528
7529
  this.onMoveEvent(
7529
7530
  func,
7530
7531
  { ...(eventFilter ?? {}), type: "vesting::VestEvent" },
7531
- fetchConfig,
7532
+ handlerOptions,
7532
7533
  );
7533
7534
  return this;
7534
7535
  }
@@ -9824,13 +9825,13 @@ export class randomness extends AptosBaseProcessor {
9824
9825
  event: randomness.RandomnessGeneratedEventInstance,
9825
9826
  ctx: AptosContext,
9826
9827
  ) => void,
9827
- fetchConfig?: Partial<MoveFetchConfig>,
9828
+ handlerOptions?: HandlerOptions<randomness.RandomnessGeneratedEventInstance>,
9828
9829
  eventFilter?: Omit<EventFilter, "type" | "account">,
9829
9830
  ): randomness {
9830
9831
  this.onMoveEvent(
9831
9832
  func,
9832
9833
  { ...(eventFilter ?? {}), type: "randomness::RandomnessGeneratedEvent" },
9833
- fetchConfig,
9834
+ handlerOptions,
9834
9835
  );
9835
9836
  return this;
9836
9837
  }
@@ -10893,7 +10894,7 @@ export class aptos_account extends AptosBaseProcessor {
10893
10894
  event: aptos_account.DirectCoinTransferConfigUpdatedInstance,
10894
10895
  ctx: AptosContext,
10895
10896
  ) => void,
10896
- fetchConfig?: Partial<MoveFetchConfig>,
10897
+ handlerOptions?: HandlerOptions<aptos_account.DirectCoinTransferConfigUpdatedInstance>,
10897
10898
  eventFilter?: Omit<EventFilter, "type" | "account">,
10898
10899
  ): aptos_account {
10899
10900
  this.onMoveEvent(
@@ -10902,7 +10903,7 @@ export class aptos_account extends AptosBaseProcessor {
10902
10903
  ...(eventFilter ?? {}),
10903
10904
  type: "aptos_account::DirectCoinTransferConfigUpdated",
10904
10905
  },
10905
- fetchConfig,
10906
+ handlerOptions,
10906
10907
  );
10907
10908
  return this;
10908
10909
  }
@@ -10912,7 +10913,7 @@ export class aptos_account extends AptosBaseProcessor {
10912
10913
  event: aptos_account.DirectCoinTransferConfigUpdatedEventInstance,
10913
10914
  ctx: AptosContext,
10914
10915
  ) => void,
10915
- fetchConfig?: Partial<MoveFetchConfig>,
10916
+ handlerOptions?: HandlerOptions<aptos_account.DirectCoinTransferConfigUpdatedEventInstance>,
10916
10917
  eventFilter?: Omit<EventFilter, "type" | "account">,
10917
10918
  ): aptos_account {
10918
10919
  this.onMoveEvent(
@@ -10921,7 +10922,7 @@ export class aptos_account extends AptosBaseProcessor {
10921
10922
  ...(eventFilter ?? {}),
10922
10923
  type: "aptos_account::DirectCoinTransferConfigUpdatedEvent",
10923
10924
  },
10924
- fetchConfig,
10925
+ handlerOptions,
10925
10926
  );
10926
10927
  return this;
10927
10928
  }
@@ -12229,13 +12230,13 @@ export class fungible_asset extends AptosBaseProcessor {
12229
12230
 
12230
12231
  onEventDeposit(
12231
12232
  func: (event: fungible_asset.DepositInstance, ctx: AptosContext) => void,
12232
- fetchConfig?: Partial<MoveFetchConfig>,
12233
+ handlerOptions?: HandlerOptions<fungible_asset.DepositInstance>,
12233
12234
  eventFilter?: Omit<EventFilter, "type" | "account">,
12234
12235
  ): fungible_asset {
12235
12236
  this.onMoveEvent(
12236
12237
  func,
12237
12238
  { ...(eventFilter ?? {}), type: "fungible_asset::Deposit" },
12238
- fetchConfig,
12239
+ handlerOptions,
12239
12240
  );
12240
12241
  return this;
12241
12242
  }
@@ -12245,26 +12246,26 @@ export class fungible_asset extends AptosBaseProcessor {
12245
12246
  event: fungible_asset.DepositEventInstance,
12246
12247
  ctx: AptosContext,
12247
12248
  ) => void,
12248
- fetchConfig?: Partial<MoveFetchConfig>,
12249
+ handlerOptions?: HandlerOptions<fungible_asset.DepositEventInstance>,
12249
12250
  eventFilter?: Omit<EventFilter, "type" | "account">,
12250
12251
  ): fungible_asset {
12251
12252
  this.onMoveEvent(
12252
12253
  func,
12253
12254
  { ...(eventFilter ?? {}), type: "fungible_asset::DepositEvent" },
12254
- fetchConfig,
12255
+ handlerOptions,
12255
12256
  );
12256
12257
  return this;
12257
12258
  }
12258
12259
 
12259
12260
  onEventFrozen(
12260
12261
  func: (event: fungible_asset.FrozenInstance, ctx: AptosContext) => void,
12261
- fetchConfig?: Partial<MoveFetchConfig>,
12262
+ handlerOptions?: HandlerOptions<fungible_asset.FrozenInstance>,
12262
12263
  eventFilter?: Omit<EventFilter, "type" | "account">,
12263
12264
  ): fungible_asset {
12264
12265
  this.onMoveEvent(
12265
12266
  func,
12266
12267
  { ...(eventFilter ?? {}), type: "fungible_asset::Frozen" },
12267
- fetchConfig,
12268
+ handlerOptions,
12268
12269
  );
12269
12270
  return this;
12270
12271
  }
@@ -12274,13 +12275,13 @@ export class fungible_asset extends AptosBaseProcessor {
12274
12275
  event: fungible_asset.FrozenEventInstance,
12275
12276
  ctx: AptosContext,
12276
12277
  ) => void,
12277
- fetchConfig?: Partial<MoveFetchConfig>,
12278
+ handlerOptions?: HandlerOptions<fungible_asset.FrozenEventInstance>,
12278
12279
  eventFilter?: Omit<EventFilter, "type" | "account">,
12279
12280
  ): fungible_asset {
12280
12281
  this.onMoveEvent(
12281
12282
  func,
12282
12283
  { ...(eventFilter ?? {}), type: "fungible_asset::FrozenEvent" },
12283
- fetchConfig,
12284
+ handlerOptions,
12284
12285
  );
12285
12286
  return this;
12286
12287
  }
@@ -12290,26 +12291,26 @@ export class fungible_asset extends AptosBaseProcessor {
12290
12291
  event: fungible_asset.FungibleStoreDeletionInstance,
12291
12292
  ctx: AptosContext,
12292
12293
  ) => void,
12293
- fetchConfig?: Partial<MoveFetchConfig>,
12294
+ handlerOptions?: HandlerOptions<fungible_asset.FungibleStoreDeletionInstance>,
12294
12295
  eventFilter?: Omit<EventFilter, "type" | "account">,
12295
12296
  ): fungible_asset {
12296
12297
  this.onMoveEvent(
12297
12298
  func,
12298
12299
  { ...(eventFilter ?? {}), type: "fungible_asset::FungibleStoreDeletion" },
12299
- fetchConfig,
12300
+ handlerOptions,
12300
12301
  );
12301
12302
  return this;
12302
12303
  }
12303
12304
 
12304
12305
  onEventWithdraw(
12305
12306
  func: (event: fungible_asset.WithdrawInstance, ctx: AptosContext) => void,
12306
- fetchConfig?: Partial<MoveFetchConfig>,
12307
+ handlerOptions?: HandlerOptions<fungible_asset.WithdrawInstance>,
12307
12308
  eventFilter?: Omit<EventFilter, "type" | "account">,
12308
12309
  ): fungible_asset {
12309
12310
  this.onMoveEvent(
12310
12311
  func,
12311
12312
  { ...(eventFilter ?? {}), type: "fungible_asset::Withdraw" },
12312
- fetchConfig,
12313
+ handlerOptions,
12313
12314
  );
12314
12315
  return this;
12315
12316
  }
@@ -12319,13 +12320,13 @@ export class fungible_asset extends AptosBaseProcessor {
12319
12320
  event: fungible_asset.WithdrawEventInstance,
12320
12321
  ctx: AptosContext,
12321
12322
  ) => void,
12322
- fetchConfig?: Partial<MoveFetchConfig>,
12323
+ handlerOptions?: HandlerOptions<fungible_asset.WithdrawEventInstance>,
12323
12324
  eventFilter?: Omit<EventFilter, "type" | "account">,
12324
12325
  ): fungible_asset {
12325
12326
  this.onMoveEvent(
12326
12327
  func,
12327
12328
  { ...(eventFilter ?? {}), type: "fungible_asset::WithdrawEvent" },
12328
- fetchConfig,
12329
+ handlerOptions,
12329
12330
  );
12330
12331
  return this;
12331
12332
  }
@@ -13633,13 +13634,13 @@ export class delegation_pool extends AptosBaseProcessor {
13633
13634
  event: delegation_pool.CreateProposalInstance,
13634
13635
  ctx: AptosContext,
13635
13636
  ) => void,
13636
- fetchConfig?: Partial<MoveFetchConfig>,
13637
+ handlerOptions?: HandlerOptions<delegation_pool.CreateProposalInstance>,
13637
13638
  eventFilter?: Omit<EventFilter, "type" | "account">,
13638
13639
  ): delegation_pool {
13639
13640
  this.onMoveEvent(
13640
13641
  func,
13641
13642
  { ...(eventFilter ?? {}), type: "delegation_pool::CreateProposal" },
13642
- fetchConfig,
13643
+ handlerOptions,
13643
13644
  );
13644
13645
  return this;
13645
13646
  }
@@ -13649,52 +13650,52 @@ export class delegation_pool extends AptosBaseProcessor {
13649
13650
  event: delegation_pool.CreateProposalEventInstance,
13650
13651
  ctx: AptosContext,
13651
13652
  ) => void,
13652
- fetchConfig?: Partial<MoveFetchConfig>,
13653
+ handlerOptions?: HandlerOptions<delegation_pool.CreateProposalEventInstance>,
13653
13654
  eventFilter?: Omit<EventFilter, "type" | "account">,
13654
13655
  ): delegation_pool {
13655
13656
  this.onMoveEvent(
13656
13657
  func,
13657
13658
  { ...(eventFilter ?? {}), type: "delegation_pool::CreateProposalEvent" },
13658
- fetchConfig,
13659
+ handlerOptions,
13659
13660
  );
13660
13661
  return this;
13661
13662
  }
13662
13663
 
13663
13664
  onEventVote(
13664
13665
  func: (event: delegation_pool.VoteInstance, ctx: AptosContext) => void,
13665
- fetchConfig?: Partial<MoveFetchConfig>,
13666
+ handlerOptions?: HandlerOptions<delegation_pool.VoteInstance>,
13666
13667
  eventFilter?: Omit<EventFilter, "type" | "account">,
13667
13668
  ): delegation_pool {
13668
13669
  this.onMoveEvent(
13669
13670
  func,
13670
13671
  { ...(eventFilter ?? {}), type: "delegation_pool::Vote" },
13671
- fetchConfig,
13672
+ handlerOptions,
13672
13673
  );
13673
13674
  return this;
13674
13675
  }
13675
13676
 
13676
13677
  onEventVoteEvent(
13677
13678
  func: (event: delegation_pool.VoteEventInstance, ctx: AptosContext) => void,
13678
- fetchConfig?: Partial<MoveFetchConfig>,
13679
+ handlerOptions?: HandlerOptions<delegation_pool.VoteEventInstance>,
13679
13680
  eventFilter?: Omit<EventFilter, "type" | "account">,
13680
13681
  ): delegation_pool {
13681
13682
  this.onMoveEvent(
13682
13683
  func,
13683
13684
  { ...(eventFilter ?? {}), type: "delegation_pool::VoteEvent" },
13684
- fetchConfig,
13685
+ handlerOptions,
13685
13686
  );
13686
13687
  return this;
13687
13688
  }
13688
13689
 
13689
13690
  onEventAddStake(
13690
13691
  func: (event: delegation_pool.AddStakeInstance, ctx: AptosContext) => void,
13691
- fetchConfig?: Partial<MoveFetchConfig>,
13692
+ handlerOptions?: HandlerOptions<delegation_pool.AddStakeInstance>,
13692
13693
  eventFilter?: Omit<EventFilter, "type" | "account">,
13693
13694
  ): delegation_pool {
13694
13695
  this.onMoveEvent(
13695
13696
  func,
13696
13697
  { ...(eventFilter ?? {}), type: "delegation_pool::AddStake" },
13697
- fetchConfig,
13698
+ handlerOptions,
13698
13699
  );
13699
13700
  return this;
13700
13701
  }
@@ -13704,13 +13705,13 @@ export class delegation_pool extends AptosBaseProcessor {
13704
13705
  event: delegation_pool.AddStakeEventInstance,
13705
13706
  ctx: AptosContext,
13706
13707
  ) => void,
13707
- fetchConfig?: Partial<MoveFetchConfig>,
13708
+ handlerOptions?: HandlerOptions<delegation_pool.AddStakeEventInstance>,
13708
13709
  eventFilter?: Omit<EventFilter, "type" | "account">,
13709
13710
  ): delegation_pool {
13710
13711
  this.onMoveEvent(
13711
13712
  func,
13712
13713
  { ...(eventFilter ?? {}), type: "delegation_pool::AddStakeEvent" },
13713
- fetchConfig,
13714
+ handlerOptions,
13714
13715
  );
13715
13716
  return this;
13716
13717
  }
@@ -13720,13 +13721,13 @@ export class delegation_pool extends AptosBaseProcessor {
13720
13721
  event: delegation_pool.ReactivateStakeInstance,
13721
13722
  ctx: AptosContext,
13722
13723
  ) => void,
13723
- fetchConfig?: Partial<MoveFetchConfig>,
13724
+ handlerOptions?: HandlerOptions<delegation_pool.ReactivateStakeInstance>,
13724
13725
  eventFilter?: Omit<EventFilter, "type" | "account">,
13725
13726
  ): delegation_pool {
13726
13727
  this.onMoveEvent(
13727
13728
  func,
13728
13729
  { ...(eventFilter ?? {}), type: "delegation_pool::ReactivateStake" },
13729
- fetchConfig,
13730
+ handlerOptions,
13730
13731
  );
13731
13732
  return this;
13732
13733
  }
@@ -13736,13 +13737,13 @@ export class delegation_pool extends AptosBaseProcessor {
13736
13737
  event: delegation_pool.ReactivateStakeEventInstance,
13737
13738
  ctx: AptosContext,
13738
13739
  ) => void,
13739
- fetchConfig?: Partial<MoveFetchConfig>,
13740
+ handlerOptions?: HandlerOptions<delegation_pool.ReactivateStakeEventInstance>,
13740
13741
  eventFilter?: Omit<EventFilter, "type" | "account">,
13741
13742
  ): delegation_pool {
13742
13743
  this.onMoveEvent(
13743
13744
  func,
13744
13745
  { ...(eventFilter ?? {}), type: "delegation_pool::ReactivateStakeEvent" },
13745
- fetchConfig,
13746
+ handlerOptions,
13746
13747
  );
13747
13748
  return this;
13748
13749
  }
@@ -13752,13 +13753,13 @@ export class delegation_pool extends AptosBaseProcessor {
13752
13753
  event: delegation_pool.UnlockStakeInstance,
13753
13754
  ctx: AptosContext,
13754
13755
  ) => void,
13755
- fetchConfig?: Partial<MoveFetchConfig>,
13756
+ handlerOptions?: HandlerOptions<delegation_pool.UnlockStakeInstance>,
13756
13757
  eventFilter?: Omit<EventFilter, "type" | "account">,
13757
13758
  ): delegation_pool {
13758
13759
  this.onMoveEvent(
13759
13760
  func,
13760
13761
  { ...(eventFilter ?? {}), type: "delegation_pool::UnlockStake" },
13761
- fetchConfig,
13762
+ handlerOptions,
13762
13763
  );
13763
13764
  return this;
13764
13765
  }
@@ -13768,13 +13769,13 @@ export class delegation_pool extends AptosBaseProcessor {
13768
13769
  event: delegation_pool.UnlockStakeEventInstance,
13769
13770
  ctx: AptosContext,
13770
13771
  ) => void,
13771
- fetchConfig?: Partial<MoveFetchConfig>,
13772
+ handlerOptions?: HandlerOptions<delegation_pool.UnlockStakeEventInstance>,
13772
13773
  eventFilter?: Omit<EventFilter, "type" | "account">,
13773
13774
  ): delegation_pool {
13774
13775
  this.onMoveEvent(
13775
13776
  func,
13776
13777
  { ...(eventFilter ?? {}), type: "delegation_pool::UnlockStakeEvent" },
13777
- fetchConfig,
13778
+ handlerOptions,
13778
13779
  );
13779
13780
  return this;
13780
13781
  }
@@ -13784,13 +13785,13 @@ export class delegation_pool extends AptosBaseProcessor {
13784
13785
  event: delegation_pool.WithdrawStakeInstance,
13785
13786
  ctx: AptosContext,
13786
13787
  ) => void,
13787
- fetchConfig?: Partial<MoveFetchConfig>,
13788
+ handlerOptions?: HandlerOptions<delegation_pool.WithdrawStakeInstance>,
13788
13789
  eventFilter?: Omit<EventFilter, "type" | "account">,
13789
13790
  ): delegation_pool {
13790
13791
  this.onMoveEvent(
13791
13792
  func,
13792
13793
  { ...(eventFilter ?? {}), type: "delegation_pool::WithdrawStake" },
13793
- fetchConfig,
13794
+ handlerOptions,
13794
13795
  );
13795
13796
  return this;
13796
13797
  }
@@ -13800,13 +13801,13 @@ export class delegation_pool extends AptosBaseProcessor {
13800
13801
  event: delegation_pool.WithdrawStakeEventInstance,
13801
13802
  ctx: AptosContext,
13802
13803
  ) => void,
13803
- fetchConfig?: Partial<MoveFetchConfig>,
13804
+ handlerOptions?: HandlerOptions<delegation_pool.WithdrawStakeEventInstance>,
13804
13805
  eventFilter?: Omit<EventFilter, "type" | "account">,
13805
13806
  ): delegation_pool {
13806
13807
  this.onMoveEvent(
13807
13808
  func,
13808
13809
  { ...(eventFilter ?? {}), type: "delegation_pool::WithdrawStakeEvent" },
13809
- fetchConfig,
13810
+ handlerOptions,
13810
13811
  );
13811
13812
  return this;
13812
13813
  }
@@ -13816,13 +13817,13 @@ export class delegation_pool extends AptosBaseProcessor {
13816
13817
  event: delegation_pool.AllowlistDelegatorInstance,
13817
13818
  ctx: AptosContext,
13818
13819
  ) => void,
13819
- fetchConfig?: Partial<MoveFetchConfig>,
13820
+ handlerOptions?: HandlerOptions<delegation_pool.AllowlistDelegatorInstance>,
13820
13821
  eventFilter?: Omit<EventFilter, "type" | "account">,
13821
13822
  ): delegation_pool {
13822
13823
  this.onMoveEvent(
13823
13824
  func,
13824
13825
  { ...(eventFilter ?? {}), type: "delegation_pool::AllowlistDelegator" },
13825
- fetchConfig,
13826
+ handlerOptions,
13826
13827
  );
13827
13828
  return this;
13828
13829
  }
@@ -13832,7 +13833,7 @@ export class delegation_pool extends AptosBaseProcessor {
13832
13833
  event: delegation_pool.CommissionPercentageChangeInstance,
13833
13834
  ctx: AptosContext,
13834
13835
  ) => void,
13835
- fetchConfig?: Partial<MoveFetchConfig>,
13836
+ handlerOptions?: HandlerOptions<delegation_pool.CommissionPercentageChangeInstance>,
13836
13837
  eventFilter?: Omit<EventFilter, "type" | "account">,
13837
13838
  ): delegation_pool {
13838
13839
  this.onMoveEvent(
@@ -13841,7 +13842,7 @@ export class delegation_pool extends AptosBaseProcessor {
13841
13842
  ...(eventFilter ?? {}),
13842
13843
  type: "delegation_pool::CommissionPercentageChange",
13843
13844
  },
13844
- fetchConfig,
13845
+ handlerOptions,
13845
13846
  );
13846
13847
  return this;
13847
13848
  }
@@ -13851,13 +13852,13 @@ export class delegation_pool extends AptosBaseProcessor {
13851
13852
  event: delegation_pool.DelegateVotingPowerInstance,
13852
13853
  ctx: AptosContext,
13853
13854
  ) => void,
13854
- fetchConfig?: Partial<MoveFetchConfig>,
13855
+ handlerOptions?: HandlerOptions<delegation_pool.DelegateVotingPowerInstance>,
13855
13856
  eventFilter?: Omit<EventFilter, "type" | "account">,
13856
13857
  ): delegation_pool {
13857
13858
  this.onMoveEvent(
13858
13859
  func,
13859
13860
  { ...(eventFilter ?? {}), type: "delegation_pool::DelegateVotingPower" },
13860
- fetchConfig,
13861
+ handlerOptions,
13861
13862
  );
13862
13863
  return this;
13863
13864
  }
@@ -13867,7 +13868,7 @@ export class delegation_pool extends AptosBaseProcessor {
13867
13868
  event: delegation_pool.DelegateVotingPowerEventInstance,
13868
13869
  ctx: AptosContext,
13869
13870
  ) => void,
13870
- fetchConfig?: Partial<MoveFetchConfig>,
13871
+ handlerOptions?: HandlerOptions<delegation_pool.DelegateVotingPowerEventInstance>,
13871
13872
  eventFilter?: Omit<EventFilter, "type" | "account">,
13872
13873
  ): delegation_pool {
13873
13874
  this.onMoveEvent(
@@ -13876,7 +13877,7 @@ export class delegation_pool extends AptosBaseProcessor {
13876
13877
  ...(eventFilter ?? {}),
13877
13878
  type: "delegation_pool::DelegateVotingPowerEvent",
13878
13879
  },
13879
- fetchConfig,
13880
+ handlerOptions,
13880
13881
  );
13881
13882
  return this;
13882
13883
  }
@@ -13886,7 +13887,7 @@ export class delegation_pool extends AptosBaseProcessor {
13886
13887
  event: delegation_pool.DisableDelegatorsAllowlistingInstance,
13887
13888
  ctx: AptosContext,
13888
13889
  ) => void,
13889
- fetchConfig?: Partial<MoveFetchConfig>,
13890
+ handlerOptions?: HandlerOptions<delegation_pool.DisableDelegatorsAllowlistingInstance>,
13890
13891
  eventFilter?: Omit<EventFilter, "type" | "account">,
13891
13892
  ): delegation_pool {
13892
13893
  this.onMoveEvent(
@@ -13895,7 +13896,7 @@ export class delegation_pool extends AptosBaseProcessor {
13895
13896
  ...(eventFilter ?? {}),
13896
13897
  type: "delegation_pool::DisableDelegatorsAllowlisting",
13897
13898
  },
13898
- fetchConfig,
13899
+ handlerOptions,
13899
13900
  );
13900
13901
  return this;
13901
13902
  }
@@ -13905,13 +13906,13 @@ export class delegation_pool extends AptosBaseProcessor {
13905
13906
  event: delegation_pool.DistributeCommissionInstance,
13906
13907
  ctx: AptosContext,
13907
13908
  ) => void,
13908
- fetchConfig?: Partial<MoveFetchConfig>,
13909
+ handlerOptions?: HandlerOptions<delegation_pool.DistributeCommissionInstance>,
13909
13910
  eventFilter?: Omit<EventFilter, "type" | "account">,
13910
13911
  ): delegation_pool {
13911
13912
  this.onMoveEvent(
13912
13913
  func,
13913
13914
  { ...(eventFilter ?? {}), type: "delegation_pool::DistributeCommission" },
13914
- fetchConfig,
13915
+ handlerOptions,
13915
13916
  );
13916
13917
  return this;
13917
13918
  }
@@ -13921,7 +13922,7 @@ export class delegation_pool extends AptosBaseProcessor {
13921
13922
  event: delegation_pool.DistributeCommissionEventInstance,
13922
13923
  ctx: AptosContext,
13923
13924
  ) => void,
13924
- fetchConfig?: Partial<MoveFetchConfig>,
13925
+ handlerOptions?: HandlerOptions<delegation_pool.DistributeCommissionEventInstance>,
13925
13926
  eventFilter?: Omit<EventFilter, "type" | "account">,
13926
13927
  ): delegation_pool {
13927
13928
  this.onMoveEvent(
@@ -13930,7 +13931,7 @@ export class delegation_pool extends AptosBaseProcessor {
13930
13931
  ...(eventFilter ?? {}),
13931
13932
  type: "delegation_pool::DistributeCommissionEvent",
13932
13933
  },
13933
- fetchConfig,
13934
+ handlerOptions,
13934
13935
  );
13935
13936
  return this;
13936
13937
  }
@@ -13940,7 +13941,7 @@ export class delegation_pool extends AptosBaseProcessor {
13940
13941
  event: delegation_pool.EnableDelegatorsAllowlistingInstance,
13941
13942
  ctx: AptosContext,
13942
13943
  ) => void,
13943
- fetchConfig?: Partial<MoveFetchConfig>,
13944
+ handlerOptions?: HandlerOptions<delegation_pool.EnableDelegatorsAllowlistingInstance>,
13944
13945
  eventFilter?: Omit<EventFilter, "type" | "account">,
13945
13946
  ): delegation_pool {
13946
13947
  this.onMoveEvent(
@@ -13949,7 +13950,7 @@ export class delegation_pool extends AptosBaseProcessor {
13949
13950
  ...(eventFilter ?? {}),
13950
13951
  type: "delegation_pool::EnableDelegatorsAllowlisting",
13951
13952
  },
13952
- fetchConfig,
13953
+ handlerOptions,
13953
13954
  );
13954
13955
  return this;
13955
13956
  }
@@ -13959,13 +13960,13 @@ export class delegation_pool extends AptosBaseProcessor {
13959
13960
  event: delegation_pool.EvictDelegatorInstance,
13960
13961
  ctx: AptosContext,
13961
13962
  ) => void,
13962
- fetchConfig?: Partial<MoveFetchConfig>,
13963
+ handlerOptions?: HandlerOptions<delegation_pool.EvictDelegatorInstance>,
13963
13964
  eventFilter?: Omit<EventFilter, "type" | "account">,
13964
13965
  ): delegation_pool {
13965
13966
  this.onMoveEvent(
13966
13967
  func,
13967
13968
  { ...(eventFilter ?? {}), type: "delegation_pool::EvictDelegator" },
13968
- fetchConfig,
13969
+ handlerOptions,
13969
13970
  );
13970
13971
  return this;
13971
13972
  }
@@ -13975,7 +13976,7 @@ export class delegation_pool extends AptosBaseProcessor {
13975
13976
  event: delegation_pool.RemoveDelegatorFromAllowlistInstance,
13976
13977
  ctx: AptosContext,
13977
13978
  ) => void,
13978
- fetchConfig?: Partial<MoveFetchConfig>,
13979
+ handlerOptions?: HandlerOptions<delegation_pool.RemoveDelegatorFromAllowlistInstance>,
13979
13980
  eventFilter?: Omit<EventFilter, "type" | "account">,
13980
13981
  ): delegation_pool {
13981
13982
  this.onMoveEvent(
@@ -13984,7 +13985,7 @@ export class delegation_pool extends AptosBaseProcessor {
13984
13985
  ...(eventFilter ?? {}),
13985
13986
  type: "delegation_pool::RemoveDelegatorFromAllowlist",
13986
13987
  },
13987
- fetchConfig,
13988
+ handlerOptions,
13988
13989
  );
13989
13990
  return this;
13990
13991
  }
@@ -13994,7 +13995,7 @@ export class delegation_pool extends AptosBaseProcessor {
13994
13995
  event: delegation_pool.SetBeneficiaryForOperatorInstance,
13995
13996
  ctx: AptosContext,
13996
13997
  ) => void,
13997
- fetchConfig?: Partial<MoveFetchConfig>,
13998
+ handlerOptions?: HandlerOptions<delegation_pool.SetBeneficiaryForOperatorInstance>,
13998
13999
  eventFilter?: Omit<EventFilter, "type" | "account">,
13999
14000
  ): delegation_pool {
14000
14001
  this.onMoveEvent(
@@ -14003,7 +14004,7 @@ export class delegation_pool extends AptosBaseProcessor {
14003
14004
  ...(eventFilter ?? {}),
14004
14005
  type: "delegation_pool::SetBeneficiaryForOperator",
14005
14006
  },
14006
- fetchConfig,
14007
+ handlerOptions,
14007
14008
  );
14008
14009
  return this;
14009
14010
  }
@@ -15949,13 +15950,13 @@ export class reconfiguration extends AptosBaseProcessor {
15949
15950
 
15950
15951
  onEventNewEpoch(
15951
15952
  func: (event: reconfiguration.NewEpochInstance, ctx: AptosContext) => void,
15952
- fetchConfig?: Partial<MoveFetchConfig>,
15953
+ handlerOptions?: HandlerOptions<reconfiguration.NewEpochInstance>,
15953
15954
  eventFilter?: Omit<EventFilter, "type" | "account">,
15954
15955
  ): reconfiguration {
15955
15956
  this.onMoveEvent(
15956
15957
  func,
15957
15958
  { ...(eventFilter ?? {}), type: "reconfiguration::NewEpoch" },
15958
- fetchConfig,
15959
+ handlerOptions,
15959
15960
  );
15960
15961
  return this;
15961
15962
  }
@@ -15965,13 +15966,13 @@ export class reconfiguration extends AptosBaseProcessor {
15965
15966
  event: reconfiguration.NewEpochEventInstance,
15966
15967
  ctx: AptosContext,
15967
15968
  ) => void,
15968
- fetchConfig?: Partial<MoveFetchConfig>,
15969
+ handlerOptions?: HandlerOptions<reconfiguration.NewEpochEventInstance>,
15969
15970
  eventFilter?: Omit<EventFilter, "type" | "account">,
15970
15971
  ): reconfiguration {
15971
15972
  this.onMoveEvent(
15972
15973
  func,
15973
15974
  { ...(eventFilter ?? {}), type: "reconfiguration::NewEpochEvent" },
15974
- fetchConfig,
15975
+ handlerOptions,
15975
15976
  );
15976
15977
  return this;
15977
15978
  }
@@ -16092,13 +16093,13 @@ export class transaction_fee extends AptosBaseProcessor {
16092
16093
  event: transaction_fee.FeeStatementInstance,
16093
16094
  ctx: AptosContext,
16094
16095
  ) => void,
16095
- fetchConfig?: Partial<MoveFetchConfig>,
16096
+ handlerOptions?: HandlerOptions<transaction_fee.FeeStatementInstance>,
16096
16097
  eventFilter?: Omit<EventFilter, "type" | "account">,
16097
16098
  ): transaction_fee {
16098
16099
  this.onMoveEvent(
16099
16100
  func,
16100
16101
  { ...(eventFilter ?? {}), type: "transaction_fee::FeeStatement" },
16101
- fetchConfig,
16102
+ handlerOptions,
16102
16103
  );
16103
16104
  return this;
16104
16105
  }
@@ -16434,13 +16435,13 @@ export class aptos_governance extends AptosBaseProcessor {
16434
16435
  event: aptos_governance.CreateProposalInstance,
16435
16436
  ctx: AptosContext,
16436
16437
  ) => void,
16437
- fetchConfig?: Partial<MoveFetchConfig>,
16438
+ handlerOptions?: HandlerOptions<aptos_governance.CreateProposalInstance>,
16438
16439
  eventFilter?: Omit<EventFilter, "type" | "account">,
16439
16440
  ): aptos_governance {
16440
16441
  this.onMoveEvent(
16441
16442
  func,
16442
16443
  { ...(eventFilter ?? {}), type: "aptos_governance::CreateProposal" },
16443
- fetchConfig,
16444
+ handlerOptions,
16444
16445
  );
16445
16446
  return this;
16446
16447
  }
@@ -16450,26 +16451,26 @@ export class aptos_governance extends AptosBaseProcessor {
16450
16451
  event: aptos_governance.CreateProposalEventInstance,
16451
16452
  ctx: AptosContext,
16452
16453
  ) => void,
16453
- fetchConfig?: Partial<MoveFetchConfig>,
16454
+ handlerOptions?: HandlerOptions<aptos_governance.CreateProposalEventInstance>,
16454
16455
  eventFilter?: Omit<EventFilter, "type" | "account">,
16455
16456
  ): aptos_governance {
16456
16457
  this.onMoveEvent(
16457
16458
  func,
16458
16459
  { ...(eventFilter ?? {}), type: "aptos_governance::CreateProposalEvent" },
16459
- fetchConfig,
16460
+ handlerOptions,
16460
16461
  );
16461
16462
  return this;
16462
16463
  }
16463
16464
 
16464
16465
  onEventVote(
16465
16466
  func: (event: aptos_governance.VoteInstance, ctx: AptosContext) => void,
16466
- fetchConfig?: Partial<MoveFetchConfig>,
16467
+ handlerOptions?: HandlerOptions<aptos_governance.VoteInstance>,
16467
16468
  eventFilter?: Omit<EventFilter, "type" | "account">,
16468
16469
  ): aptos_governance {
16469
16470
  this.onMoveEvent(
16470
16471
  func,
16471
16472
  { ...(eventFilter ?? {}), type: "aptos_governance::Vote" },
16472
- fetchConfig,
16473
+ handlerOptions,
16473
16474
  );
16474
16475
  return this;
16475
16476
  }
@@ -16479,13 +16480,13 @@ export class aptos_governance extends AptosBaseProcessor {
16479
16480
  event: aptos_governance.VoteEventInstance,
16480
16481
  ctx: AptosContext,
16481
16482
  ) => void,
16482
- fetchConfig?: Partial<MoveFetchConfig>,
16483
+ handlerOptions?: HandlerOptions<aptos_governance.VoteEventInstance>,
16483
16484
  eventFilter?: Omit<EventFilter, "type" | "account">,
16484
16485
  ): aptos_governance {
16485
16486
  this.onMoveEvent(
16486
16487
  func,
16487
16488
  { ...(eventFilter ?? {}), type: "aptos_governance::VoteEvent" },
16488
- fetchConfig,
16489
+ handlerOptions,
16489
16490
  );
16490
16491
  return this;
16491
16492
  }
@@ -16495,13 +16496,13 @@ export class aptos_governance extends AptosBaseProcessor {
16495
16496
  event: aptos_governance.UpdateConfigInstance,
16496
16497
  ctx: AptosContext,
16497
16498
  ) => void,
16498
- fetchConfig?: Partial<MoveFetchConfig>,
16499
+ handlerOptions?: HandlerOptions<aptos_governance.UpdateConfigInstance>,
16499
16500
  eventFilter?: Omit<EventFilter, "type" | "account">,
16500
16501
  ): aptos_governance {
16501
16502
  this.onMoveEvent(
16502
16503
  func,
16503
16504
  { ...(eventFilter ?? {}), type: "aptos_governance::UpdateConfig" },
16504
- fetchConfig,
16505
+ handlerOptions,
16505
16506
  );
16506
16507
  return this;
16507
16508
  }
@@ -16511,13 +16512,13 @@ export class aptos_governance extends AptosBaseProcessor {
16511
16512
  event: aptos_governance.UpdateConfigEventInstance,
16512
16513
  ctx: AptosContext,
16513
16514
  ) => void,
16514
- fetchConfig?: Partial<MoveFetchConfig>,
16515
+ handlerOptions?: HandlerOptions<aptos_governance.UpdateConfigEventInstance>,
16515
16516
  eventFilter?: Omit<EventFilter, "type" | "account">,
16516
16517
  ): aptos_governance {
16517
16518
  this.onMoveEvent(
16518
16519
  func,
16519
16520
  { ...(eventFilter ?? {}), type: "aptos_governance::UpdateConfigEvent" },
16520
- fetchConfig,
16521
+ handlerOptions,
16521
16522
  );
16522
16523
  return this;
16523
16524
  }
@@ -18004,13 +18005,13 @@ export class multisig_account extends AptosBaseProcessor {
18004
18005
 
18005
18006
  onEventVote(
18006
18007
  func: (event: multisig_account.VoteInstance, ctx: AptosContext) => void,
18007
- fetchConfig?: Partial<MoveFetchConfig>,
18008
+ handlerOptions?: HandlerOptions<multisig_account.VoteInstance>,
18008
18009
  eventFilter?: Omit<EventFilter, "type" | "account">,
18009
18010
  ): multisig_account {
18010
18011
  this.onMoveEvent(
18011
18012
  func,
18012
18013
  { ...(eventFilter ?? {}), type: "multisig_account::Vote" },
18013
- fetchConfig,
18014
+ handlerOptions,
18014
18015
  );
18015
18016
  return this;
18016
18017
  }
@@ -18020,13 +18021,13 @@ export class multisig_account extends AptosBaseProcessor {
18020
18021
  event: multisig_account.VoteEventInstance,
18021
18022
  ctx: AptosContext,
18022
18023
  ) => void,
18023
- fetchConfig?: Partial<MoveFetchConfig>,
18024
+ handlerOptions?: HandlerOptions<multisig_account.VoteEventInstance>,
18024
18025
  eventFilter?: Omit<EventFilter, "type" | "account">,
18025
18026
  ): multisig_account {
18026
18027
  this.onMoveEvent(
18027
18028
  func,
18028
18029
  { ...(eventFilter ?? {}), type: "multisig_account::VoteEvent" },
18029
- fetchConfig,
18030
+ handlerOptions,
18030
18031
  );
18031
18032
  return this;
18032
18033
  }
@@ -18036,13 +18037,13 @@ export class multisig_account extends AptosBaseProcessor {
18036
18037
  event: multisig_account.AddOwnersInstance,
18037
18038
  ctx: AptosContext,
18038
18039
  ) => void,
18039
- fetchConfig?: Partial<MoveFetchConfig>,
18040
+ handlerOptions?: HandlerOptions<multisig_account.AddOwnersInstance>,
18040
18041
  eventFilter?: Omit<EventFilter, "type" | "account">,
18041
18042
  ): multisig_account {
18042
18043
  this.onMoveEvent(
18043
18044
  func,
18044
18045
  { ...(eventFilter ?? {}), type: "multisig_account::AddOwners" },
18045
- fetchConfig,
18046
+ handlerOptions,
18046
18047
  );
18047
18048
  return this;
18048
18049
  }
@@ -18052,13 +18053,13 @@ export class multisig_account extends AptosBaseProcessor {
18052
18053
  event: multisig_account.AddOwnersEventInstance,
18053
18054
  ctx: AptosContext,
18054
18055
  ) => void,
18055
- fetchConfig?: Partial<MoveFetchConfig>,
18056
+ handlerOptions?: HandlerOptions<multisig_account.AddOwnersEventInstance>,
18056
18057
  eventFilter?: Omit<EventFilter, "type" | "account">,
18057
18058
  ): multisig_account {
18058
18059
  this.onMoveEvent(
18059
18060
  func,
18060
18061
  { ...(eventFilter ?? {}), type: "multisig_account::AddOwnersEvent" },
18061
- fetchConfig,
18062
+ handlerOptions,
18062
18063
  );
18063
18064
  return this;
18064
18065
  }
@@ -18068,13 +18069,13 @@ export class multisig_account extends AptosBaseProcessor {
18068
18069
  event: multisig_account.CreateTransactionInstance,
18069
18070
  ctx: AptosContext,
18070
18071
  ) => void,
18071
- fetchConfig?: Partial<MoveFetchConfig>,
18072
+ handlerOptions?: HandlerOptions<multisig_account.CreateTransactionInstance>,
18072
18073
  eventFilter?: Omit<EventFilter, "type" | "account">,
18073
18074
  ): multisig_account {
18074
18075
  this.onMoveEvent(
18075
18076
  func,
18076
18077
  { ...(eventFilter ?? {}), type: "multisig_account::CreateTransaction" },
18077
- fetchConfig,
18078
+ handlerOptions,
18078
18079
  );
18079
18080
  return this;
18080
18081
  }
@@ -18084,7 +18085,7 @@ export class multisig_account extends AptosBaseProcessor {
18084
18085
  event: multisig_account.CreateTransactionEventInstance,
18085
18086
  ctx: AptosContext,
18086
18087
  ) => void,
18087
- fetchConfig?: Partial<MoveFetchConfig>,
18088
+ handlerOptions?: HandlerOptions<multisig_account.CreateTransactionEventInstance>,
18088
18089
  eventFilter?: Omit<EventFilter, "type" | "account">,
18089
18090
  ): multisig_account {
18090
18091
  this.onMoveEvent(
@@ -18093,7 +18094,7 @@ export class multisig_account extends AptosBaseProcessor {
18093
18094
  ...(eventFilter ?? {}),
18094
18095
  type: "multisig_account::CreateTransactionEvent",
18095
18096
  },
18096
- fetchConfig,
18097
+ handlerOptions,
18097
18098
  );
18098
18099
  return this;
18099
18100
  }
@@ -18103,7 +18104,7 @@ export class multisig_account extends AptosBaseProcessor {
18103
18104
  event: multisig_account.ExecuteRejectedTransactionInstance,
18104
18105
  ctx: AptosContext,
18105
18106
  ) => void,
18106
- fetchConfig?: Partial<MoveFetchConfig>,
18107
+ handlerOptions?: HandlerOptions<multisig_account.ExecuteRejectedTransactionInstance>,
18107
18108
  eventFilter?: Omit<EventFilter, "type" | "account">,
18108
18109
  ): multisig_account {
18109
18110
  this.onMoveEvent(
@@ -18112,7 +18113,7 @@ export class multisig_account extends AptosBaseProcessor {
18112
18113
  ...(eventFilter ?? {}),
18113
18114
  type: "multisig_account::ExecuteRejectedTransaction",
18114
18115
  },
18115
- fetchConfig,
18116
+ handlerOptions,
18116
18117
  );
18117
18118
  return this;
18118
18119
  }
@@ -18122,7 +18123,7 @@ export class multisig_account extends AptosBaseProcessor {
18122
18123
  event: multisig_account.ExecuteRejectedTransactionEventInstance,
18123
18124
  ctx: AptosContext,
18124
18125
  ) => void,
18125
- fetchConfig?: Partial<MoveFetchConfig>,
18126
+ handlerOptions?: HandlerOptions<multisig_account.ExecuteRejectedTransactionEventInstance>,
18126
18127
  eventFilter?: Omit<EventFilter, "type" | "account">,
18127
18128
  ): multisig_account {
18128
18129
  this.onMoveEvent(
@@ -18131,7 +18132,7 @@ export class multisig_account extends AptosBaseProcessor {
18131
18132
  ...(eventFilter ?? {}),
18132
18133
  type: "multisig_account::ExecuteRejectedTransactionEvent",
18133
18134
  },
18134
- fetchConfig,
18135
+ handlerOptions,
18135
18136
  );
18136
18137
  return this;
18137
18138
  }
@@ -18141,13 +18142,13 @@ export class multisig_account extends AptosBaseProcessor {
18141
18142
  event: multisig_account.MetadataUpdatedInstance,
18142
18143
  ctx: AptosContext,
18143
18144
  ) => void,
18144
- fetchConfig?: Partial<MoveFetchConfig>,
18145
+ handlerOptions?: HandlerOptions<multisig_account.MetadataUpdatedInstance>,
18145
18146
  eventFilter?: Omit<EventFilter, "type" | "account">,
18146
18147
  ): multisig_account {
18147
18148
  this.onMoveEvent(
18148
18149
  func,
18149
18150
  { ...(eventFilter ?? {}), type: "multisig_account::MetadataUpdated" },
18150
- fetchConfig,
18151
+ handlerOptions,
18151
18152
  );
18152
18153
  return this;
18153
18154
  }
@@ -18157,7 +18158,7 @@ export class multisig_account extends AptosBaseProcessor {
18157
18158
  event: multisig_account.MetadataUpdatedEventInstance,
18158
18159
  ctx: AptosContext,
18159
18160
  ) => void,
18160
- fetchConfig?: Partial<MoveFetchConfig>,
18161
+ handlerOptions?: HandlerOptions<multisig_account.MetadataUpdatedEventInstance>,
18161
18162
  eventFilter?: Omit<EventFilter, "type" | "account">,
18162
18163
  ): multisig_account {
18163
18164
  this.onMoveEvent(
@@ -18166,7 +18167,7 @@ export class multisig_account extends AptosBaseProcessor {
18166
18167
  ...(eventFilter ?? {}),
18167
18168
  type: "multisig_account::MetadataUpdatedEvent",
18168
18169
  },
18169
- fetchConfig,
18170
+ handlerOptions,
18170
18171
  );
18171
18172
  return this;
18172
18173
  }
@@ -18176,13 +18177,13 @@ export class multisig_account extends AptosBaseProcessor {
18176
18177
  event: multisig_account.RemoveOwnersInstance,
18177
18178
  ctx: AptosContext,
18178
18179
  ) => void,
18179
- fetchConfig?: Partial<MoveFetchConfig>,
18180
+ handlerOptions?: HandlerOptions<multisig_account.RemoveOwnersInstance>,
18180
18181
  eventFilter?: Omit<EventFilter, "type" | "account">,
18181
18182
  ): multisig_account {
18182
18183
  this.onMoveEvent(
18183
18184
  func,
18184
18185
  { ...(eventFilter ?? {}), type: "multisig_account::RemoveOwners" },
18185
- fetchConfig,
18186
+ handlerOptions,
18186
18187
  );
18187
18188
  return this;
18188
18189
  }
@@ -18192,13 +18193,13 @@ export class multisig_account extends AptosBaseProcessor {
18192
18193
  event: multisig_account.RemoveOwnersEventInstance,
18193
18194
  ctx: AptosContext,
18194
18195
  ) => void,
18195
- fetchConfig?: Partial<MoveFetchConfig>,
18196
+ handlerOptions?: HandlerOptions<multisig_account.RemoveOwnersEventInstance>,
18196
18197
  eventFilter?: Omit<EventFilter, "type" | "account">,
18197
18198
  ): multisig_account {
18198
18199
  this.onMoveEvent(
18199
18200
  func,
18200
18201
  { ...(eventFilter ?? {}), type: "multisig_account::RemoveOwnersEvent" },
18201
- fetchConfig,
18202
+ handlerOptions,
18202
18203
  );
18203
18204
  return this;
18204
18205
  }
@@ -18208,7 +18209,7 @@ export class multisig_account extends AptosBaseProcessor {
18208
18209
  event: multisig_account.TransactionExecutionFailedInstance,
18209
18210
  ctx: AptosContext,
18210
18211
  ) => void,
18211
- fetchConfig?: Partial<MoveFetchConfig>,
18212
+ handlerOptions?: HandlerOptions<multisig_account.TransactionExecutionFailedInstance>,
18212
18213
  eventFilter?: Omit<EventFilter, "type" | "account">,
18213
18214
  ): multisig_account {
18214
18215
  this.onMoveEvent(
@@ -18217,7 +18218,7 @@ export class multisig_account extends AptosBaseProcessor {
18217
18218
  ...(eventFilter ?? {}),
18218
18219
  type: "multisig_account::TransactionExecutionFailed",
18219
18220
  },
18220
- fetchConfig,
18221
+ handlerOptions,
18221
18222
  );
18222
18223
  return this;
18223
18224
  }
@@ -18227,7 +18228,7 @@ export class multisig_account extends AptosBaseProcessor {
18227
18228
  event: multisig_account.TransactionExecutionFailedEventInstance,
18228
18229
  ctx: AptosContext,
18229
18230
  ) => void,
18230
- fetchConfig?: Partial<MoveFetchConfig>,
18231
+ handlerOptions?: HandlerOptions<multisig_account.TransactionExecutionFailedEventInstance>,
18231
18232
  eventFilter?: Omit<EventFilter, "type" | "account">,
18232
18233
  ): multisig_account {
18233
18234
  this.onMoveEvent(
@@ -18236,7 +18237,7 @@ export class multisig_account extends AptosBaseProcessor {
18236
18237
  ...(eventFilter ?? {}),
18237
18238
  type: "multisig_account::TransactionExecutionFailedEvent",
18238
18239
  },
18239
- fetchConfig,
18240
+ handlerOptions,
18240
18241
  );
18241
18242
  return this;
18242
18243
  }
@@ -18246,7 +18247,7 @@ export class multisig_account extends AptosBaseProcessor {
18246
18247
  event: multisig_account.TransactionExecutionSucceededInstance,
18247
18248
  ctx: AptosContext,
18248
18249
  ) => void,
18249
- fetchConfig?: Partial<MoveFetchConfig>,
18250
+ handlerOptions?: HandlerOptions<multisig_account.TransactionExecutionSucceededInstance>,
18250
18251
  eventFilter?: Omit<EventFilter, "type" | "account">,
18251
18252
  ): multisig_account {
18252
18253
  this.onMoveEvent(
@@ -18255,7 +18256,7 @@ export class multisig_account extends AptosBaseProcessor {
18255
18256
  ...(eventFilter ?? {}),
18256
18257
  type: "multisig_account::TransactionExecutionSucceeded",
18257
18258
  },
18258
- fetchConfig,
18259
+ handlerOptions,
18259
18260
  );
18260
18261
  return this;
18261
18262
  }
@@ -18265,7 +18266,7 @@ export class multisig_account extends AptosBaseProcessor {
18265
18266
  event: multisig_account.TransactionExecutionSucceededEventInstance,
18266
18267
  ctx: AptosContext,
18267
18268
  ) => void,
18268
- fetchConfig?: Partial<MoveFetchConfig>,
18269
+ handlerOptions?: HandlerOptions<multisig_account.TransactionExecutionSucceededEventInstance>,
18269
18270
  eventFilter?: Omit<EventFilter, "type" | "account">,
18270
18271
  ): multisig_account {
18271
18272
  this.onMoveEvent(
@@ -18274,7 +18275,7 @@ export class multisig_account extends AptosBaseProcessor {
18274
18275
  ...(eventFilter ?? {}),
18275
18276
  type: "multisig_account::TransactionExecutionSucceededEvent",
18276
18277
  },
18277
- fetchConfig,
18278
+ handlerOptions,
18278
18279
  );
18279
18280
  return this;
18280
18281
  }
@@ -18284,7 +18285,7 @@ export class multisig_account extends AptosBaseProcessor {
18284
18285
  event: multisig_account.UpdateSignaturesRequiredInstance,
18285
18286
  ctx: AptosContext,
18286
18287
  ) => void,
18287
- fetchConfig?: Partial<MoveFetchConfig>,
18288
+ handlerOptions?: HandlerOptions<multisig_account.UpdateSignaturesRequiredInstance>,
18288
18289
  eventFilter?: Omit<EventFilter, "type" | "account">,
18289
18290
  ): multisig_account {
18290
18291
  this.onMoveEvent(
@@ -18293,7 +18294,7 @@ export class multisig_account extends AptosBaseProcessor {
18293
18294
  ...(eventFilter ?? {}),
18294
18295
  type: "multisig_account::UpdateSignaturesRequired",
18295
18296
  },
18296
- fetchConfig,
18297
+ handlerOptions,
18297
18298
  );
18298
18299
  return this;
18299
18300
  }
@@ -18303,7 +18304,7 @@ export class multisig_account extends AptosBaseProcessor {
18303
18304
  event: multisig_account.UpdateSignaturesRequiredEventInstance,
18304
18305
  ctx: AptosContext,
18305
18306
  ) => void,
18306
- fetchConfig?: Partial<MoveFetchConfig>,
18307
+ handlerOptions?: HandlerOptions<multisig_account.UpdateSignaturesRequiredEventInstance>,
18307
18308
  eventFilter?: Omit<EventFilter, "type" | "account">,
18308
18309
  ): multisig_account {
18309
18310
  this.onMoveEvent(
@@ -18312,7 +18313,7 @@ export class multisig_account extends AptosBaseProcessor {
18312
18313
  ...(eventFilter ?? {}),
18313
18314
  type: "multisig_account::UpdateSignaturesRequiredEvent",
18314
18315
  },
18315
- fetchConfig,
18316
+ handlerOptions,
18316
18317
  );
18317
18318
  return this;
18318
18319
  }
@@ -20517,13 +20518,13 @@ export class staking_contract extends AptosBaseProcessor {
20517
20518
 
20518
20519
  onEventAddStake(
20519
20520
  func: (event: staking_contract.AddStakeInstance, ctx: AptosContext) => void,
20520
- fetchConfig?: Partial<MoveFetchConfig>,
20521
+ handlerOptions?: HandlerOptions<staking_contract.AddStakeInstance>,
20521
20522
  eventFilter?: Omit<EventFilter, "type" | "account">,
20522
20523
  ): staking_contract {
20523
20524
  this.onMoveEvent(
20524
20525
  func,
20525
20526
  { ...(eventFilter ?? {}), type: "staking_contract::AddStake" },
20526
- fetchConfig,
20527
+ handlerOptions,
20527
20528
  );
20528
20529
  return this;
20529
20530
  }
@@ -20533,13 +20534,13 @@ export class staking_contract extends AptosBaseProcessor {
20533
20534
  event: staking_contract.AddStakeEventInstance,
20534
20535
  ctx: AptosContext,
20535
20536
  ) => void,
20536
- fetchConfig?: Partial<MoveFetchConfig>,
20537
+ handlerOptions?: HandlerOptions<staking_contract.AddStakeEventInstance>,
20537
20538
  eventFilter?: Omit<EventFilter, "type" | "account">,
20538
20539
  ): staking_contract {
20539
20540
  this.onMoveEvent(
20540
20541
  func,
20541
20542
  { ...(eventFilter ?? {}), type: "staking_contract::AddStakeEvent" },
20542
- fetchConfig,
20543
+ handlerOptions,
20543
20544
  );
20544
20545
  return this;
20545
20546
  }
@@ -20549,13 +20550,13 @@ export class staking_contract extends AptosBaseProcessor {
20549
20550
  event: staking_contract.UnlockStakeInstance,
20550
20551
  ctx: AptosContext,
20551
20552
  ) => void,
20552
- fetchConfig?: Partial<MoveFetchConfig>,
20553
+ handlerOptions?: HandlerOptions<staking_contract.UnlockStakeInstance>,
20553
20554
  eventFilter?: Omit<EventFilter, "type" | "account">,
20554
20555
  ): staking_contract {
20555
20556
  this.onMoveEvent(
20556
20557
  func,
20557
20558
  { ...(eventFilter ?? {}), type: "staking_contract::UnlockStake" },
20558
- fetchConfig,
20559
+ handlerOptions,
20559
20560
  );
20560
20561
  return this;
20561
20562
  }
@@ -20565,13 +20566,13 @@ export class staking_contract extends AptosBaseProcessor {
20565
20566
  event: staking_contract.UnlockStakeEventInstance,
20566
20567
  ctx: AptosContext,
20567
20568
  ) => void,
20568
- fetchConfig?: Partial<MoveFetchConfig>,
20569
+ handlerOptions?: HandlerOptions<staking_contract.UnlockStakeEventInstance>,
20569
20570
  eventFilter?: Omit<EventFilter, "type" | "account">,
20570
20571
  ): staking_contract {
20571
20572
  this.onMoveEvent(
20572
20573
  func,
20573
20574
  { ...(eventFilter ?? {}), type: "staking_contract::UnlockStakeEvent" },
20574
- fetchConfig,
20575
+ handlerOptions,
20575
20576
  );
20576
20577
  return this;
20577
20578
  }
@@ -20581,7 +20582,7 @@ export class staking_contract extends AptosBaseProcessor {
20581
20582
  event: staking_contract.SetBeneficiaryForOperatorInstance,
20582
20583
  ctx: AptosContext,
20583
20584
  ) => void,
20584
- fetchConfig?: Partial<MoveFetchConfig>,
20585
+ handlerOptions?: HandlerOptions<staking_contract.SetBeneficiaryForOperatorInstance>,
20585
20586
  eventFilter?: Omit<EventFilter, "type" | "account">,
20586
20587
  ): staking_contract {
20587
20588
  this.onMoveEvent(
@@ -20590,7 +20591,7 @@ export class staking_contract extends AptosBaseProcessor {
20590
20591
  ...(eventFilter ?? {}),
20591
20592
  type: "staking_contract::SetBeneficiaryForOperator",
20592
20593
  },
20593
- fetchConfig,
20594
+ handlerOptions,
20594
20595
  );
20595
20596
  return this;
20596
20597
  }
@@ -20600,13 +20601,13 @@ export class staking_contract extends AptosBaseProcessor {
20600
20601
  event: staking_contract.AddDistributionInstance,
20601
20602
  ctx: AptosContext,
20602
20603
  ) => void,
20603
- fetchConfig?: Partial<MoveFetchConfig>,
20604
+ handlerOptions?: HandlerOptions<staking_contract.AddDistributionInstance>,
20604
20605
  eventFilter?: Omit<EventFilter, "type" | "account">,
20605
20606
  ): staking_contract {
20606
20607
  this.onMoveEvent(
20607
20608
  func,
20608
20609
  { ...(eventFilter ?? {}), type: "staking_contract::AddDistribution" },
20609
- fetchConfig,
20610
+ handlerOptions,
20610
20611
  );
20611
20612
  return this;
20612
20613
  }
@@ -20616,7 +20617,7 @@ export class staking_contract extends AptosBaseProcessor {
20616
20617
  event: staking_contract.AddDistributionEventInstance,
20617
20618
  ctx: AptosContext,
20618
20619
  ) => void,
20619
- fetchConfig?: Partial<MoveFetchConfig>,
20620
+ handlerOptions?: HandlerOptions<staking_contract.AddDistributionEventInstance>,
20620
20621
  eventFilter?: Omit<EventFilter, "type" | "account">,
20621
20622
  ): staking_contract {
20622
20623
  this.onMoveEvent(
@@ -20625,7 +20626,7 @@ export class staking_contract extends AptosBaseProcessor {
20625
20626
  ...(eventFilter ?? {}),
20626
20627
  type: "staking_contract::AddDistributionEvent",
20627
20628
  },
20628
- fetchConfig,
20629
+ handlerOptions,
20629
20630
  );
20630
20631
  return this;
20631
20632
  }
@@ -20635,7 +20636,7 @@ export class staking_contract extends AptosBaseProcessor {
20635
20636
  event: staking_contract.CreateStakingContractInstance,
20636
20637
  ctx: AptosContext,
20637
20638
  ) => void,
20638
- fetchConfig?: Partial<MoveFetchConfig>,
20639
+ handlerOptions?: HandlerOptions<staking_contract.CreateStakingContractInstance>,
20639
20640
  eventFilter?: Omit<EventFilter, "type" | "account">,
20640
20641
  ): staking_contract {
20641
20642
  this.onMoveEvent(
@@ -20644,7 +20645,7 @@ export class staking_contract extends AptosBaseProcessor {
20644
20645
  ...(eventFilter ?? {}),
20645
20646
  type: "staking_contract::CreateStakingContract",
20646
20647
  },
20647
- fetchConfig,
20648
+ handlerOptions,
20648
20649
  );
20649
20650
  return this;
20650
20651
  }
@@ -20654,7 +20655,7 @@ export class staking_contract extends AptosBaseProcessor {
20654
20655
  event: staking_contract.CreateStakingContractEventInstance,
20655
20656
  ctx: AptosContext,
20656
20657
  ) => void,
20657
- fetchConfig?: Partial<MoveFetchConfig>,
20658
+ handlerOptions?: HandlerOptions<staking_contract.CreateStakingContractEventInstance>,
20658
20659
  eventFilter?: Omit<EventFilter, "type" | "account">,
20659
20660
  ): staking_contract {
20660
20661
  this.onMoveEvent(
@@ -20663,7 +20664,7 @@ export class staking_contract extends AptosBaseProcessor {
20663
20664
  ...(eventFilter ?? {}),
20664
20665
  type: "staking_contract::CreateStakingContractEvent",
20665
20666
  },
20666
- fetchConfig,
20667
+ handlerOptions,
20667
20668
  );
20668
20669
  return this;
20669
20670
  }
@@ -20673,13 +20674,13 @@ export class staking_contract extends AptosBaseProcessor {
20673
20674
  event: staking_contract.DistributeInstance,
20674
20675
  ctx: AptosContext,
20675
20676
  ) => void,
20676
- fetchConfig?: Partial<MoveFetchConfig>,
20677
+ handlerOptions?: HandlerOptions<staking_contract.DistributeInstance>,
20677
20678
  eventFilter?: Omit<EventFilter, "type" | "account">,
20678
20679
  ): staking_contract {
20679
20680
  this.onMoveEvent(
20680
20681
  func,
20681
20682
  { ...(eventFilter ?? {}), type: "staking_contract::Distribute" },
20682
- fetchConfig,
20683
+ handlerOptions,
20683
20684
  );
20684
20685
  return this;
20685
20686
  }
@@ -20689,13 +20690,13 @@ export class staking_contract extends AptosBaseProcessor {
20689
20690
  event: staking_contract.DistributeEventInstance,
20690
20691
  ctx: AptosContext,
20691
20692
  ) => void,
20692
- fetchConfig?: Partial<MoveFetchConfig>,
20693
+ handlerOptions?: HandlerOptions<staking_contract.DistributeEventInstance>,
20693
20694
  eventFilter?: Omit<EventFilter, "type" | "account">,
20694
20695
  ): staking_contract {
20695
20696
  this.onMoveEvent(
20696
20697
  func,
20697
20698
  { ...(eventFilter ?? {}), type: "staking_contract::DistributeEvent" },
20698
- fetchConfig,
20699
+ handlerOptions,
20699
20700
  );
20700
20701
  return this;
20701
20702
  }
@@ -20705,13 +20706,13 @@ export class staking_contract extends AptosBaseProcessor {
20705
20706
  event: staking_contract.RequestCommissionInstance,
20706
20707
  ctx: AptosContext,
20707
20708
  ) => void,
20708
- fetchConfig?: Partial<MoveFetchConfig>,
20709
+ handlerOptions?: HandlerOptions<staking_contract.RequestCommissionInstance>,
20709
20710
  eventFilter?: Omit<EventFilter, "type" | "account">,
20710
20711
  ): staking_contract {
20711
20712
  this.onMoveEvent(
20712
20713
  func,
20713
20714
  { ...(eventFilter ?? {}), type: "staking_contract::RequestCommission" },
20714
- fetchConfig,
20715
+ handlerOptions,
20715
20716
  );
20716
20717
  return this;
20717
20718
  }
@@ -20721,7 +20722,7 @@ export class staking_contract extends AptosBaseProcessor {
20721
20722
  event: staking_contract.RequestCommissionEventInstance,
20722
20723
  ctx: AptosContext,
20723
20724
  ) => void,
20724
- fetchConfig?: Partial<MoveFetchConfig>,
20725
+ handlerOptions?: HandlerOptions<staking_contract.RequestCommissionEventInstance>,
20725
20726
  eventFilter?: Omit<EventFilter, "type" | "account">,
20726
20727
  ): staking_contract {
20727
20728
  this.onMoveEvent(
@@ -20730,7 +20731,7 @@ export class staking_contract extends AptosBaseProcessor {
20730
20731
  ...(eventFilter ?? {}),
20731
20732
  type: "staking_contract::RequestCommissionEvent",
20732
20733
  },
20733
- fetchConfig,
20734
+ handlerOptions,
20734
20735
  );
20735
20736
  return this;
20736
20737
  }
@@ -20740,13 +20741,13 @@ export class staking_contract extends AptosBaseProcessor {
20740
20741
  event: staking_contract.ResetLockupInstance,
20741
20742
  ctx: AptosContext,
20742
20743
  ) => void,
20743
- fetchConfig?: Partial<MoveFetchConfig>,
20744
+ handlerOptions?: HandlerOptions<staking_contract.ResetLockupInstance>,
20744
20745
  eventFilter?: Omit<EventFilter, "type" | "account">,
20745
20746
  ): staking_contract {
20746
20747
  this.onMoveEvent(
20747
20748
  func,
20748
20749
  { ...(eventFilter ?? {}), type: "staking_contract::ResetLockup" },
20749
- fetchConfig,
20750
+ handlerOptions,
20750
20751
  );
20751
20752
  return this;
20752
20753
  }
@@ -20756,13 +20757,13 @@ export class staking_contract extends AptosBaseProcessor {
20756
20757
  event: staking_contract.ResetLockupEventInstance,
20757
20758
  ctx: AptosContext,
20758
20759
  ) => void,
20759
- fetchConfig?: Partial<MoveFetchConfig>,
20760
+ handlerOptions?: HandlerOptions<staking_contract.ResetLockupEventInstance>,
20760
20761
  eventFilter?: Omit<EventFilter, "type" | "account">,
20761
20762
  ): staking_contract {
20762
20763
  this.onMoveEvent(
20763
20764
  func,
20764
20765
  { ...(eventFilter ?? {}), type: "staking_contract::ResetLockupEvent" },
20765
- fetchConfig,
20766
+ handlerOptions,
20766
20767
  );
20767
20768
  return this;
20768
20769
  }
@@ -20772,7 +20773,7 @@ export class staking_contract extends AptosBaseProcessor {
20772
20773
  event: staking_contract.StakingGroupUpdateCommissionEventInstance,
20773
20774
  ctx: AptosContext,
20774
20775
  ) => void,
20775
- fetchConfig?: Partial<MoveFetchConfig>,
20776
+ handlerOptions?: HandlerOptions<staking_contract.StakingGroupUpdateCommissionEventInstance>,
20776
20777
  eventFilter?: Omit<EventFilter, "type" | "account">,
20777
20778
  ): staking_contract {
20778
20779
  this.onMoveEvent(
@@ -20781,7 +20782,7 @@ export class staking_contract extends AptosBaseProcessor {
20781
20782
  ...(eventFilter ?? {}),
20782
20783
  type: "staking_contract::StakingGroupUpdateCommissionEvent",
20783
20784
  },
20784
- fetchConfig,
20785
+ handlerOptions,
20785
20786
  );
20786
20787
  return this;
20787
20788
  }
@@ -20791,13 +20792,13 @@ export class staking_contract extends AptosBaseProcessor {
20791
20792
  event: staking_contract.SwitchOperatorInstance,
20792
20793
  ctx: AptosContext,
20793
20794
  ) => void,
20794
- fetchConfig?: Partial<MoveFetchConfig>,
20795
+ handlerOptions?: HandlerOptions<staking_contract.SwitchOperatorInstance>,
20795
20796
  eventFilter?: Omit<EventFilter, "type" | "account">,
20796
20797
  ): staking_contract {
20797
20798
  this.onMoveEvent(
20798
20799
  func,
20799
20800
  { ...(eventFilter ?? {}), type: "staking_contract::SwitchOperator" },
20800
- fetchConfig,
20801
+ handlerOptions,
20801
20802
  );
20802
20803
  return this;
20803
20804
  }
@@ -20807,13 +20808,13 @@ export class staking_contract extends AptosBaseProcessor {
20807
20808
  event: staking_contract.SwitchOperatorEventInstance,
20808
20809
  ctx: AptosContext,
20809
20810
  ) => void,
20810
- fetchConfig?: Partial<MoveFetchConfig>,
20811
+ handlerOptions?: HandlerOptions<staking_contract.SwitchOperatorEventInstance>,
20811
20812
  eventFilter?: Omit<EventFilter, "type" | "account">,
20812
20813
  ): staking_contract {
20813
20814
  this.onMoveEvent(
20814
20815
  func,
20815
20816
  { ...(eventFilter ?? {}), type: "staking_contract::SwitchOperatorEvent" },
20816
- fetchConfig,
20817
+ handlerOptions,
20817
20818
  );
20818
20819
  return this;
20819
20820
  }
@@ -20823,13 +20824,13 @@ export class staking_contract extends AptosBaseProcessor {
20823
20824
  event: staking_contract.UpdateCommissionInstance,
20824
20825
  ctx: AptosContext,
20825
20826
  ) => void,
20826
- fetchConfig?: Partial<MoveFetchConfig>,
20827
+ handlerOptions?: HandlerOptions<staking_contract.UpdateCommissionInstance>,
20827
20828
  eventFilter?: Omit<EventFilter, "type" | "account">,
20828
20829
  ): staking_contract {
20829
20830
  this.onMoveEvent(
20830
20831
  func,
20831
20832
  { ...(eventFilter ?? {}), type: "staking_contract::UpdateCommission" },
20832
- fetchConfig,
20833
+ handlerOptions,
20833
20834
  );
20834
20835
  return this;
20835
20836
  }
@@ -20839,7 +20840,7 @@ export class staking_contract extends AptosBaseProcessor {
20839
20840
  event: staking_contract.UpdateCommissionEventInstance,
20840
20841
  ctx: AptosContext,
20841
20842
  ) => void,
20842
- fetchConfig?: Partial<MoveFetchConfig>,
20843
+ handlerOptions?: HandlerOptions<staking_contract.UpdateCommissionEventInstance>,
20843
20844
  eventFilter?: Omit<EventFilter, "type" | "account">,
20844
20845
  ): staking_contract {
20845
20846
  this.onMoveEvent(
@@ -20848,7 +20849,7 @@ export class staking_contract extends AptosBaseProcessor {
20848
20849
  ...(eventFilter ?? {}),
20849
20850
  type: "staking_contract::UpdateCommissionEvent",
20850
20851
  },
20851
- fetchConfig,
20852
+ handlerOptions,
20852
20853
  );
20853
20854
  return this;
20854
20855
  }
@@ -20858,13 +20859,13 @@ export class staking_contract extends AptosBaseProcessor {
20858
20859
  event: staking_contract.UpdateVoterInstance,
20859
20860
  ctx: AptosContext,
20860
20861
  ) => void,
20861
- fetchConfig?: Partial<MoveFetchConfig>,
20862
+ handlerOptions?: HandlerOptions<staking_contract.UpdateVoterInstance>,
20862
20863
  eventFilter?: Omit<EventFilter, "type" | "account">,
20863
20864
  ): staking_contract {
20864
20865
  this.onMoveEvent(
20865
20866
  func,
20866
20867
  { ...(eventFilter ?? {}), type: "staking_contract::UpdateVoter" },
20867
- fetchConfig,
20868
+ handlerOptions,
20868
20869
  );
20869
20870
  return this;
20870
20871
  }
@@ -20874,13 +20875,13 @@ export class staking_contract extends AptosBaseProcessor {
20874
20875
  event: staking_contract.UpdateVoterEventInstance,
20875
20876
  ctx: AptosContext,
20876
20877
  ) => void,
20877
- fetchConfig?: Partial<MoveFetchConfig>,
20878
+ handlerOptions?: HandlerOptions<staking_contract.UpdateVoterEventInstance>,
20878
20879
  eventFilter?: Omit<EventFilter, "type" | "account">,
20879
20880
  ): staking_contract {
20880
20881
  this.onMoveEvent(
20881
20882
  func,
20882
20883
  { ...(eventFilter ?? {}), type: "staking_contract::UpdateVoterEvent" },
20883
- fetchConfig,
20884
+ handlerOptions,
20884
20885
  );
20885
20886
  return this;
20886
20887
  }
@@ -22342,7 +22343,7 @@ export class account_abstraction extends AptosBaseProcessor {
22342
22343
  event: account_abstraction.RemoveDispatchableAuthenticatorInstance,
22343
22344
  ctx: AptosContext,
22344
22345
  ) => void,
22345
- fetchConfig?: Partial<MoveFetchConfig>,
22346
+ handlerOptions?: HandlerOptions<account_abstraction.RemoveDispatchableAuthenticatorInstance>,
22346
22347
  eventFilter?: Omit<EventFilter, "type" | "account">,
22347
22348
  ): account_abstraction {
22348
22349
  this.onMoveEvent(
@@ -22351,7 +22352,7 @@ export class account_abstraction extends AptosBaseProcessor {
22351
22352
  ...(eventFilter ?? {}),
22352
22353
  type: "account_abstraction::RemoveDispatchableAuthenticator",
22353
22354
  },
22354
- fetchConfig,
22355
+ handlerOptions,
22355
22356
  );
22356
22357
  return this;
22357
22358
  }
@@ -22361,7 +22362,7 @@ export class account_abstraction extends AptosBaseProcessor {
22361
22362
  event: account_abstraction.UpdateDispatchableAuthenticatorInstance,
22362
22363
  ctx: AptosContext,
22363
22364
  ) => void,
22364
- fetchConfig?: Partial<MoveFetchConfig>,
22365
+ handlerOptions?: HandlerOptions<account_abstraction.UpdateDispatchableAuthenticatorInstance>,
22365
22366
  eventFilter?: Omit<EventFilter, "type" | "account">,
22366
22367
  ): account_abstraction {
22367
22368
  this.onMoveEvent(
@@ -22370,7 +22371,7 @@ export class account_abstraction extends AptosBaseProcessor {
22370
22371
  ...(eventFilter ?? {}),
22371
22372
  type: "account_abstraction::UpdateDispatchableAuthenticator",
22372
22373
  },
22373
- fetchConfig,
22374
+ handlerOptions,
22374
22375
  );
22375
22376
  return this;
22376
22377
  }
@@ -23374,13 +23375,13 @@ export class object_code_deployment extends AptosBaseProcessor {
23374
23375
  event: object_code_deployment.FreezeInstance,
23375
23376
  ctx: AptosContext,
23376
23377
  ) => void,
23377
- fetchConfig?: Partial<MoveFetchConfig>,
23378
+ handlerOptions?: HandlerOptions<object_code_deployment.FreezeInstance>,
23378
23379
  eventFilter?: Omit<EventFilter, "type" | "account">,
23379
23380
  ): object_code_deployment {
23380
23381
  this.onMoveEvent(
23381
23382
  func,
23382
23383
  { ...(eventFilter ?? {}), type: "object_code_deployment::Freeze" },
23383
- fetchConfig,
23384
+ handlerOptions,
23384
23385
  );
23385
23386
  return this;
23386
23387
  }
@@ -23390,13 +23391,13 @@ export class object_code_deployment extends AptosBaseProcessor {
23390
23391
  event: object_code_deployment.PublishInstance,
23391
23392
  ctx: AptosContext,
23392
23393
  ) => void,
23393
- fetchConfig?: Partial<MoveFetchConfig>,
23394
+ handlerOptions?: HandlerOptions<object_code_deployment.PublishInstance>,
23394
23395
  eventFilter?: Omit<EventFilter, "type" | "account">,
23395
23396
  ): object_code_deployment {
23396
23397
  this.onMoveEvent(
23397
23398
  func,
23398
23399
  { ...(eventFilter ?? {}), type: "object_code_deployment::Publish" },
23399
- fetchConfig,
23400
+ handlerOptions,
23400
23401
  );
23401
23402
  return this;
23402
23403
  }
@@ -23406,13 +23407,13 @@ export class object_code_deployment extends AptosBaseProcessor {
23406
23407
  event: object_code_deployment.UpgradeInstance,
23407
23408
  ctx: AptosContext,
23408
23409
  ) => void,
23409
- fetchConfig?: Partial<MoveFetchConfig>,
23410
+ handlerOptions?: HandlerOptions<object_code_deployment.UpgradeInstance>,
23410
23411
  eventFilter?: Omit<EventFilter, "type" | "account">,
23411
23412
  ): object_code_deployment {
23412
23413
  this.onMoveEvent(
23413
23414
  func,
23414
23415
  { ...(eventFilter ?? {}), type: "object_code_deployment::Upgrade" },
23415
- fetchConfig,
23416
+ handlerOptions,
23416
23417
  );
23417
23418
  return this;
23418
23419
  }