@sentio/sdk 2.1.5 → 2.2.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/lib/aptos/aptos-plugin.js +5 -13
  2. package/lib/aptos/aptos-plugin.js.map +1 -1
  3. package/lib/aptos/aptos-processor.d.ts +5 -28
  4. package/lib/aptos/aptos-processor.js +4 -14
  5. package/lib/aptos/aptos-processor.js.map +1 -1
  6. package/lib/aptos/builtin/0x1.d.ts +116 -115
  7. package/lib/aptos/builtin/0x1.js +0 -1
  8. package/lib/aptos/builtin/0x1.js.map +1 -1
  9. package/lib/aptos/builtin/0x3.d.ts +28 -27
  10. package/lib/aptos/builtin/0x3.js +0 -1
  11. package/lib/aptos/builtin/0x3.js.map +1 -1
  12. package/lib/aptos/codegen/codegen.js +5 -5
  13. package/lib/aptos/codegen/codegen.js.map +1 -1
  14. package/lib/aptos/index.d.ts +0 -1
  15. package/lib/aptos/index.js.map +1 -1
  16. package/lib/aptos/tests/types/reserved.d.ts +21 -20
  17. package/lib/aptos/tests/types/reserved.js +0 -1
  18. package/lib/aptos/tests/types/reserved.js.map +1 -1
  19. package/lib/aptos/tests/types/soffl3.d.ts +37 -36
  20. package/lib/aptos/tests/types/soffl3.js +0 -1
  21. package/lib/aptos/tests/types/soffl3.js.map +1 -1
  22. package/lib/aptos/tests/types/souffle.d.ts +21 -20
  23. package/lib/aptos/tests/types/souffle.js +0 -1
  24. package/lib/aptos/tests/types/souffle.js.map +1 -1
  25. package/lib/core/chain.d.ts +3 -2
  26. package/lib/core/chain.js +3 -2
  27. package/lib/core/chain.js.map +1 -1
  28. package/lib/core/index.d.ts +0 -2
  29. package/lib/core/index.js +0 -2
  30. package/lib/core/index.js.map +1 -1
  31. package/lib/eth/context.d.ts +0 -7
  32. package/lib/eth/context.js +0 -24
  33. package/lib/eth/context.js.map +1 -1
  34. package/lib/eth/eth-plugin.js +4 -14
  35. package/lib/eth/eth-plugin.js.map +1 -1
  36. package/lib/move/index.d.ts +25 -0
  37. package/lib/move/index.js +11 -0
  38. package/lib/move/index.js.map +1 -0
  39. package/lib/solana/solana-plugin.js +3 -10
  40. package/lib/solana/solana-plugin.js.map +1 -1
  41. package/lib/sui/context.d.ts +13 -0
  42. package/lib/sui/context.js +33 -0
  43. package/lib/sui/context.js.map +1 -0
  44. package/lib/sui/index.d.ts +2 -0
  45. package/lib/sui/index.js +3 -0
  46. package/lib/sui/index.js.map +1 -0
  47. package/lib/sui/models.d.ts +8 -0
  48. package/lib/sui/models.js +25 -0
  49. package/lib/sui/models.js.map +1 -0
  50. package/lib/sui/network.d.ts +11 -0
  51. package/lib/sui/network.js +26 -0
  52. package/lib/sui/network.js.map +1 -0
  53. package/lib/sui/sui-plugin.d.ts +12 -0
  54. package/lib/sui/sui-plugin.js +96 -0
  55. package/lib/sui/sui-plugin.js.map +1 -0
  56. package/lib/sui/sui-processor.d.ts +29 -0
  57. package/lib/sui/sui-processor.js +120 -0
  58. package/lib/sui/sui-processor.js.map +1 -0
  59. package/lib/sui/tests/sui.test.d.ts +1 -0
  60. package/lib/sui/tests/sui.test.js.map +1 -0
  61. package/lib/testing/test-processor-server.d.ts +1 -0
  62. package/lib/testing/test-processor-server.js +3 -0
  63. package/lib/testing/test-processor-server.js.map +1 -1
  64. package/lib/utils/price.d.ts +6 -2
  65. package/lib/utils/price.js +15 -6
  66. package/lib/utils/price.js.map +1 -1
  67. package/package.json +14 -7
  68. package/src/aptos/aptos-plugin.ts +8 -16
  69. package/src/aptos/aptos-processor.ts +8 -46
  70. package/src/aptos/builtin/0x1.ts +115 -115
  71. package/src/aptos/builtin/0x3.ts +27 -27
  72. package/src/aptos/codegen/codegen.ts +5 -5
  73. package/src/aptos/index.ts +0 -1
  74. package/src/aptos/tests/types/reserved.ts +20 -20
  75. package/src/aptos/tests/types/soffl3.ts +36 -36
  76. package/src/aptos/tests/types/souffle.ts +20 -20
  77. package/src/core/chain.ts +4 -3
  78. package/src/core/index.ts +0 -3
  79. package/src/eth/context.ts +0 -26
  80. package/src/eth/eth-plugin.ts +3 -13
  81. package/src/move/index.ts +33 -0
  82. package/src/solana/solana-plugin.ts +2 -9
  83. package/src/sui/abis/0x1.json +2067 -0
  84. package/src/sui/abis/0x2.json +15598 -0
  85. package/src/sui/context.ts +43 -0
  86. package/src/sui/index.ts +3 -0
  87. package/src/sui/models.ts +38 -0
  88. package/src/sui/network.ts +28 -0
  89. package/src/sui/sui-plugin.ts +122 -0
  90. package/src/sui/sui-processor.ts +159 -0
  91. package/src/testing/test-processor-server.ts +4 -0
  92. package/src/utils/price.ts +31 -10
  93. package/lib/core/sui-plugin.d.ts +0 -8
  94. package/lib/core/sui-plugin.js +0 -42
  95. package/lib/core/sui-plugin.js.map +0 -1
  96. package/lib/core/sui-processor.d.ts +0 -25
  97. package/lib/core/sui-processor.js +0 -43
  98. package/lib/core/sui-processor.js.map +0 -1
  99. package/src/aptos/codegen/tsconfig.json +0 -8
  100. package/src/core/sui-plugin.ts +0 -48
  101. package/src/core/sui-processor.ts +0 -58
@@ -4,6 +4,7 @@
4
4
 
5
5
  /* Generated modules for account 0x1 */
6
6
 
