@sentio/sdk 2.49.1-rc.3 → 2.49.1-rc.4

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.
@@ -3,12 +3,6 @@ import { AptosBindOptions, AptosBaseProcessor, TypedFunctionPayload, AptosContex
3
3
  import { TypeDescriptor } from "@typemove/move";
4
4
  import { MoveCoder, TypedEventInstance } from "@typemove/aptos";
5
5
  import { MoveAddressType } from "@aptos-labs/ts-sdk";
6
- export declare class acl extends AptosBaseProcessor {
7
- constructor(options: AptosBindOptions);
8
- static DEFAULT_OPTIONS: AptosBindOptions;
9
- static bind(options?: Partial<AptosBindOptions>): acl;
10
- onEventACL(func: (event: acl.ACLInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): acl;
11
- }
12
6
  export declare namespace acl {
13
7
  interface ACL {
14
8
  list: MoveAddressType[];
@@ -17,16 +11,6 @@ export declare namespace acl {
17
11
  const TYPE_QNAME = "0x1::acl::ACL";
18
12
  function type(): TypeDescriptor<ACL>;
19
13
  }
20
- interface ACLInstance extends TypedEventInstance<ACL> {
21
- data_decoded: ACL;
22
- type_arguments: [];
23
- }
24
- }
25
- export declare class any$ extends AptosBaseProcessor {
26
- constructor(options: AptosBindOptions);
27
- static DEFAULT_OPTIONS: AptosBindOptions;
28
- static bind(options?: Partial<AptosBindOptions>): any$;
29
- onEventAny(func: (event: any$.AnyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): any$;
30
14
  }
31
15
  export declare namespace any$ {
32
16
  interface Any {
@@ -37,18 +21,12 @@ export declare namespace any$ {
37
21
  const TYPE_QNAME = "0x1::any::Any";
38
22
  function type(): TypeDescriptor<Any>;
39
23
  }
40
- interface AnyInstance extends TypedEventInstance<Any> {
41
- data_decoded: Any;
42
- type_arguments: [];
43
- }
44
24
  }
45
25
  export declare namespace bcs { }
46
26
  export declare class dkg extends AptosBaseProcessor {
47
27
  constructor(options: AptosBindOptions);
48
28
  static DEFAULT_OPTIONS: AptosBindOptions;
49
29
  static bind(options?: Partial<AptosBindOptions>): dkg;
50
- onEventDKGSessionMetadata(func: (event: dkg.DKGSessionMetadataInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): dkg;
51
- onEventDKGSessionState(func: (event: dkg.DKGSessionStateInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): dkg;
52
30
  onEventDKGStartEvent(func: (event: dkg.DKGStartEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): dkg;
53
31
  }
54
32
  export declare namespace dkg {
@@ -62,10 +40,6 @@ export declare namespace dkg {
62
40
  const TYPE_QNAME = "0x1::dkg::DKGSessionMetadata";
63
41
  function type(): TypeDescriptor<DKGSessionMetadata>;
64
42
  }
65
- interface DKGSessionMetadataInstance extends TypedEventInstance<DKGSessionMetadata> {
66
- data_decoded: DKGSessionMetadata;
67
- type_arguments: [];
68
- }
69
43
  interface DKGSessionState {
70
44
  metadata: dkg.DKGSessionMetadata;
71
45
  start_time_us: bigint;
@@ -75,10 +49,6 @@ export declare namespace dkg {
75
49
  const TYPE_QNAME = "0x1::dkg::DKGSessionState";
76
50
  function type(): TypeDescriptor<DKGSessionState>;
77
51
  }
78
- interface DKGSessionStateInstance extends TypedEventInstance<DKGSessionState> {
79
- data_decoded: DKGSessionState;
80
- type_arguments: [];
81
- }
82
52
  interface DKGStartEvent {
83
53
  session_metadata: dkg.DKGSessionMetadata;
84
54
  start_time_us: bigint;
@@ -105,12 +75,7 @@ export declare class code extends AptosBaseProcessor {
105
75
  static DEFAULT_OPTIONS: AptosBindOptions;
106
76
  static bind(options?: Partial<AptosBindOptions>): code;
107
77
  onEntryPublishPackageTxn(func: (call: code.PublishPackageTxnPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): code;
108
- onEventModuleMetadata(func: (event: code.ModuleMetadataInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
109
- onEventPackageDep(func: (event: code.PackageDepInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
110
- onEventPackageMetadata(func: (event: code.PackageMetadataInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
111
- onEventPackageRegistry(func: (event: code.PackageRegistryInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
112
78
  onEventPublishPackage(func: (event: code.PublishPackageInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
113
- onEventUpgradePolicy(func: (event: code.UpgradePolicyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
114
79
  }
115
80
  export declare namespace code {
116
81
  interface AllowedDep {
@@ -131,10 +96,6 @@ export declare namespace code {
131
96
  const TYPE_QNAME = "0x1::code::ModuleMetadata";
132
97
  function type(): TypeDescriptor<ModuleMetadata>;
133
98
  }
134
- interface ModuleMetadataInstance extends TypedEventInstance<ModuleMetadata> {
135
- data_decoded: ModuleMetadata;
136
- type_arguments: [];
137
- }
138
99
  interface PackageDep {
139
100
  account: MoveAddressType;
140
101
  package_name: string;
@@ -143,10 +104,6 @@ export declare namespace code {
143
104
  const TYPE_QNAME = "0x1::code::PackageDep";
144
105
  function type(): TypeDescriptor<PackageDep>;
145
106
  }
146
- interface PackageDepInstance extends TypedEventInstance<PackageDep> {
147
- data_decoded: PackageDep;
148
- type_arguments: [];
149
- }
150
107
  interface PackageMetadata {
151
108
  name: string;
152
109
  upgrade_policy: code.UpgradePolicy;
@@ -161,10 +118,6 @@ export declare namespace code {
161
118
  const TYPE_QNAME = "0x1::code::PackageMetadata";
162
119
  function type(): TypeDescriptor<PackageMetadata>;
163
120
  }
164
- interface PackageMetadataInstance extends TypedEventInstance<PackageMetadata> {
165
- data_decoded: PackageMetadata;
166
- type_arguments: [];
167
- }
168
121
  interface PackageRegistry {
169
122
  packages: code.PackageMetadata[];
170
123
  }
@@ -172,10 +125,6 @@ export declare namespace code {
172
125
  const TYPE_QNAME = "0x1::code::PackageRegistry";
173
126
  function type(): TypeDescriptor<PackageRegistry>;
174
127
  }
175
- interface PackageRegistryInstance extends TypedEventInstance<PackageRegistry> {
176
- data_decoded: PackageRegistry;
177
- type_arguments: [];
178
- }
179
128
  interface PublishPackage {
180
129
  code_address: MoveAddressType;
181
130
  is_upgrade: boolean;
@@ -195,10 +144,6 @@ export declare namespace code {
195
144
  const TYPE_QNAME = "0x1::code::UpgradePolicy";
196
145
  function type(): TypeDescriptor<UpgradePolicy>;
197
146
  }
198
- interface UpgradePolicyInstance extends TypedEventInstance<UpgradePolicy> {
199
- data_decoded: UpgradePolicy;
200
- type_arguments: [];
201
- }
202
147
  interface PublishPackageTxnPayload extends TypedFunctionPayload<[string, string[]]> {
203
148
  arguments_decoded: [string, string[]];
204
149
  type_arguments: [];
@@ -218,10 +163,8 @@ export declare class coin extends AptosBaseProcessor {
218
163
  onEventCoinDeposit(func: (event: coin.CoinDepositInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
219
164
  onEventCoinEventHandleDeletion(func: (event: coin.CoinEventHandleDeletionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
220
165
  onEventCoinWithdraw(func: (event: coin.CoinWithdrawInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
221
- onEventDeposit(func: (event: coin.DepositInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
222
- onEventDepositEvent(func: (event: coin.DepositEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
223
166
  onEventPairCreation(func: (event: coin.PairCreationInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
224
- onEventWithdraw(func: (event: coin.WithdrawInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
167
+ onEventDepositEvent(func: (event: coin.DepositEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
225
168
  onEventWithdrawEvent(func: (event: coin.WithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
226
169
  }
227
170
  export declare namespace coin {
@@ -327,10 +270,6 @@ export declare namespace coin {
327
270
  const TYPE_QNAME = "0x1::coin::Deposit";
328
271
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Deposit<T0>>;
329
272
  }
330
- interface DepositInstance extends TypedEventInstance<Deposit<any>> {
331
- data_decoded: Deposit<any>;
332
- type_arguments: [string];
333
- }
334
273
  interface DepositEvent {
335
274
  amount: bigint;
336
275
  }
@@ -420,10 +359,6 @@ export declare namespace coin {
420
359
  const TYPE_QNAME = "0x1::coin::Withdraw";
421
360
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Withdraw<T0>>;
422
361
  }
423
- interface WithdrawInstance extends TypedEventInstance<Withdraw<any>> {
424
- data_decoded: Withdraw<any>;
425
- type_arguments: [string];
426
- }
427
362
  interface WithdrawEvent {
428
363
  amount: bigint;
429
364
  }
@@ -464,13 +399,6 @@ export declare namespace coin {
464
399
  type_arguments: [string];
465
400
  }
466
401
  }
467
- export declare class guid extends AptosBaseProcessor {
468
- constructor(options: AptosBindOptions);
469
- static DEFAULT_OPTIONS: AptosBindOptions;
470
- static bind(options?: Partial<AptosBindOptions>): guid;
471
- onEventGUID(func: (event: guid.GUIDInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): guid;
472
- onEventID(func: (event: guid.IDInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): guid;
473
- }
474
402
  export declare namespace guid {
475
403
  interface GUID {
476
404
  id: guid.ID;
@@ -479,10 +407,6 @@ export declare namespace guid {
479
407
  const TYPE_QNAME = "0x1::guid::GUID";
480
408
  function type(): TypeDescriptor<GUID>;
481
409
  }
482
- interface GUIDInstance extends TypedEventInstance<GUID> {
483
- data_decoded: GUID;
484
- type_arguments: [];
485
- }
486
410
  interface ID {
487
411
  creation_num: bigint;
488
412
  addr: MoveAddressType;
@@ -491,10 +415,6 @@ export declare namespace guid {
491
415
  const TYPE_QNAME = "0x1::guid::ID";
492
416
  function type(): TypeDescriptor<ID>;
493
417
  }
494
- interface IDInstance extends TypedEventInstance<ID> {
495
- data_decoded: ID;
496
- type_arguments: [];
497
- }
498
418
  }
499
419
  export declare namespace hash { }
500
420
  export declare class jwks extends AptosBaseProcessor {
@@ -502,20 +422,7 @@ export declare class jwks extends AptosBaseProcessor {
502
422
  static DEFAULT_OPTIONS: AptosBindOptions;
503
423
  static bind(options?: Partial<AptosBindOptions>): jwks;
504
424
  onEntryUpdateFederatedJwkSet(func: (call: jwks.UpdateFederatedJwkSetPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): jwks;
505
- onEventAllProvidersJWKs(func: (event: jwks.AllProvidersJWKsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
506
- onEventJWK(func: (event: jwks.JWKInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
507
- onEventOIDCProvider(func: (event: jwks.OIDCProviderInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
508
- onEventObservedJWKs(func: (event: jwks.ObservedJWKsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
509
425
  onEventObservedJWKsUpdated(func: (event: jwks.ObservedJWKsUpdatedInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
510
- onEventPatch(func: (event: jwks.PatchInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
511
- onEventPatchRemoveAll(func: (event: jwks.PatchRemoveAllInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
512
- onEventPatchRemoveIssuer(func: (event: jwks.PatchRemoveIssuerInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
513
- onEventPatchRemoveJWK(func: (event: jwks.PatchRemoveJWKInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
514
- onEventPatchUpsertJWK(func: (event: jwks.PatchUpsertJWKInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
515
- onEventProviderJWKs(func: (event: jwks.ProviderJWKsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
516
- onEventRSA_JWK(func: (event: jwks.RSA_JWKInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
517
- onEventSupportedOIDCProviders(func: (event: jwks.SupportedOIDCProvidersInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
518
- onEventUnsupportedJWK(func: (event: jwks.UnsupportedJWKInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
519
426
  }
520
427
  export declare namespace jwks {
521
428
  interface AllProvidersJWKs {
@@ -525,10 +432,6 @@ export declare namespace jwks {
525
432
  const TYPE_QNAME = "0x1::jwks::AllProvidersJWKs";
526
433
  function type(): TypeDescriptor<AllProvidersJWKs>;
527
434
  }
528
- interface AllProvidersJWKsInstance extends TypedEventInstance<AllProvidersJWKs> {
529
- data_decoded: AllProvidersJWKs;
530
- type_arguments: [];
531
- }
532
435
  interface FederatedJWKs {
533
436
  jwks: jwks.AllProvidersJWKs;
534
437
  }
@@ -543,10 +446,6 @@ export declare namespace jwks {
543
446
  const TYPE_QNAME = "0x1::jwks::JWK";
544
447
  function type(): TypeDescriptor<JWK>;
545
448
  }
546
- interface JWKInstance extends TypedEventInstance<JWK> {
547
- data_decoded: JWK;
548
- type_arguments: [];
549
- }
550
449
  interface OIDCProvider {
551
450
  name: string;
552
451
  config_url: string;
@@ -555,10 +454,6 @@ export declare namespace jwks {
555
454
  const TYPE_QNAME = "0x1::jwks::OIDCProvider";
556
455
  function type(): TypeDescriptor<OIDCProvider>;
557
456
  }
558
- interface OIDCProviderInstance extends TypedEventInstance<OIDCProvider> {
559
- data_decoded: OIDCProvider;
560
- type_arguments: [];
561
- }
562
457
  interface ObservedJWKs {
563
458
  jwks: jwks.AllProvidersJWKs;
564
459
  }
@@ -566,10 +461,6 @@ export declare namespace jwks {
566
461
  const TYPE_QNAME = "0x1::jwks::ObservedJWKs";
567
462
  function type(): TypeDescriptor<ObservedJWKs>;
568
463
  }
569
- interface ObservedJWKsInstance extends TypedEventInstance<ObservedJWKs> {
570
- data_decoded: ObservedJWKs;
571
- type_arguments: [];
572
- }
573
464
  interface ObservedJWKsUpdated {
574
465
  epoch: bigint;
575
466
  jwks: jwks.AllProvidersJWKs;
@@ -589,10 +480,6 @@ export declare namespace jwks {
589
480
  const TYPE_QNAME = "0x1::jwks::Patch";
590
481
  function type(): TypeDescriptor<Patch>;
591
482
  }
592
- interface PatchInstance extends TypedEventInstance<Patch> {
593
- data_decoded: Patch;
594
- type_arguments: [];
595
- }
596
483
  interface PatchRemoveAll {
597
484
  dummy_field: boolean;
598
485
  }
@@ -600,10 +487,6 @@ export declare namespace jwks {
600
487
  const TYPE_QNAME = "0x1::jwks::PatchRemoveAll";
601
488
  function type(): TypeDescriptor<PatchRemoveAll>;
602
489
  }
603
- interface PatchRemoveAllInstance extends TypedEventInstance<PatchRemoveAll> {
604
- data_decoded: PatchRemoveAll;
605
- type_arguments: [];
606
- }
607
490
  interface PatchRemoveIssuer {
608
491
  issuer: string;
609
492
  }
@@ -611,10 +494,6 @@ export declare namespace jwks {
611
494
  const TYPE_QNAME = "0x1::jwks::PatchRemoveIssuer";
612
495
  function type(): TypeDescriptor<PatchRemoveIssuer>;
613
496
  }
614
- interface PatchRemoveIssuerInstance extends TypedEventInstance<PatchRemoveIssuer> {
615
- data_decoded: PatchRemoveIssuer;
616
- type_arguments: [];
617
- }
618
497
  interface PatchRemoveJWK {
619
498
  issuer: string;
620
499
  jwk_id: string;
@@ -623,10 +502,6 @@ export declare namespace jwks {
623
502
  const TYPE_QNAME = "0x1::jwks::PatchRemoveJWK";
624
503
  function type(): TypeDescriptor<PatchRemoveJWK>;
625
504
  }
626
- interface PatchRemoveJWKInstance extends TypedEventInstance<PatchRemoveJWK> {
627
- data_decoded: PatchRemoveJWK;
628
- type_arguments: [];
629
- }
630
505
  interface PatchUpsertJWK {
631
506
  issuer: string;
632
507
  jwk: jwks.JWK;
@@ -635,10 +510,6 @@ export declare namespace jwks {
635
510
  const TYPE_QNAME = "0x1::jwks::PatchUpsertJWK";
636
511
  function type(): TypeDescriptor<PatchUpsertJWK>;
637
512
  }
638
- interface PatchUpsertJWKInstance extends TypedEventInstance<PatchUpsertJWK> {
639
- data_decoded: PatchUpsertJWK;
640
- type_arguments: [];
641
- }
642
513
  interface PatchedJWKs {
643
514
  jwks: jwks.AllProvidersJWKs;
644
515
  }
@@ -662,10 +533,6 @@ export declare namespace jwks {
662
533
  const TYPE_QNAME = "0x1::jwks::ProviderJWKs";
663
534
  function type(): TypeDescriptor<ProviderJWKs>;
664
535
  }
665
- interface ProviderJWKsInstance extends TypedEventInstance<ProviderJWKs> {
666
- data_decoded: ProviderJWKs;
667
- type_arguments: [];
668
- }
669
536
  interface RSA_JWK {
670
537
  kid: string;
671
538
  kty: string;
@@ -677,10 +544,6 @@ export declare namespace jwks {
677
544
  const TYPE_QNAME = "0x1::jwks::RSA_JWK";
678
545
  function type(): TypeDescriptor<RSA_JWK>;
679
546
  }
680
- interface RSA_JWKInstance extends TypedEventInstance<RSA_JWK> {
681
- data_decoded: RSA_JWK;
682
- type_arguments: [];
683
- }
684
547
  interface SupportedOIDCProviders {
685
548
  providers: jwks.OIDCProvider[];
686
549
  }
@@ -688,10 +551,6 @@ export declare namespace jwks {
688
551
  const TYPE_QNAME = "0x1::jwks::SupportedOIDCProviders";
689
552
  function type(): TypeDescriptor<SupportedOIDCProviders>;
690
553
  }
691
- interface SupportedOIDCProvidersInstance extends TypedEventInstance<SupportedOIDCProviders> {
692
- data_decoded: SupportedOIDCProviders;
693
- type_arguments: [];
694
- }
695
554
  interface UnsupportedJWK {
696
555
  id: string;
697
556
  payload: string;
@@ -700,10 +559,6 @@ export declare namespace jwks {
700
559
  const TYPE_QNAME = "0x1::jwks::UnsupportedJWK";
701
560
  function type(): TypeDescriptor<UnsupportedJWK>;
702
561
  }
703
- interface UnsupportedJWKInstance extends TypedEventInstance<UnsupportedJWK> {
704
- data_decoded: UnsupportedJWK;
705
- type_arguments: [];
706
- }
707
562
  interface UpdateFederatedJwkSetPayload extends TypedFunctionPayload<[
708
563
  string,
709
564
  string[],
@@ -721,8 +576,8 @@ export declare class block extends AptosBaseProcessor {
721
576
  static DEFAULT_OPTIONS: AptosBindOptions;
722
577
  static bind(options?: Partial<AptosBindOptions>): block;
723
578
  onEventNewBlock(func: (event: block.NewBlockInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): block;
724
- onEventNewBlockEvent(func: (event: block.NewBlockEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): block;
725
579
  onEventUpdateEpochInterval(func: (event: block.UpdateEpochIntervalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): block;
580
+ onEventNewBlockEvent(func: (event: block.NewBlockEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): block;
726
581
  onEventUpdateEpochIntervalEvent(func: (event: block.UpdateEpochIntervalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): block;
727
582
  }
728
583
  export declare namespace block {
@@ -836,33 +691,29 @@ export declare class stake extends AptosBaseProcessor {
836
691
  onEntryUpdateNetworkAndFullnodeAddresses(func: (call: stake.UpdateNetworkAndFullnodeAddressesPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): stake;
837
692
  onEntryWithdraw(func: (call: stake.WithdrawPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): stake;
838
693
  onEventAddStake(func: (event: stake.AddStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
839
- onEventAddStakeEvent(func: (event: stake.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
840
694
  onEventDistributeRewards(func: (event: stake.DistributeRewardsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
841
- onEventDistributeRewardsEvent(func: (event: stake.DistributeRewardsEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
842
695
  onEventIncreaseLockup(func: (event: stake.IncreaseLockupInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
843
- onEventIncreaseLockupEvent(func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
844
- onEventIndividualValidatorPerformance(func: (event: stake.IndividualValidatorPerformanceInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
845
696
  onEventJoinValidatorSet(func: (event: stake.JoinValidatorSetInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
846
- onEventJoinValidatorSetEvent(func: (event: stake.JoinValidatorSetEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
847
697
  onEventLeaveValidatorSet(func: (event: stake.LeaveValidatorSetInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
848
- onEventLeaveValidatorSetEvent(func: (event: stake.LeaveValidatorSetEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
849
698
  onEventReactivateStake(func: (event: stake.ReactivateStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
850
- onEventReactivateStakeEvent(func: (event: stake.ReactivateStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
851
699
  onEventRegisterValidatorCandidate(func: (event: stake.RegisterValidatorCandidateInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
852
- onEventRegisterValidatorCandidateEvent(func: (event: stake.RegisterValidatorCandidateEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
853
700
  onEventRotateConsensusKey(func: (event: stake.RotateConsensusKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
854
- onEventRotateConsensusKeyEvent(func: (event: stake.RotateConsensusKeyEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
855
701
  onEventSetOperator(func: (event: stake.SetOperatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
856
- onEventSetOperatorEvent(func: (event: stake.SetOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
857
702
  onEventUnlockStake(func: (event: stake.UnlockStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
858
- onEventUnlockStakeEvent(func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
859
703
  onEventUpdateNetworkAndFullnodeAddresses(func: (event: stake.UpdateNetworkAndFullnodeAddressesInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
860
- onEventUpdateNetworkAndFullnodeAddressesEvent(func: (event: stake.UpdateNetworkAndFullnodeAddressesEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
861
- onEventValidatorConfig(func: (event: stake.ValidatorConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
862
- onEventValidatorInfo(func: (event: stake.ValidatorInfoInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
863
- onEventValidatorSet(func: (event: stake.ValidatorSetInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
864
704
  onEventWithdrawStake(func: (event: stake.WithdrawStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
705
+ onEventRegisterValidatorCandidateEvent(func: (event: stake.RegisterValidatorCandidateEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
706
+ onEventSetOperatorEvent(func: (event: stake.SetOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
707
+ onEventAddStakeEvent(func: (event: stake.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
708
+ onEventReactivateStakeEvent(func: (event: stake.ReactivateStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
709
+ onEventRotateConsensusKeyEvent(func: (event: stake.RotateConsensusKeyEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
710
+ onEventUpdateNetworkAndFullnodeAddressesEvent(func: (event: stake.UpdateNetworkAndFullnodeAddressesEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
711
+ onEventIncreaseLockupEvent(func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
712
+ onEventJoinValidatorSetEvent(func: (event: stake.JoinValidatorSetEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
713
+ onEventDistributeRewardsEvent(func: (event: stake.DistributeRewardsEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
714
+ onEventUnlockStakeEvent(func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
865
715
  onEventWithdrawStakeEvent(func: (event: stake.WithdrawStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
716
+ onEventLeaveValidatorSetEvent(func: (event: stake.LeaveValidatorSetEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
866
717
  }
867
718
  export declare namespace stake {
868
719
  interface AddStake {
@@ -961,10 +812,6 @@ export declare namespace stake {
961
812
  const TYPE_QNAME = "0x1::stake::IndividualValidatorPerformance";
962
813
  function type(): TypeDescriptor<IndividualValidatorPerformance>;
963
814
  }
964
- interface IndividualValidatorPerformanceInstance extends TypedEventInstance<IndividualValidatorPerformance> {
965
- data_decoded: IndividualValidatorPerformance;
966
- type_arguments: [];
967
- }
968
815
  interface JoinValidatorSet {
969
816
  pool_address: MoveAddressType;
970
817
  }
@@ -1203,10 +1050,6 @@ export declare namespace stake {
1203
1050
  const TYPE_QNAME = "0x1::stake::ValidatorConfig";
1204
1051
  function type(): TypeDescriptor<ValidatorConfig>;
1205
1052
  }
1206
- interface ValidatorConfigInstance extends TypedEventInstance<ValidatorConfig> {
1207
- data_decoded: ValidatorConfig;
1208
- type_arguments: [];
1209
- }
1210
1053
  interface ValidatorFees {
1211
1054
  fees_table: table.Table<MoveAddressType, coin.Coin<aptos_coin.AptosCoin>>;
1212
1055
  }
@@ -1223,10 +1066,6 @@ export declare namespace stake {
1223
1066
  const TYPE_QNAME = "0x1::stake::ValidatorInfo";
1224
1067
  function type(): TypeDescriptor<ValidatorInfo>;
1225
1068
  }
1226
- interface ValidatorInfoInstance extends TypedEventInstance<ValidatorInfo> {
1227
- data_decoded: ValidatorInfo;
1228
- type_arguments: [];
1229
- }
1230
1069
  interface ValidatorPerformance {
1231
1070
  validators: stake.IndividualValidatorPerformance[];
1232
1071
  }
@@ -1246,10 +1085,6 @@ export declare namespace stake {
1246
1085
  const TYPE_QNAME = "0x1::stake::ValidatorSet";
1247
1086
  function type(): TypeDescriptor<ValidatorSet>;
1248
1087
  }
1249
- interface ValidatorSetInstance extends TypedEventInstance<ValidatorSet> {
1250
- data_decoded: ValidatorSet;
1251
- type_arguments: [];
1252
- }
1253
1088
  interface WithdrawStake {
1254
1089
  pool_address: MoveAddressType;
1255
1090
  amount_withdrawn: bigint;
@@ -1327,12 +1162,6 @@ export declare namespace stake {
1327
1162
  type_arguments: [];
1328
1163
  }
1329
1164
  }
1330
- export declare class table extends AptosBaseProcessor {
1331
- constructor(options: AptosBindOptions);
1332
- static DEFAULT_OPTIONS: AptosBindOptions;
1333
- static bind(options?: Partial<AptosBindOptions>): table;
1334
- onEventBox(func: (event: table.BoxInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): table;
1335
- }
1336
1165
  export declare namespace table {
1337
1166
  interface Box<T0> {
1338
1167
  val: T0;
@@ -1341,10 +1170,6 @@ export declare namespace table {
1341
1170
  const TYPE_QNAME = "0x1::table::Box";
1342
1171
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Box<T0>>;
1343
1172
  }
1344
- interface BoxInstance extends TypedEventInstance<Box<any>> {
1345
- data_decoded: Box<any>;
1346
- type_arguments: [string];
1347
- }
1348
1173
  interface Table<T0, T1> {
1349
1174
  handle: MoveAddressType;
1350
1175
  }
@@ -1363,13 +1188,8 @@ export declare class object$ extends AptosBaseProcessor {
1363
1188
  onEntryTransferCall(func: (call: object$.TransferCallPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object$;
1364
1189
  onEntryTransferToObject(func: (call: object$.TransferToObjectPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object$;
1365
1190
  onEntryUnburn(func: (call: object$.UnburnPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object$;
1366
- onEventDeleteRef(func: (event: object$.DeleteRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object$;
1367
- onEventDeriveRef(func: (event: object$.DeriveRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object$;
1368
- onEventExtendRef(func: (event: object$.ExtendRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object$;
1369
- onEventObject(func: (event: object$.ObjectInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object$;
1370
1191
  onEventTransfer(func: (event: object$.TransferInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object$;
1371
1192
  onEventTransferEvent(func: (event: object$.TransferEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object$;
1372
- onEventTransferRef(func: (event: object$.TransferRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object$;
1373
1193
  }
1374
1194
  export declare namespace object$ {
1375
1195
  interface ConstructorRef {
@@ -1387,10 +1207,6 @@ export declare namespace object$ {
1387
1207
  const TYPE_QNAME = "0x1::object::DeleteRef";
1388
1208
  function type(): TypeDescriptor<DeleteRef>;
1389
1209
  }
1390
- interface DeleteRefInstance extends TypedEventInstance<DeleteRef> {
1391
- data_decoded: DeleteRef;
1392
- type_arguments: [];
1393
- }
1394
1210
  interface DeriveRef {
1395
1211
  self: MoveAddressType;
1396
1212
  }
@@ -1398,10 +1214,6 @@ export declare namespace object$ {
1398
1214
  const TYPE_QNAME = "0x1::object::DeriveRef";
1399
1215
  function type(): TypeDescriptor<DeriveRef>;
1400
1216
  }
1401
- interface DeriveRefInstance extends TypedEventInstance<DeriveRef> {
1402
- data_decoded: DeriveRef;
1403
- type_arguments: [];
1404
- }
1405
1217
  interface ExtendRef {
1406
1218
  self: MoveAddressType;
1407
1219
  }
@@ -1409,10 +1221,6 @@ export declare namespace object$ {
1409
1221
  const TYPE_QNAME = "0x1::object::ExtendRef";
1410
1222
  function type(): TypeDescriptor<ExtendRef>;
1411
1223
  }
1412
- interface ExtendRefInstance extends TypedEventInstance<ExtendRef> {
1413
- data_decoded: ExtendRef;
1414
- type_arguments: [];
1415
- }
1416
1224
  interface LinearTransferRef {
1417
1225
  self: MoveAddressType;
1418
1226
  owner: MoveAddressType;
@@ -1428,10 +1236,6 @@ export declare namespace object$ {
1428
1236
  const TYPE_QNAME = "0x1::object::Object";
1429
1237
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Object<T0>>;
1430
1238
  }
1431
- interface ObjectInstance extends TypedEventInstance<Object<any>> {
1432
- data_decoded: Object<any>;
1433
- type_arguments: [string];
1434
- }
1435
1239
  interface ObjectCore {
1436
1240
  guid_creation_num: bigint;
1437
1241
  owner: MoveAddressType;
@@ -1489,10 +1293,6 @@ export declare namespace object$ {
1489
1293
  const TYPE_QNAME = "0x1::object::TransferRef";
1490
1294
  function type(): TypeDescriptor<TransferRef>;
1491
1295
  }
1492
- interface TransferRefInstance extends TypedEventInstance<TransferRef> {
1493
- data_decoded: TransferRef;
1494
- type_arguments: [];
1495
- }
1496
1296
  interface Untransferable {
1497
1297
  dummy_field: boolean;
1498
1298
  }
@@ -1521,12 +1321,6 @@ export declare namespace object$ {
1521
1321
  type_arguments: [string];
1522
1322
  }
1523
1323
  }
1524
- export declare class option extends AptosBaseProcessor {
1525
- constructor(options: AptosBindOptions);
1526
- static DEFAULT_OPTIONS: AptosBindOptions;
1527
- static bind(options?: Partial<AptosBindOptions>): option;
1528
- onEventOption(func: (event: option.OptionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): option;
1529
- }
1530
1324
  export declare namespace option {
1531
1325
  interface Option<T0> {
1532
1326
  vec: T0[] | string;
@@ -1535,18 +1329,8 @@ export declare namespace option {
1535
1329
  const TYPE_QNAME = "0x1::option::Option";
1536
1330
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Option<T0>>;
1537
1331
  }
1538
- interface OptionInstance extends TypedEventInstance<Option<any>> {
1539
- data_decoded: Option<any>;
1540
- type_arguments: [string];
1541
- }
1542
1332
  }
1543
1333
  export declare namespace signer { }
1544
- export declare class string$ extends AptosBaseProcessor {
1545
- constructor(options: AptosBindOptions);
1546
- static DEFAULT_OPTIONS: AptosBindOptions;
1547
- static bind(options?: Partial<AptosBindOptions>): string$;
1548
- onEventString(func: (event: string$.StringInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): string$;
1549
- }
1550
1334
  export declare namespace string$ {
1551
1335
  interface String {
1552
1336
  bytes: string;
@@ -1555,10 +1339,6 @@ export declare namespace string$ {
1555
1339
  const TYPE_QNAME = "0x1::string::String";
1556
1340
  function type(): TypeDescriptor<String>;
1557
1341
  }
1558
- interface StringInstance extends TypedEventInstance<String> {
1559
- data_decoded: String;
1560
- type_arguments: [];
1561
- }
1562
1342
  }
1563
1343
  export declare namespace vector { }
1564
1344
  export declare class voting extends AptosBaseProcessor {
@@ -1566,11 +1346,11 @@ export declare class voting extends AptosBaseProcessor {
1566
1346
  static DEFAULT_OPTIONS: AptosBindOptions;
1567
1347
  static bind(options?: Partial<AptosBindOptions>): voting;
1568
1348
  onEventCreateProposal(func: (event: voting.CreateProposalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1569
- onEventCreateProposalEvent(func: (event: voting.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1570
1349
  onEventRegisterForum(func: (event: voting.RegisterForumInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1571
- onEventRegisterForumEvent(func: (event: voting.RegisterForumEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1572
1350
  onEventResolveProposal(func: (event: voting.ResolveProposalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1573
1351
  onEventVote(func: (event: voting.VoteInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1352
+ onEventCreateProposalEvent(func: (event: voting.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1353
+ onEventRegisterForumEvent(func: (event: voting.RegisterForumEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1574
1354
  onEventVoteEvent(func: (event: voting.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1575
1355
  }
1576
1356
  export declare namespace voting {
@@ -1719,11 +1499,9 @@ export declare class account extends AptosBaseProcessor {
1719
1499
  onEntryRotateAuthenticationKey(func: (call: account.RotateAuthenticationKeyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
1720
1500
  onEntryRotateAuthenticationKeyCall(func: (call: account.RotateAuthenticationKeyCallPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
1721
1501
  onEntryRotateAuthenticationKeyWithRotationCapability(func: (call: account.RotateAuthenticationKeyWithRotationCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
1722
- onEventCoinRegisterEvent(func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
1723
1502
  onEventKeyRotation(func: (event: account.KeyRotationInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
1503
+ onEventCoinRegisterEvent(func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
1724
1504
  onEventKeyRotationEvent(func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
1725
- onEventRotationCapability(func: (event: account.RotationCapabilityInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
1726
- onEventSignerCapability(func: (event: account.SignerCapabilityInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
1727
1505
  }
1728
1506
  export declare namespace account {
1729
1507
  interface Account {
@@ -1796,10 +1574,6 @@ export declare namespace account {
1796
1574
  const TYPE_QNAME = "0x1::account::RotationCapability";
1797
1575
  function type(): TypeDescriptor<RotationCapability>;
1798
1576
  }
1799
- interface RotationCapabilityInstance extends TypedEventInstance<RotationCapability> {
1800
- data_decoded: RotationCapability;
1801
- type_arguments: [];
1802
- }
1803
1577
  interface RotationCapabilityOfferProofChallenge {
1804
1578
  sequence_number: bigint;
1805
1579
  recipient_address: MoveAddressType;
@@ -1835,10 +1609,6 @@ export declare namespace account {
1835
1609
  const TYPE_QNAME = "0x1::account::SignerCapability";
1836
1610
  function type(): TypeDescriptor<SignerCapability>;
1837
1611
  }
1838
- interface SignerCapabilityInstance extends TypedEventInstance<SignerCapability> {
1839
- data_decoded: SignerCapability;
1840
- type_arguments: [];
1841
- }
1842
1612
  interface SignerCapabilityOfferProofChallenge {
1843
1613
  sequence_number: bigint;
1844
1614
  recipient_address: MoveAddressType;
@@ -1900,14 +1670,6 @@ export declare namespace account {
1900
1670
  type_arguments: [];
1901
1671
  }
1902
1672
  }
1903
- export declare class ed25519 extends AptosBaseProcessor {
1904
- constructor(options: AptosBindOptions);
1905
- static DEFAULT_OPTIONS: AptosBindOptions;
1906
- static bind(options?: Partial<AptosBindOptions>): ed25519;
1907
- onEventSignature(func: (event: ed25519.SignatureInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): ed25519;
1908
- onEventUnvalidatedPublicKey(func: (event: ed25519.UnvalidatedPublicKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): ed25519;
1909
- onEventValidatedPublicKey(func: (event: ed25519.ValidatedPublicKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): ed25519;
1910
- }
1911
1673
  export declare namespace ed25519 {
1912
1674
  interface Signature {
1913
1675
  bytes: string;
@@ -1916,10 +1678,6 @@ export declare namespace ed25519 {
1916
1678
  const TYPE_QNAME = "0x1::ed25519::Signature";
1917
1679
  function type(): TypeDescriptor<Signature>;
1918
1680
  }
1919
- interface SignatureInstance extends TypedEventInstance<Signature> {
1920
- data_decoded: Signature;
1921
- type_arguments: [];
1922
- }
1923
1681
  interface SignedMessage<T0> {
1924
1682
  type_info: type_info.TypeInfo;
1925
1683
  inner: T0;
@@ -1935,10 +1693,6 @@ export declare namespace ed25519 {
1935
1693
  const TYPE_QNAME = "0x1::ed25519::UnvalidatedPublicKey";
1936
1694
  function type(): TypeDescriptor<UnvalidatedPublicKey>;
1937
1695
  }
1938
- interface UnvalidatedPublicKeyInstance extends TypedEventInstance<UnvalidatedPublicKey> {
1939
- data_decoded: UnvalidatedPublicKey;
1940
- type_arguments: [];
1941
- }
1942
1696
  interface ValidatedPublicKey {
1943
1697
  bytes: string;
1944
1698
  }
@@ -1946,10 +1700,6 @@ export declare namespace ed25519 {
1946
1700
  const TYPE_QNAME = "0x1::ed25519::ValidatedPublicKey";
1947
1701
  function type(): TypeDescriptor<ValidatedPublicKey>;
1948
1702
  }
1949
- interface ValidatedPublicKeyInstance extends TypedEventInstance<ValidatedPublicKey> {
1950
- data_decoded: ValidatedPublicKey;
1951
- type_arguments: [];
1952
- }
1953
1703
  }
1954
1704
  export declare namespace genesis {
1955
1705
  interface AccountMap {
@@ -2002,7 +1752,6 @@ export declare class version extends AptosBaseProcessor {
2002
1752
  static bind(options?: Partial<AptosBindOptions>): version;
2003
1753
  onEntrySetForNextEpoch(func: (call: version.SetForNextEpochPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): version;
2004
1754
  onEntrySetVersion(func: (call: version.SetVersionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): version;
2005
- onEventVersion(func: (event: version.VersionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): version;
2006
1755
  }
2007
1756
  export declare namespace version {
2008
1757
  interface SetVersionCapability {
@@ -2019,10 +1768,6 @@ export declare namespace version {
2019
1768
  const TYPE_QNAME = "0x1::version::Version";
2020
1769
  function type(): TypeDescriptor<Version>;
2021
1770
  }
2022
- interface VersionInstance extends TypedEventInstance<Version> {
2023
- data_decoded: Version;
2024
- type_arguments: [];
2025
- }
2026
1771
  interface SetForNextEpochPayload extends TypedFunctionPayload<[bigint]> {
2027
1772
  arguments_decoded: [bigint];
2028
1773
  type_arguments: [];
@@ -2055,26 +1800,25 @@ export declare class vesting extends AptosBaseProcessor {
2055
1800
  onEntryVest(func: (call: vesting.VestPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2056
1801
  onEntryVestMany(func: (call: vesting.VestManyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2057
1802
  onEventAdminWithdraw(func: (event: vesting.AdminWithdrawInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2058
- onEventAdminWithdrawEvent(func: (event: vesting.AdminWithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2059
1803
  onEventCreateVestingContract(func: (event: vesting.CreateVestingContractInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2060
- onEventCreateVestingContractEvent(func: (event: vesting.CreateVestingContractEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2061
1804
  onEventDistribute(func: (event: vesting.DistributeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2062
- onEventDistributeEvent(func: (event: vesting.DistributeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2063
1805
  onEventResetLockup(func: (event: vesting.ResetLockupInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2064
- onEventResetLockupEvent(func: (event: vesting.ResetLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2065
1806
  onEventSetBeneficiary(func: (event: vesting.SetBeneficiaryInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2066
- onEventSetBeneficiaryEvent(func: (event: vesting.SetBeneficiaryEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2067
1807
  onEventTerminate(func: (event: vesting.TerminateInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2068
- onEventTerminateEvent(func: (event: vesting.TerminateEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2069
1808
  onEventUnlockRewards(func: (event: vesting.UnlockRewardsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2070
- onEventUnlockRewardsEvent(func: (event: vesting.UnlockRewardsEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2071
1809
  onEventUpdateOperator(func: (event: vesting.UpdateOperatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2072
- onEventUpdateOperatorEvent(func: (event: vesting.UpdateOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2073
1810
  onEventUpdateVoter(func: (event: vesting.UpdateVoterInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2074
- onEventUpdateVoterEvent(func: (event: vesting.UpdateVoterEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2075
1811
  onEventVest(func: (event: vesting.VestInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1812
+ onEventCreateVestingContractEvent(func: (event: vesting.CreateVestingContractEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1813
+ onEventUpdateOperatorEvent(func: (event: vesting.UpdateOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1814
+ onEventUpdateVoterEvent(func: (event: vesting.UpdateVoterEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1815
+ onEventResetLockupEvent(func: (event: vesting.ResetLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1816
+ onEventSetBeneficiaryEvent(func: (event: vesting.SetBeneficiaryEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1817
+ onEventUnlockRewardsEvent(func: (event: vesting.UnlockRewardsEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2076
1818
  onEventVestEvent(func: (event: vesting.VestEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2077
- onEventVestingSchedule(func: (event: vesting.VestingScheduleInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1819
+ onEventDistributeEvent(func: (event: vesting.DistributeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1820
+ onEventTerminateEvent(func: (event: vesting.TerminateEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1821
+ onEventAdminWithdrawEvent(func: (event: vesting.AdminWithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2078
1822
  }
2079
1823
  export declare namespace vesting {
2080
1824
  interface AdminStore {
@@ -2425,10 +2169,6 @@ export declare namespace vesting {
2425
2169
  const TYPE_QNAME = "0x1::vesting::VestingSchedule";
2426
2170
  function type(): TypeDescriptor<VestingSchedule>;
2427
2171
  }
2428
- interface VestingScheduleInstance extends TypedEventInstance<VestingSchedule> {
2429
- data_decoded: VestingSchedule;
2430
- type_arguments: [];
2431
- }
2432
2172
  interface AdminWithdrawPayload extends TypedFunctionPayload<[MoveAddressType]> {
2433
2173
  arguments_decoded: [MoveAddressType];
2434
2174
  type_arguments: [];
@@ -2506,17 +2246,6 @@ export declare namespace vesting {
2506
2246
  type_arguments: [];
2507
2247
  }
2508
2248
  }
2509
- export declare class bls12381 extends AptosBaseProcessor {
2510
- constructor(options: AptosBindOptions);
2511
- static DEFAULT_OPTIONS: AptosBindOptions;
2512
- static bind(options?: Partial<AptosBindOptions>): bls12381;
2513
- onEventAggrOrMultiSignature(func: (event: bls12381.AggrOrMultiSignatureInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): bls12381;
2514
- onEventAggrPublicKeysWithPoP(func: (event: bls12381.AggrPublicKeysWithPoPInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): bls12381;
2515
- onEventProofOfPossession(func: (event: bls12381.ProofOfPossessionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): bls12381;
2516
- onEventPublicKey(func: (event: bls12381.PublicKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): bls12381;
2517
- onEventPublicKeyWithPoP(func: (event: bls12381.PublicKeyWithPoPInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): bls12381;
2518
- onEventSignature(func: (event: bls12381.SignatureInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): bls12381;
2519
- }
2520
2249
  export declare namespace bls12381 {
2521
2250
  interface AggrOrMultiSignature {
2522
2251
  bytes: string;
@@ -2525,10 +2254,6 @@ export declare namespace bls12381 {
2525
2254
  const TYPE_QNAME = "0x1::bls12381::AggrOrMultiSignature";
2526
2255
  function type(): TypeDescriptor<AggrOrMultiSignature>;
2527
2256
  }
2528
- interface AggrOrMultiSignatureInstance extends TypedEventInstance<AggrOrMultiSignature> {
2529
- data_decoded: AggrOrMultiSignature;
2530
- type_arguments: [];
2531
- }
2532
2257
  interface AggrPublicKeysWithPoP {
2533
2258
  bytes: string;
2534
2259
  }
@@ -2536,10 +2261,6 @@ export declare namespace bls12381 {
2536
2261
  const TYPE_QNAME = "0x1::bls12381::AggrPublicKeysWithPoP";
2537
2262
  function type(): TypeDescriptor<AggrPublicKeysWithPoP>;
2538
2263
  }
2539
- interface AggrPublicKeysWithPoPInstance extends TypedEventInstance<AggrPublicKeysWithPoP> {
2540
- data_decoded: AggrPublicKeysWithPoP;
2541
- type_arguments: [];
2542
- }
2543
2264
  interface ProofOfPossession {
2544
2265
  bytes: string;
2545
2266
  }
@@ -2547,10 +2268,6 @@ export declare namespace bls12381 {
2547
2268
  const TYPE_QNAME = "0x1::bls12381::ProofOfPossession";
2548
2269
  function type(): TypeDescriptor<ProofOfPossession>;
2549
2270
  }
2550
- interface ProofOfPossessionInstance extends TypedEventInstance<ProofOfPossession> {
2551
- data_decoded: ProofOfPossession;
2552
- type_arguments: [];
2553
- }
2554
2271
  interface PublicKey {
2555
2272
  bytes: string;
2556
2273
  }
@@ -2558,10 +2275,6 @@ export declare namespace bls12381 {
2558
2275
  const TYPE_QNAME = "0x1::bls12381::PublicKey";
2559
2276
  function type(): TypeDescriptor<PublicKey>;
2560
2277
  }
2561
- interface PublicKeyInstance extends TypedEventInstance<PublicKey> {
2562
- data_decoded: PublicKey;
2563
- type_arguments: [];
2564
- }
2565
2278
  interface PublicKeyWithPoP {
2566
2279
  bytes: string;
2567
2280
  }
@@ -2569,10 +2282,6 @@ export declare namespace bls12381 {
2569
2282
  const TYPE_QNAME = "0x1::bls12381::PublicKeyWithPoP";
2570
2283
  function type(): TypeDescriptor<PublicKeyWithPoP>;
2571
2284
  }
2572
- interface PublicKeyWithPoPInstance extends TypedEventInstance<PublicKeyWithPoP> {
2573
- data_decoded: PublicKeyWithPoP;
2574
- type_arguments: [];
2575
- }
2576
2285
  interface Signature {
2577
2286
  bytes: string;
2578
2287
  }
@@ -2580,10 +2289,6 @@ export declare namespace bls12381 {
2580
2289
  const TYPE_QNAME = "0x1::bls12381::Signature";
2581
2290
  function type(): TypeDescriptor<Signature>;
2582
2291
  }
2583
- interface SignatureInstance extends TypedEventInstance<Signature> {
2584
- data_decoded: Signature;
2585
- type_arguments: [];
2586
- }
2587
2292
  }
2588
2293
  export declare namespace chain_id {
2589
2294
  interface ChainId {
@@ -2625,13 +2330,6 @@ export declare namespace pool_u64 {
2625
2330
  function type(): TypeDescriptor<Pool>;
2626
2331
  }
2627
2332
  }
2628
- export declare class secp256k1 extends AptosBaseProcessor {
2629
- constructor(options: AptosBindOptions);
2630
- static DEFAULT_OPTIONS: AptosBindOptions;
2631
- static bind(options?: Partial<AptosBindOptions>): secp256k1;
2632
- onEventECDSARawPublicKey(func: (event: secp256k1.ECDSARawPublicKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): secp256k1;
2633
- onEventECDSASignature(func: (event: secp256k1.ECDSASignatureInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): secp256k1;
2634
- }
2635
2333
  export declare namespace secp256k1 {
2636
2334
  interface ECDSARawPublicKey {
2637
2335
  bytes: string;
@@ -2640,10 +2338,6 @@ export declare namespace secp256k1 {
2640
2338
  const TYPE_QNAME = "0x1::secp256k1::ECDSARawPublicKey";
2641
2339
  function type(): TypeDescriptor<ECDSARawPublicKey>;
2642
2340
  }
2643
- interface ECDSARawPublicKeyInstance extends TypedEventInstance<ECDSARawPublicKey> {
2644
- data_decoded: ECDSARawPublicKey;
2645
- type_arguments: [];
2646
- }
2647
2341
  interface ECDSASignature {
2648
2342
  bytes: string;
2649
2343
  }
@@ -2651,10 +2345,6 @@ export declare namespace secp256k1 {
2651
2345
  const TYPE_QNAME = "0x1::secp256k1::ECDSASignature";
2652
2346
  function type(): TypeDescriptor<ECDSASignature>;
2653
2347
  }
2654
- interface ECDSASignatureInstance extends TypedEventInstance<ECDSASignature> {
2655
- data_decoded: ECDSASignature;
2656
- type_arguments: [];
2657
- }
2658
2348
  }
2659
2349
  export declare namespace timestamp {
2660
2350
  interface CurrentTimeMicroseconds {
@@ -2665,12 +2355,6 @@ export declare namespace timestamp {
2665
2355
  function type(): TypeDescriptor<CurrentTimeMicroseconds>;
2666
2356
  }
2667
2357
  }
2668
- export declare class type_info extends AptosBaseProcessor {
2669
- constructor(options: AptosBindOptions);
2670
- static DEFAULT_OPTIONS: AptosBindOptions;
2671
- static bind(options?: Partial<AptosBindOptions>): type_info;
2672
- onEventTypeInfo(func: (event: type_info.TypeInfoInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): type_info;
2673
- }
2674
2358
  export declare namespace type_info {
2675
2359
  interface TypeInfo {
2676
2360
  account_address: MoveAddressType;
@@ -2681,10 +2365,6 @@ export declare namespace type_info {
2681
2365
  const TYPE_QNAME = "0x1::type_info::TypeInfo";
2682
2366
  function type(): TypeDescriptor<TypeInfo>;
2683
2367
  }
2684
- interface TypeInfoInstance extends TypedEventInstance<TypeInfo> {
2685
- data_decoded: TypeInfo;
2686
- type_arguments: [];
2687
- }
2688
2368
  }
2689
2369
  export declare namespace aggregator {
2690
2370
  interface Aggregator {
@@ -2759,12 +2439,6 @@ export declare namespace big_vector {
2759
2439
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<BigVector<T0>>;
2760
2440
  }
2761
2441
  }
2762
- export declare class bit_vector extends AptosBaseProcessor {
2763
- constructor(options: AptosBindOptions);
2764
- static DEFAULT_OPTIONS: AptosBindOptions;
2765
- static bind(options?: Partial<AptosBindOptions>): bit_vector;
2766
- onEventBitVector(func: (event: bit_vector.BitVectorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): bit_vector;
2767
- }
2768
2442
  export declare namespace bit_vector {
2769
2443
  interface BitVector {
2770
2444
  length: bigint;
@@ -2774,10 +2448,6 @@ export declare namespace bit_vector {
2774
2448
  const TYPE_QNAME = "0x1::bit_vector::BitVector";
2775
2449
  function type(): TypeDescriptor<BitVector>;
2776
2450
  }
2777
- interface BitVectorInstance extends TypedEventInstance<BitVector> {
2778
- data_decoded: BitVector;
2779
- type_arguments: [];
2780
- }
2781
2451
  }
2782
2452
  export declare namespace capability {
2783
2453
  interface Cap<T0> {
@@ -2847,13 +2517,6 @@ export declare namespace randomness {
2847
2517
  type_arguments: [];
2848
2518
  }
2849
2519
  }
2850
- export declare class simple_map extends AptosBaseProcessor {
2851
- constructor(options: AptosBindOptions);
2852
- static DEFAULT_OPTIONS: AptosBindOptions;
2853
- static bind(options?: Partial<AptosBindOptions>): simple_map;
2854
- onEventElement(func: (event: simple_map.ElementInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): simple_map;
2855
- onEventSimpleMap(func: (event: simple_map.SimpleMapInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): simple_map;
2856
- }
2857
2520
  export declare namespace simple_map {
2858
2521
  interface Element<T0, T1> {
2859
2522
  key: T0;
@@ -2863,10 +2526,6 @@ export declare namespace simple_map {
2863
2526
  const TYPE_QNAME = "0x1::simple_map::Element";
2864
2527
  function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<Element<T0, T1>>;
2865
2528
  }
2866
- interface ElementInstance extends TypedEventInstance<Element<any, any>> {
2867
- data_decoded: Element<any, any>;
2868
- type_arguments: [string, string];
2869
- }
2870
2529
  interface SimpleMap<T0, T1> {
2871
2530
  data: simple_map.Element<T0, T1>[];
2872
2531
  }
@@ -2874,16 +2533,6 @@ export declare namespace simple_map {
2874
2533
  const TYPE_QNAME = "0x1::simple_map::SimpleMap";
2875
2534
  function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<SimpleMap<T0, T1>>;
2876
2535
  }
2877
- interface SimpleMapInstance extends TypedEventInstance<SimpleMap<any, any>> {
2878
- data_decoded: SimpleMap<any, any>;
2879
- type_arguments: [string, string];
2880
- }
2881
- }
2882
- export declare class smart_table extends AptosBaseProcessor {
2883
- constructor(options: AptosBindOptions);
2884
- static DEFAULT_OPTIONS: AptosBindOptions;
2885
- static bind(options?: Partial<AptosBindOptions>): smart_table;
2886
- onEventEntry(func: (event: smart_table.EntryInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): smart_table;
2887
2536
  }
2888
2537
  export declare namespace smart_table {
2889
2538
  interface Entry<T0, T1> {
@@ -2895,10 +2544,6 @@ export declare namespace smart_table {
2895
2544
  const TYPE_QNAME = "0x1::smart_table::Entry";
2896
2545
  function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<Entry<T0, T1>>;
2897
2546
  }
2898
- interface EntryInstance extends TypedEventInstance<Entry<any, any>> {
2899
- data_decoded: Entry<any, any>;
2900
- type_arguments: [string, string];
2901
- }
2902
2547
  interface SmartTable<T0, T1> {
2903
2548
  buckets: table_with_length.TableWithLength<bigint, smart_table.Entry<T0, T1>[]>;
2904
2549
  num_buckets: bigint;
@@ -2912,14 +2557,6 @@ export declare namespace smart_table {
2912
2557
  function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<SmartTable<T0, T1>>;
2913
2558
  }
2914
2559
  }
2915
- export declare class storage_gas extends AptosBaseProcessor {
2916
- constructor(options: AptosBindOptions);
2917
- static DEFAULT_OPTIONS: AptosBindOptions;
2918
- static bind(options?: Partial<AptosBindOptions>): storage_gas;
2919
- onEventGasCurve(func: (event: storage_gas.GasCurveInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): storage_gas;
2920
- onEventPoint(func: (event: storage_gas.PointInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): storage_gas;
2921
- onEventUsageGasConfig(func: (event: storage_gas.UsageGasConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): storage_gas;
2922
- }
2923
2560
  export declare namespace storage_gas {
2924
2561
  interface GasCurve {
2925
2562
  min_gas: bigint;
@@ -2930,10 +2567,6 @@ export declare namespace storage_gas {
2930
2567
  const TYPE_QNAME = "0x1::storage_gas::GasCurve";
2931
2568
  function type(): TypeDescriptor<GasCurve>;
2932
2569
  }
2933
- interface GasCurveInstance extends TypedEventInstance<GasCurve> {
2934
- data_decoded: GasCurve;
2935
- type_arguments: [];
2936
- }
2937
2570
  interface Point {
2938
2571
  x: bigint;
2939
2572
  y: bigint;
@@ -2942,10 +2575,6 @@ export declare namespace storage_gas {
2942
2575
  const TYPE_QNAME = "0x1::storage_gas::Point";
2943
2576
  function type(): TypeDescriptor<Point>;
2944
2577
  }
2945
- interface PointInstance extends TypedEventInstance<Point> {
2946
- data_decoded: Point;
2947
- type_arguments: [];
2948
- }
2949
2578
  interface StorageGas {
2950
2579
  per_item_read: bigint;
2951
2580
  per_item_create: bigint;
@@ -2976,10 +2605,6 @@ export declare namespace storage_gas {
2976
2605
  const TYPE_QNAME = "0x1::storage_gas::UsageGasConfig";
2977
2606
  function type(): TypeDescriptor<UsageGasConfig>;
2978
2607
  }
2979
- interface UsageGasConfigInstance extends TypedEventInstance<UsageGasConfig> {
2980
- data_decoded: UsageGasConfig;
2981
- type_arguments: [];
2982
- }
2983
2608
  }
2984
2609
  export declare namespace chain_status {
2985
2610
  interface GenesisEndMarker {
@@ -2990,12 +2615,6 @@ export declare namespace chain_status {
2990
2615
  function type(): TypeDescriptor<GenesisEndMarker>;
2991
2616
  }
2992
2617
  }
2993
- export declare class copyable_any extends AptosBaseProcessor {
2994
- constructor(options: AptosBindOptions);
2995
- static DEFAULT_OPTIONS: AptosBindOptions;
2996
- static bind(options?: Partial<AptosBindOptions>): copyable_any;
2997
- onEventAny(func: (event: copyable_any.AnyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): copyable_any;
2998
- }
2999
2618
  export declare namespace copyable_any {
3000
2619
  interface Any {
3001
2620
  type_name: string;
@@ -3005,17 +2624,6 @@ export declare namespace copyable_any {
3005
2624
  const TYPE_QNAME = "0x1::copyable_any::Any";
3006
2625
  function type(): TypeDescriptor<Any>;
3007
2626
  }
3008
- interface AnyInstance extends TypedEventInstance<Any> {
3009
- data_decoded: Any;
3010
- type_arguments: [];
3011
- }
3012
- }
3013
- export declare class gas_schedule extends AptosBaseProcessor {
3014
- constructor(options: AptosBindOptions);
3015
- static DEFAULT_OPTIONS: AptosBindOptions;
3016
- static bind(options?: Partial<AptosBindOptions>): gas_schedule;
3017
- onEventGasEntry(func: (event: gas_schedule.GasEntryInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): gas_schedule;
3018
- onEventGasScheduleV2(func: (event: gas_schedule.GasScheduleV2Instance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): gas_schedule;
3019
2627
  }
3020
2628
  export declare namespace gas_schedule {
3021
2629
  interface GasEntry {
@@ -3026,10 +2634,6 @@ export declare namespace gas_schedule {
3026
2634
  const TYPE_QNAME = "0x1::gas_schedule::GasEntry";
3027
2635
  function type(): TypeDescriptor<GasEntry>;
3028
2636
  }
3029
- interface GasEntryInstance extends TypedEventInstance<GasEntry> {
3030
- data_decoded: GasEntry;
3031
- type_arguments: [];
3032
- }
3033
2637
  interface GasSchedule {
3034
2638
  entries: gas_schedule.GasEntry[];
3035
2639
  }
@@ -3045,10 +2649,6 @@ export declare namespace gas_schedule {
3045
2649
  const TYPE_QNAME = "0x1::gas_schedule::GasScheduleV2";
3046
2650
  function type(): TypeDescriptor<GasScheduleV2>;
3047
2651
  }
3048
- interface GasScheduleV2Instance extends TypedEventInstance<GasScheduleV2> {
3049
- data_decoded: GasScheduleV2;
3050
- type_arguments: [];
3051
- }
3052
2652
  }
3053
2653
  export declare class managed_coin extends AptosBaseProcessor {
3054
2654
  constructor(options: AptosBindOptions);
@@ -3092,13 +2692,6 @@ export declare namespace managed_coin {
3092
2692
  }
3093
2693
  }
3094
2694
  export declare namespace math_fixed64 { }
3095
- export declare class ristretto255 extends AptosBaseProcessor {
3096
- constructor(options: AptosBindOptions);
3097
- static DEFAULT_OPTIONS: AptosBindOptions;
3098
- static bind(options?: Partial<AptosBindOptions>): ristretto255;
3099
- onEventCompressedRistretto(func: (event: ristretto255.CompressedRistrettoInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): ristretto255;
3100
- onEventScalar(func: (event: ristretto255.ScalarInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): ristretto255;
3101
- }
3102
2695
  export declare namespace ristretto255 {
3103
2696
  interface CompressedRistretto {
3104
2697
  data: string;
@@ -3107,10 +2700,6 @@ export declare namespace ristretto255 {
3107
2700
  const TYPE_QNAME = "0x1::ristretto255::CompressedRistretto";
3108
2701
  function type(): TypeDescriptor<CompressedRistretto>;
3109
2702
  }
3110
- interface CompressedRistrettoInstance extends TypedEventInstance<CompressedRistretto> {
3111
- data_decoded: CompressedRistretto;
3112
- type_arguments: [];
3113
- }
3114
2703
  interface RistrettoPoint {
3115
2704
  handle: bigint;
3116
2705
  }
@@ -3125,10 +2714,6 @@ export declare namespace ristretto255 {
3125
2714
  const TYPE_QNAME = "0x1::ristretto255::Scalar";
3126
2715
  function type(): TypeDescriptor<Scalar>;
3127
2716
  }
3128
- interface ScalarInstance extends TypedEventInstance<Scalar> {
3129
- data_decoded: Scalar;
3130
- type_arguments: [];
3131
- }
3132
2717
  }
3133
2718
  export declare namespace smart_vector {
3134
2719
  interface SmartVector<T0> {
@@ -3142,14 +2727,6 @@ export declare namespace smart_vector {
3142
2727
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<SmartVector<T0>>;
3143
2728
  }
3144
2729
  }
3145
- export declare class string_utils extends AptosBaseProcessor {
3146
- constructor(options: AptosBindOptions);
3147
- static DEFAULT_OPTIONS: AptosBindOptions;
3148
- static bind(options?: Partial<AptosBindOptions>): string_utils;
3149
- onEventCons(func: (event: string_utils.ConsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): string_utils;
3150
- onEventFakeCons(func: (event: string_utils.FakeConsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): string_utils;
3151
- onEventNIL(func: (event: string_utils.NILInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): string_utils;
3152
- }
3153
2730
  export declare namespace string_utils {
3154
2731
  interface Cons<T0, T1> {
3155
2732
  car: T0;
@@ -3159,10 +2736,6 @@ export declare namespace string_utils {
3159
2736
  const TYPE_QNAME = "0x1::string_utils::Cons";
3160
2737
  function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<Cons<T0, T1>>;
3161
2738
  }
3162
- interface ConsInstance extends TypedEventInstance<Cons<any, any>> {
3163
- data_decoded: Cons<any, any>;
3164
- type_arguments: [string, string];
3165
- }
3166
2739
  interface FakeCons<T0, T1> {
3167
2740
  car: T0;
3168
2741
  cdr: T1;
@@ -3171,10 +2744,6 @@ export declare namespace string_utils {
3171
2744
  const TYPE_QNAME = "0x1::string_utils::FakeCons";
3172
2745
  function type<T0, T1>(arg0?: TypeDescriptor<T0>, arg1?: TypeDescriptor<T1>): TypeDescriptor<FakeCons<T0, T1>>;
3173
2746
  }
3174
- interface FakeConsInstance extends TypedEventInstance<FakeCons<any, any>> {
3175
- data_decoded: FakeCons<any, any>;
3176
- type_arguments: [string, string];
3177
- }
3178
2747
  interface NIL {
3179
2748
  dummy_field: boolean;
3180
2749
  }
@@ -3182,18 +2751,6 @@ export declare namespace string_utils {
3182
2751
  const TYPE_QNAME = "0x1::string_utils::NIL";
3183
2752
  function type(): TypeDescriptor<NIL>;
3184
2753
  }
3185
- interface NILInstance extends TypedEventInstance<NIL> {
3186
- data_decoded: NIL;
3187
- type_arguments: [];
3188
- }
3189
- }
3190
- export declare class aggregator_v2 extends AptosBaseProcessor {
3191
- constructor(options: AptosBindOptions);
3192
- static DEFAULT_OPTIONS: AptosBindOptions;
3193
- static bind(options?: Partial<AptosBindOptions>): aggregator_v2;
3194
- onEventAggregator(func: (event: aggregator_v2.AggregatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aggregator_v2;
3195
- onEventAggregatorSnapshot(func: (event: aggregator_v2.AggregatorSnapshotInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aggregator_v2;
3196
- onEventDerivedStringSnapshot(func: (event: aggregator_v2.DerivedStringSnapshotInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aggregator_v2;
3197
2754
  }
3198
2755
  export declare namespace aggregator_v2 {
3199
2756
  interface Aggregator<T0> {
@@ -3204,10 +2761,6 @@ export declare namespace aggregator_v2 {
3204
2761
  const TYPE_QNAME = "0x1::aggregator_v2::Aggregator";
3205
2762
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Aggregator<T0>>;
3206
2763
  }
3207
- interface AggregatorInstance extends TypedEventInstance<Aggregator<any>> {
3208
- data_decoded: Aggregator<any>;
3209
- type_arguments: [string];
3210
- }
3211
2764
  interface AggregatorSnapshot<T0> {
3212
2765
  value: T0;
3213
2766
  }
@@ -3215,10 +2768,6 @@ export declare namespace aggregator_v2 {
3215
2768
  const TYPE_QNAME = "0x1::aggregator_v2::AggregatorSnapshot";
3216
2769
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<AggregatorSnapshot<T0>>;
3217
2770
  }
3218
- interface AggregatorSnapshotInstance extends TypedEventInstance<AggregatorSnapshot<any>> {
3219
- data_decoded: AggregatorSnapshot<any>;
3220
- type_arguments: [string];
3221
- }
3222
2771
  interface DerivedStringSnapshot {
3223
2772
  value: string;
3224
2773
  padding: string;
@@ -3227,10 +2776,6 @@ export declare namespace aggregator_v2 {
3227
2776
  const TYPE_QNAME = "0x1::aggregator_v2::DerivedStringSnapshot";
3228
2777
  function type(): TypeDescriptor<DerivedStringSnapshot>;
3229
2778
  }
3230
- interface DerivedStringSnapshotInstance extends TypedEventInstance<DerivedStringSnapshot> {
3231
- data_decoded: DerivedStringSnapshot;
3232
- type_arguments: [];
3233
- }
3234
2779
  }
3235
2780
  export declare class aptos_account extends AptosBaseProcessor {
3236
2781
  constructor(options: AptosBindOptions);
@@ -3431,12 +2976,6 @@ export declare namespace config_buffer {
3431
2976
  }
3432
2977
  }
3433
2978
  export declare namespace create_signer { }
3434
- export declare class fixed_point32 extends AptosBaseProcessor {
3435
- constructor(options: AptosBindOptions);
3436
- static DEFAULT_OPTIONS: AptosBindOptions;
3437
- static bind(options?: Partial<AptosBindOptions>): fixed_point32;
3438
- onEventFixedPoint32(func: (event: fixed_point32.FixedPoint32Instance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fixed_point32;
3439
- }
3440
2979
  export declare namespace fixed_point32 {
3441
2980
  interface FixedPoint32 {
3442
2981
  value: bigint;
@@ -3445,16 +2984,6 @@ export declare namespace fixed_point32 {
3445
2984
  const TYPE_QNAME = "0x1::fixed_point32::FixedPoint32";
3446
2985
  function type(): TypeDescriptor<FixedPoint32>;
3447
2986
  }
3448
- interface FixedPoint32Instance extends TypedEventInstance<FixedPoint32> {
3449
- data_decoded: FixedPoint32;
3450
- type_arguments: [];
3451
- }
3452
- }
3453
- export declare class fixed_point64 extends AptosBaseProcessor {
3454
- constructor(options: AptosBindOptions);
3455
- static DEFAULT_OPTIONS: AptosBindOptions;
3456
- static bind(options?: Partial<AptosBindOptions>): fixed_point64;
3457
- onEventFixedPoint64(func: (event: fixed_point64.FixedPoint64Instance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fixed_point64;
3458
2987
  }
3459
2988
  export declare namespace fixed_point64 {
3460
2989
  interface FixedPoint64 {
@@ -3464,16 +2993,6 @@ export declare namespace fixed_point64 {
3464
2993
  const TYPE_QNAME = "0x1::fixed_point64::FixedPoint64";
3465
2994
  function type(): TypeDescriptor<FixedPoint64>;
3466
2995
  }
3467
- interface FixedPoint64Instance extends TypedEventInstance<FixedPoint64> {
3468
- data_decoded: FixedPoint64;
3469
- type_arguments: [];
3470
- }
3471
- }
3472
- export declare class function_info extends AptosBaseProcessor {
3473
- constructor(options: AptosBindOptions);
3474
- static DEFAULT_OPTIONS: AptosBindOptions;
3475
- static bind(options?: Partial<AptosBindOptions>): function_info;
3476
- onEventFunctionInfo(func: (event: function_info.FunctionInfoInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): function_info;
3477
2996
  }
3478
2997
  export declare namespace function_info {
3479
2998
  interface FunctionInfo {
@@ -3485,18 +3004,6 @@ export declare namespace function_info {
3485
3004
  const TYPE_QNAME = "0x1::function_info::FunctionInfo";
3486
3005
  function type(): TypeDescriptor<FunctionInfo>;
3487
3006
  }
3488
- interface FunctionInfoInstance extends TypedEventInstance<FunctionInfo> {
3489
- data_decoded: FunctionInfo;
3490
- type_arguments: [];
3491
- }
3492
- }
3493
- export declare class multi_ed25519 extends AptosBaseProcessor {
3494
- constructor(options: AptosBindOptions);
3495
- static DEFAULT_OPTIONS: AptosBindOptions;
3496
- static bind(options?: Partial<AptosBindOptions>): multi_ed25519;
3497
- onEventSignature(func: (event: multi_ed25519.SignatureInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multi_ed25519;
3498
- onEventUnvalidatedPublicKey(func: (event: multi_ed25519.UnvalidatedPublicKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multi_ed25519;
3499
- onEventValidatedPublicKey(func: (event: multi_ed25519.ValidatedPublicKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multi_ed25519;
3500
3007
  }
3501
3008
  export declare namespace multi_ed25519 {
3502
3009
  interface Signature {
@@ -3506,10 +3013,6 @@ export declare namespace multi_ed25519 {
3506
3013
  const TYPE_QNAME = "0x1::multi_ed25519::Signature";
3507
3014
  function type(): TypeDescriptor<Signature>;
3508
3015
  }
3509
- interface SignatureInstance extends TypedEventInstance<Signature> {
3510
- data_decoded: Signature;
3511
- type_arguments: [];
3512
- }
3513
3016
  interface UnvalidatedPublicKey {
3514
3017
  bytes: string;
3515
3018
  }
@@ -3517,10 +3020,6 @@ export declare namespace multi_ed25519 {
3517
3020
  const TYPE_QNAME = "0x1::multi_ed25519::UnvalidatedPublicKey";
3518
3021
  function type(): TypeDescriptor<UnvalidatedPublicKey>;
3519
3022
  }
3520
- interface UnvalidatedPublicKeyInstance extends TypedEventInstance<UnvalidatedPublicKey> {
3521
- data_decoded: UnvalidatedPublicKey;
3522
- type_arguments: [];
3523
- }
3524
3023
  interface ValidatedPublicKey {
3525
3024
  bytes: string;
3526
3025
  }
@@ -3528,10 +3027,6 @@ export declare namespace multi_ed25519 {
3528
3027
  const TYPE_QNAME = "0x1::multi_ed25519::ValidatedPublicKey";
3529
3028
  function type(): TypeDescriptor<ValidatedPublicKey>;
3530
3029
  }
3531
- interface ValidatedPublicKeyInstance extends TypedEventInstance<ValidatedPublicKey> {
3532
- data_decoded: ValidatedPublicKey;
3533
- type_arguments: [];
3534
- }
3535
3030
  }
3536
3031
  export declare class staking_proxy extends AptosBaseProcessor {
3537
3032
  constructor(options: AptosBindOptions);
@@ -3580,12 +3075,6 @@ export declare namespace staking_proxy {
3580
3075
  type_arguments: [];
3581
3076
  }
3582
3077
  }
3583
- export declare class state_storage extends AptosBaseProcessor {
3584
- constructor(options: AptosBindOptions);
3585
- static DEFAULT_OPTIONS: AptosBindOptions;
3586
- static bind(options?: Partial<AptosBindOptions>): state_storage;
3587
- onEventUsage(func: (event: state_storage.UsageInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): state_storage;
3588
- }
3589
3078
  export declare namespace state_storage {
3590
3079
  interface GasParameter {
3591
3080
  usage: state_storage.Usage;
@@ -3610,10 +3099,6 @@ export declare namespace state_storage {
3610
3099
  const TYPE_QNAME = "0x1::state_storage::Usage";
3611
3100
  function type(): TypeDescriptor<Usage>;
3612
3101
  }
3613
- interface UsageInstance extends TypedEventInstance<Usage> {
3614
- data_decoded: Usage;
3615
- type_arguments: [];
3616
- }
3617
3102
  }
3618
3103
  export declare namespace crypto_algebra {
3619
3104
  interface Element<T0> {
@@ -3630,16 +3115,12 @@ export declare class fungible_asset extends AptosBaseProcessor {
3630
3115
  static bind(options?: Partial<AptosBindOptions>): fungible_asset;
3631
3116
  onEntryTransfer(func: (call: fungible_asset.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3632
3117
  onEntryUpgradeStoreToConcurrent(func: (call: fungible_asset.UpgradeStoreToConcurrentPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3633
- onEventBurnRef(func: (event: fungible_asset.BurnRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3634
3118
  onEventDeposit(func: (event: fungible_asset.DepositInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3635
- onEventDepositEvent(func: (event: fungible_asset.DepositEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3636
3119
  onEventFrozen(func: (event: fungible_asset.FrozenInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3637
- onEventFrozenEvent(func: (event: fungible_asset.FrozenEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3638
- onEventMintRef(func: (event: fungible_asset.MintRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3639
- onEventMutateMetadataRef(func: (event: fungible_asset.MutateMetadataRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3640
- onEventTransferRef(func: (event: fungible_asset.TransferRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3641
3120
  onEventWithdraw(func: (event: fungible_asset.WithdrawInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3121
+ onEventDepositEvent(func: (event: fungible_asset.DepositEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3642
3122
  onEventWithdrawEvent(func: (event: fungible_asset.WithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3123
+ onEventFrozenEvent(func: (event: fungible_asset.FrozenEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3643
3124
  }
3644
3125
  export declare namespace fungible_asset {
3645
3126
  interface BurnRef {
@@ -3649,10 +3130,6 @@ export declare namespace fungible_asset {
3649
3130
  const TYPE_QNAME = "0x1::fungible_asset::BurnRef";
3650
3131
  function type(): TypeDescriptor<BurnRef>;
3651
3132
  }
3652
- interface BurnRefInstance extends TypedEventInstance<BurnRef> {
3653
- data_decoded: BurnRef;
3654
- type_arguments: [];
3655
- }
3656
3133
  interface ConcurrentFungibleBalance {
3657
3134
  balance: aggregator_v2.Aggregator<bigint>;
3658
3135
  }
@@ -3773,10 +3250,6 @@ export declare namespace fungible_asset {
3773
3250
  const TYPE_QNAME = "0x1::fungible_asset::MintRef";
3774
3251
  function type(): TypeDescriptor<MintRef>;
3775
3252
  }
3776
- interface MintRefInstance extends TypedEventInstance<MintRef> {
3777
- data_decoded: MintRef;
3778
- type_arguments: [];
3779
- }
3780
3253
  interface MutateMetadataRef {
3781
3254
  metadata: object$.Object<fungible_asset.Metadata>;
3782
3255
  }
@@ -3784,10 +3257,6 @@ export declare namespace fungible_asset {
3784
3257
  const TYPE_QNAME = "0x1::fungible_asset::MutateMetadataRef";
3785
3258
  function type(): TypeDescriptor<MutateMetadataRef>;
3786
3259
  }
3787
- interface MutateMetadataRefInstance extends TypedEventInstance<MutateMetadataRef> {
3788
- data_decoded: MutateMetadataRef;
3789
- type_arguments: [];
3790
- }
3791
3260
  interface Supply {
3792
3261
  current: bigint;
3793
3262
  maximum: option.Option<bigint>;
@@ -3803,10 +3272,6 @@ export declare namespace fungible_asset {
3803
3272
  const TYPE_QNAME = "0x1::fungible_asset::TransferRef";
3804
3273
  function type(): TypeDescriptor<TransferRef>;
3805
3274
  }
3806
- interface TransferRefInstance extends TypedEventInstance<TransferRef> {
3807
- data_decoded: TransferRef;
3808
- type_arguments: [];
3809
- }
3810
3275
  interface Untransferable {
3811
3276
  dummy_field: boolean;
3812
3277
  }
@@ -3900,32 +3365,28 @@ export declare class delegation_pool extends AptosBaseProcessor {
3900
3365
  onEntryVote(func: (call: delegation_pool.VotePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3901
3366
  onEntryWithdraw(func: (call: delegation_pool.WithdrawPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3902
3367
  onEventAddStake(func: (event: delegation_pool.AddStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3903
- onEventAddStakeEvent(func: (event: delegation_pool.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3904
3368
  onEventAllowlistDelegator(func: (event: delegation_pool.AllowlistDelegatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3905
3369
  onEventCommissionPercentageChange(func: (event: delegation_pool.CommissionPercentageChangeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3906
3370
  onEventCreateProposal(func: (event: delegation_pool.CreateProposalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3907
- onEventCreateProposalEvent(func: (event: delegation_pool.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3908
3371
  onEventDelegateVotingPower(func: (event: delegation_pool.DelegateVotingPowerInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3909
- onEventDelegateVotingPowerEvent(func: (event: delegation_pool.DelegateVotingPowerEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3910
- onEventDelegatedVotes(func: (event: delegation_pool.DelegatedVotesInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3911
3372
  onEventDisableDelegatorsAllowlisting(func: (event: delegation_pool.DisableDelegatorsAllowlistingInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3912
3373
  onEventDistributeCommission(func: (event: delegation_pool.DistributeCommissionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3913
3374
  onEventDistributeCommissionEvent(func: (event: delegation_pool.DistributeCommissionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3914
3375
  onEventEnableDelegatorsAllowlisting(func: (event: delegation_pool.EnableDelegatorsAllowlistingInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3915
3376
  onEventEvictDelegator(func: (event: delegation_pool.EvictDelegatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3916
- onEventObservedLockupCycle(func: (event: delegation_pool.ObservedLockupCycleInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3917
3377
  onEventReactivateStake(func: (event: delegation_pool.ReactivateStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3918
- onEventReactivateStakeEvent(func: (event: delegation_pool.ReactivateStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3919
3378
  onEventRemoveDelegatorFromAllowlist(func: (event: delegation_pool.RemoveDelegatorFromAllowlistInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3920
3379
  onEventSetBeneficiaryForOperator(func: (event: delegation_pool.SetBeneficiaryForOperatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3921
3380
  onEventUnlockStake(func: (event: delegation_pool.UnlockStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3922
- onEventUnlockStakeEvent(func: (event: delegation_pool.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3923
3381
  onEventVote(func: (event: delegation_pool.VoteInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3924
- onEventVoteDelegation(func: (event: delegation_pool.VoteDelegationInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3925
- onEventVoteEvent(func: (event: delegation_pool.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3926
- onEventVotingRecordKey(func: (event: delegation_pool.VotingRecordKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3927
3382
  onEventWithdrawStake(func: (event: delegation_pool.WithdrawStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3383
+ onEventAddStakeEvent(func: (event: delegation_pool.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3384
+ onEventReactivateStakeEvent(func: (event: delegation_pool.ReactivateStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3385
+ onEventUnlockStakeEvent(func: (event: delegation_pool.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3928
3386
  onEventWithdrawStakeEvent(func: (event: delegation_pool.WithdrawStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3387
+ onEventVoteEvent(func: (event: delegation_pool.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3388
+ onEventCreateProposalEvent(func: (event: delegation_pool.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3389
+ onEventDelegateVotingPowerEvent(func: (event: delegation_pool.DelegateVotingPowerEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3929
3390
  }
3930
3391
  export declare namespace delegation_pool {
3931
3392
  interface AddStake {
@@ -4050,10 +3511,6 @@ export declare namespace delegation_pool {
4050
3511
  const TYPE_QNAME = "0x1::delegation_pool::DelegatedVotes";
4051
3512
  function type(): TypeDescriptor<DelegatedVotes>;
4052
3513
  }
4053
- interface DelegatedVotesInstance extends TypedEventInstance<DelegatedVotes> {
4054
- data_decoded: DelegatedVotes;
4055
- type_arguments: [];
4056
- }
4057
3514
  interface DelegationPool {
4058
3515
  active_shares: pool_u64_unbound.Pool;
4059
3516
  observed_lockup_cycle: delegation_pool.ObservedLockupCycle;
@@ -4177,10 +3634,6 @@ export declare namespace delegation_pool {
4177
3634
  const TYPE_QNAME = "0x1::delegation_pool::ObservedLockupCycle";
4178
3635
  function type(): TypeDescriptor<ObservedLockupCycle>;
4179
3636
  }
4180
- interface ObservedLockupCycleInstance extends TypedEventInstance<ObservedLockupCycle> {
4181
- data_decoded: ObservedLockupCycle;
4182
- type_arguments: [];
4183
- }
4184
3637
  interface ReactivateStake {
4185
3638
  pool_address: MoveAddressType;
4186
3639
  delegator_address: MoveAddressType;
@@ -4282,10 +3735,6 @@ export declare namespace delegation_pool {
4282
3735
  const TYPE_QNAME = "0x1::delegation_pool::VoteDelegation";
4283
3736
  function type(): TypeDescriptor<VoteDelegation>;
4284
3737
  }
4285
- interface VoteDelegationInstance extends TypedEventInstance<VoteDelegation> {
4286
- data_decoded: VoteDelegation;
4287
- type_arguments: [];
4288
- }
4289
3738
  interface VoteEvent {
4290
3739
  voter: MoveAddressType;
4291
3740
  proposal_id: bigint;
@@ -4309,10 +3758,6 @@ export declare namespace delegation_pool {
4309
3758
  const TYPE_QNAME = "0x1::delegation_pool::VotingRecordKey";
4310
3759
  function type(): TypeDescriptor<VotingRecordKey>;
4311
3760
  }
4312
- interface VotingRecordKeyInstance extends TypedEventInstance<VotingRecordKey> {
4313
- data_decoded: VotingRecordKey;
4314
- type_arguments: [];
4315
- }
4316
3761
  interface WithdrawStake {
4317
3762
  pool_address: MoveAddressType;
4318
3763
  delegator_address: MoveAddressType;
@@ -4422,13 +3867,6 @@ export declare namespace delegation_pool {
4422
3867
  type_arguments: [];
4423
3868
  }
4424
3869
  }
4425
- export declare class keyless_account extends AptosBaseProcessor {
4426
- constructor(options: AptosBindOptions);
4427
- static DEFAULT_OPTIONS: AptosBindOptions;
4428
- static bind(options?: Partial<AptosBindOptions>): keyless_account;
4429
- onEventConfiguration(func: (event: keyless_account.ConfigurationInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): keyless_account;
4430
- onEventGroth16VerificationKey(func: (event: keyless_account.Groth16VerificationKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): keyless_account;
4431
- }
4432
3870
  export declare namespace keyless_account {
4433
3871
  interface Configuration {
4434
3872
  override_aud_vals: string[];
@@ -4444,10 +3882,6 @@ export declare namespace keyless_account {
4444
3882
  const TYPE_QNAME = "0x1::keyless_account::Configuration";
4445
3883
  function type(): TypeDescriptor<Configuration>;
4446
3884
  }
4447
- interface ConfigurationInstance extends TypedEventInstance<Configuration> {
4448
- data_decoded: Configuration;
4449
- type_arguments: [];
4450
- }
4451
3885
  interface Groth16VerificationKey {
4452
3886
  alpha_g1: string;
4453
3887
  beta_g2: string;
@@ -4459,10 +3893,6 @@ export declare namespace keyless_account {
4459
3893
  const TYPE_QNAME = "0x1::keyless_account::Groth16VerificationKey";
4460
3894
  function type(): TypeDescriptor<Groth16VerificationKey>;
4461
3895
  }
4462
- interface Groth16VerificationKeyInstance extends TypedEventInstance<Groth16VerificationKey> {
4463
- data_decoded: Groth16VerificationKey;
4464
- type_arguments: [];
4465
- }
4466
3896
  interface Group {
4467
3897
  dummy_field: boolean;
4468
3898
  }
@@ -4591,11 +4021,10 @@ export declare class aptos_governance extends AptosBaseProcessor {
4591
4021
  onEntryReconfigure(func: (call: aptos_governance.ReconfigurePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4592
4022
  onEntryVote(func: (call: aptos_governance.VotePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4593
4023
  onEventCreateProposal(func: (event: aptos_governance.CreateProposalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4594
- onEventCreateProposalEvent(func: (event: aptos_governance.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4595
- onEventRecordKey(func: (event: aptos_governance.RecordKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4596
4024
  onEventUpdateConfig(func: (event: aptos_governance.UpdateConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4597
- onEventUpdateConfigEvent(func: (event: aptos_governance.UpdateConfigEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4598
4025
  onEventVote(func: (event: aptos_governance.VoteInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4026
+ onEventCreateProposalEvent(func: (event: aptos_governance.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4027
+ onEventUpdateConfigEvent(func: (event: aptos_governance.UpdateConfigEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4599
4028
  onEventVoteEvent(func: (event: aptos_governance.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4600
4029
  }
4601
4030
  export declare namespace aptos_governance {
@@ -4669,10 +4098,6 @@ export declare namespace aptos_governance {
4669
4098
  const TYPE_QNAME = "0x1::aptos_governance::RecordKey";
4670
4099
  function type(): TypeDescriptor<RecordKey>;
4671
4100
  }
4672
- interface RecordKeyInstance extends TypedEventInstance<RecordKey> {
4673
- data_decoded: RecordKey;
4674
- type_arguments: [];
4675
- }
4676
4101
  interface UpdateConfig {
4677
4102
  min_voting_threshold: bigint;
4678
4103
  required_proposer_stake: bigint;
@@ -4897,12 +4322,6 @@ export declare namespace bls12381_algebra {
4897
4322
  function type(): TypeDescriptor<HashG2XmdSha256SswuRo>;
4898
4323
  }
4899
4324
  }
4900
- export declare class consensus_config extends AptosBaseProcessor {
4901
- constructor(options: AptosBindOptions);
4902
- static DEFAULT_OPTIONS: AptosBindOptions;
4903
- static bind(options?: Partial<AptosBindOptions>): consensus_config;
4904
- onEventConsensusConfig(func: (event: consensus_config.ConsensusConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): consensus_config;
4905
- }
4906
4325
  export declare namespace consensus_config {
4907
4326
  interface ConsensusConfig {
4908
4327
  config: string;
@@ -4911,16 +4330,6 @@ export declare namespace consensus_config {
4911
4330
  const TYPE_QNAME = "0x1::consensus_config::ConsensusConfig";
4912
4331
  function type(): TypeDescriptor<ConsensusConfig>;
4913
4332
  }
4914
- interface ConsensusConfigInstance extends TypedEventInstance<ConsensusConfig> {
4915
- data_decoded: ConsensusConfig;
4916
- type_arguments: [];
4917
- }
4918
- }
4919
- export declare class execution_config extends AptosBaseProcessor {
4920
- constructor(options: AptosBindOptions);
4921
- static DEFAULT_OPTIONS: AptosBindOptions;
4922
- static bind(options?: Partial<AptosBindOptions>): execution_config;
4923
- onEventExecutionConfig(func: (event: execution_config.ExecutionConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): execution_config;
4924
4333
  }
4925
4334
  export declare namespace execution_config {
4926
4335
  interface ExecutionConfig {
@@ -4930,10 +4339,6 @@ export declare namespace execution_config {
4930
4339
  const TYPE_QNAME = "0x1::execution_config::ExecutionConfig";
4931
4340
  function type(): TypeDescriptor<ExecutionConfig>;
4932
4341
  }
4933
- interface ExecutionConfigInstance extends TypedEventInstance<ExecutionConfig> {
4934
- data_decoded: ExecutionConfig;
4935
- type_arguments: [];
4936
- }
4937
4342
  }
4938
4343
  export declare class multisig_account extends AptosBaseProcessor {
4939
4344
  constructor(options: AptosBindOptions);
@@ -4966,25 +4371,23 @@ export declare class multisig_account extends AptosBaseProcessor {
4966
4371
  onEntryVoteTransactions(func: (call: multisig_account.VoteTransactionsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4967
4372
  onEntryVoteTransanction(func: (call: multisig_account.VoteTransanctionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4968
4373
  onEventAddOwners(func: (event: multisig_account.AddOwnersInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4969
- onEventAddOwnersEvent(func: (event: multisig_account.AddOwnersEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4970
4374
  onEventCreateTransaction(func: (event: multisig_account.CreateTransactionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4971
- onEventCreateTransactionEvent(func: (event: multisig_account.CreateTransactionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4972
4375
  onEventExecuteRejectedTransaction(func: (event: multisig_account.ExecuteRejectedTransactionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4973
- onEventExecuteRejectedTransactionEvent(func: (event: multisig_account.ExecuteRejectedTransactionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4974
- onEventExecutionError(func: (event: multisig_account.ExecutionErrorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4975
4376
  onEventMetadataUpdated(func: (event: multisig_account.MetadataUpdatedInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4976
- onEventMetadataUpdatedEvent(func: (event: multisig_account.MetadataUpdatedEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4977
- onEventMultisigTransaction(func: (event: multisig_account.MultisigTransactionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4978
4377
  onEventRemoveOwners(func: (event: multisig_account.RemoveOwnersInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4979
- onEventRemoveOwnersEvent(func: (event: multisig_account.RemoveOwnersEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4980
4378
  onEventTransactionExecutionFailed(func: (event: multisig_account.TransactionExecutionFailedInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4981
- onEventTransactionExecutionFailedEvent(func: (event: multisig_account.TransactionExecutionFailedEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4982
4379
  onEventTransactionExecutionSucceeded(func: (event: multisig_account.TransactionExecutionSucceededInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4983
- onEventTransactionExecutionSucceededEvent(func: (event: multisig_account.TransactionExecutionSucceededEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4984
4380
  onEventUpdateSignaturesRequired(func: (event: multisig_account.UpdateSignaturesRequiredInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4985
- onEventUpdateSignaturesRequiredEvent(func: (event: multisig_account.UpdateSignaturesRequiredEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4986
4381
  onEventVote(func: (event: multisig_account.VoteInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4382
+ onEventAddOwnersEvent(func: (event: multisig_account.AddOwnersEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4383
+ onEventRemoveOwnersEvent(func: (event: multisig_account.RemoveOwnersEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4384
+ onEventUpdateSignaturesRequiredEvent(func: (event: multisig_account.UpdateSignaturesRequiredEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4385
+ onEventCreateTransactionEvent(func: (event: multisig_account.CreateTransactionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4987
4386
  onEventVoteEvent(func: (event: multisig_account.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4387
+ onEventExecuteRejectedTransactionEvent(func: (event: multisig_account.ExecuteRejectedTransactionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4388
+ onEventTransactionExecutionSucceededEvent(func: (event: multisig_account.TransactionExecutionSucceededEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4389
+ onEventTransactionExecutionFailedEvent(func: (event: multisig_account.TransactionExecutionFailedEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4390
+ onEventMetadataUpdatedEvent(func: (event: multisig_account.MetadataUpdatedEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4988
4391
  }
4989
4392
  export declare namespace multisig_account {
4990
4393
  interface AddOwners {
@@ -5073,10 +4476,6 @@ export declare namespace multisig_account {
5073
4476
  const TYPE_QNAME = "0x1::multisig_account::ExecutionError";
5074
4477
  function type(): TypeDescriptor<ExecutionError>;
5075
4478
  }
5076
- interface ExecutionErrorInstance extends TypedEventInstance<ExecutionError> {
5077
- data_decoded: ExecutionError;
5078
- type_arguments: [];
5079
- }
5080
4479
  interface MetadataUpdated {
5081
4480
  multisig_account: MoveAddressType;
5082
4481
  old_metadata: simple_map.SimpleMap<string, string>;
@@ -5157,10 +4556,6 @@ export declare namespace multisig_account {
5157
4556
  const TYPE_QNAME = "0x1::multisig_account::MultisigTransaction";
5158
4557
  function type(): TypeDescriptor<MultisigTransaction>;
5159
4558
  }
5160
- interface MultisigTransactionInstance extends TypedEventInstance<MultisigTransaction> {
5161
- data_decoded: MultisigTransaction;
5162
- type_arguments: [];
5163
- }
5164
4559
  interface RemoveOwners {
5165
4560
  multisig_account: MoveAddressType;
5166
4561
  owners_removed: MoveAddressType[];
@@ -5519,26 +4914,26 @@ export declare class staking_contract extends AptosBaseProcessor {
5519
4914
  onEntryUpdateCommision(func: (call: staking_contract.UpdateCommisionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5520
4915
  onEntryUpdateVoter(func: (call: staking_contract.UpdateVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5521
4916
  onEventAddDistribution(func: (event: staking_contract.AddDistributionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5522
- onEventAddDistributionEvent(func: (event: staking_contract.AddDistributionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5523
4917
  onEventAddStake(func: (event: staking_contract.AddStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5524
- onEventAddStakeEvent(func: (event: staking_contract.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5525
4918
  onEventCreateStakingContract(func: (event: staking_contract.CreateStakingContractInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5526
- onEventCreateStakingContractEvent(func: (event: staking_contract.CreateStakingContractEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5527
4919
  onEventDistribute(func: (event: staking_contract.DistributeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5528
- onEventDistributeEvent(func: (event: staking_contract.DistributeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5529
4920
  onEventRequestCommission(func: (event: staking_contract.RequestCommissionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5530
- onEventRequestCommissionEvent(func: (event: staking_contract.RequestCommissionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5531
4921
  onEventResetLockup(func: (event: staking_contract.ResetLockupInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5532
- onEventResetLockupEvent(func: (event: staking_contract.ResetLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5533
4922
  onEventSetBeneficiaryForOperator(func: (event: staking_contract.SetBeneficiaryForOperatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5534
4923
  onEventSwitchOperator(func: (event: staking_contract.SwitchOperatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5535
- onEventSwitchOperatorEvent(func: (event: staking_contract.SwitchOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5536
4924
  onEventUnlockStake(func: (event: staking_contract.UnlockStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5537
- onEventUnlockStakeEvent(func: (event: staking_contract.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5538
4925
  onEventUpdateCommission(func: (event: staking_contract.UpdateCommissionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5539
- onEventUpdateCommissionEvent(func: (event: staking_contract.UpdateCommissionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5540
4926
  onEventUpdateVoter(func: (event: staking_contract.UpdateVoterInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
4927
+ onEventUpdateCommissionEvent(func: (event: staking_contract.UpdateCommissionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
4928
+ onEventCreateStakingContractEvent(func: (event: staking_contract.CreateStakingContractEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5541
4929
  onEventUpdateVoterEvent(func: (event: staking_contract.UpdateVoterEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
4930
+ onEventResetLockupEvent(func: (event: staking_contract.ResetLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
4931
+ onEventAddStakeEvent(func: (event: staking_contract.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
4932
+ onEventRequestCommissionEvent(func: (event: staking_contract.RequestCommissionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
4933
+ onEventUnlockStakeEvent(func: (event: staking_contract.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
4934
+ onEventSwitchOperatorEvent(func: (event: staking_contract.SwitchOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
4935
+ onEventAddDistributionEvent(func: (event: staking_contract.AddDistributionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
4936
+ onEventDistributeEvent(func: (event: staking_contract.DistributeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5542
4937
  }
5543
4938
  export declare namespace staking_contract {
5544
4939
  interface AddDistribution {
@@ -5937,15 +5332,6 @@ export declare namespace staking_contract {
5937
5332
  }
5938
5333
  }
5939
5334
  export declare namespace system_addresses { }
5940
- export declare class randomness_config extends AptosBaseProcessor {
5941
- constructor(options: AptosBindOptions);
5942
- static DEFAULT_OPTIONS: AptosBindOptions;
5943
- static bind(options?: Partial<AptosBindOptions>): randomness_config;
5944
- onEventConfigOff(func: (event: randomness_config.ConfigOffInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_config;
5945
- onEventConfigV1(func: (event: randomness_config.ConfigV1Instance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_config;
5946
- onEventConfigV2(func: (event: randomness_config.ConfigV2Instance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_config;
5947
- onEventRandomnessConfig(func: (event: randomness_config.RandomnessConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_config;
5948
- }
5949
5335
  export declare namespace randomness_config {
5950
5336
  interface ConfigOff {
5951
5337
  dummy_field: boolean;
@@ -5954,10 +5340,6 @@ export declare namespace randomness_config {
5954
5340
  const TYPE_QNAME = "0x1::randomness_config::ConfigOff";
5955
5341
  function type(): TypeDescriptor<ConfigOff>;
5956
5342
  }
5957
- interface ConfigOffInstance extends TypedEventInstance<ConfigOff> {
5958
- data_decoded: ConfigOff;
5959
- type_arguments: [];
5960
- }
5961
5343
  interface ConfigV1 {
5962
5344
  secrecy_threshold: fixed_point64.FixedPoint64;
5963
5345
  reconstruction_threshold: fixed_point64.FixedPoint64;
@@ -5966,10 +5348,6 @@ export declare namespace randomness_config {
5966
5348
  const TYPE_QNAME = "0x1::randomness_config::ConfigV1";
5967
5349
  function type(): TypeDescriptor<ConfigV1>;
5968
5350
  }
5969
- interface ConfigV1Instance extends TypedEventInstance<ConfigV1> {
5970
- data_decoded: ConfigV1;
5971
- type_arguments: [];
5972
- }
5973
5351
  interface ConfigV2 {
5974
5352
  secrecy_threshold: fixed_point64.FixedPoint64;
5975
5353
  reconstruction_threshold: fixed_point64.FixedPoint64;
@@ -5979,10 +5357,6 @@ export declare namespace randomness_config {
5979
5357
  const TYPE_QNAME = "0x1::randomness_config::ConfigV2";
5980
5358
  function type(): TypeDescriptor<ConfigV2>;
5981
5359
  }
5982
- interface ConfigV2Instance extends TypedEventInstance<ConfigV2> {
5983
- data_decoded: ConfigV2;
5984
- type_arguments: [];
5985
- }
5986
5360
  interface RandomnessConfig {
5987
5361
  variant: copyable_any.Any;
5988
5362
  }
@@ -5990,10 +5364,6 @@ export declare namespace randomness_config {
5990
5364
  const TYPE_QNAME = "0x1::randomness_config::RandomnessConfig";
5991
5365
  function type(): TypeDescriptor<RandomnessConfig>;
5992
5366
  }
5993
- interface RandomnessConfigInstance extends TypedEventInstance<RandomnessConfig> {
5994
- data_decoded: RandomnessConfig;
5995
- type_arguments: [];
5996
- }
5997
5367
  }
5998
5368
  export declare namespace table_with_length {
5999
5369
  interface TableWithLength<T0, T1> {
@@ -6014,12 +5384,6 @@ export declare namespace aggregator_factory {
6014
5384
  function type(): TypeDescriptor<AggregatorFactory>;
6015
5385
  }
6016
5386
  }
6017
- export declare class governance_proposal extends AptosBaseProcessor {
6018
- constructor(options: AptosBindOptions);
6019
- static DEFAULT_OPTIONS: AptosBindOptions;
6020
- static bind(options?: Partial<AptosBindOptions>): governance_proposal;
6021
- onEventGovernanceProposal(func: (event: governance_proposal.GovernanceProposalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): governance_proposal;
6022
- }
6023
5387
  export declare namespace governance_proposal {
6024
5388
  interface GovernanceProposal {
6025
5389
  dummy_field: boolean;
@@ -6028,10 +5392,6 @@ export declare namespace governance_proposal {
6028
5392
  const TYPE_QNAME = "0x1::governance_proposal::GovernanceProposal";
6029
5393
  function type(): TypeDescriptor<GovernanceProposal>;
6030
5394
  }
6031
- interface GovernanceProposalInstance extends TypedEventInstance<GovernanceProposal> {
6032
- data_decoded: GovernanceProposal;
6033
- type_arguments: [];
6034
- }
6035
5395
  }
6036
5396
  export declare namespace optional_aggregator {
6037
5397
  interface Integer {
@@ -6051,12 +5411,6 @@ export declare namespace optional_aggregator {
6051
5411
  function type(): TypeDescriptor<OptionalAggregator>;
6052
5412
  }
6053
5413
  }
6054
- export declare class transaction_context extends AptosBaseProcessor {
6055
- constructor(options: AptosBindOptions);
6056
- static DEFAULT_OPTIONS: AptosBindOptions;
6057
- static bind(options?: Partial<AptosBindOptions>): transaction_context;
6058
- onEventAUID(func: (event: transaction_context.AUIDInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): transaction_context;
6059
- }
6060
5414
  export declare namespace transaction_context {
6061
5415
  interface AUID {
6062
5416
  unique_address: MoveAddressType;
@@ -6065,10 +5419,6 @@ export declare namespace transaction_context {
6065
5419
  const TYPE_QNAME = "0x1::transaction_context::AUID";
6066
5420
  function type(): TypeDescriptor<AUID>;
6067
5421
  }
6068
- interface AUIDInstance extends TypedEventInstance<AUID> {
6069
- data_decoded: AUID;
6070
- type_arguments: [];
6071
- }
6072
5422
  interface EntryFunctionPayload {
6073
5423
  account_address: MoveAddressType;
6074
5424
  module_name: string;
@@ -6089,15 +5439,6 @@ export declare namespace transaction_context {
6089
5439
  function type(): TypeDescriptor<MultisigPayload>;
6090
5440
  }
6091
5441
  }
6092
- export declare class jwk_consensus_config extends AptosBaseProcessor {
6093
- constructor(options: AptosBindOptions);
6094
- static DEFAULT_OPTIONS: AptosBindOptions;
6095
- static bind(options?: Partial<AptosBindOptions>): jwk_consensus_config;
6096
- onEventConfigOff(func: (event: jwk_consensus_config.ConfigOffInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwk_consensus_config;
6097
- onEventConfigV1(func: (event: jwk_consensus_config.ConfigV1Instance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwk_consensus_config;
6098
- onEventJWKConsensusConfig(func: (event: jwk_consensus_config.JWKConsensusConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwk_consensus_config;
6099
- onEventOIDCProvider(func: (event: jwk_consensus_config.OIDCProviderInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwk_consensus_config;
6100
- }
6101
5442
  export declare namespace jwk_consensus_config {
6102
5443
  interface ConfigOff {
6103
5444
  dummy_field: boolean;
@@ -6106,10 +5447,6 @@ export declare namespace jwk_consensus_config {
6106
5447
  const TYPE_QNAME = "0x1::jwk_consensus_config::ConfigOff";
6107
5448
  function type(): TypeDescriptor<ConfigOff>;
6108
5449
  }
6109
- interface ConfigOffInstance extends TypedEventInstance<ConfigOff> {
6110
- data_decoded: ConfigOff;
6111
- type_arguments: [];
6112
- }
6113
5450
  interface ConfigV1 {
6114
5451
  oidc_providers: jwk_consensus_config.OIDCProvider[];
6115
5452
  }
@@ -6117,10 +5454,6 @@ export declare namespace jwk_consensus_config {
6117
5454
  const TYPE_QNAME = "0x1::jwk_consensus_config::ConfigV1";
6118
5455
  function type(): TypeDescriptor<ConfigV1>;
6119
5456
  }
6120
- interface ConfigV1Instance extends TypedEventInstance<ConfigV1> {
6121
- data_decoded: ConfigV1;
6122
- type_arguments: [];
6123
- }
6124
5457
  interface JWKConsensusConfig {
6125
5458
  variant: copyable_any.Any;
6126
5459
  }
@@ -6128,10 +5461,6 @@ export declare namespace jwk_consensus_config {
6128
5461
  const TYPE_QNAME = "0x1::jwk_consensus_config::JWKConsensusConfig";
6129
5462
  function type(): TypeDescriptor<JWKConsensusConfig>;
6130
5463
  }
6131
- interface JWKConsensusConfigInstance extends TypedEventInstance<JWKConsensusConfig> {
6132
- data_decoded: JWKConsensusConfig;
6133
- type_arguments: [];
6134
- }
6135
5464
  interface OIDCProvider {
6136
5465
  name: string;
6137
5466
  config_url: string;
@@ -6140,17 +5469,6 @@ export declare namespace jwk_consensus_config {
6140
5469
  const TYPE_QNAME = "0x1::jwk_consensus_config::OIDCProvider";
6141
5470
  function type(): TypeDescriptor<OIDCProvider>;
6142
5471
  }
6143
- interface OIDCProviderInstance extends TypedEventInstance<OIDCProvider> {
6144
- data_decoded: OIDCProvider;
6145
- type_arguments: [];
6146
- }
6147
- }
6148
- export declare class ristretto255_elgamal extends AptosBaseProcessor {
6149
- constructor(options: AptosBindOptions);
6150
- static DEFAULT_OPTIONS: AptosBindOptions;
6151
- static bind(options?: Partial<AptosBindOptions>): ristretto255_elgamal;
6152
- onEventCompressedCiphertext(func: (event: ristretto255_elgamal.CompressedCiphertextInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): ristretto255_elgamal;
6153
- onEventCompressedPubkey(func: (event: ristretto255_elgamal.CompressedPubkeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): ristretto255_elgamal;
6154
5472
  }
6155
5473
  export declare namespace ristretto255_elgamal {
6156
5474
  interface Ciphertext {
@@ -6169,10 +5487,6 @@ export declare namespace ristretto255_elgamal {
6169
5487
  const TYPE_QNAME = "0x1::ristretto255_elgamal::CompressedCiphertext";
6170
5488
  function type(): TypeDescriptor<CompressedCiphertext>;
6171
5489
  }
6172
- interface CompressedCiphertextInstance extends TypedEventInstance<CompressedCiphertext> {
6173
- data_decoded: CompressedCiphertext;
6174
- type_arguments: [];
6175
- }
6176
5490
  interface CompressedPubkey {
6177
5491
  point: ristretto255.CompressedRistretto;
6178
5492
  }
@@ -6180,17 +5494,6 @@ export declare namespace ristretto255_elgamal {
6180
5494
  const TYPE_QNAME = "0x1::ristretto255_elgamal::CompressedPubkey";
6181
5495
  function type(): TypeDescriptor<CompressedPubkey>;
6182
5496
  }
6183
- interface CompressedPubkeyInstance extends TypedEventInstance<CompressedPubkey> {
6184
- data_decoded: CompressedPubkey;
6185
- type_arguments: [];
6186
- }
6187
- }
6188
- export declare class reconfiguration_state extends AptosBaseProcessor {
6189
- constructor(options: AptosBindOptions);
6190
- static DEFAULT_OPTIONS: AptosBindOptions;
6191
- static bind(options?: Partial<AptosBindOptions>): reconfiguration_state;
6192
- onEventStateActive(func: (event: reconfiguration_state.StateActiveInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): reconfiguration_state;
6193
- onEventStateInactive(func: (event: reconfiguration_state.StateInactiveInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): reconfiguration_state;
6194
5497
  }
6195
5498
  export declare namespace reconfiguration_state {
6196
5499
  interface State {
@@ -6207,10 +5510,6 @@ export declare namespace reconfiguration_state {
6207
5510
  const TYPE_QNAME = "0x1::reconfiguration_state::StateActive";
6208
5511
  function type(): TypeDescriptor<StateActive>;
6209
5512
  }
6210
- interface StateActiveInstance extends TypedEventInstance<StateActive> {
6211
- data_decoded: StateActive;
6212
- type_arguments: [];
6213
- }
6214
5513
  interface StateInactive {
6215
5514
  dummy_field: boolean;
6216
5515
  }
@@ -6218,10 +5517,6 @@ export declare namespace reconfiguration_state {
6218
5517
  const TYPE_QNAME = "0x1::reconfiguration_state::StateInactive";
6219
5518
  function type(): TypeDescriptor<StateInactive>;
6220
5519
  }
6221
- interface StateInactiveInstance extends TypedEventInstance<StateInactive> {
6222
- data_decoded: StateInactive;
6223
- type_arguments: [];
6224
- }
6225
5520
  }
6226
5521
  export declare namespace ristretto255_pedersen {
6227
5522
  interface Commitment {
@@ -6348,13 +5643,6 @@ export declare namespace transaction_validation {
6348
5643
  function type(): TypeDescriptor<TransactionValidation>;
6349
5644
  }
6350
5645
  }
6351
- export declare class randomness_api_v0_config extends AptosBaseProcessor {
6352
- constructor(options: AptosBindOptions);
6353
- static DEFAULT_OPTIONS: AptosBindOptions;
6354
- static bind(options?: Partial<AptosBindOptions>): randomness_api_v0_config;
6355
- onEventAllowCustomMaxGasFlag(func: (event: randomness_api_v0_config.AllowCustomMaxGasFlagInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_api_v0_config;
6356
- onEventRequiredGasDeposit(func: (event: randomness_api_v0_config.RequiredGasDepositInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_api_v0_config;
6357
- }
6358
5646
  export declare namespace randomness_api_v0_config {
6359
5647
  interface AllowCustomMaxGasFlag {
6360
5648
  value: boolean;
@@ -6363,10 +5651,6 @@ export declare namespace randomness_api_v0_config {
6363
5651
  const TYPE_QNAME = "0x1::randomness_api_v0_config::AllowCustomMaxGasFlag";
6364
5652
  function type(): TypeDescriptor<AllowCustomMaxGasFlag>;
6365
5653
  }
6366
- interface AllowCustomMaxGasFlagInstance extends TypedEventInstance<AllowCustomMaxGasFlag> {
6367
- data_decoded: AllowCustomMaxGasFlag;
6368
- type_arguments: [];
6369
- }
6370
5654
  interface RequiredGasDeposit {
6371
5655
  gas_amount: option.Option<bigint>;
6372
5656
  }
@@ -6374,16 +5658,6 @@ export declare namespace randomness_api_v0_config {
6374
5658
  const TYPE_QNAME = "0x1::randomness_api_v0_config::RequiredGasDeposit";
6375
5659
  function type(): TypeDescriptor<RequiredGasDeposit>;
6376
5660
  }
6377
- interface RequiredGasDepositInstance extends TypedEventInstance<RequiredGasDeposit> {
6378
- data_decoded: RequiredGasDeposit;
6379
- type_arguments: [];
6380
- }
6381
- }
6382
- export declare class randomness_config_seqnum extends AptosBaseProcessor {
6383
- constructor(options: AptosBindOptions);
6384
- static DEFAULT_OPTIONS: AptosBindOptions;
6385
- static bind(options?: Partial<AptosBindOptions>): randomness_config_seqnum;
6386
- onEventRandomnessConfigSeqNum(func: (event: randomness_config_seqnum.RandomnessConfigSeqNumInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_config_seqnum;
6387
5661
  }
6388
5662
  export declare namespace randomness_config_seqnum {
6389
5663
  interface RandomnessConfigSeqNum {
@@ -6393,18 +5667,8 @@ export declare namespace randomness_config_seqnum {
6393
5667
  const TYPE_QNAME = "0x1::randomness_config_seqnum::RandomnessConfigSeqNum";
6394
5668
  function type(): TypeDescriptor<RandomnessConfigSeqNum>;
6395
5669
  }
6396
- interface RandomnessConfigSeqNumInstance extends TypedEventInstance<RandomnessConfigSeqNum> {
6397
- data_decoded: RandomnessConfigSeqNum;
6398
- type_arguments: [];
6399
- }
6400
5670
  }
6401
5671
  export declare namespace reconfiguration_with_dkg { }
6402
- export declare class validator_consensus_info extends AptosBaseProcessor {
6403
- constructor(options: AptosBindOptions);
6404
- static DEFAULT_OPTIONS: AptosBindOptions;
6405
- static bind(options?: Partial<AptosBindOptions>): validator_consensus_info;
6406
- onEventValidatorConsensusInfo(func: (event: validator_consensus_info.ValidatorConsensusInfoInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): validator_consensus_info;
6407
- }
6408
5672
  export declare namespace validator_consensus_info {
6409
5673
  interface ValidatorConsensusInfo {
6410
5674
  addr: MoveAddressType;
@@ -6415,16 +5679,6 @@ export declare namespace validator_consensus_info {
6415
5679
  const TYPE_QNAME = "0x1::validator_consensus_info::ValidatorConsensusInfo";
6416
5680
  function type(): TypeDescriptor<ValidatorConsensusInfo>;
6417
5681
  }
6418
- interface ValidatorConsensusInfoInstance extends TypedEventInstance<ValidatorConsensusInfo> {
6419
- data_decoded: ValidatorConsensusInfo;
6420
- type_arguments: [];
6421
- }
6422
- }
6423
- export declare class ristretto255_bulletproofs extends AptosBaseProcessor {
6424
- constructor(options: AptosBindOptions);
6425
- static DEFAULT_OPTIONS: AptosBindOptions;
6426
- static bind(options?: Partial<AptosBindOptions>): ristretto255_bulletproofs;
6427
- onEventRangeProof(func: (event: ristretto255_bulletproofs.RangeProofInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): ristretto255_bulletproofs;
6428
5682
  }
6429
5683
  export declare namespace ristretto255_bulletproofs {
6430
5684
  interface RangeProof {
@@ -6434,10 +5688,6 @@ export declare namespace ristretto255_bulletproofs {
6434
5688
  const TYPE_QNAME = "0x1::ristretto255_bulletproofs::RangeProof";
6435
5689
  function type(): TypeDescriptor<RangeProof>;
6436
5690
  }
6437
- interface RangeProofInstance extends TypedEventInstance<RangeProof> {
6438
- data_decoded: RangeProof;
6439
- type_arguments: [];
6440
- }
6441
5691
  }
6442
5692
  export declare class dispatchable_fungible_asset extends AptosBaseProcessor {
6443
5693
  constructor(options: AptosBindOptions);