@sentio/sdk 2.13.0-rc.1 → 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 +2 -2
- package/lib/aptos/aptos-processor.js +4 -7
- package/lib/aptos/aptos-processor.js.map +1 -1
- package/lib/aptos/builtin/0x1.d.ts +62 -62
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +21 -21
- package/lib/aptos/builtin/0x3.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/0x1.d.ts +6 -6
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +19 -19
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +9 -9
- 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.js +13 -10
- package/lib/sui/sui-processor.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 +6 -10
- package/src/aptos/builtin/0x1.ts +62 -62
- package/src/aptos/builtin/0x3.ts +21 -21
- package/src/move/abstract-codegen.ts +1 -1
- package/src/sui/builtin/0x1.ts +6 -6
- package/src/sui/builtin/0x2.ts +19 -19
- package/src/sui/builtin/0x3.ts +9 -9
- package/src/sui/context.ts +4 -1
- package/src/sui/sui-processor.ts +23 -18
- package/src/testing/sui-facet.ts +15 -30
package/src/aptos/builtin/0x1.ts
CHANGED
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|
@@ -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,
|