@sentio/sdk 2.12.3-rc.1 → 2.13.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.
- package/lib/aptos/aptos-processor.d.ts +1 -1
- package/lib/aptos/aptos-processor.js +16 -8
- package/lib/aptos/aptos-processor.js.map +1 -1
- package/lib/aptos/builtin/0x1.d.ts +106 -106
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +14 -14
- 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 +1 -1
- package/lib/move/abstract-codegen.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +24 -24
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +34 -34
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/lib/sui/sui-processor.d.ts +2 -2
- package/lib/sui/sui-processor.js +2 -2
- 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/package.json +4 -4
- package/src/aptos/aptos-processor.ts +28 -17
- package/src/aptos/builtin/0x1.ts +106 -106
- package/src/aptos/builtin/0x3.ts +14 -14
- package/src/aptos/context.ts +5 -2
- package/src/move/abstract-codegen.ts +1 -1
- package/src/sui/builtin/0x2.ts +24 -24
- package/src/sui/builtin/0x3.ts +34 -34
- package/src/sui/sui-processor.ts +4 -4
- package/src/testing/aptos-facet.ts +13 -27
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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|