@sentio/sdk 2.12.3 → 2.13.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/aptos-processor.d.ts +3 -3
- package/lib/aptos/aptos-processor.js +17 -12
- package/lib/aptos/aptos-processor.js.map +1 -1
- package/lib/aptos/builtin/0x1.d.ts +168 -168
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +35 -35
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/context.d.ts +2 -1
- package/lib/aptos/context.js +4 -2
- package/lib/aptos/context.js.map +1 -1
- package/lib/move/abstract-codegen.js +2 -2
- package/lib/move/abstract-codegen.js.map +1 -1
- package/lib/sui/builtin/0x1.d.ts +6 -6
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +43 -43
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +43 -43
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/lib/sui/context.d.ts +2 -1
- package/lib/sui/context.js +3 -1
- package/lib/sui/context.js.map +1 -1
- package/lib/sui/sui-processor.d.ts +2 -2
- package/lib/sui/sui-processor.js +15 -12
- package/lib/sui/sui-processor.js.map +1 -1
- package/lib/testing/aptos-facet.d.ts +2 -2
- package/lib/testing/aptos-facet.js +14 -21
- package/lib/testing/aptos-facet.js.map +1 -1
- package/lib/testing/sui-facet.d.ts +2 -2
- package/lib/testing/sui-facet.js +16 -26
- package/lib/testing/sui-facet.js.map +1 -1
- package/package.json +4 -4
- package/src/aptos/aptos-processor.ts +30 -23
- package/src/aptos/builtin/0x1.ts +168 -168
- package/src/aptos/builtin/0x3.ts +35 -35
- package/src/aptos/context.ts +5 -2
- package/src/move/abstract-codegen.ts +2 -2
- package/src/sui/builtin/0x1.ts +6 -6
- package/src/sui/builtin/0x2.ts +43 -43
- package/src/sui/builtin/0x3.ts +43 -43
- package/src/sui/context.ts +4 -1
- package/src/sui/sui-processor.ts +27 -22
- package/src/testing/aptos-facet.ts +13 -27
- package/src/testing/sui-facet.ts +15 -30
package/src/aptos/builtin/0x1.ts
CHANGED
@@ -51,7 +51,7 @@ export class code extends AptosBaseProcessor {
|
|
51
51
|
onEntryPublishPackageTxn(
|
52
52
|
func: (call: code.PublishPackageTxnPayload, ctx: AptosContext) => void,
|
53
53
|
filter?: CallFilter,
|
54
|
-
fetchConfig?: MoveFetchConfig
|
54
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
55
55
|
): code {
|
56
56
|
this.onEntryFunctionCall(
|
57
57
|
func,
|
@@ -131,7 +131,7 @@ export class coin extends AptosBaseProcessor {
|
|
131
131
|
onEntryFreezeCoinStore(
|
132
132
|
func: (call: coin.FreezeCoinStorePayload, ctx: AptosContext) => void,
|
133
133
|
filter?: CallFilter,
|
134
|
-
fetchConfig?: MoveFetchConfig
|
134
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
135
135
|
): coin {
|
136
136
|
this.onEntryFunctionCall(
|
137
137
|
func,
|
@@ -147,7 +147,7 @@ export class coin extends AptosBaseProcessor {
|
|
147
147
|
onEntryTransfer(
|
148
148
|
func: (call: coin.TransferPayload, ctx: AptosContext) => void,
|
149
149
|
filter?: CallFilter,
|
150
|
-
fetchConfig?: MoveFetchConfig
|
150
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
151
151
|
): coin {
|
152
152
|
this.onEntryFunctionCall(
|
153
153
|
func,
|
@@ -163,7 +163,7 @@ export class coin extends AptosBaseProcessor {
|
|
163
163
|
onEntryUnfreezeCoinStore(
|
164
164
|
func: (call: coin.UnfreezeCoinStorePayload, ctx: AptosContext) => void,
|
165
165
|
filter?: CallFilter,
|
166
|
-
fetchConfig?: MoveFetchConfig
|
166
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
167
167
|
): coin {
|
168
168
|
this.onEntryFunctionCall(
|
169
169
|
func,
|
@@ -179,7 +179,7 @@ export class coin extends AptosBaseProcessor {
|
|
179
179
|
onEntryUpgradeSupply(
|
180
180
|
func: (call: coin.UpgradeSupplyPayload, ctx: AptosContext) => void,
|
181
181
|
filter?: CallFilter,
|
182
|
-
fetchConfig?: MoveFetchConfig
|
182
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
183
183
|
): coin {
|
184
184
|
this.onEntryFunctionCall(
|
185
185
|
func,
|
@@ -194,7 +194,7 @@ export class coin extends AptosBaseProcessor {
|
|
194
194
|
|
195
195
|
onEventDepositEvent(
|
196
196
|
func: (event: coin.DepositEventInstance, ctx: AptosContext) => void,
|
197
|
-
fetchConfig?: MoveFetchConfig
|
197
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
198
198
|
): coin {
|
199
199
|
this.onMoveEvent(
|
200
200
|
func,
|
@@ -208,7 +208,7 @@ export class coin extends AptosBaseProcessor {
|
|
208
208
|
|
209
209
|
onEventWithdrawEvent(
|
210
210
|
func: (event: coin.WithdrawEventInstance, ctx: AptosContext) => void,
|
211
|
-
fetchConfig?: MoveFetchConfig
|
211
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
212
212
|
): coin {
|
213
213
|
this.onMoveEvent(
|
214
214
|
func,
|
@@ -347,7 +347,7 @@ export class block extends AptosBaseProcessor {
|
|
347
347
|
|
348
348
|
onEventNewBlockEvent(
|
349
349
|
func: (event: block.NewBlockEventInstance, ctx: AptosContext) => void,
|
350
|
-
fetchConfig?: MoveFetchConfig
|
350
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
351
351
|
): block {
|
352
352
|
this.onMoveEvent(
|
353
353
|
func,
|
@@ -364,7 +364,7 @@ export class block extends AptosBaseProcessor {
|
|
364
364
|
event: block.UpdateEpochIntervalEventInstance,
|
365
365
|
ctx: AptosContext
|
366
366
|
) => void,
|
367
|
-
fetchConfig?: MoveFetchConfig
|
367
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
368
368
|
): block {
|
369
369
|
this.onMoveEvent(
|
370
370
|
func,
|
@@ -445,7 +445,7 @@ export class stake extends AptosBaseProcessor {
|
|
445
445
|
onEntryAddStake(
|
446
446
|
func: (call: stake.AddStakePayload, ctx: AptosContext) => void,
|
447
447
|
filter?: CallFilter,
|
448
|
-
fetchConfig?: MoveFetchConfig
|
448
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
449
449
|
): stake {
|
450
450
|
this.onEntryFunctionCall(
|
451
451
|
func,
|
@@ -461,7 +461,7 @@ export class stake extends AptosBaseProcessor {
|
|
461
461
|
onEntryIncreaseLockup(
|
462
462
|
func: (call: stake.IncreaseLockupPayload, ctx: AptosContext) => void,
|
463
463
|
filter?: CallFilter,
|
464
|
-
fetchConfig?: MoveFetchConfig
|
464
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
465
465
|
): stake {
|
466
466
|
this.onEntryFunctionCall(
|
467
467
|
func,
|
@@ -477,7 +477,7 @@ export class stake extends AptosBaseProcessor {
|
|
477
477
|
onEntryInitializeStakeOwner(
|
478
478
|
func: (call: stake.InitializeStakeOwnerPayload, ctx: AptosContext) => void,
|
479
479
|
filter?: CallFilter,
|
480
|
-
fetchConfig?: MoveFetchConfig
|
480
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
481
481
|
): stake {
|
482
482
|
this.onEntryFunctionCall(
|
483
483
|
func,
|
@@ -493,7 +493,7 @@ export class stake extends AptosBaseProcessor {
|
|
493
493
|
onEntryInitializeValidator(
|
494
494
|
func: (call: stake.InitializeValidatorPayload, ctx: AptosContext) => void,
|
495
495
|
filter?: CallFilter,
|
496
|
-
fetchConfig?: MoveFetchConfig
|
496
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
497
497
|
): stake {
|
498
498
|
this.onEntryFunctionCall(
|
499
499
|
func,
|
@@ -509,7 +509,7 @@ export class stake extends AptosBaseProcessor {
|
|
509
509
|
onEntryJoinValidatorSet(
|
510
510
|
func: (call: stake.JoinValidatorSetPayload, ctx: AptosContext) => void,
|
511
511
|
filter?: CallFilter,
|
512
|
-
fetchConfig?: MoveFetchConfig
|
512
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
513
513
|
): stake {
|
514
514
|
this.onEntryFunctionCall(
|
515
515
|
func,
|
@@ -525,7 +525,7 @@ export class stake extends AptosBaseProcessor {
|
|
525
525
|
onEntryLeaveValidatorSet(
|
526
526
|
func: (call: stake.LeaveValidatorSetPayload, ctx: AptosContext) => void,
|
527
527
|
filter?: CallFilter,
|
528
|
-
fetchConfig?: MoveFetchConfig
|
528
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
529
529
|
): stake {
|
530
530
|
this.onEntryFunctionCall(
|
531
531
|
func,
|
@@ -541,7 +541,7 @@ export class stake extends AptosBaseProcessor {
|
|
541
541
|
onEntryReactivateStake(
|
542
542
|
func: (call: stake.ReactivateStakePayload, ctx: AptosContext) => void,
|
543
543
|
filter?: CallFilter,
|
544
|
-
fetchConfig?: MoveFetchConfig
|
544
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
545
545
|
): stake {
|
546
546
|
this.onEntryFunctionCall(
|
547
547
|
func,
|
@@ -557,7 +557,7 @@ export class stake extends AptosBaseProcessor {
|
|
557
557
|
onEntryRotateConsensusKey(
|
558
558
|
func: (call: stake.RotateConsensusKeyPayload, ctx: AptosContext) => void,
|
559
559
|
filter?: CallFilter,
|
560
|
-
fetchConfig?: MoveFetchConfig
|
560
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
561
561
|
): stake {
|
562
562
|
this.onEntryFunctionCall(
|
563
563
|
func,
|
@@ -573,7 +573,7 @@ export class stake extends AptosBaseProcessor {
|
|
573
573
|
onEntrySetDelegatedVoter(
|
574
574
|
func: (call: stake.SetDelegatedVoterPayload, ctx: AptosContext) => void,
|
575
575
|
filter?: CallFilter,
|
576
|
-
fetchConfig?: MoveFetchConfig
|
576
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
577
577
|
): stake {
|
578
578
|
this.onEntryFunctionCall(
|
579
579
|
func,
|
@@ -589,7 +589,7 @@ export class stake extends AptosBaseProcessor {
|
|
589
589
|
onEntrySetOperator(
|
590
590
|
func: (call: stake.SetOperatorPayload, ctx: AptosContext) => void,
|
591
591
|
filter?: CallFilter,
|
592
|
-
fetchConfig?: MoveFetchConfig
|
592
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
593
593
|
): stake {
|
594
594
|
this.onEntryFunctionCall(
|
595
595
|
func,
|
@@ -605,7 +605,7 @@ export class stake extends AptosBaseProcessor {
|
|
605
605
|
onEntryUnlock(
|
606
606
|
func: (call: stake.UnlockPayload, ctx: AptosContext) => void,
|
607
607
|
filter?: CallFilter,
|
608
|
-
fetchConfig?: MoveFetchConfig
|
608
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
609
609
|
): stake {
|
610
610
|
this.onEntryFunctionCall(
|
611
611
|
func,
|
@@ -624,7 +624,7 @@ export class stake extends AptosBaseProcessor {
|
|
624
624
|
ctx: AptosContext
|
625
625
|
) => void,
|
626
626
|
filter?: CallFilter,
|
627
|
-
fetchConfig?: MoveFetchConfig
|
627
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
628
628
|
): stake {
|
629
629
|
this.onEntryFunctionCall(
|
630
630
|
func,
|
@@ -640,7 +640,7 @@ export class stake extends AptosBaseProcessor {
|
|
640
640
|
onEntryWithdraw(
|
641
641
|
func: (call: stake.WithdrawPayload, ctx: AptosContext) => void,
|
642
642
|
filter?: CallFilter,
|
643
|
-
fetchConfig?: MoveFetchConfig
|
643
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
644
644
|
): stake {
|
645
645
|
this.onEntryFunctionCall(
|
646
646
|
func,
|
@@ -658,7 +658,7 @@ export class stake extends AptosBaseProcessor {
|
|
658
658
|
event: stake.RegisterValidatorCandidateEventInstance,
|
659
659
|
ctx: AptosContext
|
660
660
|
) => void,
|
661
|
-
fetchConfig?: MoveFetchConfig
|
661
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
662
662
|
): stake {
|
663
663
|
this.onMoveEvent(
|
664
664
|
func,
|
@@ -672,7 +672,7 @@ export class stake extends AptosBaseProcessor {
|
|
672
672
|
|
673
673
|
onEventSetOperatorEvent(
|
674
674
|
func: (event: stake.SetOperatorEventInstance, ctx: AptosContext) => void,
|
675
|
-
fetchConfig?: MoveFetchConfig
|
675
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
676
676
|
): stake {
|
677
677
|
this.onMoveEvent(
|
678
678
|
func,
|
@@ -686,7 +686,7 @@ export class stake extends AptosBaseProcessor {
|
|
686
686
|
|
687
687
|
onEventAddStakeEvent(
|
688
688
|
func: (event: stake.AddStakeEventInstance, ctx: AptosContext) => void,
|
689
|
-
fetchConfig?: MoveFetchConfig
|
689
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
690
690
|
): stake {
|
691
691
|
this.onMoveEvent(
|
692
692
|
func,
|
@@ -703,7 +703,7 @@ export class stake extends AptosBaseProcessor {
|
|
703
703
|
event: stake.ReactivateStakeEventInstance,
|
704
704
|
ctx: AptosContext
|
705
705
|
) => void,
|
706
|
-
fetchConfig?: MoveFetchConfig
|
706
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
707
707
|
): stake {
|
708
708
|
this.onMoveEvent(
|
709
709
|
func,
|
@@ -720,7 +720,7 @@ export class stake extends AptosBaseProcessor {
|
|
720
720
|
event: stake.RotateConsensusKeyEventInstance,
|
721
721
|
ctx: AptosContext
|
722
722
|
) => void,
|
723
|
-
fetchConfig?: MoveFetchConfig
|
723
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
724
724
|
): stake {
|
725
725
|
this.onMoveEvent(
|
726
726
|
func,
|
@@ -737,7 +737,7 @@ export class stake extends AptosBaseProcessor {
|
|
737
737
|
event: stake.UpdateNetworkAndFullnodeAddressesEventInstance,
|
738
738
|
ctx: AptosContext
|
739
739
|
) => void,
|
740
|
-
fetchConfig?: MoveFetchConfig
|
740
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
741
741
|
): stake {
|
742
742
|
this.onMoveEvent(
|
743
743
|
func,
|
@@ -751,7 +751,7 @@ export class stake extends AptosBaseProcessor {
|
|
751
751
|
|
752
752
|
onEventIncreaseLockupEvent(
|
753
753
|
func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void,
|
754
|
-
fetchConfig?: MoveFetchConfig
|
754
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
755
755
|
): stake {
|
756
756
|
this.onMoveEvent(
|
757
757
|
func,
|
@@ -768,7 +768,7 @@ export class stake extends AptosBaseProcessor {
|
|
768
768
|
event: stake.JoinValidatorSetEventInstance,
|
769
769
|
ctx: AptosContext
|
770
770
|
) => void,
|
771
|
-
fetchConfig?: MoveFetchConfig
|
771
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
772
772
|
): stake {
|
773
773
|
this.onMoveEvent(
|
774
774
|
func,
|
@@ -785,7 +785,7 @@ export class stake extends AptosBaseProcessor {
|
|
785
785
|
event: stake.DistributeRewardsEventInstance,
|
786
786
|
ctx: AptosContext
|
787
787
|
) => void,
|
788
|
-
fetchConfig?: MoveFetchConfig
|
788
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
789
789
|
): stake {
|
790
790
|
this.onMoveEvent(
|
791
791
|
func,
|
@@ -799,7 +799,7 @@ export class stake extends AptosBaseProcessor {
|
|
799
799
|
|
800
800
|
onEventUnlockStakeEvent(
|
801
801
|
func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void,
|
802
|
-
fetchConfig?: MoveFetchConfig
|
802
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
803
803
|
): stake {
|
804
804
|
this.onMoveEvent(
|
805
805
|
func,
|
@@ -813,7 +813,7 @@ export class stake extends AptosBaseProcessor {
|
|
813
813
|
|
814
814
|
onEventWithdrawStakeEvent(
|
815
815
|
func: (event: stake.WithdrawStakeEventInstance, ctx: AptosContext) => void,
|
816
|
-
fetchConfig?: MoveFetchConfig
|
816
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
817
817
|
): stake {
|
818
818
|
this.onMoveEvent(
|
819
819
|
func,
|
@@ -830,7 +830,7 @@ export class stake extends AptosBaseProcessor {
|
|
830
830
|
event: stake.LeaveValidatorSetEventInstance,
|
831
831
|
ctx: AptosContext
|
832
832
|
) => void,
|
833
|
-
fetchConfig?: MoveFetchConfig
|
833
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
834
834
|
): stake {
|
835
835
|
this.onMoveEvent(
|
836
836
|
func,
|
@@ -1174,7 +1174,7 @@ export class object_ extends AptosBaseProcessor {
|
|
1174
1174
|
onEntryTransferCall(
|
1175
1175
|
func: (call: object_.TransferCallPayload, ctx: AptosContext) => void,
|
1176
1176
|
filter?: CallFilter,
|
1177
|
-
fetchConfig?: MoveFetchConfig
|
1177
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1178
1178
|
): object_ {
|
1179
1179
|
this.onEntryFunctionCall(
|
1180
1180
|
func,
|
@@ -1189,7 +1189,7 @@ export class object_ extends AptosBaseProcessor {
|
|
1189
1189
|
|
1190
1190
|
onEventTransferEvent(
|
1191
1191
|
func: (event: object_.TransferEventInstance, ctx: AptosContext) => void,
|
1192
|
-
fetchConfig?: MoveFetchConfig
|
1192
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1193
1193
|
): object_ {
|
1194
1194
|
this.onMoveEvent(
|
1195
1195
|
func,
|
@@ -1304,7 +1304,7 @@ export class voting extends AptosBaseProcessor {
|
|
1304
1304
|
event: voting.CreateProposalEventInstance,
|
1305
1305
|
ctx: AptosContext
|
1306
1306
|
) => void,
|
1307
|
-
fetchConfig?: MoveFetchConfig
|
1307
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1308
1308
|
): voting {
|
1309
1309
|
this.onMoveEvent(
|
1310
1310
|
func,
|
@@ -1318,7 +1318,7 @@ export class voting extends AptosBaseProcessor {
|
|
1318
1318
|
|
1319
1319
|
onEventRegisterForumEvent(
|
1320
1320
|
func: (event: voting.RegisterForumEventInstance, ctx: AptosContext) => void,
|
1321
|
-
fetchConfig?: MoveFetchConfig
|
1321
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1322
1322
|
): voting {
|
1323
1323
|
this.onMoveEvent(
|
1324
1324
|
func,
|
@@ -1332,7 +1332,7 @@ export class voting extends AptosBaseProcessor {
|
|
1332
1332
|
|
1333
1333
|
onEventResolveProposal(
|
1334
1334
|
func: (event: voting.ResolveProposalInstance, ctx: AptosContext) => void,
|
1335
|
-
fetchConfig?: MoveFetchConfig
|
1335
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1336
1336
|
): voting {
|
1337
1337
|
this.onMoveEvent(
|
1338
1338
|
func,
|
@@ -1346,7 +1346,7 @@ export class voting extends AptosBaseProcessor {
|
|
1346
1346
|
|
1347
1347
|
onEventVoteEvent(
|
1348
1348
|
func: (event: voting.VoteEventInstance, ctx: AptosContext) => void,
|
1349
|
-
fetchConfig?: MoveFetchConfig
|
1349
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1350
1350
|
): voting {
|
1351
1351
|
this.onMoveEvent(
|
1352
1352
|
func,
|
@@ -1464,7 +1464,7 @@ export class account extends AptosBaseProcessor {
|
|
1464
1464
|
ctx: AptosContext
|
1465
1465
|
) => void,
|
1466
1466
|
filter?: CallFilter,
|
1467
|
-
fetchConfig?: MoveFetchConfig
|
1467
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1468
1468
|
): account {
|
1469
1469
|
this.onEntryFunctionCall(
|
1470
1470
|
func,
|
@@ -1483,7 +1483,7 @@ export class account extends AptosBaseProcessor {
|
|
1483
1483
|
ctx: AptosContext
|
1484
1484
|
) => void,
|
1485
1485
|
filter?: CallFilter,
|
1486
|
-
fetchConfig?: MoveFetchConfig
|
1486
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1487
1487
|
): account {
|
1488
1488
|
this.onEntryFunctionCall(
|
1489
1489
|
func,
|
@@ -1502,7 +1502,7 @@ export class account extends AptosBaseProcessor {
|
|
1502
1502
|
ctx: AptosContext
|
1503
1503
|
) => void,
|
1504
1504
|
filter?: CallFilter,
|
1505
|
-
fetchConfig?: MoveFetchConfig
|
1505
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1506
1506
|
): account {
|
1507
1507
|
this.onEntryFunctionCall(
|
1508
1508
|
func,
|
@@ -1521,7 +1521,7 @@ export class account extends AptosBaseProcessor {
|
|
1521
1521
|
ctx: AptosContext
|
1522
1522
|
) => void,
|
1523
1523
|
filter?: CallFilter,
|
1524
|
-
fetchConfig?: MoveFetchConfig
|
1524
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1525
1525
|
): account {
|
1526
1526
|
this.onEntryFunctionCall(
|
1527
1527
|
func,
|
@@ -1540,7 +1540,7 @@ export class account extends AptosBaseProcessor {
|
|
1540
1540
|
ctx: AptosContext
|
1541
1541
|
) => void,
|
1542
1542
|
filter?: CallFilter,
|
1543
|
-
fetchConfig?: MoveFetchConfig
|
1543
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1544
1544
|
): account {
|
1545
1545
|
this.onEntryFunctionCall(
|
1546
1546
|
func,
|
@@ -1559,7 +1559,7 @@ export class account extends AptosBaseProcessor {
|
|
1559
1559
|
ctx: AptosContext
|
1560
1560
|
) => void,
|
1561
1561
|
filter?: CallFilter,
|
1562
|
-
fetchConfig?: MoveFetchConfig
|
1562
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1563
1563
|
): account {
|
1564
1564
|
this.onEntryFunctionCall(
|
1565
1565
|
func,
|
@@ -1578,7 +1578,7 @@ export class account extends AptosBaseProcessor {
|
|
1578
1578
|
ctx: AptosContext
|
1579
1579
|
) => void,
|
1580
1580
|
filter?: CallFilter,
|
1581
|
-
fetchConfig?: MoveFetchConfig
|
1581
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1582
1582
|
): account {
|
1583
1583
|
this.onEntryFunctionCall(
|
1584
1584
|
func,
|
@@ -1597,7 +1597,7 @@ export class account extends AptosBaseProcessor {
|
|
1597
1597
|
ctx: AptosContext
|
1598
1598
|
) => void,
|
1599
1599
|
filter?: CallFilter,
|
1600
|
-
fetchConfig?: MoveFetchConfig
|
1600
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1601
1601
|
): account {
|
1602
1602
|
this.onEntryFunctionCall(
|
1603
1603
|
func,
|
@@ -1612,7 +1612,7 @@ export class account extends AptosBaseProcessor {
|
|
1612
1612
|
|
1613
1613
|
onEventCoinRegisterEvent(
|
1614
1614
|
func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void,
|
1615
|
-
fetchConfig?: MoveFetchConfig
|
1615
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1616
1616
|
): account {
|
1617
1617
|
this.onMoveEvent(
|
1618
1618
|
func,
|
@@ -1626,7 +1626,7 @@ export class account extends AptosBaseProcessor {
|
|
1626
1626
|
|
1627
1627
|
onEventKeyRotationEvent(
|
1628
1628
|
func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void,
|
1629
|
-
fetchConfig?: MoveFetchConfig
|
1629
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1630
1630
|
): account {
|
1631
1631
|
this.onMoveEvent(
|
1632
1632
|
func,
|
@@ -1857,7 +1857,7 @@ export class version extends AptosBaseProcessor {
|
|
1857
1857
|
onEntrySetVersion(
|
1858
1858
|
func: (call: version.SetVersionPayload, ctx: AptosContext) => void,
|
1859
1859
|
filter?: CallFilter,
|
1860
|
-
fetchConfig?: MoveFetchConfig
|
1860
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1861
1861
|
): version {
|
1862
1862
|
this.onEntryFunctionCall(
|
1863
1863
|
func,
|
@@ -1904,7 +1904,7 @@ export class vesting extends AptosBaseProcessor {
|
|
1904
1904
|
onEntryAdminWithdraw(
|
1905
1905
|
func: (call: vesting.AdminWithdrawPayload, ctx: AptosContext) => void,
|
1906
1906
|
filter?: CallFilter,
|
1907
|
-
fetchConfig?: MoveFetchConfig
|
1907
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1908
1908
|
): vesting {
|
1909
1909
|
this.onEntryFunctionCall(
|
1910
1910
|
func,
|
@@ -1920,7 +1920,7 @@ export class vesting extends AptosBaseProcessor {
|
|
1920
1920
|
onEntryDistribute(
|
1921
1921
|
func: (call: vesting.DistributePayload, ctx: AptosContext) => void,
|
1922
1922
|
filter?: CallFilter,
|
1923
|
-
fetchConfig?: MoveFetchConfig
|
1923
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1924
1924
|
): vesting {
|
1925
1925
|
this.onEntryFunctionCall(
|
1926
1926
|
func,
|
@@ -1936,7 +1936,7 @@ export class vesting extends AptosBaseProcessor {
|
|
1936
1936
|
onEntryDistributeMany(
|
1937
1937
|
func: (call: vesting.DistributeManyPayload, ctx: AptosContext) => void,
|
1938
1938
|
filter?: CallFilter,
|
1939
|
-
fetchConfig?: MoveFetchConfig
|
1939
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1940
1940
|
): vesting {
|
1941
1941
|
this.onEntryFunctionCall(
|
1942
1942
|
func,
|
@@ -1952,7 +1952,7 @@ export class vesting extends AptosBaseProcessor {
|
|
1952
1952
|
onEntryResetBeneficiary(
|
1953
1953
|
func: (call: vesting.ResetBeneficiaryPayload, ctx: AptosContext) => void,
|
1954
1954
|
filter?: CallFilter,
|
1955
|
-
fetchConfig?: MoveFetchConfig
|
1955
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1956
1956
|
): vesting {
|
1957
1957
|
this.onEntryFunctionCall(
|
1958
1958
|
func,
|
@@ -1968,7 +1968,7 @@ export class vesting extends AptosBaseProcessor {
|
|
1968
1968
|
onEntryResetLockup(
|
1969
1969
|
func: (call: vesting.ResetLockupPayload, ctx: AptosContext) => void,
|
1970
1970
|
filter?: CallFilter,
|
1971
|
-
fetchConfig?: MoveFetchConfig
|
1971
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1972
1972
|
): vesting {
|
1973
1973
|
this.onEntryFunctionCall(
|
1974
1974
|
func,
|
@@ -1984,7 +1984,7 @@ export class vesting extends AptosBaseProcessor {
|
|
1984
1984
|
onEntrySetBeneficiary(
|
1985
1985
|
func: (call: vesting.SetBeneficiaryPayload, ctx: AptosContext) => void,
|
1986
1986
|
filter?: CallFilter,
|
1987
|
-
fetchConfig?: MoveFetchConfig
|
1987
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
1988
1988
|
): vesting {
|
1989
1989
|
this.onEntryFunctionCall(
|
1990
1990
|
func,
|
@@ -2003,7 +2003,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2003
2003
|
ctx: AptosContext
|
2004
2004
|
) => void,
|
2005
2005
|
filter?: CallFilter,
|
2006
|
-
fetchConfig?: MoveFetchConfig
|
2006
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2007
2007
|
): vesting {
|
2008
2008
|
this.onEntryFunctionCall(
|
2009
2009
|
func,
|
@@ -2019,7 +2019,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2019
2019
|
onEntrySetManagementRole(
|
2020
2020
|
func: (call: vesting.SetManagementRolePayload, ctx: AptosContext) => void,
|
2021
2021
|
filter?: CallFilter,
|
2022
|
-
fetchConfig?: MoveFetchConfig
|
2022
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2023
2023
|
): vesting {
|
2024
2024
|
this.onEntryFunctionCall(
|
2025
2025
|
func,
|
@@ -2038,7 +2038,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2038
2038
|
ctx: AptosContext
|
2039
2039
|
) => void,
|
2040
2040
|
filter?: CallFilter,
|
2041
|
-
fetchConfig?: MoveFetchConfig
|
2041
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2042
2042
|
): vesting {
|
2043
2043
|
this.onEntryFunctionCall(
|
2044
2044
|
func,
|
@@ -2054,7 +2054,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2054
2054
|
onEntryUnlockRewards(
|
2055
2055
|
func: (call: vesting.UnlockRewardsPayload, ctx: AptosContext) => void,
|
2056
2056
|
filter?: CallFilter,
|
2057
|
-
fetchConfig?: MoveFetchConfig
|
2057
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2058
2058
|
): vesting {
|
2059
2059
|
this.onEntryFunctionCall(
|
2060
2060
|
func,
|
@@ -2070,7 +2070,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2070
2070
|
onEntryUnlockRewardsMany(
|
2071
2071
|
func: (call: vesting.UnlockRewardsManyPayload, ctx: AptosContext) => void,
|
2072
2072
|
filter?: CallFilter,
|
2073
|
-
fetchConfig?: MoveFetchConfig
|
2073
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2074
2074
|
): vesting {
|
2075
2075
|
this.onEntryFunctionCall(
|
2076
2076
|
func,
|
@@ -2086,7 +2086,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2086
2086
|
onEntryUpdateOperator(
|
2087
2087
|
func: (call: vesting.UpdateOperatorPayload, ctx: AptosContext) => void,
|
2088
2088
|
filter?: CallFilter,
|
2089
|
-
fetchConfig?: MoveFetchConfig
|
2089
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2090
2090
|
): vesting {
|
2091
2091
|
this.onEntryFunctionCall(
|
2092
2092
|
func,
|
@@ -2105,7 +2105,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2105
2105
|
ctx: AptosContext
|
2106
2106
|
) => void,
|
2107
2107
|
filter?: CallFilter,
|
2108
|
-
fetchConfig?: MoveFetchConfig
|
2108
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2109
2109
|
): vesting {
|
2110
2110
|
this.onEntryFunctionCall(
|
2111
2111
|
func,
|
@@ -2121,7 +2121,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2121
2121
|
onEntryUpdateVoter(
|
2122
2122
|
func: (call: vesting.UpdateVoterPayload, ctx: AptosContext) => void,
|
2123
2123
|
filter?: CallFilter,
|
2124
|
-
fetchConfig?: MoveFetchConfig
|
2124
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2125
2125
|
): vesting {
|
2126
2126
|
this.onEntryFunctionCall(
|
2127
2127
|
func,
|
@@ -2137,7 +2137,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2137
2137
|
onEntryVest(
|
2138
2138
|
func: (call: vesting.VestPayload, ctx: AptosContext) => void,
|
2139
2139
|
filter?: CallFilter,
|
2140
|
-
fetchConfig?: MoveFetchConfig
|
2140
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2141
2141
|
): vesting {
|
2142
2142
|
this.onEntryFunctionCall(
|
2143
2143
|
func,
|
@@ -2153,7 +2153,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2153
2153
|
onEntryVestMany(
|
2154
2154
|
func: (call: vesting.VestManyPayload, ctx: AptosContext) => void,
|
2155
2155
|
filter?: CallFilter,
|
2156
|
-
fetchConfig?: MoveFetchConfig
|
2156
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2157
2157
|
): vesting {
|
2158
2158
|
this.onEntryFunctionCall(
|
2159
2159
|
func,
|
@@ -2171,7 +2171,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2171
2171
|
event: vesting.CreateVestingContractEventInstance,
|
2172
2172
|
ctx: AptosContext
|
2173
2173
|
) => void,
|
2174
|
-
fetchConfig?: MoveFetchConfig
|
2174
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2175
2175
|
): vesting {
|
2176
2176
|
this.onMoveEvent(
|
2177
2177
|
func,
|
@@ -2188,7 +2188,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2188
2188
|
event: vesting.UpdateOperatorEventInstance,
|
2189
2189
|
ctx: AptosContext
|
2190
2190
|
) => void,
|
2191
|
-
fetchConfig?: MoveFetchConfig
|
2191
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2192
2192
|
): vesting {
|
2193
2193
|
this.onMoveEvent(
|
2194
2194
|
func,
|
@@ -2202,7 +2202,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2202
2202
|
|
2203
2203
|
onEventUpdateVoterEvent(
|
2204
2204
|
func: (event: vesting.UpdateVoterEventInstance, ctx: AptosContext) => void,
|
2205
|
-
fetchConfig?: MoveFetchConfig
|
2205
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2206
2206
|
): vesting {
|
2207
2207
|
this.onMoveEvent(
|
2208
2208
|
func,
|
@@ -2216,7 +2216,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2216
2216
|
|
2217
2217
|
onEventResetLockupEvent(
|
2218
2218
|
func: (event: vesting.ResetLockupEventInstance, ctx: AptosContext) => void,
|
2219
|
-
fetchConfig?: MoveFetchConfig
|
2219
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2220
2220
|
): vesting {
|
2221
2221
|
this.onMoveEvent(
|
2222
2222
|
func,
|
@@ -2233,7 +2233,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2233
2233
|
event: vesting.SetBeneficiaryEventInstance,
|
2234
2234
|
ctx: AptosContext
|
2235
2235
|
) => void,
|
2236
|
-
fetchConfig?: MoveFetchConfig
|
2236
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2237
2237
|
): vesting {
|
2238
2238
|
this.onMoveEvent(
|
2239
2239
|
func,
|
@@ -2250,7 +2250,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2250
2250
|
event: vesting.UnlockRewardsEventInstance,
|
2251
2251
|
ctx: AptosContext
|
2252
2252
|
) => void,
|
2253
|
-
fetchConfig?: MoveFetchConfig
|
2253
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2254
2254
|
): vesting {
|
2255
2255
|
this.onMoveEvent(
|
2256
2256
|
func,
|
@@ -2264,7 +2264,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2264
2264
|
|
2265
2265
|
onEventVestEvent(
|
2266
2266
|
func: (event: vesting.VestEventInstance, ctx: AptosContext) => void,
|
2267
|
-
fetchConfig?: MoveFetchConfig
|
2267
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2268
2268
|
): vesting {
|
2269
2269
|
this.onMoveEvent(
|
2270
2270
|
func,
|
@@ -2278,7 +2278,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2278
2278
|
|
2279
2279
|
onEventDistributeEvent(
|
2280
2280
|
func: (event: vesting.DistributeEventInstance, ctx: AptosContext) => void,
|
2281
|
-
fetchConfig?: MoveFetchConfig
|
2281
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2282
2282
|
): vesting {
|
2283
2283
|
this.onMoveEvent(
|
2284
2284
|
func,
|
@@ -2292,7 +2292,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2292
2292
|
|
2293
2293
|
onEventTerminateEvent(
|
2294
2294
|
func: (event: vesting.TerminateEventInstance, ctx: AptosContext) => void,
|
2295
|
-
fetchConfig?: MoveFetchConfig
|
2295
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2296
2296
|
): vesting {
|
2297
2297
|
this.onMoveEvent(
|
2298
2298
|
func,
|
@@ -2309,7 +2309,7 @@ export class vesting extends AptosBaseProcessor {
|
|
2309
2309
|
event: vesting.AdminWithdrawEventInstance,
|
2310
2310
|
ctx: AptosContext
|
2311
2311
|
) => void,
|
2312
|
-
fetchConfig?: MoveFetchConfig
|
2312
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2313
2313
|
): vesting {
|
2314
2314
|
this.onMoveEvent(
|
2315
2315
|
func,
|
@@ -2725,7 +2725,7 @@ export class aptos_coin extends AptosBaseProcessor {
|
|
2725
2725
|
ctx: AptosContext
|
2726
2726
|
) => void,
|
2727
2727
|
filter?: CallFilter,
|
2728
|
-
fetchConfig?: MoveFetchConfig
|
2728
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2729
2729
|
): aptos_coin {
|
2730
2730
|
this.onEntryFunctionCall(
|
2731
2731
|
func,
|
@@ -2744,7 +2744,7 @@ export class aptos_coin extends AptosBaseProcessor {
|
|
2744
2744
|
ctx: AptosContext
|
2745
2745
|
) => void,
|
2746
2746
|
filter?: CallFilter,
|
2747
|
-
fetchConfig?: MoveFetchConfig
|
2747
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2748
2748
|
): aptos_coin {
|
2749
2749
|
this.onEntryFunctionCall(
|
2750
2750
|
func,
|
@@ -2760,7 +2760,7 @@ export class aptos_coin extends AptosBaseProcessor {
|
|
2760
2760
|
onEntryMint(
|
2761
2761
|
func: (call: aptos_coin.MintPayload, ctx: AptosContext) => void,
|
2762
2762
|
filter?: CallFilter,
|
2763
|
-
fetchConfig?: MoveFetchConfig
|
2763
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2764
2764
|
): aptos_coin {
|
2765
2765
|
this.onEntryFunctionCall(
|
2766
2766
|
func,
|
@@ -2986,7 +2986,7 @@ export class managed_coin extends AptosBaseProcessor {
|
|
2986
2986
|
onEntryBurn(
|
2987
2987
|
func: (call: managed_coin.BurnPayload, ctx: AptosContext) => void,
|
2988
2988
|
filter?: CallFilter,
|
2989
|
-
fetchConfig?: MoveFetchConfig
|
2989
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
2990
2990
|
): managed_coin {
|
2991
2991
|
this.onEntryFunctionCall(
|
2992
2992
|
func,
|
@@ -3002,7 +3002,7 @@ export class managed_coin extends AptosBaseProcessor {
|
|
3002
3002
|
onEntryInitialize(
|
3003
3003
|
func: (call: managed_coin.InitializePayload, ctx: AptosContext) => void,
|
3004
3004
|
filter?: CallFilter,
|
3005
|
-
fetchConfig?: MoveFetchConfig
|
3005
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3006
3006
|
): managed_coin {
|
3007
3007
|
this.onEntryFunctionCall(
|
3008
3008
|
func,
|
@@ -3018,7 +3018,7 @@ export class managed_coin extends AptosBaseProcessor {
|
|
3018
3018
|
onEntryMint(
|
3019
3019
|
func: (call: managed_coin.MintPayload, ctx: AptosContext) => void,
|
3020
3020
|
filter?: CallFilter,
|
3021
|
-
fetchConfig?: MoveFetchConfig
|
3021
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3022
3022
|
): managed_coin {
|
3023
3023
|
this.onEntryFunctionCall(
|
3024
3024
|
func,
|
@@ -3034,7 +3034,7 @@ export class managed_coin extends AptosBaseProcessor {
|
|
3034
3034
|
onEntryRegister(
|
3035
3035
|
func: (call: managed_coin.RegisterPayload, ctx: AptosContext) => void,
|
3036
3036
|
filter?: CallFilter,
|
3037
|
-
fetchConfig?: MoveFetchConfig
|
3037
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3038
3038
|
): managed_coin {
|
3039
3039
|
this.onEntryFunctionCall(
|
3040
3040
|
func,
|
@@ -3123,7 +3123,7 @@ export class aptos_account extends AptosBaseProcessor {
|
|
3123
3123
|
onEntryBatchTransfer(
|
3124
3124
|
func: (call: aptos_account.BatchTransferPayload, ctx: AptosContext) => void,
|
3125
3125
|
filter?: CallFilter,
|
3126
|
-
fetchConfig?: MoveFetchConfig
|
3126
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3127
3127
|
): aptos_account {
|
3128
3128
|
this.onEntryFunctionCall(
|
3129
3129
|
func,
|
@@ -3142,7 +3142,7 @@ export class aptos_account extends AptosBaseProcessor {
|
|
3142
3142
|
ctx: AptosContext
|
3143
3143
|
) => void,
|
3144
3144
|
filter?: CallFilter,
|
3145
|
-
fetchConfig?: MoveFetchConfig
|
3145
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3146
3146
|
): aptos_account {
|
3147
3147
|
this.onEntryFunctionCall(
|
3148
3148
|
func,
|
@@ -3158,7 +3158,7 @@ export class aptos_account extends AptosBaseProcessor {
|
|
3158
3158
|
onEntryCreateAccount(
|
3159
3159
|
func: (call: aptos_account.CreateAccountPayload, ctx: AptosContext) => void,
|
3160
3160
|
filter?: CallFilter,
|
3161
|
-
fetchConfig?: MoveFetchConfig
|
3161
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3162
3162
|
): aptos_account {
|
3163
3163
|
this.onEntryFunctionCall(
|
3164
3164
|
func,
|
@@ -3177,7 +3177,7 @@ export class aptos_account extends AptosBaseProcessor {
|
|
3177
3177
|
ctx: AptosContext
|
3178
3178
|
) => void,
|
3179
3179
|
filter?: CallFilter,
|
3180
|
-
fetchConfig?: MoveFetchConfig
|
3180
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3181
3181
|
): aptos_account {
|
3182
3182
|
this.onEntryFunctionCall(
|
3183
3183
|
func,
|
@@ -3193,7 +3193,7 @@ export class aptos_account extends AptosBaseProcessor {
|
|
3193
3193
|
onEntryTransfer(
|
3194
3194
|
func: (call: aptos_account.TransferPayload, ctx: AptosContext) => void,
|
3195
3195
|
filter?: CallFilter,
|
3196
|
-
fetchConfig?: MoveFetchConfig
|
3196
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3197
3197
|
): aptos_account {
|
3198
3198
|
this.onEntryFunctionCall(
|
3199
3199
|
func,
|
@@ -3209,7 +3209,7 @@ export class aptos_account extends AptosBaseProcessor {
|
|
3209
3209
|
onEntryTransferCoins(
|
3210
3210
|
func: (call: aptos_account.TransferCoinsPayload, ctx: AptosContext) => void,
|
3211
3211
|
filter?: CallFilter,
|
3212
|
-
fetchConfig?: MoveFetchConfig
|
3212
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3213
3213
|
): aptos_account {
|
3214
3214
|
this.onEntryFunctionCall(
|
3215
3215
|
func,
|
@@ -3227,7 +3227,7 @@ export class aptos_account extends AptosBaseProcessor {
|
|
3227
3227
|
event: aptos_account.DirectCoinTransferConfigUpdatedEventInstance,
|
3228
3228
|
ctx: AptosContext
|
3229
3229
|
) => void,
|
3230
|
-
fetchConfig?: MoveFetchConfig
|
3230
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3231
3231
|
): aptos_account {
|
3232
3232
|
this.onMoveEvent(
|
3233
3233
|
func,
|
@@ -3338,7 +3338,7 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
3338
3338
|
onEntrySetOperator(
|
3339
3339
|
func: (call: staking_proxy.SetOperatorPayload, ctx: AptosContext) => void,
|
3340
3340
|
filter?: CallFilter,
|
3341
|
-
fetchConfig?: MoveFetchConfig
|
3341
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3342
3342
|
): staking_proxy {
|
3343
3343
|
this.onEntryFunctionCall(
|
3344
3344
|
func,
|
@@ -3357,7 +3357,7 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
3357
3357
|
ctx: AptosContext
|
3358
3358
|
) => void,
|
3359
3359
|
filter?: CallFilter,
|
3360
|
-
fetchConfig?: MoveFetchConfig
|
3360
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3361
3361
|
): staking_proxy {
|
3362
3362
|
this.onEntryFunctionCall(
|
3363
3363
|
func,
|
@@ -3376,7 +3376,7 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
3376
3376
|
ctx: AptosContext
|
3377
3377
|
) => void,
|
3378
3378
|
filter?: CallFilter,
|
3379
|
-
fetchConfig?: MoveFetchConfig
|
3379
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3380
3380
|
): staking_proxy {
|
3381
3381
|
this.onEntryFunctionCall(
|
3382
3382
|
func,
|
@@ -3395,7 +3395,7 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
3395
3395
|
ctx: AptosContext
|
3396
3396
|
) => void,
|
3397
3397
|
filter?: CallFilter,
|
3398
|
-
fetchConfig?: MoveFetchConfig
|
3398
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3399
3399
|
): staking_proxy {
|
3400
3400
|
this.onEntryFunctionCall(
|
3401
3401
|
func,
|
@@ -3414,7 +3414,7 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
3414
3414
|
ctx: AptosContext
|
3415
3415
|
) => void,
|
3416
3416
|
filter?: CallFilter,
|
3417
|
-
fetchConfig?: MoveFetchConfig
|
3417
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3418
3418
|
): staking_proxy {
|
3419
3419
|
this.onEntryFunctionCall(
|
3420
3420
|
func,
|
@@ -3433,7 +3433,7 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
3433
3433
|
ctx: AptosContext
|
3434
3434
|
) => void,
|
3435
3435
|
filter?: CallFilter,
|
3436
|
-
fetchConfig?: MoveFetchConfig
|
3436
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3437
3437
|
): staking_proxy {
|
3438
3438
|
this.onEntryFunctionCall(
|
3439
3439
|
func,
|
@@ -3452,7 +3452,7 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
3452
3452
|
ctx: AptosContext
|
3453
3453
|
) => void,
|
3454
3454
|
filter?: CallFilter,
|
3455
|
-
fetchConfig?: MoveFetchConfig
|
3455
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3456
3456
|
): staking_proxy {
|
3457
3457
|
this.onEntryFunctionCall(
|
3458
3458
|
func,
|
@@ -3468,7 +3468,7 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
3468
3468
|
onEntrySetVoter(
|
3469
3469
|
func: (call: staking_proxy.SetVoterPayload, ctx: AptosContext) => void,
|
3470
3470
|
filter?: CallFilter,
|
3471
|
-
fetchConfig?: MoveFetchConfig
|
3471
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3472
3472
|
): staking_proxy {
|
3473
3473
|
this.onEntryFunctionCall(
|
3474
3474
|
func,
|
@@ -3583,7 +3583,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3583
3583
|
onEntryAddStake(
|
3584
3584
|
func: (call: delegation_pool.AddStakePayload, ctx: AptosContext) => void,
|
3585
3585
|
filter?: CallFilter,
|
3586
|
-
fetchConfig?: MoveFetchConfig
|
3586
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3587
3587
|
): delegation_pool {
|
3588
3588
|
this.onEntryFunctionCall(
|
3589
3589
|
func,
|
@@ -3602,7 +3602,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3602
3602
|
ctx: AptosContext
|
3603
3603
|
) => void,
|
3604
3604
|
filter?: CallFilter,
|
3605
|
-
fetchConfig?: MoveFetchConfig
|
3605
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3606
3606
|
): delegation_pool {
|
3607
3607
|
this.onEntryFunctionCall(
|
3608
3608
|
func,
|
@@ -3621,7 +3621,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3621
3621
|
ctx: AptosContext
|
3622
3622
|
) => void,
|
3623
3623
|
filter?: CallFilter,
|
3624
|
-
fetchConfig?: MoveFetchConfig
|
3624
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3625
3625
|
): delegation_pool {
|
3626
3626
|
this.onEntryFunctionCall(
|
3627
3627
|
func,
|
@@ -3640,7 +3640,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3640
3640
|
ctx: AptosContext
|
3641
3641
|
) => void,
|
3642
3642
|
filter?: CallFilter,
|
3643
|
-
fetchConfig?: MoveFetchConfig
|
3643
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3644
3644
|
): delegation_pool {
|
3645
3645
|
this.onEntryFunctionCall(
|
3646
3646
|
func,
|
@@ -3656,7 +3656,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3656
3656
|
onEntrySetOperator(
|
3657
3657
|
func: (call: delegation_pool.SetOperatorPayload, ctx: AptosContext) => void,
|
3658
3658
|
filter?: CallFilter,
|
3659
|
-
fetchConfig?: MoveFetchConfig
|
3659
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3660
3660
|
): delegation_pool {
|
3661
3661
|
this.onEntryFunctionCall(
|
3662
3662
|
func,
|
@@ -3675,7 +3675,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3675
3675
|
ctx: AptosContext
|
3676
3676
|
) => void,
|
3677
3677
|
filter?: CallFilter,
|
3678
|
-
fetchConfig?: MoveFetchConfig
|
3678
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3679
3679
|
): delegation_pool {
|
3680
3680
|
this.onEntryFunctionCall(
|
3681
3681
|
func,
|
@@ -3691,7 +3691,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3691
3691
|
onEntryUnlock(
|
3692
3692
|
func: (call: delegation_pool.UnlockPayload, ctx: AptosContext) => void,
|
3693
3693
|
filter?: CallFilter,
|
3694
|
-
fetchConfig?: MoveFetchConfig
|
3694
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3695
3695
|
): delegation_pool {
|
3696
3696
|
this.onEntryFunctionCall(
|
3697
3697
|
func,
|
@@ -3707,7 +3707,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3707
3707
|
onEntryWithdraw(
|
3708
3708
|
func: (call: delegation_pool.WithdrawPayload, ctx: AptosContext) => void,
|
3709
3709
|
filter?: CallFilter,
|
3710
|
-
fetchConfig?: MoveFetchConfig
|
3710
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3711
3711
|
): delegation_pool {
|
3712
3712
|
this.onEntryFunctionCall(
|
3713
3713
|
func,
|
@@ -3725,7 +3725,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3725
3725
|
event: delegation_pool.AddStakeEventInstance,
|
3726
3726
|
ctx: AptosContext
|
3727
3727
|
) => void,
|
3728
|
-
fetchConfig?: MoveFetchConfig
|
3728
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3729
3729
|
): delegation_pool {
|
3730
3730
|
this.onMoveEvent(
|
3731
3731
|
func,
|
@@ -3742,7 +3742,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3742
3742
|
event: delegation_pool.ReactivateStakeEventInstance,
|
3743
3743
|
ctx: AptosContext
|
3744
3744
|
) => void,
|
3745
|
-
fetchConfig?: MoveFetchConfig
|
3745
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3746
3746
|
): delegation_pool {
|
3747
3747
|
this.onMoveEvent(
|
3748
3748
|
func,
|
@@ -3759,7 +3759,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3759
3759
|
event: delegation_pool.UnlockStakeEventInstance,
|
3760
3760
|
ctx: AptosContext
|
3761
3761
|
) => void,
|
3762
|
-
fetchConfig?: MoveFetchConfig
|
3762
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3763
3763
|
): delegation_pool {
|
3764
3764
|
this.onMoveEvent(
|
3765
3765
|
func,
|
@@ -3776,7 +3776,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3776
3776
|
event: delegation_pool.WithdrawStakeEventInstance,
|
3777
3777
|
ctx: AptosContext
|
3778
3778
|
) => void,
|
3779
|
-
fetchConfig?: MoveFetchConfig
|
3779
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3780
3780
|
): delegation_pool {
|
3781
3781
|
this.onMoveEvent(
|
3782
3782
|
func,
|
@@ -3793,7 +3793,7 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
3793
3793
|
event: delegation_pool.DistributeCommissionEventInstance,
|
3794
3794
|
ctx: AptosContext
|
3795
3795
|
) => void,
|
3796
|
-
fetchConfig?: MoveFetchConfig
|
3796
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3797
3797
|
): delegation_pool {
|
3798
3798
|
this.onMoveEvent(
|
3799
3799
|
func,
|
@@ -3975,7 +3975,7 @@ export class reconfiguration extends AptosBaseProcessor {
|
|
3975
3975
|
event: reconfiguration.NewEpochEventInstance,
|
3976
3976
|
ctx: AptosContext
|
3977
3977
|
) => void,
|
3978
|
-
fetchConfig?: MoveFetchConfig
|
3978
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
3979
3979
|
): reconfiguration {
|
3980
3980
|
this.onMoveEvent(
|
3981
3981
|
func,
|
@@ -4049,7 +4049,7 @@ export class aptos_governance extends AptosBaseProcessor {
|
|
4049
4049
|
ctx: AptosContext
|
4050
4050
|
) => void,
|
4051
4051
|
filter?: CallFilter,
|
4052
|
-
fetchConfig?: MoveFetchConfig
|
4052
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4053
4053
|
): aptos_governance {
|
4054
4054
|
this.onEntryFunctionCall(
|
4055
4055
|
func,
|
@@ -4068,7 +4068,7 @@ export class aptos_governance extends AptosBaseProcessor {
|
|
4068
4068
|
ctx: AptosContext
|
4069
4069
|
) => void,
|
4070
4070
|
filter?: CallFilter,
|
4071
|
-
fetchConfig?: MoveFetchConfig
|
4071
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4072
4072
|
): aptos_governance {
|
4073
4073
|
this.onEntryFunctionCall(
|
4074
4074
|
func,
|
@@ -4087,7 +4087,7 @@ export class aptos_governance extends AptosBaseProcessor {
|
|
4087
4087
|
ctx: AptosContext
|
4088
4088
|
) => void,
|
4089
4089
|
filter?: CallFilter,
|
4090
|
-
fetchConfig?: MoveFetchConfig
|
4090
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4091
4091
|
): aptos_governance {
|
4092
4092
|
this.onEntryFunctionCall(
|
4093
4093
|
func,
|
@@ -4103,7 +4103,7 @@ export class aptos_governance extends AptosBaseProcessor {
|
|
4103
4103
|
onEntryVote(
|
4104
4104
|
func: (call: aptos_governance.VotePayload, ctx: AptosContext) => void,
|
4105
4105
|
filter?: CallFilter,
|
4106
|
-
fetchConfig?: MoveFetchConfig
|
4106
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4107
4107
|
): aptos_governance {
|
4108
4108
|
this.onEntryFunctionCall(
|
4109
4109
|
func,
|
@@ -4121,7 +4121,7 @@ export class aptos_governance extends AptosBaseProcessor {
|
|
4121
4121
|
event: aptos_governance.CreateProposalEventInstance,
|
4122
4122
|
ctx: AptosContext
|
4123
4123
|
) => void,
|
4124
|
-
fetchConfig?: MoveFetchConfig
|
4124
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4125
4125
|
): aptos_governance {
|
4126
4126
|
this.onMoveEvent(
|
4127
4127
|
func,
|
@@ -4138,7 +4138,7 @@ export class aptos_governance extends AptosBaseProcessor {
|
|
4138
4138
|
event: aptos_governance.UpdateConfigEventInstance,
|
4139
4139
|
ctx: AptosContext
|
4140
4140
|
) => void,
|
4141
|
-
fetchConfig?: MoveFetchConfig
|
4141
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4142
4142
|
): aptos_governance {
|
4143
4143
|
this.onMoveEvent(
|
4144
4144
|
func,
|
@@ -4155,7 +4155,7 @@ export class aptos_governance extends AptosBaseProcessor {
|
|
4155
4155
|
event: aptos_governance.VoteEventInstance,
|
4156
4156
|
ctx: AptosContext
|
4157
4157
|
) => void,
|
4158
|
-
fetchConfig?: MoveFetchConfig
|
4158
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4159
4159
|
): aptos_governance {
|
4160
4160
|
this.onMoveEvent(
|
4161
4161
|
func,
|
@@ -4297,7 +4297,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4297
4297
|
onEntryAddOwner(
|
4298
4298
|
func: (call: multisig_account.AddOwnerPayload, ctx: AptosContext) => void,
|
4299
4299
|
filter?: CallFilter,
|
4300
|
-
fetchConfig?: MoveFetchConfig
|
4300
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4301
4301
|
): multisig_account {
|
4302
4302
|
this.onEntryFunctionCall(
|
4303
4303
|
func,
|
@@ -4313,7 +4313,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4313
4313
|
onEntryAddOwners(
|
4314
4314
|
func: (call: multisig_account.AddOwnersPayload, ctx: AptosContext) => void,
|
4315
4315
|
filter?: CallFilter,
|
4316
|
-
fetchConfig?: MoveFetchConfig
|
4316
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4317
4317
|
): multisig_account {
|
4318
4318
|
this.onEntryFunctionCall(
|
4319
4319
|
func,
|
@@ -4332,7 +4332,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4332
4332
|
ctx: AptosContext
|
4333
4333
|
) => void,
|
4334
4334
|
filter?: CallFilter,
|
4335
|
-
fetchConfig?: MoveFetchConfig
|
4335
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4336
4336
|
): multisig_account {
|
4337
4337
|
this.onEntryFunctionCall(
|
4338
4338
|
func,
|
@@ -4348,7 +4348,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4348
4348
|
onEntryCreate(
|
4349
4349
|
func: (call: multisig_account.CreatePayload, ctx: AptosContext) => void,
|
4350
4350
|
filter?: CallFilter,
|
4351
|
-
fetchConfig?: MoveFetchConfig
|
4351
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4352
4352
|
): multisig_account {
|
4353
4353
|
this.onEntryFunctionCall(
|
4354
4354
|
func,
|
@@ -4367,7 +4367,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4367
4367
|
ctx: AptosContext
|
4368
4368
|
) => void,
|
4369
4369
|
filter?: CallFilter,
|
4370
|
-
fetchConfig?: MoveFetchConfig
|
4370
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4371
4371
|
): multisig_account {
|
4372
4372
|
this.onEntryFunctionCall(
|
4373
4373
|
func,
|
@@ -4386,7 +4386,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4386
4386
|
ctx: AptosContext
|
4387
4387
|
) => void,
|
4388
4388
|
filter?: CallFilter,
|
4389
|
-
fetchConfig?: MoveFetchConfig
|
4389
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4390
4390
|
): multisig_account {
|
4391
4391
|
this.onEntryFunctionCall(
|
4392
4392
|
func,
|
@@ -4405,7 +4405,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4405
4405
|
ctx: AptosContext
|
4406
4406
|
) => void,
|
4407
4407
|
filter?: CallFilter,
|
4408
|
-
fetchConfig?: MoveFetchConfig
|
4408
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4409
4409
|
): multisig_account {
|
4410
4410
|
this.onEntryFunctionCall(
|
4411
4411
|
func,
|
@@ -4424,7 +4424,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4424
4424
|
ctx: AptosContext
|
4425
4425
|
) => void,
|
4426
4426
|
filter?: CallFilter,
|
4427
|
-
fetchConfig?: MoveFetchConfig
|
4427
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4428
4428
|
): multisig_account {
|
4429
4429
|
this.onEntryFunctionCall(
|
4430
4430
|
func,
|
@@ -4443,7 +4443,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4443
4443
|
ctx: AptosContext
|
4444
4444
|
) => void,
|
4445
4445
|
filter?: CallFilter,
|
4446
|
-
fetchConfig?: MoveFetchConfig
|
4446
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4447
4447
|
): multisig_account {
|
4448
4448
|
this.onEntryFunctionCall(
|
4449
4449
|
func,
|
@@ -4462,7 +4462,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4462
4462
|
ctx: AptosContext
|
4463
4463
|
) => void,
|
4464
4464
|
filter?: CallFilter,
|
4465
|
-
fetchConfig?: MoveFetchConfig
|
4465
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4466
4466
|
): multisig_account {
|
4467
4467
|
this.onEntryFunctionCall(
|
4468
4468
|
func,
|
@@ -4481,7 +4481,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4481
4481
|
ctx: AptosContext
|
4482
4482
|
) => void,
|
4483
4483
|
filter?: CallFilter,
|
4484
|
-
fetchConfig?: MoveFetchConfig
|
4484
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4485
4485
|
): multisig_account {
|
4486
4486
|
this.onEntryFunctionCall(
|
4487
4487
|
func,
|
@@ -4500,7 +4500,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4500
4500
|
ctx: AptosContext
|
4501
4501
|
) => void,
|
4502
4502
|
filter?: CallFilter,
|
4503
|
-
fetchConfig?: MoveFetchConfig
|
4503
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4504
4504
|
): multisig_account {
|
4505
4505
|
this.onEntryFunctionCall(
|
4506
4506
|
func,
|
@@ -4519,7 +4519,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4519
4519
|
ctx: AptosContext
|
4520
4520
|
) => void,
|
4521
4521
|
filter?: CallFilter,
|
4522
|
-
fetchConfig?: MoveFetchConfig
|
4522
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4523
4523
|
): multisig_account {
|
4524
4524
|
this.onEntryFunctionCall(
|
4525
4525
|
func,
|
@@ -4538,7 +4538,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4538
4538
|
ctx: AptosContext
|
4539
4539
|
) => void,
|
4540
4540
|
filter?: CallFilter,
|
4541
|
-
fetchConfig?: MoveFetchConfig
|
4541
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4542
4542
|
): multisig_account {
|
4543
4543
|
this.onEntryFunctionCall(
|
4544
4544
|
func,
|
@@ -4557,7 +4557,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4557
4557
|
ctx: AptosContext
|
4558
4558
|
) => void,
|
4559
4559
|
filter?: CallFilter,
|
4560
|
-
fetchConfig?: MoveFetchConfig
|
4560
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4561
4561
|
): multisig_account {
|
4562
4562
|
this.onEntryFunctionCall(
|
4563
4563
|
func,
|
@@ -4575,7 +4575,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4575
4575
|
event: multisig_account.AddOwnersEventInstance,
|
4576
4576
|
ctx: AptosContext
|
4577
4577
|
) => void,
|
4578
|
-
fetchConfig?: MoveFetchConfig
|
4578
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4579
4579
|
): multisig_account {
|
4580
4580
|
this.onMoveEvent(
|
4581
4581
|
func,
|
@@ -4592,7 +4592,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4592
4592
|
event: multisig_account.RemoveOwnersEventInstance,
|
4593
4593
|
ctx: AptosContext
|
4594
4594
|
) => void,
|
4595
|
-
fetchConfig?: MoveFetchConfig
|
4595
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4596
4596
|
): multisig_account {
|
4597
4597
|
this.onMoveEvent(
|
4598
4598
|
func,
|
@@ -4609,7 +4609,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4609
4609
|
event: multisig_account.UpdateSignaturesRequiredEventInstance,
|
4610
4610
|
ctx: AptosContext
|
4611
4611
|
) => void,
|
4612
|
-
fetchConfig?: MoveFetchConfig
|
4612
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4613
4613
|
): multisig_account {
|
4614
4614
|
this.onMoveEvent(
|
4615
4615
|
func,
|
@@ -4626,7 +4626,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4626
4626
|
event: multisig_account.CreateTransactionEventInstance,
|
4627
4627
|
ctx: AptosContext
|
4628
4628
|
) => void,
|
4629
|
-
fetchConfig?: MoveFetchConfig
|
4629
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4630
4630
|
): multisig_account {
|
4631
4631
|
this.onMoveEvent(
|
4632
4632
|
func,
|
@@ -4643,7 +4643,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4643
4643
|
event: multisig_account.VoteEventInstance,
|
4644
4644
|
ctx: AptosContext
|
4645
4645
|
) => void,
|
4646
|
-
fetchConfig?: MoveFetchConfig
|
4646
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4647
4647
|
): multisig_account {
|
4648
4648
|
this.onMoveEvent(
|
4649
4649
|
func,
|
@@ -4660,7 +4660,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4660
4660
|
event: multisig_account.ExecuteRejectedTransactionEventInstance,
|
4661
4661
|
ctx: AptosContext
|
4662
4662
|
) => void,
|
4663
|
-
fetchConfig?: MoveFetchConfig
|
4663
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4664
4664
|
): multisig_account {
|
4665
4665
|
this.onMoveEvent(
|
4666
4666
|
func,
|
@@ -4677,7 +4677,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4677
4677
|
event: multisig_account.TransactionExecutionSucceededEventInstance,
|
4678
4678
|
ctx: AptosContext
|
4679
4679
|
) => void,
|
4680
|
-
fetchConfig?: MoveFetchConfig
|
4680
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4681
4681
|
): multisig_account {
|
4682
4682
|
this.onMoveEvent(
|
4683
4683
|
func,
|
@@ -4694,7 +4694,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4694
4694
|
event: multisig_account.TransactionExecutionFailedEventInstance,
|
4695
4695
|
ctx: AptosContext
|
4696
4696
|
) => void,
|
4697
|
-
fetchConfig?: MoveFetchConfig
|
4697
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4698
4698
|
): multisig_account {
|
4699
4699
|
this.onMoveEvent(
|
4700
4700
|
func,
|
@@ -4711,7 +4711,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
4711
4711
|
event: multisig_account.MetadataUpdatedEventInstance,
|
4712
4712
|
ctx: AptosContext
|
4713
4713
|
) => void,
|
4714
|
-
fetchConfig?: MoveFetchConfig
|
4714
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
4715
4715
|
): multisig_account {
|
4716
4716
|
this.onMoveEvent(
|
4717
4717
|
func,
|
@@ -5017,7 +5017,7 @@ export class resource_account extends AptosBaseProcessor {
|
|
5017
5017
|
ctx: AptosContext
|
5018
5018
|
) => void,
|
5019
5019
|
filter?: CallFilter,
|
5020
|
-
fetchConfig?: MoveFetchConfig
|
5020
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5021
5021
|
): resource_account {
|
5022
5022
|
this.onEntryFunctionCall(
|
5023
5023
|
func,
|
@@ -5036,7 +5036,7 @@ export class resource_account extends AptosBaseProcessor {
|
|
5036
5036
|
ctx: AptosContext
|
5037
5037
|
) => void,
|
5038
5038
|
filter?: CallFilter,
|
5039
|
-
fetchConfig?: MoveFetchConfig
|
5039
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5040
5040
|
): resource_account {
|
5041
5041
|
this.onEntryFunctionCall(
|
5042
5042
|
func,
|
@@ -5055,7 +5055,7 @@ export class resource_account extends AptosBaseProcessor {
|
|
5055
5055
|
ctx: AptosContext
|
5056
5056
|
) => void,
|
5057
5057
|
filter?: CallFilter,
|
5058
|
-
fetchConfig?: MoveFetchConfig
|
5058
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5059
5059
|
): resource_account {
|
5060
5060
|
this.onEntryFunctionCall(
|
5061
5061
|
func,
|
@@ -5114,7 +5114,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5114
5114
|
onEntryAddStake(
|
5115
5115
|
func: (call: staking_contract.AddStakePayload, ctx: AptosContext) => void,
|
5116
5116
|
filter?: CallFilter,
|
5117
|
-
fetchConfig?: MoveFetchConfig
|
5117
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5118
5118
|
): staking_contract {
|
5119
5119
|
this.onEntryFunctionCall(
|
5120
5120
|
func,
|
@@ -5133,7 +5133,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5133
5133
|
ctx: AptosContext
|
5134
5134
|
) => void,
|
5135
5135
|
filter?: CallFilter,
|
5136
|
-
fetchConfig?: MoveFetchConfig
|
5136
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5137
5137
|
): staking_contract {
|
5138
5138
|
this.onEntryFunctionCall(
|
5139
5139
|
func,
|
@@ -5149,7 +5149,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5149
5149
|
onEntryDistribute(
|
5150
5150
|
func: (call: staking_contract.DistributePayload, ctx: AptosContext) => void,
|
5151
5151
|
filter?: CallFilter,
|
5152
|
-
fetchConfig?: MoveFetchConfig
|
5152
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5153
5153
|
): staking_contract {
|
5154
5154
|
this.onEntryFunctionCall(
|
5155
5155
|
func,
|
@@ -5168,7 +5168,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5168
5168
|
ctx: AptosContext
|
5169
5169
|
) => void,
|
5170
5170
|
filter?: CallFilter,
|
5171
|
-
fetchConfig?: MoveFetchConfig
|
5171
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5172
5172
|
): staking_contract {
|
5173
5173
|
this.onEntryFunctionCall(
|
5174
5174
|
func,
|
@@ -5187,7 +5187,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5187
5187
|
ctx: AptosContext
|
5188
5188
|
) => void,
|
5189
5189
|
filter?: CallFilter,
|
5190
|
-
fetchConfig?: MoveFetchConfig
|
5190
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5191
5191
|
): staking_contract {
|
5192
5192
|
this.onEntryFunctionCall(
|
5193
5193
|
func,
|
@@ -5206,7 +5206,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5206
5206
|
ctx: AptosContext
|
5207
5207
|
) => void,
|
5208
5208
|
filter?: CallFilter,
|
5209
|
-
fetchConfig?: MoveFetchConfig
|
5209
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5210
5210
|
): staking_contract {
|
5211
5211
|
this.onEntryFunctionCall(
|
5212
5212
|
func,
|
@@ -5225,7 +5225,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5225
5225
|
ctx: AptosContext
|
5226
5226
|
) => void,
|
5227
5227
|
filter?: CallFilter,
|
5228
|
-
fetchConfig?: MoveFetchConfig
|
5228
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5229
5229
|
): staking_contract {
|
5230
5230
|
this.onEntryFunctionCall(
|
5231
5231
|
func,
|
@@ -5244,7 +5244,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5244
5244
|
ctx: AptosContext
|
5245
5245
|
) => void,
|
5246
5246
|
filter?: CallFilter,
|
5247
|
-
fetchConfig?: MoveFetchConfig
|
5247
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5248
5248
|
): staking_contract {
|
5249
5249
|
this.onEntryFunctionCall(
|
5250
5250
|
func,
|
@@ -5263,7 +5263,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5263
5263
|
ctx: AptosContext
|
5264
5264
|
) => void,
|
5265
5265
|
filter?: CallFilter,
|
5266
|
-
fetchConfig?: MoveFetchConfig
|
5266
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5267
5267
|
): staking_contract {
|
5268
5268
|
this.onEntryFunctionCall(
|
5269
5269
|
func,
|
@@ -5282,7 +5282,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5282
5282
|
ctx: AptosContext
|
5283
5283
|
) => void,
|
5284
5284
|
filter?: CallFilter,
|
5285
|
-
fetchConfig?: MoveFetchConfig
|
5285
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5286
5286
|
): staking_contract {
|
5287
5287
|
this.onEntryFunctionCall(
|
5288
5288
|
func,
|
@@ -5301,7 +5301,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5301
5301
|
ctx: AptosContext
|
5302
5302
|
) => void,
|
5303
5303
|
filter?: CallFilter,
|
5304
|
-
fetchConfig?: MoveFetchConfig
|
5304
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5305
5305
|
): staking_contract {
|
5306
5306
|
this.onEntryFunctionCall(
|
5307
5307
|
func,
|
@@ -5319,7 +5319,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5319
5319
|
event: staking_contract.UpdateCommissionEventInstance,
|
5320
5320
|
ctx: AptosContext
|
5321
5321
|
) => void,
|
5322
|
-
fetchConfig?: MoveFetchConfig
|
5322
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5323
5323
|
): staking_contract {
|
5324
5324
|
this.onMoveEvent(
|
5325
5325
|
func,
|
@@ -5336,7 +5336,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5336
5336
|
event: staking_contract.CreateStakingContractEventInstance,
|
5337
5337
|
ctx: AptosContext
|
5338
5338
|
) => void,
|
5339
|
-
fetchConfig?: MoveFetchConfig
|
5339
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5340
5340
|
): staking_contract {
|
5341
5341
|
this.onMoveEvent(
|
5342
5342
|
func,
|
@@ -5353,7 +5353,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5353
5353
|
event: staking_contract.UpdateVoterEventInstance,
|
5354
5354
|
ctx: AptosContext
|
5355
5355
|
) => void,
|
5356
|
-
fetchConfig?: MoveFetchConfig
|
5356
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5357
5357
|
): staking_contract {
|
5358
5358
|
this.onMoveEvent(
|
5359
5359
|
func,
|
@@ -5370,7 +5370,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5370
5370
|
event: staking_contract.ResetLockupEventInstance,
|
5371
5371
|
ctx: AptosContext
|
5372
5372
|
) => void,
|
5373
|
-
fetchConfig?: MoveFetchConfig
|
5373
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5374
5374
|
): staking_contract {
|
5375
5375
|
this.onMoveEvent(
|
5376
5376
|
func,
|
@@ -5387,7 +5387,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5387
5387
|
event: staking_contract.AddStakeEventInstance,
|
5388
5388
|
ctx: AptosContext
|
5389
5389
|
) => void,
|
5390
|
-
fetchConfig?: MoveFetchConfig
|
5390
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5391
5391
|
): staking_contract {
|
5392
5392
|
this.onMoveEvent(
|
5393
5393
|
func,
|
@@ -5404,7 +5404,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5404
5404
|
event: staking_contract.RequestCommissionEventInstance,
|
5405
5405
|
ctx: AptosContext
|
5406
5406
|
) => void,
|
5407
|
-
fetchConfig?: MoveFetchConfig
|
5407
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5408
5408
|
): staking_contract {
|
5409
5409
|
this.onMoveEvent(
|
5410
5410
|
func,
|
@@ -5421,7 +5421,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5421
5421
|
event: staking_contract.UnlockStakeEventInstance,
|
5422
5422
|
ctx: AptosContext
|
5423
5423
|
) => void,
|
5424
|
-
fetchConfig?: MoveFetchConfig
|
5424
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5425
5425
|
): staking_contract {
|
5426
5426
|
this.onMoveEvent(
|
5427
5427
|
func,
|
@@ -5438,7 +5438,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5438
5438
|
event: staking_contract.SwitchOperatorEventInstance,
|
5439
5439
|
ctx: AptosContext
|
5440
5440
|
) => void,
|
5441
|
-
fetchConfig?: MoveFetchConfig
|
5441
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5442
5442
|
): staking_contract {
|
5443
5443
|
this.onMoveEvent(
|
5444
5444
|
func,
|
@@ -5455,7 +5455,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5455
5455
|
event: staking_contract.AddDistributionEventInstance,
|
5456
5456
|
ctx: AptosContext
|
5457
5457
|
) => void,
|
5458
|
-
fetchConfig?: MoveFetchConfig
|
5458
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5459
5459
|
): staking_contract {
|
5460
5460
|
this.onMoveEvent(
|
5461
5461
|
func,
|
@@ -5472,7 +5472,7 @@ export class staking_contract extends AptosBaseProcessor {
|
|
5472
5472
|
event: staking_contract.DistributeEventInstance,
|
5473
5473
|
ctx: AptosContext
|
5474
5474
|
) => void,
|
5475
|
-
fetchConfig?: MoveFetchConfig
|
5475
|
+
fetchConfig?: Partial<MoveFetchConfig>
|
5476
5476
|
): staking_contract {
|
5477
5477
|
this.onMoveEvent(
|
5478
5478
|
func,
|