7
+ import { CallFilter } from "@sentio/sdk/move";
7
8
  import {
8
9
  MoveCoder,
9
10
  AptosBindOptions,
@@ -12,9 +13,8 @@ import {
12
13
  AptosNetwork,
13
14
  TypedEntryFunctionPayload,
14
15
  AptosContext,
15
- CallFilter,
16
16
  } from "@sentio/sdk/aptos";
17
- import { AptosFetchConfig } from "@sentio/protos";
17
+ import { MoveFetchConfig } from "@sentio/protos";
18
18
  import { Address, MoveModule } from "@sentio/sdk/aptos";
19
19
 
20
20
  export namespace acl {
@@ -71,7 +71,7 @@ export class code extends AptosBaseProcessor {
71
71
  onEntryPublishPackageTxn(
72
72
  func: (call: code.PublishPackageTxnPayload, ctx: AptosContext) => void,
73
73
  filter?: CallFilter,
74
- fetchConfig?: AptosFetchConfig
74
+ fetchConfig?: MoveFetchConfig
75
75
  ): code {
76
76
  this.onEntryFunctionCall(
77
77
  func,
@@ -162,7 +162,7 @@ export class coin extends AptosBaseProcessor {
162
162
  onEntryFreezeCoinStore(
163
163
  func: (call: coin.FreezeCoinStorePayload, ctx: AptosContext) => void,
164
164
  filter?: CallFilter,
165
- fetchConfig?: AptosFetchConfig
165
+ fetchConfig?: MoveFetchConfig
166
166
  ): coin {
167
167
  this.onEntryFunctionCall(
168
168
  func,
@@ -178,7 +178,7 @@ export class coin extends AptosBaseProcessor {
178
178
  onEntryTransfer(
179
179
  func: (call: coin.TransferPayload, ctx: AptosContext) => void,
180
180
  filter?: CallFilter,
181
- fetchConfig?: AptosFetchConfig
181
+ fetchConfig?: MoveFetchConfig
182
182
  ): coin {
183
183
  this.onEntryFunctionCall(
184
184
  func,
@@ -194,7 +194,7 @@ export class coin extends AptosBaseProcessor {
194
194
  onEntryUnfreezeCoinStore(
195
195
  func: (call: coin.UnfreezeCoinStorePayload, ctx: AptosContext) => void,
196
196
  filter?: CallFilter,
197
- fetchConfig?: AptosFetchConfig
197
+ fetchConfig?: MoveFetchConfig
198
198
  ): coin {
199
199
  this.onEntryFunctionCall(
200
200
  func,
@@ -210,7 +210,7 @@ export class coin extends AptosBaseProcessor {
210
210
  onEntryUpgradeSupply(
211
211
  func: (call: coin.UpgradeSupplyPayload, ctx: AptosContext) => void,
212
212
  filter?: CallFilter,
213
- fetchConfig?: AptosFetchConfig
213
+ fetchConfig?: MoveFetchConfig
214
214
  ): coin {
215
215
  this.onEntryFunctionCall(
216
216
  func,
@@ -225,7 +225,7 @@ export class coin extends AptosBaseProcessor {
225
225
 
226
226
  onEventDepositEvent(
227
227
  func: (event: coin.DepositEventInstance, ctx: AptosContext) => void,
228
- fetchConfig?: AptosFetchConfig
228
+ fetchConfig?: MoveFetchConfig
229
229
  ): coin {
230
230
  this.onEvent(
231
231
  func,
@@ -239,7 +239,7 @@ export class coin extends AptosBaseProcessor {
239
239
 
240
240
  onEventWithdrawEvent(
241
241
  func: (event: coin.WithdrawEventInstance, ctx: AptosContext) => void,
242
- fetchConfig?: AptosFetchConfig
242
+ fetchConfig?: MoveFetchConfig
243
243
  ): coin {
244
244
  this.onEvent(
245
245
  func,
@@ -405,7 +405,7 @@ export class block extends AptosBaseProcessor {
405
405
 
406
406
  onEventNewBlockEvent(
407
407
  func: (event: block.NewBlockEventInstance, ctx: AptosContext) => void,
408
- fetchConfig?: AptosFetchConfig
408
+ fetchConfig?: MoveFetchConfig
409
409
  ): block {
410
410
  this.onEvent(
411
411
  func,
@@ -422,7 +422,7 @@ export class block extends AptosBaseProcessor {
422
422
  event: block.UpdateEpochIntervalEventInstance,
423
423
  ctx: AptosContext
424
424
  ) => void,
425
- fetchConfig?: AptosFetchConfig
425
+ fetchConfig?: MoveFetchConfig
426
426
  ): block {
427
427
  this.onEvent(
428
428
  func,
@@ -535,7 +535,7 @@ export class stake extends AptosBaseProcessor {
535
535
  onEntryAddStake(
536
536
  func: (call: stake.AddStakePayload, ctx: AptosContext) => void,
537
537
  filter?: CallFilter,
538
- fetchConfig?: AptosFetchConfig
538
+ fetchConfig?: MoveFetchConfig
539
539
  ): stake {
540
540
  this.onEntryFunctionCall(
541
541
  func,
@@ -551,7 +551,7 @@ export class stake extends AptosBaseProcessor {
551
551
  onEntryIncreaseLockup(
552
552
  func: (call: stake.IncreaseLockupPayload, ctx: AptosContext) => void,
553
553
  filter?: CallFilter,
554
- fetchConfig?: AptosFetchConfig
554
+ fetchConfig?: MoveFetchConfig
555
555
  ): stake {
556
556
  this.onEntryFunctionCall(
557
557
  func,
@@ -567,7 +567,7 @@ export class stake extends AptosBaseProcessor {
567
567
  onEntryInitializeStakeOwner(
568
568
  func: (call: stake.InitializeStakeOwnerPayload, ctx: AptosContext) => void,
569
569
  filter?: CallFilter,
570
- fetchConfig?: AptosFetchConfig
570
+ fetchConfig?: MoveFetchConfig
571
571
  ): stake {
572
572
  this.onEntryFunctionCall(
573
573
  func,
@@ -583,7 +583,7 @@ export class stake extends AptosBaseProcessor {
583
583
  onEntryInitializeValidator(
584
584
  func: (call: stake.InitializeValidatorPayload, ctx: AptosContext) => void,
585
585
  filter?: CallFilter,
586
- fetchConfig?: AptosFetchConfig
586
+ fetchConfig?: MoveFetchConfig
587
587
  ): stake {
588
588
  this.onEntryFunctionCall(
589
589
  func,
@@ -599,7 +599,7 @@ export class stake extends AptosBaseProcessor {
599
599
  onEntryJoinValidatorSet(
600
600
  func: (call: stake.JoinValidatorSetPayload, ctx: AptosContext) => void,
601
601
  filter?: CallFilter,
602
- fetchConfig?: AptosFetchConfig
602
+ fetchConfig?: MoveFetchConfig
603
603
  ): stake {
604
604
  this.onEntryFunctionCall(
605
605
  func,
@@ -615,7 +615,7 @@ export class stake extends AptosBaseProcessor {
615
615
  onEntryLeaveValidatorSet(
616
616
  func: (call: stake.LeaveValidatorSetPayload, ctx: AptosContext) => void,
617
617
  filter?: CallFilter,
618
- fetchConfig?: AptosFetchConfig
618
+ fetchConfig?: MoveFetchConfig
619
619
  ): stake {
620
620
  this.onEntryFunctionCall(
621
621
  func,
@@ -631,7 +631,7 @@ export class stake extends AptosBaseProcessor {
631
631
  onEntryReactivateStake(
632
632
  func: (call: stake.ReactivateStakePayload, ctx: AptosContext) => void,
633
633
  filter?: CallFilter,
634
- fetchConfig?: AptosFetchConfig
634
+ fetchConfig?: MoveFetchConfig
635
635
  ): stake {
636
636
  this.onEntryFunctionCall(
637
637
  func,
@@ -647,7 +647,7 @@ export class stake extends AptosBaseProcessor {
647
647
  onEntryRotateConsensusKey(
648
648
  func: (call: stake.RotateConsensusKeyPayload, ctx: AptosContext) => void,
649
649
  filter?: CallFilter,
650
- fetchConfig?: AptosFetchConfig
650
+ fetchConfig?: MoveFetchConfig
651
651
  ): stake {
652
652
  this.onEntryFunctionCall(
653
653
  func,
@@ -663,7 +663,7 @@ export class stake extends AptosBaseProcessor {
663
663
  onEntrySetDelegatedVoter(
664
664
  func: (call: stake.SetDelegatedVoterPayload, ctx: AptosContext) => void,
665
665
  filter?: CallFilter,
666
- fetchConfig?: AptosFetchConfig
666
+ fetchConfig?: MoveFetchConfig
667
667
  ): stake {
668
668
  this.onEntryFunctionCall(
669
669
  func,
@@ -679,7 +679,7 @@ export class stake extends AptosBaseProcessor {
679
679
  onEntrySetOperator(
680
680
  func: (call: stake.SetOperatorPayload, ctx: AptosContext) => void,
681
681
  filter?: CallFilter,
682
- fetchConfig?: AptosFetchConfig
682
+ fetchConfig?: MoveFetchConfig
683
683
  ): stake {
684
684
  this.onEntryFunctionCall(
685
685
  func,
@@ -695,7 +695,7 @@ export class stake extends AptosBaseProcessor {
695
695
  onEntryUnlock(
696
696
  func: (call: stake.UnlockPayload, ctx: AptosContext) => void,
697
697
  filter?: CallFilter,
698
- fetchConfig?: AptosFetchConfig
698
+ fetchConfig?: MoveFetchConfig
699
699
  ): stake {
700
700
  this.onEntryFunctionCall(
701
701
  func,
@@ -714,7 +714,7 @@ export class stake extends AptosBaseProcessor {
714
714
  ctx: AptosContext
715
715
  ) => void,
716
716
  filter?: CallFilter,
717
- fetchConfig?: AptosFetchConfig
717
+ fetchConfig?: MoveFetchConfig
718
718
  ): stake {
719
719
  this.onEntryFunctionCall(
720
720
  func,
@@ -730,7 +730,7 @@ export class stake extends AptosBaseProcessor {
730
730
  onEntryWithdraw(
731
731
  func: (call: stake.WithdrawPayload, ctx: AptosContext) => void,
732
732
  filter?: CallFilter,
733
- fetchConfig?: AptosFetchConfig
733
+ fetchConfig?: MoveFetchConfig
734
734
  ): stake {
735
735
  this.onEntryFunctionCall(
736
736
  func,
@@ -748,7 +748,7 @@ export class stake extends AptosBaseProcessor {
748
748
  event: stake.RegisterValidatorCandidateEventInstance,
749
749
  ctx: AptosContext
750
750
  ) => void,
751
- fetchConfig?: AptosFetchConfig
751
+ fetchConfig?: MoveFetchConfig
752
752
  ): stake {
753
753
  this.onEvent(
754
754
  func,
@@ -762,7 +762,7 @@ export class stake extends AptosBaseProcessor {
762
762
 
763
763
  onEventSetOperatorEvent(
764
764
  func: (event: stake.SetOperatorEventInstance, ctx: AptosContext) => void,
765
- fetchConfig?: AptosFetchConfig
765
+ fetchConfig?: MoveFetchConfig
766
766
  ): stake {
767
767
  this.onEvent(
768
768
  func,
@@ -776,7 +776,7 @@ export class stake extends AptosBaseProcessor {
776
776
 
777
777
  onEventAddStakeEvent(
778
778
  func: (event: stake.AddStakeEventInstance, ctx: AptosContext) => void,
779
- fetchConfig?: AptosFetchConfig
779
+ fetchConfig?: MoveFetchConfig
780
780
  ): stake {
781
781
  this.onEvent(
782
782
  func,
@@ -793,7 +793,7 @@ export class stake extends AptosBaseProcessor {
793
793
  event: stake.ReactivateStakeEventInstance,
794
794
  ctx: AptosContext
795
795
  ) => void,
796
- fetchConfig?: AptosFetchConfig
796
+ fetchConfig?: MoveFetchConfig
797
797
  ): stake {
798
798
  this.onEvent(
799
799
  func,
@@ -810,7 +810,7 @@ export class stake extends AptosBaseProcessor {
810
810
  event: stake.RotateConsensusKeyEventInstance,
811
811
  ctx: AptosContext
812
812
  ) => void,
813
- fetchConfig?: AptosFetchConfig
813
+ fetchConfig?: MoveFetchConfig
814
814
  ): stake {
815
815
  this.onEvent(
816
816
  func,
@@ -827,7 +827,7 @@ export class stake extends AptosBaseProcessor {
827
827
  event: stake.UpdateNetworkAndFullnodeAddressesEventInstance,
828
828
  ctx: AptosContext
829
829
  ) => void,
830
- fetchConfig?: AptosFetchConfig
830
+ fetchConfig?: MoveFetchConfig
831
831
  ): stake {
832
832
  this.onEvent(
833
833
  func,
@@ -841,7 +841,7 @@ export class stake extends AptosBaseProcessor {
841
841
 
842
842
  onEventIncreaseLockupEvent(
843
843
  func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void,
844
- fetchConfig?: AptosFetchConfig
844
+ fetchConfig?: MoveFetchConfig
845
845
  ): stake {
846
846
  this.onEvent(
847
847
  func,
@@ -858,7 +858,7 @@ export class stake extends AptosBaseProcessor {
858
858
  event: stake.JoinValidatorSetEventInstance,
859
859
  ctx: AptosContext
860
860
  ) => void,
861
- fetchConfig?: AptosFetchConfig
861
+ fetchConfig?: MoveFetchConfig
862
862
  ): stake {
863
863
  this.onEvent(
864
864
  func,
@@ -875,7 +875,7 @@ export class stake extends AptosBaseProcessor {
875
875
  event: stake.DistributeRewardsEventInstance,
876
876
  ctx: AptosContext
877
877
  ) => void,
878
- fetchConfig?: AptosFetchConfig
878
+ fetchConfig?: MoveFetchConfig
879
879
  ): stake {
880
880
  this.onEvent(
881
881
  func,
@@ -889,7 +889,7 @@ export class stake extends AptosBaseProcessor {
889
889
 
890
890
  onEventUnlockStakeEvent(
891
891
  func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void,
892
- fetchConfig?: AptosFetchConfig
892
+ fetchConfig?: MoveFetchConfig
893
893
  ): stake {
894
894
  this.onEvent(
895
895
  func,
@@ -903,7 +903,7 @@ export class stake extends AptosBaseProcessor {
903
903
 
904
904
  onEventWithdrawStakeEvent(
905
905
  func: (event: stake.WithdrawStakeEventInstance, ctx: AptosContext) => void,
906
- fetchConfig?: AptosFetchConfig
906
+ fetchConfig?: MoveFetchConfig
907
907
  ): stake {
908
908
  this.onEvent(
909
909
  func,
@@ -920,7 +920,7 @@ export class stake extends AptosBaseProcessor {
920
920
  event: stake.LeaveValidatorSetEventInstance,
921
921
  ctx: AptosContext
922
922
  ) => void,
923
- fetchConfig?: AptosFetchConfig
923
+ fetchConfig?: MoveFetchConfig
924
924
  ): stake {
925
925
  this.onEvent(
926
926
  func,
@@ -1333,7 +1333,7 @@ export class voting extends AptosBaseProcessor {
1333
1333
  event: voting.CreateProposalEventInstance,
1334
1334
  ctx: AptosContext
1335
1335
  ) => void,
1336
- fetchConfig?: AptosFetchConfig
1336
+ fetchConfig?: MoveFetchConfig
1337
1337
  ): voting {
1338
1338
  this.onEvent(
1339
1339
  func,
@@ -1347,7 +1347,7 @@ export class voting extends AptosBaseProcessor {
1347
1347
 
1348
1348
  onEventRegisterForumEvent(
1349
1349
  func: (event: voting.RegisterForumEventInstance, ctx: AptosContext) => void,
1350
- fetchConfig?: AptosFetchConfig
1350
+ fetchConfig?: MoveFetchConfig
1351
1351
  ): voting {
1352
1352
  this.onEvent(
1353
1353
  func,
@@ -1361,7 +1361,7 @@ export class voting extends AptosBaseProcessor {
1361
1361
 
1362
1362
  onEventResolveProposal(
1363
1363
  func: (event: voting.ResolveProposalInstance, ctx: AptosContext) => void,
1364
- fetchConfig?: AptosFetchConfig
1364
+ fetchConfig?: MoveFetchConfig
1365
1365
  ): voting {
1366
1366
  this.onEvent(
1367
1367
  func,
@@ -1375,7 +1375,7 @@ export class voting extends AptosBaseProcessor {
1375
1375
 
1376
1376
  onEventVoteEvent(
1377
1377
  func: (event: voting.VoteEventInstance, ctx: AptosContext) => void,
1378
- fetchConfig?: AptosFetchConfig
1378
+ fetchConfig?: MoveFetchConfig
1379
1379
  ): voting {
1380
1380
  this.onEvent(
1381
1381
  func,
@@ -1504,7 +1504,7 @@ export class account extends AptosBaseProcessor {
1504
1504
  ctx: AptosContext
1505
1505
  ) => void,
1506
1506
  filter?: CallFilter,
1507
- fetchConfig?: AptosFetchConfig
1507
+ fetchConfig?: MoveFetchConfig
1508
1508
  ): account {
1509
1509
  this.onEntryFunctionCall(
1510
1510
  func,
@@ -1523,7 +1523,7 @@ export class account extends AptosBaseProcessor {
1523
1523
  ctx: AptosContext
1524
1524
  ) => void,
1525
1525
  filter?: CallFilter,
1526
- fetchConfig?: AptosFetchConfig
1526
+ fetchConfig?: MoveFetchConfig
1527
1527
  ): account {
1528
1528
  this.onEntryFunctionCall(
1529
1529
  func,
@@ -1542,7 +1542,7 @@ export class account extends AptosBaseProcessor {
1542
1542
  ctx: AptosContext
1543
1543
  ) => void,
1544
1544
  filter?: CallFilter,
1545
- fetchConfig?: AptosFetchConfig
1545
+ fetchConfig?: MoveFetchConfig
1546
1546
  ): account {
1547
1547
  this.onEntryFunctionCall(
1548
1548
  func,
@@ -1557,7 +1557,7 @@ export class account extends AptosBaseProcessor {
1557
1557
 
1558
1558
  onEventCoinRegisterEvent(
1559
1559
  func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void,
1560
- fetchConfig?: AptosFetchConfig
1560
+ fetchConfig?: MoveFetchConfig
1561
1561
  ): account {
1562
1562
  this.onEvent(
1563
1563
  func,
@@ -1571,7 +1571,7 @@ export class account extends AptosBaseProcessor {
1571
1571
 
1572
1572
  onEventKeyRotationEvent(
1573
1573
  func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void,
1574
- fetchConfig?: AptosFetchConfig
1574
+ fetchConfig?: MoveFetchConfig
1575
1575
  ): account {
1576
1576
  this.onEvent(
1577
1577
  func,
@@ -1796,7 +1796,7 @@ export class version extends AptosBaseProcessor {
1796
1796
  onEntrySetVersion(
1797
1797
  func: (call: version.SetVersionPayload, ctx: AptosContext) => void,
1798
1798
  filter?: CallFilter,
1799
- fetchConfig?: AptosFetchConfig
1799
+ fetchConfig?: MoveFetchConfig
1800
1800
  ): version {
1801
1801
  this.onEntryFunctionCall(
1802
1802
  func,
@@ -1855,7 +1855,7 @@ export class vesting extends AptosBaseProcessor {
1855
1855
  onEntryAdminWithdraw(
1856
1856
  func: (call: vesting.AdminWithdrawPayload, ctx: AptosContext) => void,
1857
1857
  filter?: CallFilter,
1858
- fetchConfig?: AptosFetchConfig
1858
+ fetchConfig?: MoveFetchConfig
1859
1859
  ): vesting {
1860
1860
  this.onEntryFunctionCall(
1861
1861
  func,
@@ -1871,7 +1871,7 @@ export class vesting extends AptosBaseProcessor {
1871
1871
  onEntryDistribute(
1872
1872
  func: (call: vesting.DistributePayload, ctx: AptosContext) => void,
1873
1873
  filter?: CallFilter,
1874
- fetchConfig?: AptosFetchConfig
1874
+ fetchConfig?: MoveFetchConfig
1875
1875
  ): vesting {
1876
1876
  this.onEntryFunctionCall(
1877
1877
  func,
@@ -1887,7 +1887,7 @@ export class vesting extends AptosBaseProcessor {
1887
1887
  onEntryResetBeneficiary(
1888
1888
  func: (call: vesting.ResetBeneficiaryPayload, ctx: AptosContext) => void,
1889
1889
  filter?: CallFilter,
1890
- fetchConfig?: AptosFetchConfig
1890
+ fetchConfig?: MoveFetchConfig
1891
1891
  ): vesting {
1892
1892
  this.onEntryFunctionCall(
1893
1893
  func,
@@ -1903,7 +1903,7 @@ export class vesting extends AptosBaseProcessor {
1903
1903
  onEntryResetLockup(
1904
1904
  func: (call: vesting.ResetLockupPayload, ctx: AptosContext) => void,
1905
1905
  filter?: CallFilter,
1906
- fetchConfig?: AptosFetchConfig
1906
+ fetchConfig?: MoveFetchConfig
1907
1907
  ): vesting {
1908
1908
  this.onEntryFunctionCall(
1909
1909
  func,
@@ -1919,7 +1919,7 @@ export class vesting extends AptosBaseProcessor {
1919
1919
  onEntrySetBeneficiary(
1920
1920
  func: (call: vesting.SetBeneficiaryPayload, ctx: AptosContext) => void,
1921
1921
  filter?: CallFilter,
1922
- fetchConfig?: AptosFetchConfig
1922
+ fetchConfig?: MoveFetchConfig
1923
1923
  ): vesting {
1924
1924
  this.onEntryFunctionCall(
1925
1925
  func,
@@ -1938,7 +1938,7 @@ export class vesting extends AptosBaseProcessor {
1938
1938
  ctx: AptosContext
1939
1939
  ) => void,
1940
1940
  filter?: CallFilter,
1941
- fetchConfig?: AptosFetchConfig
1941
+ fetchConfig?: MoveFetchConfig
1942
1942
  ): vesting {
1943
1943
  this.onEntryFunctionCall(
1944
1944
  func,
@@ -1954,7 +1954,7 @@ export class vesting extends AptosBaseProcessor {
1954
1954
  onEntrySetManagementRole(
1955
1955
  func: (call: vesting.SetManagementRolePayload, ctx: AptosContext) => void,
1956
1956
  filter?: CallFilter,
1957
- fetchConfig?: AptosFetchConfig
1957
+ fetchConfig?: MoveFetchConfig
1958
1958
  ): vesting {
1959
1959
  this.onEntryFunctionCall(
1960
1960
  func,
@@ -1973,7 +1973,7 @@ export class vesting extends AptosBaseProcessor {
1973
1973
  ctx: AptosContext
1974
1974
  ) => void,
1975
1975
  filter?: CallFilter,
1976
- fetchConfig?: AptosFetchConfig
1976
+ fetchConfig?: MoveFetchConfig
1977
1977
  ): vesting {
1978
1978
  this.onEntryFunctionCall(
1979
1979
  func,
@@ -1989,7 +1989,7 @@ export class vesting extends AptosBaseProcessor {
1989
1989
  onEntryUnlockRewards(
1990
1990
  func: (call: vesting.UnlockRewardsPayload, ctx: AptosContext) => void,
1991
1991
  filter?: CallFilter,
1992
- fetchConfig?: AptosFetchConfig
1992
+ fetchConfig?: MoveFetchConfig
1993
1993
  ): vesting {
1994
1994
  this.onEntryFunctionCall(
1995
1995
  func,
@@ -2005,7 +2005,7 @@ export class vesting extends AptosBaseProcessor {
2005
2005
  onEntryUpdateOperator(
2006
2006
  func: (call: vesting.UpdateOperatorPayload, ctx: AptosContext) => void,
2007
2007
  filter?: CallFilter,
2008
- fetchConfig?: AptosFetchConfig
2008
+ fetchConfig?: MoveFetchConfig
2009
2009
  ): vesting {
2010
2010
  this.onEntryFunctionCall(
2011
2011
  func,
@@ -2024,7 +2024,7 @@ export class vesting extends AptosBaseProcessor {
2024
2024
  ctx: AptosContext
2025
2025
  ) => void,
2026
2026
  filter?: CallFilter,
2027
- fetchConfig?: AptosFetchConfig
2027
+ fetchConfig?: MoveFetchConfig
2028
2028
  ): vesting {
2029
2029
  this.onEntryFunctionCall(
2030
2030
  func,
@@ -2040,7 +2040,7 @@ export class vesting extends AptosBaseProcessor {
2040
2040
  onEntryUpdateVoter(
2041
2041
  func: (call: vesting.UpdateVoterPayload, ctx: AptosContext) => void,
2042
2042
  filter?: CallFilter,
2043
- fetchConfig?: AptosFetchConfig
2043
+ fetchConfig?: MoveFetchConfig
2044
2044
  ): vesting {
2045
2045
  this.onEntryFunctionCall(
2046
2046
  func,
@@ -2056,7 +2056,7 @@ export class vesting extends AptosBaseProcessor {
2056
2056
  onEntryVest(
2057
2057
  func: (call: vesting.VestPayload, ctx: AptosContext) => void,
2058
2058
  filter?: CallFilter,
2059
- fetchConfig?: AptosFetchConfig
2059
+ fetchConfig?: MoveFetchConfig
2060
2060
  ): vesting {
2061
2061
  this.onEntryFunctionCall(
2062
2062
  func,
@@ -2074,7 +2074,7 @@ export class vesting extends AptosBaseProcessor {
2074
2074
  event: vesting.CreateVestingContractEventInstance,
2075
2075
  ctx: AptosContext
2076
2076
  ) => void,
2077
- fetchConfig?: AptosFetchConfig
2077
+ fetchConfig?: MoveFetchConfig
2078
2078
  ): vesting {
2079
2079
  this.onEvent(
2080
2080
  func,
@@ -2091,7 +2091,7 @@ export class vesting extends AptosBaseProcessor {
2091
2091
  event: vesting.UpdateOperatorEventInstance,
2092
2092
  ctx: AptosContext
2093
2093
  ) => void,
2094
- fetchConfig?: AptosFetchConfig
2094
+ fetchConfig?: MoveFetchConfig
2095
2095
  ): vesting {
2096
2096
  this.onEvent(
2097
2097
  func,
@@ -2105,7 +2105,7 @@ export class vesting extends AptosBaseProcessor {
2105
2105
 
2106
2106
  onEventUpdateVoterEvent(
2107
2107
  func: (event: vesting.UpdateVoterEventInstance, ctx: AptosContext) => void,
2108
- fetchConfig?: AptosFetchConfig
2108
+ fetchConfig?: MoveFetchConfig
2109
2109
  ): vesting {
2110
2110
  this.onEvent(
2111
2111
  func,
@@ -2119,7 +2119,7 @@ export class vesting extends AptosBaseProcessor {
2119
2119
 
2120
2120
  onEventResetLockupEvent(
2121
2121
  func: (event: vesting.ResetLockupEventInstance, ctx: AptosContext) => void,
2122
- fetchConfig?: AptosFetchConfig
2122
+ fetchConfig?: MoveFetchConfig
2123
2123
  ): vesting {
2124
2124
  this.onEvent(
2125
2125
  func,
@@ -2136,7 +2136,7 @@ export class vesting extends AptosBaseProcessor {
2136
2136
  event: vesting.SetBeneficiaryEventInstance,
2137
2137
  ctx: AptosContext
2138
2138
  ) => void,
2139
- fetchConfig?: AptosFetchConfig
2139
+ fetchConfig?: MoveFetchConfig
2140
2140
  ): vesting {
2141
2141
  this.onEvent(
2142
2142
  func,
@@ -2153,7 +2153,7 @@ export class vesting extends AptosBaseProcessor {
2153
2153
  event: vesting.UnlockRewardsEventInstance,
2154
2154
  ctx: AptosContext
2155
2155
  ) => void,
2156
- fetchConfig?: AptosFetchConfig
2156
+ fetchConfig?: MoveFetchConfig
2157
2157
  ): vesting {
2158
2158
  this.onEvent(
2159
2159
  func,
@@ -2167,7 +2167,7 @@ export class vesting extends AptosBaseProcessor {
2167
2167
 
2168
2168
  onEventVestEvent(
2169
2169
  func: (event: vesting.VestEventInstance, ctx: AptosContext) => void,
2170
- fetchConfig?: AptosFetchConfig
2170
+ fetchConfig?: MoveFetchConfig
2171
2171
  ): vesting {
2172
2172
  this.onEvent(
2173
2173
  func,
@@ -2181,7 +2181,7 @@ export class vesting extends AptosBaseProcessor {
2181
2181
 
2182
2182
  onEventDistributeEvent(
2183
2183
  func: (event: vesting.DistributeEventInstance, ctx: AptosContext) => void,
2184
- fetchConfig?: AptosFetchConfig
2184
+ fetchConfig?: MoveFetchConfig
2185
2185
  ): vesting {
2186
2186
  this.onEvent(
2187
2187
  func,
@@ -2195,7 +2195,7 @@ export class vesting extends AptosBaseProcessor {
2195
2195
 
2196
2196
  onEventTerminateEvent(
2197
2197
  func: (event: vesting.TerminateEventInstance, ctx: AptosContext) => void,
2198
- fetchConfig?: AptosFetchConfig
2198
+ fetchConfig?: MoveFetchConfig
2199
2199
  ): vesting {
2200
2200
  this.onEvent(
2201
2201
  func,
@@ -2212,7 +2212,7 @@ export class vesting extends AptosBaseProcessor {
2212
2212
  event: vesting.AdminWithdrawEventInstance,
2213
2213
  ctx: AptosContext
2214
2214
  ) => void,
2215
- fetchConfig?: AptosFetchConfig
2215
+ fetchConfig?: MoveFetchConfig
2216
2216
  ): vesting {
2217
2217
  this.onEvent(
2218
2218
  func,
@@ -2687,7 +2687,7 @@ export class aptos_coin extends AptosBaseProcessor {
2687
2687
  ctx: AptosContext
2688
2688
  ) => void,
2689
2689
  filter?: CallFilter,
2690
- fetchConfig?: AptosFetchConfig
2690
+ fetchConfig?: MoveFetchConfig
2691
2691
  ): aptos_coin {
2692
2692
  this.onEntryFunctionCall(
2693
2693
  func,
@@ -2706,7 +2706,7 @@ export class aptos_coin extends AptosBaseProcessor {
2706
2706
  ctx: AptosContext
2707
2707
  ) => void,
2708
2708
  filter?: CallFilter,
2709
- fetchConfig?: AptosFetchConfig
2709
+ fetchConfig?: MoveFetchConfig
2710
2710
  ): aptos_coin {
2711
2711
  this.onEntryFunctionCall(
2712
2712
  func,
@@ -2722,7 +2722,7 @@ export class aptos_coin extends AptosBaseProcessor {
2722
2722
  onEntryMint(
2723
2723
  func: (call: aptos_coin.MintPayload, ctx: AptosContext) => void,
2724
2724
  filter?: CallFilter,
2725
- fetchConfig?: AptosFetchConfig
2725
+ fetchConfig?: MoveFetchConfig
2726
2726
  ): aptos_coin {
2727
2727
  this.onEntryFunctionCall(
2728
2728
  func,
@@ -2991,7 +2991,7 @@ export class managed_coin extends AptosBaseProcessor {
2991
2991
  onEntryBurn(
2992
2992
  func: (call: managed_coin.BurnPayload, ctx: AptosContext) => void,
2993
2993
  filter?: CallFilter,
2994
- fetchConfig?: AptosFetchConfig
2994
+ fetchConfig?: MoveFetchConfig
2995
2995
  ): managed_coin {
2996
2996
  this.onEntryFunctionCall(
2997
2997
  func,
@@ -3007,7 +3007,7 @@ export class managed_coin extends AptosBaseProcessor {
3007
3007
  onEntryInitialize(
3008
3008
  func: (call: managed_coin.InitializePayload, ctx: AptosContext) => void,
3009
3009
  filter?: CallFilter,
3010
- fetchConfig?: AptosFetchConfig
3010
+ fetchConfig?: MoveFetchConfig
3011
3011
  ): managed_coin {
3012
3012
  this.onEntryFunctionCall(
3013
3013
  func,
@@ -3023,7 +3023,7 @@ export class managed_coin extends AptosBaseProcessor {
3023
3023
  onEntryMint(
3024
3024
  func: (call: managed_coin.MintPayload, ctx: AptosContext) => void,
3025
3025
  filter?: CallFilter,
3026
- fetchConfig?: AptosFetchConfig
3026
+ fetchConfig?: MoveFetchConfig
3027
3027
  ): managed_coin {
3028
3028
  this.onEntryFunctionCall(
3029
3029
  func,
@@ -3039,7 +3039,7 @@ export class managed_coin extends AptosBaseProcessor {
3039
3039
  onEntryRegister(
3040
3040
  func: (call: managed_coin.RegisterPayload, ctx: AptosContext) => void,
3041
3041
  filter?: CallFilter,
3042
- fetchConfig?: AptosFetchConfig
3042
+ fetchConfig?: MoveFetchConfig
3043
3043
  ): managed_coin {
3044
3044
  this.onEntryFunctionCall(
3045
3045
  func,
@@ -3137,7 +3137,7 @@ export class aptos_account extends AptosBaseProcessor {
3137
3137
  onEntryCreateAccount(
3138
3138
  func: (call: aptos_account.CreateAccountPayload, ctx: AptosContext) => void,
3139
3139
  filter?: CallFilter,
3140
- fetchConfig?: AptosFetchConfig
3140
+ fetchConfig?: MoveFetchConfig
3141
3141
  ): aptos_account {
3142
3142
  this.onEntryFunctionCall(
3143
3143
  func,
@@ -3153,7 +3153,7 @@ export class aptos_account extends AptosBaseProcessor {
3153
3153
  onEntryTransfer(
3154
3154
  func: (call: aptos_account.TransferPayload, ctx: AptosContext) => void,
3155
3155
  filter?: CallFilter,
3156
- fetchConfig?: AptosFetchConfig
3156
+ fetchConfig?: MoveFetchConfig
3157
3157
  ): aptos_account {
3158
3158
  this.onEntryFunctionCall(
3159
3159
  func,
@@ -3246,7 +3246,7 @@ export class staking_proxy extends AptosBaseProcessor {
3246
3246
  onEntrySetOperator(
3247
3247
  func: (call: staking_proxy.SetOperatorPayload, ctx: AptosContext) => void,
3248
3248
  filter?: CallFilter,
3249
- fetchConfig?: AptosFetchConfig
3249
+ fetchConfig?: MoveFetchConfig
3250
3250
  ): staking_proxy {
3251
3251
  this.onEntryFunctionCall(
3252
3252
  func,
@@ -3265,7 +3265,7 @@ export class staking_proxy extends AptosBaseProcessor {
3265
3265
  ctx: AptosContext
3266
3266
  ) => void,
3267
3267
  filter?: CallFilter,
3268
- fetchConfig?: AptosFetchConfig
3268
+ fetchConfig?: MoveFetchConfig
3269
3269
  ): staking_proxy {
3270
3270
  this.onEntryFunctionCall(
3271
3271
  func,
@@ -3284,7 +3284,7 @@ export class staking_proxy extends AptosBaseProcessor {
3284
3284
  ctx: AptosContext
3285
3285
  ) => void,
3286
3286
  filter?: CallFilter,
3287
- fetchConfig?: AptosFetchConfig
3287
+ fetchConfig?: MoveFetchConfig
3288
3288
  ): staking_proxy {
3289
3289
  this.onEntryFunctionCall(
3290
3290
  func,
@@ -3303,7 +3303,7 @@ export class staking_proxy extends AptosBaseProcessor {
3303
3303
  ctx: AptosContext
3304
3304
  ) => void,
3305
3305
  filter?: CallFilter,
3306
- fetchConfig?: AptosFetchConfig
3306
+ fetchConfig?: MoveFetchConfig
3307
3307
  ): staking_proxy {
3308
3308
  this.onEntryFunctionCall(
3309
3309
  func,
@@ -3322,7 +3322,7 @@ export class staking_proxy extends AptosBaseProcessor {
3322
3322
  ctx: AptosContext
3323
3323
  ) => void,
3324
3324
  filter?: CallFilter,
3325
- fetchConfig?: AptosFetchConfig
3325
+ fetchConfig?: MoveFetchConfig
3326
3326
  ): staking_proxy {
3327
3327
  this.onEntryFunctionCall(
3328
3328
  func,
@@ -3341,7 +3341,7 @@ export class staking_proxy extends AptosBaseProcessor {
3341
3341
  ctx: AptosContext
3342
3342
  ) => void,
3343
3343
  filter?: CallFilter,
3344
- fetchConfig?: AptosFetchConfig
3344
+ fetchConfig?: MoveFetchConfig
3345
3345
  ): staking_proxy {
3346
3346
  this.onEntryFunctionCall(
3347
3347
  func,
@@ -3360,7 +3360,7 @@ export class staking_proxy extends AptosBaseProcessor {
3360
3360
  ctx: AptosContext
3361
3361
  ) => void,
3362
3362
  filter?: CallFilter,
3363
- fetchConfig?: AptosFetchConfig
3363
+ fetchConfig?: MoveFetchConfig
3364
3364
  ): staking_proxy {
3365
3365
  this.onEntryFunctionCall(
3366
3366
  func,
@@ -3376,7 +3376,7 @@ export class staking_proxy extends AptosBaseProcessor {
3376
3376
  onEntrySetVoter(
3377
3377
  func: (call: staking_proxy.SetVoterPayload, ctx: AptosContext) => void,
3378
3378
  filter?: CallFilter,
3379
- fetchConfig?: AptosFetchConfig
3379
+ fetchConfig?: MoveFetchConfig
3380
3380
  ): staking_proxy {
3381
3381
  this.onEntryFunctionCall(
3382
3382
  func,
@@ -3518,7 +3518,7 @@ export class reconfiguration extends AptosBaseProcessor {
3518
3518
  event: reconfiguration.NewEpochEventInstance,
3519
3519
  ctx: AptosContext
3520
3520
  ) => void,
3521
- fetchConfig?: AptosFetchConfig
3521
+ fetchConfig?: MoveFetchConfig
3522
3522
  ): reconfiguration {
3523
3523
  this.onEvent(
3524
3524
  func,
@@ -3603,7 +3603,7 @@ export class aptos_governance extends AptosBaseProcessor {
3603
3603
  ctx: AptosContext
3604
3604
  ) => void,
3605
3605
  filter?: CallFilter,
3606
- fetchConfig?: AptosFetchConfig
3606
+ fetchConfig?: MoveFetchConfig
3607
3607
  ): aptos_governance {
3608
3608
  this.onEntryFunctionCall(
3609
3609
  func,
@@ -3622,7 +3622,7 @@ export class aptos_governance extends AptosBaseProcessor {
3622
3622
  ctx: AptosContext
3623
3623
  ) => void,
3624
3624
  filter?: CallFilter,
3625
- fetchConfig?: AptosFetchConfig
3625
+ fetchConfig?: MoveFetchConfig
3626
3626
  ): aptos_governance {
3627
3627
  this.onEntryFunctionCall(
3628
3628
  func,
@@ -3638,7 +3638,7 @@ export class aptos_governance extends AptosBaseProcessor {
3638
3638
  onEntryVote(
3639
3639
  func: (call: aptos_governance.VotePayload, ctx: AptosContext) => void,
3640
3640
  filter?: CallFilter,
3641
- fetchConfig?: AptosFetchConfig
3641
+ fetchConfig?: MoveFetchConfig
3642
3642
  ): aptos_governance {
3643
3643
  this.onEntryFunctionCall(
3644
3644
  func,
@@ -3656,7 +3656,7 @@ export class aptos_governance extends AptosBaseProcessor {
3656
3656
  event: aptos_governance.CreateProposalEventInstance,
3657
3657
  ctx: AptosContext
3658
3658
  ) => void,
3659
- fetchConfig?: AptosFetchConfig
3659
+ fetchConfig?: MoveFetchConfig
3660
3660
  ): aptos_governance {
3661
3661
  this.onEvent(
3662
3662
  func,
@@ -3673,7 +3673,7 @@ export class aptos_governance extends AptosBaseProcessor {
3673
3673
  event: aptos_governance.UpdateConfigEventInstance,
3674
3674
  ctx: AptosContext
3675
3675
  ) => void,
3676
- fetchConfig?: AptosFetchConfig
3676
+ fetchConfig?: MoveFetchConfig
3677
3677
  ): aptos_governance {
3678
3678
  this.onEvent(
3679
3679
  func,
@@ -3690,7 +3690,7 @@ export class aptos_governance extends AptosBaseProcessor {
3690
3690
  event: aptos_governance.VoteEventInstance,
3691
3691
  ctx: AptosContext
3692
3692
  ) => void,
3693
- fetchConfig?: AptosFetchConfig
3693
+ fetchConfig?: MoveFetchConfig
3694
3694
  ): aptos_governance {
3695
3695
  this.onEvent(
3696
3696
  func,
@@ -3847,7 +3847,7 @@ export class resource_account extends AptosBaseProcessor {
3847
3847
  ctx: AptosContext
3848
3848
  ) => void,
3849
3849
  filter?: CallFilter,
3850
- fetchConfig?: AptosFetchConfig
3850
+ fetchConfig?: MoveFetchConfig
3851
3851
  ): resource_account {
3852
3852
  this.onEntryFunctionCall(
3853
3853
  func,
@@ -3866,7 +3866,7 @@ export class resource_account extends AptosBaseProcessor {
3866
3866
  ctx: AptosContext
3867
3867
  ) => void,
3868
3868
  filter?: CallFilter,
3869
- fetchConfig?: AptosFetchConfig
3869
+ fetchConfig?: MoveFetchConfig
3870
3870
  ): resource_account {
3871
3871
  this.onEntryFunctionCall(
3872
3872
  func,
@@ -3885,7 +3885,7 @@ export class resource_account extends AptosBaseProcessor {
3885
3885
  ctx: AptosContext
3886
3886
  ) => void,
3887
3887
  filter?: CallFilter,
3888
- fetchConfig?: AptosFetchConfig
3888
+ fetchConfig?: MoveFetchConfig
3889
3889
  ): resource_account {
3890
3890
  this.onEntryFunctionCall(
3891
3891
  func,
@@ -3955,7 +3955,7 @@ export class staking_contract extends AptosBaseProcessor {
3955
3955
  onEntryAddStake(
3956
3956
  func: (call: staking_contract.AddStakePayload, ctx: AptosContext) => void,
3957
3957
  filter?: CallFilter,
3958
- fetchConfig?: AptosFetchConfig
3958
+ fetchConfig?: MoveFetchConfig
3959
3959
  ): staking_contract {
3960
3960
  this.onEntryFunctionCall(
3961
3961
  func,
@@ -3974,7 +3974,7 @@ export class staking_contract extends AptosBaseProcessor {
3974
3974
  ctx: AptosContext
3975
3975
  ) => void,
3976
3976
  filter?: CallFilter,
3977
- fetchConfig?: AptosFetchConfig
3977
+ fetchConfig?: MoveFetchConfig
3978
3978
  ): staking_contract {
3979
3979
  this.onEntryFunctionCall(
3980
3980
  func,
@@ -3990,7 +3990,7 @@ export class staking_contract extends AptosBaseProcessor {
3990
3990
  onEntryDistribute(
3991
3991
  func: (call: staking_contract.DistributePayload, ctx: AptosContext) => void,
3992
3992
  filter?: CallFilter,
3993
- fetchConfig?: AptosFetchConfig
3993
+ fetchConfig?: MoveFetchConfig
3994
3994
  ): staking_contract {
3995
3995
  this.onEntryFunctionCall(
3996
3996
  func,
@@ -4009,7 +4009,7 @@ export class staking_contract extends AptosBaseProcessor {
4009
4009
  ctx: AptosContext
4010
4010
  ) => void,
4011
4011
  filter?: CallFilter,
4012
- fetchConfig?: AptosFetchConfig
4012
+ fetchConfig?: MoveFetchConfig
4013
4013
  ): staking_contract {
4014
4014
  this.onEntryFunctionCall(
4015
4015
  func,
@@ -4028,7 +4028,7 @@ export class staking_contract extends AptosBaseProcessor {
4028
4028
  ctx: AptosContext
4029
4029
  ) => void,
4030
4030
  filter?: CallFilter,
4031
- fetchConfig?: AptosFetchConfig
4031
+ fetchConfig?: MoveFetchConfig
4032
4032
  ): staking_contract {
4033
4033
  this.onEntryFunctionCall(
4034
4034
  func,
@@ -4047,7 +4047,7 @@ export class staking_contract extends AptosBaseProcessor {
4047
4047
  ctx: AptosContext
4048
4048
  ) => void,
4049
4049
  filter?: CallFilter,
4050
- fetchConfig?: AptosFetchConfig
4050
+ fetchConfig?: MoveFetchConfig
4051
4051
  ): staking_contract {
4052
4052
  this.onEntryFunctionCall(
4053
4053
  func,
@@ -4066,7 +4066,7 @@ export class staking_contract extends AptosBaseProcessor {
4066
4066
  ctx: AptosContext
4067
4067
  ) => void,
4068
4068
  filter?: CallFilter,
4069
- fetchConfig?: AptosFetchConfig
4069
+ fetchConfig?: MoveFetchConfig
4070
4070
  ): staking_contract {
4071
4071
  this.onEntryFunctionCall(
4072
4072
  func,
@@ -4085,7 +4085,7 @@ export class staking_contract extends AptosBaseProcessor {
4085
4085
  ctx: AptosContext
4086
4086
  ) => void,
4087
4087
  filter?: CallFilter,
4088
- fetchConfig?: AptosFetchConfig
4088
+ fetchConfig?: MoveFetchConfig
4089
4089
  ): staking_contract {
4090
4090
  this.onEntryFunctionCall(
4091
4091
  func,
@@ -4104,7 +4104,7 @@ export class staking_contract extends AptosBaseProcessor {
4104
4104
  ctx: AptosContext
4105
4105
  ) => void,
4106
4106
  filter?: CallFilter,
4107
- fetchConfig?: AptosFetchConfig
4107
+ fetchConfig?: MoveFetchConfig
4108
4108
  ): staking_contract {
4109
4109
  this.onEntryFunctionCall(
4110
4110
  func,
@@ -4123,7 +4123,7 @@ export class staking_contract extends AptosBaseProcessor {
4123
4123
  ctx: AptosContext
4124
4124
  ) => void,
4125
4125
  filter?: CallFilter,
4126
- fetchConfig?: AptosFetchConfig
4126
+ fetchConfig?: MoveFetchConfig
4127
4127
  ): staking_contract {
4128
4128
  this.onEntryFunctionCall(
4129
4129
  func,
@@ -4141,7 +4141,7 @@ export class staking_contract extends AptosBaseProcessor {
4141
4141
  event: staking_contract.CreateStakingContractEventInstance,
4142
4142
  ctx: AptosContext
4143
4143
  ) => void,
4144
- fetchConfig?: AptosFetchConfig
4144
+ fetchConfig?: MoveFetchConfig
4145
4145
  ): staking_contract {
4146
4146
  this.onEvent(
4147
4147
  func,
@@ -4158,7 +4158,7 @@ export class staking_contract extends AptosBaseProcessor {
4158
4158
  event: staking_contract.UpdateVoterEventInstance,
4159
4159
  ctx: AptosContext
4160
4160
  ) => void,
4161
- fetchConfig?: AptosFetchConfig
4161
+ fetchConfig?: MoveFetchConfig
4162
4162
  ): staking_contract {
4163
4163
  this.onEvent(
4164
4164
  func,
@@ -4175,7 +4175,7 @@ export class staking_contract extends AptosBaseProcessor {
4175
4175
  event: staking_contract.ResetLockupEventInstance,
4176
4176
  ctx: AptosContext
4177
4177
  ) => void,
4178
- fetchConfig?: AptosFetchConfig
4178
+ fetchConfig?: MoveFetchConfig
4179
4179
  ): staking_contract {
4180
4180
  this.onEvent(
4181
4181
  func,
@@ -4192,7 +4192,7 @@ export class staking_contract extends AptosBaseProcessor {
4192
4192
  event: staking_contract.AddStakeEventInstance,
4193
4193
  ctx: AptosContext
4194
4194
  ) => void,
4195
- fetchConfig?: AptosFetchConfig
4195
+ fetchConfig?: MoveFetchConfig
4196
4196
  ): staking_contract {
4197
4197
  this.onEvent(
4198
4198
  func,
@@ -4209,7 +4209,7 @@ export class staking_contract extends AptosBaseProcessor {
4209
4209
  event: staking_contract.RequestCommissionEventInstance,
4210
4210
  ctx: AptosContext
4211
4211
  ) => void,
4212
- fetchConfig?: AptosFetchConfig
4212
+ fetchConfig?: MoveFetchConfig
4213
4213
  ): staking_contract {
4214
4214
  this.onEvent(
4215
4215
  func,
@@ -4226,7 +4226,7 @@ export class staking_contract extends AptosBaseProcessor {
4226
4226
  event: staking_contract.UnlockStakeEventInstance,
4227
4227
  ctx: AptosContext
4228
4228
  ) => void,
4229
- fetchConfig?: AptosFetchConfig
4229
+ fetchConfig?: MoveFetchConfig
4230
4230
  ): staking_contract {
4231
4231
  this.onEvent(
4232
4232
  func,
@@ -4243,7 +4243,7 @@ export class staking_contract extends AptosBaseProcessor {
4243
4243
  event: staking_contract.SwitchOperatorEventInstance,
4244
4244
  ctx: AptosContext
4245
4245
  ) => void,
4246
- fetchConfig?: AptosFetchConfig
4246
+ fetchConfig?: MoveFetchConfig
4247
4247
  ): staking_contract {
4248
4248
  this.onEvent(
4249
4249
  func,
@@ -4260,7 +4260,7 @@ export class staking_contract extends AptosBaseProcessor {
4260
4260
  event: staking_contract.AddDistributionEventInstance,
4261
4261
  ctx: AptosContext
4262
4262
  ) => void,
4263
- fetchConfig?: AptosFetchConfig
4263
+ fetchConfig?: MoveFetchConfig
4264
4264
  ): staking_contract {
4265
4265
  this.onEvent(
4266
4266
  func,
@@ -4277,7 +4277,7 @@ export class staking_contract extends AptosBaseProcessor {
4277
4277
  event: staking_contract.DistributeEventInstance,
4278
4278
  ctx: AptosContext
4279
4279
  ) => void,
4280
- fetchConfig?: AptosFetchConfig
4280
+ fetchConfig?: MoveFetchConfig
4281
4281
  ): staking_contract {
4282
4282
  this.onEvent(
4283
4283
  func,