@sentio/sdk 2.40.1-rc.10 → 2.40.1-rc.11

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.
@@ -43,6 +43,63 @@ export declare namespace any_ {
43
43
  }
44
44
  }
45
45
  export declare namespace bcs { }
46
+ export declare class dkg extends AptosBaseProcessor {
47
+ constructor(options: AptosBindOptions);
48
+ static DEFAULT_OPTIONS: AptosBindOptions;
49
+ 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
+ onEventDKGStartEvent(func: (event: dkg.DKGStartEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): dkg;
53
+ }
54
+ export declare namespace dkg {
55
+ interface DKGSessionMetadata {
56
+ dealer_epoch: bigint;
57
+ randomness_config: randomness_config.RandomnessConfig;
58
+ dealer_validator_set: validator_consensus_info.ValidatorConsensusInfo[];
59
+ target_validator_set: validator_consensus_info.ValidatorConsensusInfo[];
60
+ }
61
+ namespace DKGSessionMetadata {
62
+ const TYPE_QNAME = "0x1::dkg::DKGSessionMetadata";
63
+ function type(): TypeDescriptor<DKGSessionMetadata>;
64
+ }
65
+ interface DKGSessionMetadataInstance extends TypedEventInstance<DKGSessionMetadata> {
66
+ data_decoded: DKGSessionMetadata;
67
+ type_arguments: [];
68
+ }
69
+ interface DKGSessionState {
70
+ metadata: dkg.DKGSessionMetadata;
71
+ start_time_us: bigint;
72
+ transcript: string;
73
+ }
74
+ namespace DKGSessionState {
75
+ const TYPE_QNAME = "0x1::dkg::DKGSessionState";
76
+ function type(): TypeDescriptor<DKGSessionState>;
77
+ }
78
+ interface DKGSessionStateInstance extends TypedEventInstance<DKGSessionState> {
79
+ data_decoded: DKGSessionState;
80
+ type_arguments: [];
81
+ }
82
+ interface DKGStartEvent {
83
+ session_metadata: dkg.DKGSessionMetadata;
84
+ start_time_us: bigint;
85
+ }
86
+ namespace DKGStartEvent {
87
+ const TYPE_QNAME = "0x1::dkg::DKGStartEvent";
88
+ function type(): TypeDescriptor<DKGStartEvent>;
89
+ }
90
+ interface DKGStartEventInstance extends TypedEventInstance<DKGStartEvent> {
91
+ data_decoded: DKGStartEvent;
92
+ type_arguments: [];
93
+ }
94
+ interface DKGState {
95
+ last_completed: option.Option<dkg.DKGSessionState>;
96
+ in_progress: option.Option<dkg.DKGSessionState>;
97
+ }
98
+ namespace DKGState {
99
+ const TYPE_QNAME = "0x1::dkg::DKGState";
100
+ function type(): TypeDescriptor<DKGState>;
101
+ }
102
+ }
46
103
  export declare class code extends AptosBaseProcessor {
47
104
  constructor(options: AptosBindOptions);
48
105
  static DEFAULT_OPTIONS: AptosBindOptions;
@@ -52,6 +109,7 @@ export declare class code extends AptosBaseProcessor {
52
109
  onEventPackageDep(func: (event: code.PackageDepInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
53
110
  onEventPackageMetadata(func: (event: code.PackageMetadataInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
54
111
  onEventPackageRegistry(func: (event: code.PackageRegistryInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
112
+ onEventPublishPackage(func: (event: code.PublishPackageInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
55
113
  onEventUpgradePolicy(func: (event: code.UpgradePolicyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): code;
56
114
  }
57
115
  export declare namespace code {
@@ -118,6 +176,18 @@ export declare namespace code {
118
176
  data_decoded: PackageRegistry;
119
177
  type_arguments: [];
120
178
  }
179
+ interface PublishPackage {
180
+ code_address: MoveAddressType;
181
+ is_upgrade: Boolean;
182
+ }
183
+ namespace PublishPackage {
184
+ const TYPE_QNAME = "0x1::code::PublishPackage";
185
+ function type(): TypeDescriptor<PublishPackage>;
186
+ }
187
+ interface PublishPackageInstance extends TypedEventInstance<PublishPackage> {
188
+ data_decoded: PublishPackage;
189
+ type_arguments: [];
190
+ }
121
191
  interface UpgradePolicy {
122
192
  policy: number;
123
193
  }
@@ -138,11 +208,18 @@ export declare class coin extends AptosBaseProcessor {
138
208
  constructor(options: AptosBindOptions);
139
209
  static DEFAULT_OPTIONS: AptosBindOptions;
140
210
  static bind(options?: Partial<AptosBindOptions>): coin;
211
+ onEntryCreateCoinConversionMap(func: (call: coin.CreateCoinConversionMapPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
212
+ onEntryCreatePairing(func: (call: coin.CreatePairingPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
141
213
  onEntryFreezeCoinStore(func: (call: coin.FreezeCoinStorePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
214
+ onEntryMigrateToFungibleStore(func: (call: coin.MigrateToFungibleStorePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
142
215
  onEntryTransfer(func: (call: coin.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
143
216
  onEntryUnfreezeCoinStore(func: (call: coin.UnfreezeCoinStorePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
144
217
  onEntryUpgradeSupply(func: (call: coin.UpgradeSupplyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
218
+ onEventCoinEventHandleDeletion(func: (event: coin.CoinEventHandleDeletionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
219
+ onEventDeposit(func: (event: coin.DepositInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
145
220
  onEventDepositEvent(func: (event: coin.DepositEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
221
+ onEventPairCreation(func: (event: coin.PairCreationInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
222
+ onEventWithdraw(func: (event: coin.WithdrawInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
146
223
  onEventWithdrawEvent(func: (event: coin.WithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): coin;
147
224
  }
148
225
  export declare namespace coin {
@@ -160,6 +237,13 @@ export declare namespace coin {
160
237
  const TYPE_QNAME = "0x1::coin::BurnCapability";
161
238
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<BurnCapability<T0>>;
162
239
  }
240
+ interface BurnRefReceipt {
241
+ metadata: object_.Object<fungible_asset.Metadata>;
242
+ }
243
+ namespace BurnRefReceipt {
244
+ const TYPE_QNAME = "0x1::coin::BurnRefReceipt";
245
+ function type(): TypeDescriptor<BurnRefReceipt>;
246
+ }
163
247
  interface Coin<T0> {
164
248
  value: bigint;
165
249
  }
@@ -167,6 +251,26 @@ export declare namespace coin {
167
251
  const TYPE_QNAME = "0x1::coin::Coin";
168
252
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Coin<T0>>;
169
253
  }
254
+ interface CoinConversionMap {
255
+ coin_to_fungible_asset_map: table.Table<type_info.TypeInfo, object_.Object<fungible_asset.Metadata>>;
256
+ }
257
+ namespace CoinConversionMap {
258
+ const TYPE_QNAME = "0x1::coin::CoinConversionMap";
259
+ function type(): TypeDescriptor<CoinConversionMap>;
260
+ }
261
+ interface CoinEventHandleDeletion {
262
+ event_handle_creation_address: MoveAddressType;
263
+ deleted_deposit_event_handle_creation_number: bigint;
264
+ deleted_withdraw_event_handle_creation_number: bigint;
265
+ }
266
+ namespace CoinEventHandleDeletion {
267
+ const TYPE_QNAME = "0x1::coin::CoinEventHandleDeletion";
268
+ function type(): TypeDescriptor<CoinEventHandleDeletion>;
269
+ }
270
+ interface CoinEventHandleDeletionInstance extends TypedEventInstance<CoinEventHandleDeletion> {
271
+ data_decoded: CoinEventHandleDeletion;
272
+ type_arguments: [];
273
+ }
170
274
  interface CoinInfo<T0> {
171
275
  name: string;
172
276
  symbol: string;
@@ -187,6 +291,18 @@ export declare namespace coin {
187
291
  const TYPE_QNAME = "0x1::coin::CoinStore";
188
292
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<CoinStore<T0>>;
189
293
  }
294
+ interface Deposit<T0> {
295
+ account: MoveAddressType;
296
+ amount: bigint;
297
+ }
298
+ namespace Deposit {
299
+ const TYPE_QNAME = "0x1::coin::Deposit";
300
+ function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Deposit<T0>>;
301
+ }
302
+ interface DepositInstance extends TypedEventInstance<Deposit<any>> {
303
+ data_decoded: Deposit<any>;
304
+ type_arguments: [string];
305
+ }
190
306
  interface DepositEvent {
191
307
  amount: bigint;
192
308
  }
@@ -205,6 +321,13 @@ export declare namespace coin {
205
321
  const TYPE_QNAME = "0x1::coin::FreezeCapability";
206
322
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<FreezeCapability<T0>>;
207
323
  }
324
+ interface MigrationFlag {
325
+ dummy_field: Boolean;
326
+ }
327
+ namespace MigrationFlag {
328
+ const TYPE_QNAME = "0x1::coin::MigrationFlag";
329
+ function type(): TypeDescriptor<MigrationFlag>;
330
+ }
208
331
  interface MintCapability<T0> {
209
332
  dummy_field: Boolean;
210
333
  }
@@ -212,6 +335,41 @@ export declare namespace coin {
212
335
  const TYPE_QNAME = "0x1::coin::MintCapability";
213
336
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<MintCapability<T0>>;
214
337
  }
338
+ interface MintRefReceipt {
339
+ metadata: object_.Object<fungible_asset.Metadata>;
340
+ }
341
+ namespace MintRefReceipt {
342
+ const TYPE_QNAME = "0x1::coin::MintRefReceipt";
343
+ function type(): TypeDescriptor<MintRefReceipt>;
344
+ }
345
+ interface PairCreation {
346
+ coin_type: type_info.TypeInfo;
347
+ fungible_asset_metadata_address: MoveAddressType;
348
+ }
349
+ namespace PairCreation {
350
+ const TYPE_QNAME = "0x1::coin::PairCreation";
351
+ function type(): TypeDescriptor<PairCreation>;
352
+ }
353
+ interface PairCreationInstance extends TypedEventInstance<PairCreation> {
354
+ data_decoded: PairCreation;
355
+ type_arguments: [];
356
+ }
357
+ interface PairedCoinType {
358
+ type: type_info.TypeInfo;
359
+ }
360
+ namespace PairedCoinType {
361
+ const TYPE_QNAME = "0x1::coin::PairedCoinType";
362
+ function type(): TypeDescriptor<PairedCoinType>;
363
+ }
364
+ interface PairedFungibleAssetRefs {
365
+ mint_ref_opt: option.Option<fungible_asset.MintRef>;
366
+ transfer_ref_opt: option.Option<fungible_asset.TransferRef>;
367
+ burn_ref_opt: option.Option<fungible_asset.BurnRef>;
368
+ }
369
+ namespace PairedFungibleAssetRefs {
370
+ const TYPE_QNAME = "0x1::coin::PairedFungibleAssetRefs";
371
+ function type(): TypeDescriptor<PairedFungibleAssetRefs>;
372
+ }
215
373
  interface SupplyConfig {
216
374
  allow_upgrades: Boolean;
217
375
  }
@@ -219,6 +377,25 @@ export declare namespace coin {
219
377
  const TYPE_QNAME = "0x1::coin::SupplyConfig";
220
378
  function type(): TypeDescriptor<SupplyConfig>;
221
379
  }
380
+ interface TransferRefReceipt {
381
+ metadata: object_.Object<fungible_asset.Metadata>;
382
+ }
383
+ namespace TransferRefReceipt {
384
+ const TYPE_QNAME = "0x1::coin::TransferRefReceipt";
385
+ function type(): TypeDescriptor<TransferRefReceipt>;
386
+ }
387
+ interface Withdraw<T0> {
388
+ account: MoveAddressType;
389
+ amount: bigint;
390
+ }
391
+ namespace Withdraw {
392
+ const TYPE_QNAME = "0x1::coin::Withdraw";
393
+ function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Withdraw<T0>>;
394
+ }
395
+ interface WithdrawInstance extends TypedEventInstance<Withdraw<any>> {
396
+ data_decoded: Withdraw<any>;
397
+ type_arguments: [string];
398
+ }
222
399
  interface WithdrawEvent {
223
400
  amount: bigint;
224
401
  }
@@ -230,10 +407,22 @@ export declare namespace coin {
230
407
  data_decoded: WithdrawEvent;
231
408
  type_arguments: [];
232
409
  }
410
+ interface CreateCoinConversionMapPayload extends TypedFunctionPayload<[]> {
411
+ arguments_decoded: [];
412
+ type_arguments: [];
413
+ }
414
+ interface CreatePairingPayload<T0 = any> extends TypedFunctionPayload<[]> {
415
+ arguments_decoded: [];
416
+ type_arguments: [string];
417
+ }
233
418
  interface FreezeCoinStorePayload<T0 = any> extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
234
419
  arguments_decoded: [MoveAddressType, MoveAddressType];
235
420
  type_arguments: [string];
236
421
  }
422
+ interface MigrateToFungibleStorePayload<T0 = any> extends TypedFunctionPayload<[]> {
423
+ arguments_decoded: [];
424
+ type_arguments: [string];
425
+ }
237
426
  interface TransferPayload<T0 = any> extends TypedFunctionPayload<[MoveAddressType, bigint]> {
238
427
  arguments_decoded: [MoveAddressType, bigint];
239
428
  type_arguments: [string];
@@ -280,12 +469,214 @@ export declare namespace guid {
280
469
  }
281
470
  }
282
471
  export declare namespace hash { }
472
+ export declare class jwks extends AptosBaseProcessor {
473
+ constructor(options: AptosBindOptions);
474
+ static DEFAULT_OPTIONS: AptosBindOptions;
475
+ static bind(options?: Partial<AptosBindOptions>): jwks;
476
+ onEventAllProvidersJWKs(func: (event: jwks.AllProvidersJWKsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
477
+ onEventJWK(func: (event: jwks.JWKInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
478
+ onEventOIDCProvider(func: (event: jwks.OIDCProviderInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
479
+ onEventObservedJWKs(func: (event: jwks.ObservedJWKsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
480
+ onEventObservedJWKsUpdated(func: (event: jwks.ObservedJWKsUpdatedInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
481
+ onEventPatch(func: (event: jwks.PatchInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
482
+ onEventPatchRemoveAll(func: (event: jwks.PatchRemoveAllInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
483
+ onEventPatchRemoveIssuer(func: (event: jwks.PatchRemoveIssuerInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
484
+ onEventPatchRemoveJWK(func: (event: jwks.PatchRemoveJWKInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
485
+ onEventPatchUpsertJWK(func: (event: jwks.PatchUpsertJWKInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
486
+ onEventProviderJWKs(func: (event: jwks.ProviderJWKsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
487
+ onEventRSA_JWK(func: (event: jwks.RSA_JWKInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
488
+ onEventSupportedOIDCProviders(func: (event: jwks.SupportedOIDCProvidersInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
489
+ onEventUnsupportedJWK(func: (event: jwks.UnsupportedJWKInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwks;
490
+ }
491
+ export declare namespace jwks {
492
+ interface AllProvidersJWKs {
493
+ entries: jwks.ProviderJWKs[];
494
+ }
495
+ namespace AllProvidersJWKs {
496
+ const TYPE_QNAME = "0x1::jwks::AllProvidersJWKs";
497
+ function type(): TypeDescriptor<AllProvidersJWKs>;
498
+ }
499
+ interface AllProvidersJWKsInstance extends TypedEventInstance<AllProvidersJWKs> {
500
+ data_decoded: AllProvidersJWKs;
501
+ type_arguments: [];
502
+ }
503
+ interface JWK {
504
+ variant: copyable_any.Any;
505
+ }
506
+ namespace JWK {
507
+ const TYPE_QNAME = "0x1::jwks::JWK";
508
+ function type(): TypeDescriptor<JWK>;
509
+ }
510
+ interface JWKInstance extends TypedEventInstance<JWK> {
511
+ data_decoded: JWK;
512
+ type_arguments: [];
513
+ }
514
+ interface OIDCProvider {
515
+ name: string;
516
+ config_url: string;
517
+ }
518
+ namespace OIDCProvider {
519
+ const TYPE_QNAME = "0x1::jwks::OIDCProvider";
520
+ function type(): TypeDescriptor<OIDCProvider>;
521
+ }
522
+ interface OIDCProviderInstance extends TypedEventInstance<OIDCProvider> {
523
+ data_decoded: OIDCProvider;
524
+ type_arguments: [];
525
+ }
526
+ interface ObservedJWKs {
527
+ jwks: jwks.AllProvidersJWKs;
528
+ }
529
+ namespace ObservedJWKs {
530
+ const TYPE_QNAME = "0x1::jwks::ObservedJWKs";
531
+ function type(): TypeDescriptor<ObservedJWKs>;
532
+ }
533
+ interface ObservedJWKsInstance extends TypedEventInstance<ObservedJWKs> {
534
+ data_decoded: ObservedJWKs;
535
+ type_arguments: [];
536
+ }
537
+ interface ObservedJWKsUpdated {
538
+ epoch: bigint;
539
+ jwks: jwks.AllProvidersJWKs;
540
+ }
541
+ namespace ObservedJWKsUpdated {
542
+ const TYPE_QNAME = "0x1::jwks::ObservedJWKsUpdated";
543
+ function type(): TypeDescriptor<ObservedJWKsUpdated>;
544
+ }
545
+ interface ObservedJWKsUpdatedInstance extends TypedEventInstance<ObservedJWKsUpdated> {
546
+ data_decoded: ObservedJWKsUpdated;
547
+ type_arguments: [];
548
+ }
549
+ interface Patch {
550
+ variant: copyable_any.Any;
551
+ }
552
+ namespace Patch {
553
+ const TYPE_QNAME = "0x1::jwks::Patch";
554
+ function type(): TypeDescriptor<Patch>;
555
+ }
556
+ interface PatchInstance extends TypedEventInstance<Patch> {
557
+ data_decoded: Patch;
558
+ type_arguments: [];
559
+ }
560
+ interface PatchRemoveAll {
561
+ dummy_field: Boolean;
562
+ }
563
+ namespace PatchRemoveAll {
564
+ const TYPE_QNAME = "0x1::jwks::PatchRemoveAll";
565
+ function type(): TypeDescriptor<PatchRemoveAll>;
566
+ }
567
+ interface PatchRemoveAllInstance extends TypedEventInstance<PatchRemoveAll> {
568
+ data_decoded: PatchRemoveAll;
569
+ type_arguments: [];
570
+ }
571
+ interface PatchRemoveIssuer {
572
+ issuer: string;
573
+ }
574
+ namespace PatchRemoveIssuer {
575
+ const TYPE_QNAME = "0x1::jwks::PatchRemoveIssuer";
576
+ function type(): TypeDescriptor<PatchRemoveIssuer>;
577
+ }
578
+ interface PatchRemoveIssuerInstance extends TypedEventInstance<PatchRemoveIssuer> {
579
+ data_decoded: PatchRemoveIssuer;
580
+ type_arguments: [];
581
+ }
582
+ interface PatchRemoveJWK {
583
+ issuer: string;
584
+ jwk_id: string;
585
+ }
586
+ namespace PatchRemoveJWK {
587
+ const TYPE_QNAME = "0x1::jwks::PatchRemoveJWK";
588
+ function type(): TypeDescriptor<PatchRemoveJWK>;
589
+ }
590
+ interface PatchRemoveJWKInstance extends TypedEventInstance<PatchRemoveJWK> {
591
+ data_decoded: PatchRemoveJWK;
592
+ type_arguments: [];
593
+ }
594
+ interface PatchUpsertJWK {
595
+ issuer: string;
596
+ jwk: jwks.JWK;
597
+ }
598
+ namespace PatchUpsertJWK {
599
+ const TYPE_QNAME = "0x1::jwks::PatchUpsertJWK";
600
+ function type(): TypeDescriptor<PatchUpsertJWK>;
601
+ }
602
+ interface PatchUpsertJWKInstance extends TypedEventInstance<PatchUpsertJWK> {
603
+ data_decoded: PatchUpsertJWK;
604
+ type_arguments: [];
605
+ }
606
+ interface PatchedJWKs {
607
+ jwks: jwks.AllProvidersJWKs;
608
+ }
609
+ namespace PatchedJWKs {
610
+ const TYPE_QNAME = "0x1::jwks::PatchedJWKs";
611
+ function type(): TypeDescriptor<PatchedJWKs>;
612
+ }
613
+ interface Patches {
614
+ patches: jwks.Patch[];
615
+ }
616
+ namespace Patches {
617
+ const TYPE_QNAME = "0x1::jwks::Patches";
618
+ function type(): TypeDescriptor<Patches>;
619
+ }
620
+ interface ProviderJWKs {
621
+ issuer: string;
622
+ version: bigint;
623
+ jwks: jwks.JWK[];
624
+ }
625
+ namespace ProviderJWKs {
626
+ const TYPE_QNAME = "0x1::jwks::ProviderJWKs";
627
+ function type(): TypeDescriptor<ProviderJWKs>;
628
+ }
629
+ interface ProviderJWKsInstance extends TypedEventInstance<ProviderJWKs> {
630
+ data_decoded: ProviderJWKs;
631
+ type_arguments: [];
632
+ }
633
+ interface RSA_JWK {
634
+ kid: string;
635
+ kty: string;
636
+ alg: string;
637
+ e: string;
638
+ n: string;
639
+ }
640
+ namespace RSA_JWK {
641
+ const TYPE_QNAME = "0x1::jwks::RSA_JWK";
642
+ function type(): TypeDescriptor<RSA_JWK>;
643
+ }
644
+ interface RSA_JWKInstance extends TypedEventInstance<RSA_JWK> {
645
+ data_decoded: RSA_JWK;
646
+ type_arguments: [];
647
+ }
648
+ interface SupportedOIDCProviders {
649
+ providers: jwks.OIDCProvider[];
650
+ }
651
+ namespace SupportedOIDCProviders {
652
+ const TYPE_QNAME = "0x1::jwks::SupportedOIDCProviders";
653
+ function type(): TypeDescriptor<SupportedOIDCProviders>;
654
+ }
655
+ interface SupportedOIDCProvidersInstance extends TypedEventInstance<SupportedOIDCProviders> {
656
+ data_decoded: SupportedOIDCProviders;
657
+ type_arguments: [];
658
+ }
659
+ interface UnsupportedJWK {
660
+ id: string;
661
+ payload: string;
662
+ }
663
+ namespace UnsupportedJWK {
664
+ const TYPE_QNAME = "0x1::jwks::UnsupportedJWK";
665
+ function type(): TypeDescriptor<UnsupportedJWK>;
666
+ }
667
+ interface UnsupportedJWKInstance extends TypedEventInstance<UnsupportedJWK> {
668
+ data_decoded: UnsupportedJWK;
669
+ type_arguments: [];
670
+ }
671
+ }
283
672
  export declare namespace util { }
284
673
  export declare class block extends AptosBaseProcessor {
285
674
  constructor(options: AptosBindOptions);
286
675
  static DEFAULT_OPTIONS: AptosBindOptions;
287
676
  static bind(options?: Partial<AptosBindOptions>): block;
677
+ onEventNewBlock(func: (event: block.NewBlockInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): block;
288
678
  onEventNewBlockEvent(func: (event: block.NewBlockEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): block;
679
+ onEventUpdateEpochInterval(func: (event: block.UpdateEpochIntervalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): block;
289
680
  onEventUpdateEpochIntervalEvent(func: (event: block.UpdateEpochIntervalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): block;
290
681
  }
291
682
  export declare namespace block {
@@ -299,6 +690,33 @@ export declare namespace block {
299
690
  const TYPE_QNAME = "0x1::block::BlockResource";
300
691
  function type(): TypeDescriptor<BlockResource>;
301
692
  }
693
+ interface CommitHistory {
694
+ max_capacity: number;
695
+ next_idx: number;
696
+ table: table_with_length.TableWithLength<number, block.NewBlockEvent>;
697
+ }
698
+ namespace CommitHistory {
699
+ const TYPE_QNAME = "0x1::block::CommitHistory";
700
+ function type(): TypeDescriptor<CommitHistory>;
701
+ }
702
+ interface NewBlock {
703
+ hash: MoveAddressType;
704
+ epoch: bigint;
705
+ round: bigint;
706
+ height: bigint;
707
+ previous_block_votes_bitvec: string;
708
+ proposer: MoveAddressType;
709
+ failed_proposer_indices: bigint[];
710
+ time_microseconds: bigint;
711
+ }
712
+ namespace NewBlock {
713
+ const TYPE_QNAME = "0x1::block::NewBlock";
714
+ function type(): TypeDescriptor<NewBlock>;
715
+ }
716
+ interface NewBlockInstance extends TypedEventInstance<NewBlock> {
717
+ data_decoded: NewBlock;
718
+ type_arguments: [];
719
+ }
302
720
  interface NewBlockEvent {
303
721
  hash: MoveAddressType;
304
722
  epoch: bigint;
@@ -317,6 +735,18 @@ export declare namespace block {
317
735
  data_decoded: NewBlockEvent;
318
736
  type_arguments: [];
319
737
  }
738
+ interface UpdateEpochInterval {
739
+ old_epoch_interval: bigint;
740
+ new_epoch_interval: bigint;
741
+ }
742
+ namespace UpdateEpochInterval {
743
+ const TYPE_QNAME = "0x1::block::UpdateEpochInterval";
744
+ function type(): TypeDescriptor<UpdateEpochInterval>;
745
+ }
746
+ interface UpdateEpochIntervalInstance extends TypedEventInstance<UpdateEpochInterval> {
747
+ data_decoded: UpdateEpochInterval;
748
+ type_arguments: [];
749
+ }
320
750
  interface UpdateEpochIntervalEvent {
321
751
  old_epoch_interval: bigint;
322
752
  new_epoch_interval: bigint;
@@ -359,23 +789,48 @@ export declare class stake extends AptosBaseProcessor {
359
789
  onEntryUnlock(func: (call: stake.UnlockPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): stake;
360
790
  onEntryUpdateNetworkAndFullnodeAddresses(func: (call: stake.UpdateNetworkAndFullnodeAddressesPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): stake;
361
791
  onEntryWithdraw(func: (call: stake.WithdrawPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): stake;
792
+ onEventAddStake(func: (event: stake.AddStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
362
793
  onEventAddStakeEvent(func: (event: stake.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
794
+ onEventDistributeRewards(func: (event: stake.DistributeRewardsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
363
795
  onEventDistributeRewardsEvent(func: (event: stake.DistributeRewardsEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
796
+ onEventIncreaseLockup(func: (event: stake.IncreaseLockupInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
364
797
  onEventIncreaseLockupEvent(func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
365
798
  onEventIndividualValidatorPerformance(func: (event: stake.IndividualValidatorPerformanceInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
799
+ onEventJoinValidatorSet(func: (event: stake.JoinValidatorSetInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
366
800
  onEventJoinValidatorSetEvent(func: (event: stake.JoinValidatorSetEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
801
+ onEventLeaveValidatorSet(func: (event: stake.LeaveValidatorSetInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
367
802
  onEventLeaveValidatorSetEvent(func: (event: stake.LeaveValidatorSetEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
803
+ onEventReactivateStake(func: (event: stake.ReactivateStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
368
804
  onEventReactivateStakeEvent(func: (event: stake.ReactivateStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
805
+ onEventRegisterValidatorCandidate(func: (event: stake.RegisterValidatorCandidateInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
369
806
  onEventRegisterValidatorCandidateEvent(func: (event: stake.RegisterValidatorCandidateEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
807
+ onEventRotateConsensusKey(func: (event: stake.RotateConsensusKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
370
808
  onEventRotateConsensusKeyEvent(func: (event: stake.RotateConsensusKeyEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
809
+ onEventSetOperator(func: (event: stake.SetOperatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
371
810
  onEventSetOperatorEvent(func: (event: stake.SetOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
811
+ onEventUnlockStake(func: (event: stake.UnlockStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
372
812
  onEventUnlockStakeEvent(func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
813
+ onEventUpdateNetworkAndFullnodeAddresses(func: (event: stake.UpdateNetworkAndFullnodeAddressesInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
373
814
  onEventUpdateNetworkAndFullnodeAddressesEvent(func: (event: stake.UpdateNetworkAndFullnodeAddressesEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
374
815
  onEventValidatorConfig(func: (event: stake.ValidatorConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
375
816
  onEventValidatorInfo(func: (event: stake.ValidatorInfoInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
817
+ onEventValidatorSet(func: (event: stake.ValidatorSetInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
818
+ onEventWithdrawStake(func: (event: stake.WithdrawStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
376
819
  onEventWithdrawStakeEvent(func: (event: stake.WithdrawStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): stake;
377
820
  }
378
821
  export declare namespace stake {
822
+ interface AddStake {
823
+ pool_address: MoveAddressType;
824
+ amount_added: bigint;
825
+ }
826
+ namespace AddStake {
827
+ const TYPE_QNAME = "0x1::stake::AddStake";
828
+ function type(): TypeDescriptor<AddStake>;
829
+ }
830
+ interface AddStakeInstance extends TypedEventInstance<AddStake> {
831
+ data_decoded: AddStake;
832
+ type_arguments: [];
833
+ }
379
834
  interface AddStakeEvent {
380
835
  pool_address: MoveAddressType;
381
836
  amount_added: bigint;
@@ -402,6 +857,18 @@ export declare namespace stake {
402
857
  const TYPE_QNAME = "0x1::stake::AptosCoinCapabilities";
403
858
  function type(): TypeDescriptor<AptosCoinCapabilities>;
404
859
  }
860
+ interface DistributeRewards {
861
+ pool_address: MoveAddressType;
862
+ rewards_amount: bigint;
863
+ }
864
+ namespace DistributeRewards {
865
+ const TYPE_QNAME = "0x1::stake::DistributeRewards";
866
+ function type(): TypeDescriptor<DistributeRewards>;
867
+ }
868
+ interface DistributeRewardsInstance extends TypedEventInstance<DistributeRewards> {
869
+ data_decoded: DistributeRewards;
870
+ type_arguments: [];
871
+ }
405
872
  interface DistributeRewardsEvent {
406
873
  pool_address: MoveAddressType;
407
874
  rewards_amount: bigint;
@@ -414,6 +881,19 @@ export declare namespace stake {
414
881
  data_decoded: DistributeRewardsEvent;
415
882
  type_arguments: [];
416
883
  }
884
+ interface IncreaseLockup {
885
+ pool_address: MoveAddressType;
886
+ old_locked_until_secs: bigint;
887
+ new_locked_until_secs: bigint;
888
+ }
889
+ namespace IncreaseLockup {
890
+ const TYPE_QNAME = "0x1::stake::IncreaseLockup";
891
+ function type(): TypeDescriptor<IncreaseLockup>;
892
+ }
893
+ interface IncreaseLockupInstance extends TypedEventInstance<IncreaseLockup> {
894
+ data_decoded: IncreaseLockup;
895
+ type_arguments: [];
896
+ }
417
897
  interface IncreaseLockupEvent {
418
898
  pool_address: MoveAddressType;
419
899
  old_locked_until_secs: bigint;
@@ -439,6 +919,17 @@ export declare namespace stake {
439
919
  data_decoded: IndividualValidatorPerformance;
440
920
  type_arguments: [];
441
921
  }
922
+ interface JoinValidatorSet {
923
+ pool_address: MoveAddressType;
924
+ }
925
+ namespace JoinValidatorSet {
926
+ const TYPE_QNAME = "0x1::stake::JoinValidatorSet";
927
+ function type(): TypeDescriptor<JoinValidatorSet>;
928
+ }
929
+ interface JoinValidatorSetInstance extends TypedEventInstance<JoinValidatorSet> {
930
+ data_decoded: JoinValidatorSet;
931
+ type_arguments: [];
932
+ }
442
933
  interface JoinValidatorSetEvent {
443
934
  pool_address: MoveAddressType;
444
935
  }
@@ -450,6 +941,17 @@ export declare namespace stake {
450
941
  data_decoded: JoinValidatorSetEvent;
451
942
  type_arguments: [];
452
943
  }
944
+ interface LeaveValidatorSet {
945
+ pool_address: MoveAddressType;
946
+ }
947
+ namespace LeaveValidatorSet {
948
+ const TYPE_QNAME = "0x1::stake::LeaveValidatorSet";
949
+ function type(): TypeDescriptor<LeaveValidatorSet>;
950
+ }
951
+ interface LeaveValidatorSetInstance extends TypedEventInstance<LeaveValidatorSet> {
952
+ data_decoded: LeaveValidatorSet;
953
+ type_arguments: [];
954
+ }
453
955
  interface LeaveValidatorSetEvent {
454
956
  pool_address: MoveAddressType;
455
957
  }
@@ -468,6 +970,18 @@ export declare namespace stake {
468
970
  const TYPE_QNAME = "0x1::stake::OwnerCapability";
469
971
  function type(): TypeDescriptor<OwnerCapability>;
470
972
  }
973
+ interface ReactivateStake {
974
+ pool_address: MoveAddressType;
975
+ amount: bigint;
976
+ }
977
+ namespace ReactivateStake {
978
+ const TYPE_QNAME = "0x1::stake::ReactivateStake";
979
+ function type(): TypeDescriptor<ReactivateStake>;
980
+ }
981
+ interface ReactivateStakeInstance extends TypedEventInstance<ReactivateStake> {
982
+ data_decoded: ReactivateStake;
983
+ type_arguments: [];
984
+ }
471
985
  interface ReactivateStakeEvent {
472
986
  pool_address: MoveAddressType;
473
987
  amount: bigint;
@@ -480,6 +994,17 @@ export declare namespace stake {
480
994
  data_decoded: ReactivateStakeEvent;
481
995
  type_arguments: [];
482
996
  }
997
+ interface RegisterValidatorCandidate {
998
+ pool_address: MoveAddressType;
999
+ }
1000
+ namespace RegisterValidatorCandidate {
1001
+ const TYPE_QNAME = "0x1::stake::RegisterValidatorCandidate";
1002
+ function type(): TypeDescriptor<RegisterValidatorCandidate>;
1003
+ }
1004
+ interface RegisterValidatorCandidateInstance extends TypedEventInstance<RegisterValidatorCandidate> {
1005
+ data_decoded: RegisterValidatorCandidate;
1006
+ type_arguments: [];
1007
+ }
483
1008
  interface RegisterValidatorCandidateEvent {
484
1009
  pool_address: MoveAddressType;
485
1010
  }
@@ -491,6 +1016,19 @@ export declare namespace stake {
491
1016
  data_decoded: RegisterValidatorCandidateEvent;
492
1017
  type_arguments: [];
493
1018
  }
1019
+ interface RotateConsensusKey {
1020
+ pool_address: MoveAddressType;
1021
+ old_consensus_pubkey: string;
1022
+ new_consensus_pubkey: string;
1023
+ }
1024
+ namespace RotateConsensusKey {
1025
+ const TYPE_QNAME = "0x1::stake::RotateConsensusKey";
1026
+ function type(): TypeDescriptor<RotateConsensusKey>;
1027
+ }
1028
+ interface RotateConsensusKeyInstance extends TypedEventInstance<RotateConsensusKey> {
1029
+ data_decoded: RotateConsensusKey;
1030
+ type_arguments: [];
1031
+ }
494
1032
  interface RotateConsensusKeyEvent {
495
1033
  pool_address: MoveAddressType;
496
1034
  old_consensus_pubkey: string;
@@ -504,6 +1042,19 @@ export declare namespace stake {
504
1042
  data_decoded: RotateConsensusKeyEvent;
505
1043
  type_arguments: [];
506
1044
  }
1045
+ interface SetOperator {
1046
+ pool_address: MoveAddressType;
1047
+ old_operator: MoveAddressType;
1048
+ new_operator: MoveAddressType;
1049
+ }
1050
+ namespace SetOperator {
1051
+ const TYPE_QNAME = "0x1::stake::SetOperator";
1052
+ function type(): TypeDescriptor<SetOperator>;
1053
+ }
1054
+ interface SetOperatorInstance extends TypedEventInstance<SetOperator> {
1055
+ data_decoded: SetOperator;
1056
+ type_arguments: [];
1057
+ }
507
1058
  interface SetOperatorEvent {
508
1059
  pool_address: MoveAddressType;
509
1060
  old_operator: MoveAddressType;
@@ -542,6 +1093,18 @@ export declare namespace stake {
542
1093
  const TYPE_QNAME = "0x1::stake::StakePool";
543
1094
  function type(): TypeDescriptor<StakePool>;
544
1095
  }
1096
+ interface UnlockStake {
1097
+ pool_address: MoveAddressType;
1098
+ amount_unlocked: bigint;
1099
+ }
1100
+ namespace UnlockStake {
1101
+ const TYPE_QNAME = "0x1::stake::UnlockStake";
1102
+ function type(): TypeDescriptor<UnlockStake>;
1103
+ }
1104
+ interface UnlockStakeInstance extends TypedEventInstance<UnlockStake> {
1105
+ data_decoded: UnlockStake;
1106
+ type_arguments: [];
1107
+ }
545
1108
  interface UnlockStakeEvent {
546
1109
  pool_address: MoveAddressType;
547
1110
  amount_unlocked: bigint;
@@ -554,6 +1117,21 @@ export declare namespace stake {
554
1117
  data_decoded: UnlockStakeEvent;
555
1118
  type_arguments: [];
556
1119
  }
1120
+ interface UpdateNetworkAndFullnodeAddresses {
1121
+ pool_address: MoveAddressType;
1122
+ old_network_addresses: string;
1123
+ new_network_addresses: string;
1124
+ old_fullnode_addresses: string;
1125
+ new_fullnode_addresses: string;
1126
+ }
1127
+ namespace UpdateNetworkAndFullnodeAddresses {
1128
+ const TYPE_QNAME = "0x1::stake::UpdateNetworkAndFullnodeAddresses";
1129
+ function type(): TypeDescriptor<UpdateNetworkAndFullnodeAddresses>;
1130
+ }
1131
+ interface UpdateNetworkAndFullnodeAddressesInstance extends TypedEventInstance<UpdateNetworkAndFullnodeAddresses> {
1132
+ data_decoded: UpdateNetworkAndFullnodeAddresses;
1133
+ type_arguments: [];
1134
+ }
557
1135
  interface UpdateNetworkAndFullnodeAddressesEvent {
558
1136
  pool_address: MoveAddressType;
559
1137
  old_network_addresses: string;
@@ -622,6 +1200,22 @@ export declare namespace stake {
622
1200
  const TYPE_QNAME = "0x1::stake::ValidatorSet";
623
1201
  function type(): TypeDescriptor<ValidatorSet>;
624
1202
  }
1203
+ interface ValidatorSetInstance extends TypedEventInstance<ValidatorSet> {
1204
+ data_decoded: ValidatorSet;
1205
+ type_arguments: [];
1206
+ }
1207
+ interface WithdrawStake {
1208
+ pool_address: MoveAddressType;
1209
+ amount_withdrawn: bigint;
1210
+ }
1211
+ namespace WithdrawStake {
1212
+ const TYPE_QNAME = "0x1::stake::WithdrawStake";
1213
+ function type(): TypeDescriptor<WithdrawStake>;
1214
+ }
1215
+ interface WithdrawStakeInstance extends TypedEventInstance<WithdrawStake> {
1216
+ data_decoded: WithdrawStake;
1217
+ type_arguments: [];
1218
+ }
625
1219
  interface WithdrawStakeEvent {
626
1220
  pool_address: MoveAddressType;
627
1221
  amount_withdrawn: bigint;
@@ -727,6 +1321,7 @@ export declare class object_ extends AptosBaseProcessor {
727
1321
  onEventDeriveRef(func: (event: object_.DeriveRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object_;
728
1322
  onEventExtendRef(func: (event: object_.ExtendRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object_;
729
1323
  onEventObject(func: (event: object_.ObjectInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object_;
1324
+ onEventTransfer(func: (event: object_.TransferInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object_;
730
1325
  onEventTransferEvent(func: (event: object_.TransferEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object_;
731
1326
  onEventTransferRef(func: (event: object_.TransferRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object_;
732
1327
  }
@@ -815,6 +1410,19 @@ export declare namespace object_ {
815
1410
  const TYPE_QNAME = "0x1::object::TombStone";
816
1411
  function type(): TypeDescriptor<TombStone>;
817
1412
  }
1413
+ interface Transfer {
1414
+ object: MoveAddressType;
1415
+ from: MoveAddressType;
1416
+ to: MoveAddressType;
1417
+ }
1418
+ namespace Transfer {
1419
+ const TYPE_QNAME = "0x1::object::Transfer";
1420
+ function type(): TypeDescriptor<Transfer>;
1421
+ }
1422
+ interface TransferInstance extends TypedEventInstance<Transfer> {
1423
+ data_decoded: Transfer;
1424
+ type_arguments: [];
1425
+ }
818
1426
  interface TransferEvent {
819
1427
  object: MoveAddressType;
820
1428
  from: MoveAddressType;
@@ -839,6 +1447,13 @@ export declare namespace object_ {
839
1447
  data_decoded: TransferRef;
840
1448
  type_arguments: [];
841
1449
  }
1450
+ interface Untransferable {
1451
+ dummy_field: Boolean;
1452
+ }
1453
+ namespace Untransferable {
1454
+ const TYPE_QNAME = "0x1::object::Untransferable";
1455
+ function type(): TypeDescriptor<Untransferable>;
1456
+ }
842
1457
  interface BurnPayload<T0 = any> extends TypedFunctionPayload<[object_.Object<T0>]> {
843
1458
  arguments_decoded: [object_.Object<T0>];
844
1459
  type_arguments: [string];
@@ -904,12 +1519,31 @@ export declare class voting extends AptosBaseProcessor {
904
1519
  constructor(options: AptosBindOptions);
905
1520
  static DEFAULT_OPTIONS: AptosBindOptions;
906
1521
  static bind(options?: Partial<AptosBindOptions>): voting;
1522
+ onEventCreateProposal(func: (event: voting.CreateProposalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
907
1523
  onEventCreateProposalEvent(func: (event: voting.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1524
+ onEventRegisterForum(func: (event: voting.RegisterForumInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
908
1525
  onEventRegisterForumEvent(func: (event: voting.RegisterForumEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
909
1526
  onEventResolveProposal(func: (event: voting.ResolveProposalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
1527
+ onEventVote(func: (event: voting.VoteInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
910
1528
  onEventVoteEvent(func: (event: voting.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): voting;
911
1529
  }
912
1530
  export declare namespace voting {
1531
+ interface CreateProposal {
1532
+ proposal_id: bigint;
1533
+ early_resolution_vote_threshold: option.Option<bigint>;
1534
+ execution_hash: string;
1535
+ expiration_secs: bigint;
1536
+ metadata: simple_map.SimpleMap<string, string>;
1537
+ min_vote_threshold: bigint;
1538
+ }
1539
+ namespace CreateProposal {
1540
+ const TYPE_QNAME = "0x1::voting::CreateProposal";
1541
+ function type(): TypeDescriptor<CreateProposal>;
1542
+ }
1543
+ interface CreateProposalInstance extends TypedEventInstance<CreateProposal> {
1544
+ data_decoded: CreateProposal;
1545
+ type_arguments: [];
1546
+ }
913
1547
  interface CreateProposalEvent {
914
1548
  proposal_id: bigint;
915
1549
  early_resolution_vote_threshold: option.Option<bigint>;
@@ -944,12 +1578,24 @@ export declare namespace voting {
944
1578
  const TYPE_QNAME = "0x1::voting::Proposal";
945
1579
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Proposal<T0>>;
946
1580
  }
947
- interface RegisterForumEvent {
1581
+ interface RegisterForum {
948
1582
  hosting_account: MoveAddressType;
949
1583
  proposal_type_info: type_info.TypeInfo;
950
1584
  }
951
- namespace RegisterForumEvent {
952
- const TYPE_QNAME = "0x1::voting::RegisterForumEvent";
1585
+ namespace RegisterForum {
1586
+ const TYPE_QNAME = "0x1::voting::RegisterForum";
1587
+ function type(): TypeDescriptor<RegisterForum>;
1588
+ }
1589
+ interface RegisterForumInstance extends TypedEventInstance<RegisterForum> {
1590
+ data_decoded: RegisterForum;
1591
+ type_arguments: [];
1592
+ }
1593
+ interface RegisterForumEvent {
1594
+ hosting_account: MoveAddressType;
1595
+ proposal_type_info: type_info.TypeInfo;
1596
+ }
1597
+ namespace RegisterForumEvent {
1598
+ const TYPE_QNAME = "0x1::voting::RegisterForumEvent";
953
1599
  function type(): TypeDescriptor<RegisterForumEvent>;
954
1600
  }
955
1601
  interface RegisterForumEventInstance extends TypedEventInstance<RegisterForumEvent> {
@@ -970,6 +1616,18 @@ export declare namespace voting {
970
1616
  data_decoded: ResolveProposal;
971
1617
  type_arguments: [];
972
1618
  }
1619
+ interface Vote {
1620
+ proposal_id: bigint;
1621
+ num_votes: bigint;
1622
+ }
1623
+ namespace Vote {
1624
+ const TYPE_QNAME = "0x1::voting::Vote";
1625
+ function type(): TypeDescriptor<Vote>;
1626
+ }
1627
+ interface VoteInstance extends TypedEventInstance<Vote> {
1628
+ data_decoded: Vote;
1629
+ type_arguments: [];
1630
+ }
973
1631
  interface VoteEvent {
974
1632
  proposal_id: bigint;
975
1633
  num_votes: bigint;
@@ -1013,8 +1671,10 @@ export declare class account extends AptosBaseProcessor {
1013
1671
  onEntryRevokeRotationCapability(func: (call: account.RevokeRotationCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
1014
1672
  onEntryRevokeSignerCapability(func: (call: account.RevokeSignerCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
1015
1673
  onEntryRotateAuthenticationKey(func: (call: account.RotateAuthenticationKeyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
1674
+ onEntryRotateAuthenticationKeyCall(func: (call: account.RotateAuthenticationKeyCallPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
1016
1675
  onEntryRotateAuthenticationKeyWithRotationCapability(func: (call: account.RotateAuthenticationKeyWithRotationCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
1017
1676
  onEventCoinRegisterEvent(func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
1677
+ onEventKeyRotation(func: (event: account.KeyRotationInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
1018
1678
  onEventKeyRotationEvent(func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
1019
1679
  onEventRotationCapability(func: (event: account.RotationCapabilityInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
1020
1680
  onEventSignerCapability(func: (event: account.SignerCapabilityInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): account;
@@ -1051,6 +1711,19 @@ export declare namespace account {
1051
1711
  data_decoded: CoinRegisterEvent;
1052
1712
  type_arguments: [];
1053
1713
  }
1714
+ interface KeyRotation {
1715
+ account: MoveAddressType;
1716
+ old_authentication_key: string;
1717
+ new_authentication_key: string;
1718
+ }
1719
+ namespace KeyRotation {
1720
+ const TYPE_QNAME = "0x1::account::KeyRotation";
1721
+ function type(): TypeDescriptor<KeyRotation>;
1722
+ }
1723
+ interface KeyRotationInstance extends TypedEventInstance<KeyRotation> {
1724
+ data_decoded: KeyRotation;
1725
+ type_arguments: [];
1726
+ }
1054
1727
  interface KeyRotationEvent {
1055
1728
  old_authentication_key: string;
1056
1729
  new_authentication_key: string;
@@ -1172,6 +1845,10 @@ export declare namespace account {
1172
1845
  arguments_decoded: [number, string, number, string, string, string];
1173
1846
  type_arguments: [];
1174
1847
  }
1848
+ interface RotateAuthenticationKeyCallPayload extends TypedFunctionPayload<[string]> {
1849
+ arguments_decoded: [string];
1850
+ type_arguments: [];
1851
+ }
1175
1852
  interface RotateAuthenticationKeyWithRotationCapabilityPayload extends TypedFunctionPayload<[MoveAddressType, number, string, string]> {
1176
1853
  arguments_decoded: [MoveAddressType, number, string, string];
1177
1854
  type_arguments: [];
@@ -1277,7 +1954,9 @@ export declare class version extends AptosBaseProcessor {
1277
1954
  constructor(options: AptosBindOptions);
1278
1955
  static DEFAULT_OPTIONS: AptosBindOptions;
1279
1956
  static bind(options?: Partial<AptosBindOptions>): version;
1957
+ onEntrySetForNextEpoch(func: (call: version.SetForNextEpochPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): version;
1280
1958
  onEntrySetVersion(func: (call: version.SetVersionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): version;
1959
+ onEventVersion(func: (event: version.VersionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): version;
1281
1960
  }
1282
1961
  export declare namespace version {
1283
1962
  interface SetVersionCapability {
@@ -1294,6 +1973,14 @@ export declare namespace version {
1294
1973
  const TYPE_QNAME = "0x1::version::Version";
1295
1974
  function type(): TypeDescriptor<Version>;
1296
1975
  }
1976
+ interface VersionInstance extends TypedEventInstance<Version> {
1977
+ data_decoded: Version;
1978
+ type_arguments: [];
1979
+ }
1980
+ interface SetForNextEpochPayload extends TypedFunctionPayload<[bigint]> {
1981
+ arguments_decoded: [bigint];
1982
+ type_arguments: [];
1983
+ }
1297
1984
  interface SetVersionPayload extends TypedFunctionPayload<[bigint]> {
1298
1985
  arguments_decoded: [bigint];
1299
1986
  type_arguments: [];
@@ -1309,6 +1996,7 @@ export declare class vesting extends AptosBaseProcessor {
1309
1996
  onEntryResetBeneficiary(func: (call: vesting.ResetBeneficiaryPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1310
1997
  onEntryResetLockup(func: (call: vesting.ResetLockupPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1311
1998
  onEntrySetBeneficiary(func: (call: vesting.SetBeneficiaryPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1999
+ onEntrySetBeneficiaryForOperator(func: (call: vesting.SetBeneficiaryForOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1312
2000
  onEntrySetBeneficiaryResetter(func: (call: vesting.SetBeneficiaryResetterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1313
2001
  onEntrySetManagementRole(func: (call: vesting.SetManagementRolePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1314
2002
  onEntryTerminateVestingContract(func: (call: vesting.TerminateVestingContractPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
@@ -1320,15 +2008,25 @@ export declare class vesting extends AptosBaseProcessor {
1320
2008
  onEntryUpdateVoter(func: (call: vesting.UpdateVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1321
2009
  onEntryVest(func: (call: vesting.VestPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1322
2010
  onEntryVestMany(func: (call: vesting.VestManyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2011
+ onEventAdminWithdraw(func: (event: vesting.AdminWithdrawInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1323
2012
  onEventAdminWithdrawEvent(func: (event: vesting.AdminWithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2013
+ onEventCreateVestingContract(func: (event: vesting.CreateVestingContractInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1324
2014
  onEventCreateVestingContractEvent(func: (event: vesting.CreateVestingContractEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2015
+ onEventDistribute(func: (event: vesting.DistributeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1325
2016
  onEventDistributeEvent(func: (event: vesting.DistributeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2017
+ onEventResetLockup(func: (event: vesting.ResetLockupInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1326
2018
  onEventResetLockupEvent(func: (event: vesting.ResetLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2019
+ onEventSetBeneficiary(func: (event: vesting.SetBeneficiaryInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1327
2020
  onEventSetBeneficiaryEvent(func: (event: vesting.SetBeneficiaryEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2021
+ onEventTerminate(func: (event: vesting.TerminateInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1328
2022
  onEventTerminateEvent(func: (event: vesting.TerminateEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2023
+ onEventUnlockRewards(func: (event: vesting.UnlockRewardsInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1329
2024
  onEventUnlockRewardsEvent(func: (event: vesting.UnlockRewardsEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2025
+ onEventUpdateOperator(func: (event: vesting.UpdateOperatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1330
2026
  onEventUpdateOperatorEvent(func: (event: vesting.UpdateOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2027
+ onEventUpdateVoter(func: (event: vesting.UpdateVoterInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1331
2028
  onEventUpdateVoterEvent(func: (event: vesting.UpdateVoterEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
2029
+ onEventVest(func: (event: vesting.VestInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1332
2030
  onEventVestEvent(func: (event: vesting.VestEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1333
2031
  onEventVestingSchedule(func: (event: vesting.VestingScheduleInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): vesting;
1334
2032
  }
@@ -1342,6 +2040,19 @@ export declare namespace vesting {
1342
2040
  const TYPE_QNAME = "0x1::vesting::AdminStore";
1343
2041
  function type(): TypeDescriptor<AdminStore>;
1344
2042
  }
2043
+ interface AdminWithdraw {
2044
+ admin: MoveAddressType;
2045
+ vesting_contract_address: MoveAddressType;
2046
+ amount: bigint;
2047
+ }
2048
+ namespace AdminWithdraw {
2049
+ const TYPE_QNAME = "0x1::vesting::AdminWithdraw";
2050
+ function type(): TypeDescriptor<AdminWithdraw>;
2051
+ }
2052
+ interface AdminWithdrawInstance extends TypedEventInstance<AdminWithdraw> {
2053
+ data_decoded: AdminWithdraw;
2054
+ type_arguments: [];
2055
+ }
1345
2056
  interface AdminWithdrawEvent {
1346
2057
  admin: MoveAddressType;
1347
2058
  vesting_contract_address: MoveAddressType;
@@ -1355,6 +2066,23 @@ export declare namespace vesting {
1355
2066
  data_decoded: AdminWithdrawEvent;
1356
2067
  type_arguments: [];
1357
2068
  }
2069
+ interface CreateVestingContract {
2070
+ operator: MoveAddressType;
2071
+ voter: MoveAddressType;
2072
+ grant_amount: bigint;
2073
+ withdrawal_address: MoveAddressType;
2074
+ vesting_contract_address: MoveAddressType;
2075
+ staking_pool_address: MoveAddressType;
2076
+ commission_percentage: bigint;
2077
+ }
2078
+ namespace CreateVestingContract {
2079
+ const TYPE_QNAME = "0x1::vesting::CreateVestingContract";
2080
+ function type(): TypeDescriptor<CreateVestingContract>;
2081
+ }
2082
+ interface CreateVestingContractInstance extends TypedEventInstance<CreateVestingContract> {
2083
+ data_decoded: CreateVestingContract;
2084
+ type_arguments: [];
2085
+ }
1358
2086
  interface CreateVestingContractEvent {
1359
2087
  operator: MoveAddressType;
1360
2088
  voter: MoveAddressType;
@@ -1372,6 +2100,19 @@ export declare namespace vesting {
1372
2100
  data_decoded: CreateVestingContractEvent;
1373
2101
  type_arguments: [];
1374
2102
  }
2103
+ interface Distribute {
2104
+ admin: MoveAddressType;
2105
+ vesting_contract_address: MoveAddressType;
2106
+ amount: bigint;
2107
+ }
2108
+ namespace Distribute {
2109
+ const TYPE_QNAME = "0x1::vesting::Distribute";
2110
+ function type(): TypeDescriptor<Distribute>;
2111
+ }
2112
+ interface DistributeInstance extends TypedEventInstance<Distribute> {
2113
+ data_decoded: Distribute;
2114
+ type_arguments: [];
2115
+ }
1375
2116
  interface DistributeEvent {
1376
2117
  admin: MoveAddressType;
1377
2118
  vesting_contract_address: MoveAddressType;
@@ -1385,6 +2126,20 @@ export declare namespace vesting {
1385
2126
  data_decoded: DistributeEvent;
1386
2127
  type_arguments: [];
1387
2128
  }
2129
+ interface ResetLockup {
2130
+ admin: MoveAddressType;
2131
+ vesting_contract_address: MoveAddressType;
2132
+ staking_pool_address: MoveAddressType;
2133
+ new_lockup_expiration_secs: bigint;
2134
+ }
2135
+ namespace ResetLockup {
2136
+ const TYPE_QNAME = "0x1::vesting::ResetLockup";
2137
+ function type(): TypeDescriptor<ResetLockup>;
2138
+ }
2139
+ interface ResetLockupInstance extends TypedEventInstance<ResetLockup> {
2140
+ data_decoded: ResetLockup;
2141
+ type_arguments: [];
2142
+ }
1388
2143
  interface ResetLockupEvent {
1389
2144
  admin: MoveAddressType;
1390
2145
  vesting_contract_address: MoveAddressType;
@@ -1399,6 +2154,21 @@ export declare namespace vesting {
1399
2154
  data_decoded: ResetLockupEvent;
1400
2155
  type_arguments: [];
1401
2156
  }
2157
+ interface SetBeneficiary {
2158
+ admin: MoveAddressType;
2159
+ vesting_contract_address: MoveAddressType;
2160
+ shareholder: MoveAddressType;
2161
+ old_beneficiary: MoveAddressType;
2162
+ new_beneficiary: MoveAddressType;
2163
+ }
2164
+ namespace SetBeneficiary {
2165
+ const TYPE_QNAME = "0x1::vesting::SetBeneficiary";
2166
+ function type(): TypeDescriptor<SetBeneficiary>;
2167
+ }
2168
+ interface SetBeneficiaryInstance extends TypedEventInstance<SetBeneficiary> {
2169
+ data_decoded: SetBeneficiary;
2170
+ type_arguments: [];
2171
+ }
1402
2172
  interface SetBeneficiaryEvent {
1403
2173
  admin: MoveAddressType;
1404
2174
  vesting_contract_address: MoveAddressType;
@@ -1424,6 +2194,18 @@ export declare namespace vesting {
1424
2194
  const TYPE_QNAME = "0x1::vesting::StakingInfo";
1425
2195
  function type(): TypeDescriptor<StakingInfo>;
1426
2196
  }
2197
+ interface Terminate {
2198
+ admin: MoveAddressType;
2199
+ vesting_contract_address: MoveAddressType;
2200
+ }
2201
+ namespace Terminate {
2202
+ const TYPE_QNAME = "0x1::vesting::Terminate";
2203
+ function type(): TypeDescriptor<Terminate>;
2204
+ }
2205
+ interface TerminateInstance extends TypedEventInstance<Terminate> {
2206
+ data_decoded: Terminate;
2207
+ type_arguments: [];
2208
+ }
1427
2209
  interface TerminateEvent {
1428
2210
  admin: MoveAddressType;
1429
2211
  vesting_contract_address: MoveAddressType;
@@ -1436,6 +2218,20 @@ export declare namespace vesting {
1436
2218
  data_decoded: TerminateEvent;
1437
2219
  type_arguments: [];
1438
2220
  }
2221
+ interface UnlockRewards {
2222
+ admin: MoveAddressType;
2223
+ vesting_contract_address: MoveAddressType;
2224
+ staking_pool_address: MoveAddressType;
2225
+ amount: bigint;
2226
+ }
2227
+ namespace UnlockRewards {
2228
+ const TYPE_QNAME = "0x1::vesting::UnlockRewards";
2229
+ function type(): TypeDescriptor<UnlockRewards>;
2230
+ }
2231
+ interface UnlockRewardsInstance extends TypedEventInstance<UnlockRewards> {
2232
+ data_decoded: UnlockRewards;
2233
+ type_arguments: [];
2234
+ }
1439
2235
  interface UnlockRewardsEvent {
1440
2236
  admin: MoveAddressType;
1441
2237
  vesting_contract_address: MoveAddressType;
@@ -1450,6 +2246,22 @@ export declare namespace vesting {
1450
2246
  data_decoded: UnlockRewardsEvent;
1451
2247
  type_arguments: [];
1452
2248
  }
2249
+ interface UpdateOperator {
2250
+ admin: MoveAddressType;
2251
+ vesting_contract_address: MoveAddressType;
2252
+ staking_pool_address: MoveAddressType;
2253
+ old_operator: MoveAddressType;
2254
+ new_operator: MoveAddressType;
2255
+ commission_percentage: bigint;
2256
+ }
2257
+ namespace UpdateOperator {
2258
+ const TYPE_QNAME = "0x1::vesting::UpdateOperator";
2259
+ function type(): TypeDescriptor<UpdateOperator>;
2260
+ }
2261
+ interface UpdateOperatorInstance extends TypedEventInstance<UpdateOperator> {
2262
+ data_decoded: UpdateOperator;
2263
+ type_arguments: [];
2264
+ }
1453
2265
  interface UpdateOperatorEvent {
1454
2266
  admin: MoveAddressType;
1455
2267
  vesting_contract_address: MoveAddressType;
@@ -1466,6 +2278,21 @@ export declare namespace vesting {
1466
2278
  data_decoded: UpdateOperatorEvent;
1467
2279
  type_arguments: [];
1468
2280
  }
2281
+ interface UpdateVoter {
2282
+ admin: MoveAddressType;
2283
+ vesting_contract_address: MoveAddressType;
2284
+ staking_pool_address: MoveAddressType;
2285
+ old_voter: MoveAddressType;
2286
+ new_voter: MoveAddressType;
2287
+ }
2288
+ namespace UpdateVoter {
2289
+ const TYPE_QNAME = "0x1::vesting::UpdateVoter";
2290
+ function type(): TypeDescriptor<UpdateVoter>;
2291
+ }
2292
+ interface UpdateVoterInstance extends TypedEventInstance<UpdateVoter> {
2293
+ data_decoded: UpdateVoter;
2294
+ type_arguments: [];
2295
+ }
1469
2296
  interface UpdateVoterEvent {
1470
2297
  admin: MoveAddressType;
1471
2298
  vesting_contract_address: MoveAddressType;
@@ -1481,6 +2308,21 @@ export declare namespace vesting {
1481
2308
  data_decoded: UpdateVoterEvent;
1482
2309
  type_arguments: [];
1483
2310
  }
2311
+ interface Vest {
2312
+ admin: MoveAddressType;
2313
+ vesting_contract_address: MoveAddressType;
2314
+ staking_pool_address: MoveAddressType;
2315
+ period_vested: bigint;
2316
+ amount: bigint;
2317
+ }
2318
+ namespace Vest {
2319
+ const TYPE_QNAME = "0x1::vesting::Vest";
2320
+ function type(): TypeDescriptor<Vest>;
2321
+ }
2322
+ interface VestInstance extends TypedEventInstance<Vest> {
2323
+ data_decoded: Vest;
2324
+ type_arguments: [];
2325
+ }
1484
2326
  interface VestEvent {
1485
2327
  admin: MoveAddressType;
1486
2328
  vesting_contract_address: MoveAddressType;
@@ -1569,6 +2411,10 @@ export declare namespace vesting {
1569
2411
  arguments_decoded: [MoveAddressType, MoveAddressType, MoveAddressType];
1570
2412
  type_arguments: [];
1571
2413
  }
2414
+ interface SetBeneficiaryForOperatorPayload extends TypedFunctionPayload<[MoveAddressType]> {
2415
+ arguments_decoded: [MoveAddressType];
2416
+ type_arguments: [];
2417
+ }
1572
2418
  interface SetBeneficiaryResetterPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
1573
2419
  arguments_decoded: [MoveAddressType, MoveAddressType];
1574
2420
  type_arguments: [];
@@ -1710,6 +2556,13 @@ export declare namespace features {
1710
2556
  const TYPE_QNAME = "0x1::features::Features";
1711
2557
  function type(): TypeDescriptor<Features>;
1712
2558
  }
2559
+ interface PendingFeatures {
2560
+ features: string;
2561
+ }
2562
+ namespace PendingFeatures {
2563
+ const TYPE_QNAME = "0x1::features::PendingFeatures";
2564
+ function type(): TypeDescriptor<PendingFeatures>;
2565
+ }
1713
2566
  }
1714
2567
  export declare namespace from_bcs { }
1715
2568
  export declare namespace pool_u64 {
@@ -1920,6 +2773,34 @@ export declare namespace comparator {
1920
2773
  }
1921
2774
  }
1922
2775
  export declare namespace math_fixed { }
2776
+ export declare class randomness extends AptosBaseProcessor {
2777
+ constructor(options: AptosBindOptions);
2778
+ static DEFAULT_OPTIONS: AptosBindOptions;
2779
+ static bind(options?: Partial<AptosBindOptions>): randomness;
2780
+ onEventRandomnessGeneratedEvent(func: (event: randomness.RandomnessGeneratedEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness;
2781
+ }
2782
+ export declare namespace randomness {
2783
+ interface PerBlockRandomness {
2784
+ epoch: bigint;
2785
+ round: bigint;
2786
+ seed: option.Option<string>;
2787
+ }
2788
+ namespace PerBlockRandomness {
2789
+ const TYPE_QNAME = "0x1::randomness::PerBlockRandomness";
2790
+ function type(): TypeDescriptor<PerBlockRandomness>;
2791
+ }
2792
+ interface RandomnessGeneratedEvent {
2793
+ dummy_field: Boolean;
2794
+ }
2795
+ namespace RandomnessGeneratedEvent {
2796
+ const TYPE_QNAME = "0x1::randomness::RandomnessGeneratedEvent";
2797
+ function type(): TypeDescriptor<RandomnessGeneratedEvent>;
2798
+ }
2799
+ interface RandomnessGeneratedEventInstance extends TypedEventInstance<RandomnessGeneratedEvent> {
2800
+ data_decoded: RandomnessGeneratedEvent;
2801
+ type_arguments: [];
2802
+ }
2803
+ }
1923
2804
  export declare class simple_map extends AptosBaseProcessor {
1924
2805
  constructor(options: AptosBindOptions);
1925
2806
  static DEFAULT_OPTIONS: AptosBindOptions;
@@ -2088,6 +2969,7 @@ export declare class gas_schedule extends AptosBaseProcessor {
2088
2969
  static DEFAULT_OPTIONS: AptosBindOptions;
2089
2970
  static bind(options?: Partial<AptosBindOptions>): gas_schedule;
2090
2971
  onEventGasEntry(func: (event: gas_schedule.GasEntryInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): gas_schedule;
2972
+ onEventGasScheduleV2(func: (event: gas_schedule.GasScheduleV2Instance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): gas_schedule;
2091
2973
  }
2092
2974
  export declare namespace gas_schedule {
2093
2975
  interface GasEntry {
@@ -2117,6 +2999,10 @@ export declare namespace gas_schedule {
2117
2999
  const TYPE_QNAME = "0x1::gas_schedule::GasScheduleV2";
2118
3000
  function type(): TypeDescriptor<GasScheduleV2>;
2119
3001
  }
3002
+ interface GasScheduleV2Instance extends TypedEventInstance<GasScheduleV2> {
3003
+ data_decoded: GasScheduleV2;
3004
+ type_arguments: [];
3005
+ }
2120
3006
  }
2121
3007
  export declare class managed_coin extends AptosBaseProcessor {
2122
3008
  constructor(options: AptosBindOptions);
@@ -2254,9 +3140,23 @@ export declare class aggregator_v2 extends AptosBaseProcessor {
2254
3140
  constructor(options: AptosBindOptions);
2255
3141
  static DEFAULT_OPTIONS: AptosBindOptions;
2256
3142
  static bind(options?: Partial<AptosBindOptions>): aggregator_v2;
3143
+ onEventAggregator(func: (event: aggregator_v2.AggregatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aggregator_v2;
2257
3144
  onEventAggregatorSnapshot(func: (event: aggregator_v2.AggregatorSnapshotInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aggregator_v2;
3145
+ onEventDerivedStringSnapshot(func: (event: aggregator_v2.DerivedStringSnapshotInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aggregator_v2;
2258
3146
  }
2259
3147
  export declare namespace aggregator_v2 {
3148
+ interface Aggregator<T0> {
3149
+ value: T0;
3150
+ max_value: T0;
3151
+ }
3152
+ namespace Aggregator {
3153
+ const TYPE_QNAME = "0x1::aggregator_v2::Aggregator";
3154
+ function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Aggregator<T0>>;
3155
+ }
3156
+ interface AggregatorInstance extends TypedEventInstance<Aggregator<any>> {
3157
+ data_decoded: Aggregator<any>;
3158
+ type_arguments: [string];
3159
+ }
2260
3160
  interface AggregatorSnapshot<T0> {
2261
3161
  value: T0;
2262
3162
  }
@@ -2268,6 +3168,18 @@ export declare namespace aggregator_v2 {
2268
3168
  data_decoded: AggregatorSnapshot<any>;
2269
3169
  type_arguments: [string];
2270
3170
  }
3171
+ interface DerivedStringSnapshot {
3172
+ value: string;
3173
+ padding: string;
3174
+ }
3175
+ namespace DerivedStringSnapshot {
3176
+ const TYPE_QNAME = "0x1::aggregator_v2::DerivedStringSnapshot";
3177
+ function type(): TypeDescriptor<DerivedStringSnapshot>;
3178
+ }
3179
+ interface DerivedStringSnapshotInstance extends TypedEventInstance<DerivedStringSnapshot> {
3180
+ data_decoded: DerivedStringSnapshot;
3181
+ type_arguments: [];
3182
+ }
2271
3183
  }
2272
3184
  export declare class aptos_account extends AptosBaseProcessor {
2273
3185
  constructor(options: AptosBindOptions);
@@ -2279,9 +3191,22 @@ export declare class aptos_account extends AptosBaseProcessor {
2279
3191
  onEntrySetAllowDirectCoinTransfers(func: (call: aptos_account.SetAllowDirectCoinTransfersPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
2280
3192
  onEntryTransfer(func: (call: aptos_account.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
2281
3193
  onEntryTransferCoins(func: (call: aptos_account.TransferCoinsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
3194
+ onEventDirectCoinTransferConfigUpdated(func: (event: aptos_account.DirectCoinTransferConfigUpdatedInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
2282
3195
  onEventDirectCoinTransferConfigUpdatedEvent(func: (event: aptos_account.DirectCoinTransferConfigUpdatedEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
2283
3196
  }
2284
3197
  export declare namespace aptos_account {
3198
+ interface DirectCoinTransferConfigUpdated {
3199
+ account: MoveAddressType;
3200
+ new_allow_direct_transfers: Boolean;
3201
+ }
3202
+ namespace DirectCoinTransferConfigUpdated {
3203
+ const TYPE_QNAME = "0x1::aptos_account::DirectCoinTransferConfigUpdated";
3204
+ function type(): TypeDescriptor<DirectCoinTransferConfigUpdated>;
3205
+ }
3206
+ interface DirectCoinTransferConfigUpdatedInstance extends TypedEventInstance<DirectCoinTransferConfigUpdated> {
3207
+ data_decoded: DirectCoinTransferConfigUpdated;
3208
+ type_arguments: [];
3209
+ }
2285
3210
  interface DirectCoinTransferConfigUpdatedEvent {
2286
3211
  new_allow_direct_transfers: Boolean;
2287
3212
  }
@@ -2326,6 +3251,129 @@ export declare namespace aptos_account {
2326
3251
  type_arguments: [string];
2327
3252
  }
2328
3253
  }
3254
+ export declare namespace bn254_algebra {
3255
+ interface FormatFq12LscLsb {
3256
+ dummy_field: Boolean;
3257
+ }
3258
+ namespace FormatFq12LscLsb {
3259
+ const TYPE_QNAME = "0x1::bn254_algebra::FormatFq12LscLsb";
3260
+ function type(): TypeDescriptor<FormatFq12LscLsb>;
3261
+ }
3262
+ interface FormatFqLsb {
3263
+ dummy_field: Boolean;
3264
+ }
3265
+ namespace FormatFqLsb {
3266
+ const TYPE_QNAME = "0x1::bn254_algebra::FormatFqLsb";
3267
+ function type(): TypeDescriptor<FormatFqLsb>;
3268
+ }
3269
+ interface FormatFqMsb {
3270
+ dummy_field: Boolean;
3271
+ }
3272
+ namespace FormatFqMsb {
3273
+ const TYPE_QNAME = "0x1::bn254_algebra::FormatFqMsb";
3274
+ function type(): TypeDescriptor<FormatFqMsb>;
3275
+ }
3276
+ interface FormatFrLsb {
3277
+ dummy_field: Boolean;
3278
+ }
3279
+ namespace FormatFrLsb {
3280
+ const TYPE_QNAME = "0x1::bn254_algebra::FormatFrLsb";
3281
+ function type(): TypeDescriptor<FormatFrLsb>;
3282
+ }
3283
+ interface FormatFrMsb {
3284
+ dummy_field: Boolean;
3285
+ }
3286
+ namespace FormatFrMsb {
3287
+ const TYPE_QNAME = "0x1::bn254_algebra::FormatFrMsb";
3288
+ function type(): TypeDescriptor<FormatFrMsb>;
3289
+ }
3290
+ interface FormatG1Compr {
3291
+ dummy_field: Boolean;
3292
+ }
3293
+ namespace FormatG1Compr {
3294
+ const TYPE_QNAME = "0x1::bn254_algebra::FormatG1Compr";
3295
+ function type(): TypeDescriptor<FormatG1Compr>;
3296
+ }
3297
+ interface FormatG1Uncompr {
3298
+ dummy_field: Boolean;
3299
+ }
3300
+ namespace FormatG1Uncompr {
3301
+ const TYPE_QNAME = "0x1::bn254_algebra::FormatG1Uncompr";
3302
+ function type(): TypeDescriptor<FormatG1Uncompr>;
3303
+ }
3304
+ interface FormatG2Compr {
3305
+ dummy_field: Boolean;
3306
+ }
3307
+ namespace FormatG2Compr {
3308
+ const TYPE_QNAME = "0x1::bn254_algebra::FormatG2Compr";
3309
+ function type(): TypeDescriptor<FormatG2Compr>;
3310
+ }
3311
+ interface FormatG2Uncompr {
3312
+ dummy_field: Boolean;
3313
+ }
3314
+ namespace FormatG2Uncompr {
3315
+ const TYPE_QNAME = "0x1::bn254_algebra::FormatG2Uncompr";
3316
+ function type(): TypeDescriptor<FormatG2Uncompr>;
3317
+ }
3318
+ interface FormatGt {
3319
+ dummy_field: Boolean;
3320
+ }
3321
+ namespace FormatGt {
3322
+ const TYPE_QNAME = "0x1::bn254_algebra::FormatGt";
3323
+ function type(): TypeDescriptor<FormatGt>;
3324
+ }
3325
+ interface Fq {
3326
+ dummy_field: Boolean;
3327
+ }
3328
+ namespace Fq {
3329
+ const TYPE_QNAME = "0x1::bn254_algebra::Fq";
3330
+ function type(): TypeDescriptor<Fq>;
3331
+ }
3332
+ interface Fq12 {
3333
+ dummy_field: Boolean;
3334
+ }
3335
+ namespace Fq12 {
3336
+ const TYPE_QNAME = "0x1::bn254_algebra::Fq12";
3337
+ function type(): TypeDescriptor<Fq12>;
3338
+ }
3339
+ interface Fr {
3340
+ dummy_field: Boolean;
3341
+ }
3342
+ namespace Fr {
3343
+ const TYPE_QNAME = "0x1::bn254_algebra::Fr";
3344
+ function type(): TypeDescriptor<Fr>;
3345
+ }
3346
+ interface G1 {
3347
+ dummy_field: Boolean;
3348
+ }
3349
+ namespace G1 {
3350
+ const TYPE_QNAME = "0x1::bn254_algebra::G1";
3351
+ function type(): TypeDescriptor<G1>;
3352
+ }
3353
+ interface G2 {
3354
+ dummy_field: Boolean;
3355
+ }
3356
+ namespace G2 {
3357
+ const TYPE_QNAME = "0x1::bn254_algebra::G2";
3358
+ function type(): TypeDescriptor<G2>;
3359
+ }
3360
+ interface Gt {
3361
+ dummy_field: Boolean;
3362
+ }
3363
+ namespace Gt {
3364
+ const TYPE_QNAME = "0x1::bn254_algebra::Gt";
3365
+ function type(): TypeDescriptor<Gt>;
3366
+ }
3367
+ }
3368
+ export declare namespace config_buffer {
3369
+ interface PendingConfigs {
3370
+ configs: simple_map.SimpleMap<string, any_.Any>;
3371
+ }
3372
+ namespace PendingConfigs {
3373
+ const TYPE_QNAME = "0x1::config_buffer::PendingConfigs";
3374
+ function type(): TypeDescriptor<PendingConfigs>;
3375
+ }
3376
+ }
2329
3377
  export declare namespace create_signer { }
2330
3378
  export declare class fixed_point32 extends AptosBaseProcessor {
2331
3379
  constructor(options: AptosBindOptions);
@@ -2365,6 +3413,27 @@ export declare namespace fixed_point64 {
2365
3413
  type_arguments: [];
2366
3414
  }
2367
3415
  }
3416
+ export declare class function_info extends AptosBaseProcessor {
3417
+ constructor(options: AptosBindOptions);
3418
+ static DEFAULT_OPTIONS: AptosBindOptions;
3419
+ static bind(options?: Partial<AptosBindOptions>): function_info;
3420
+ onEventFunctionInfo(func: (event: function_info.FunctionInfoInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): function_info;
3421
+ }
3422
+ export declare namespace function_info {
3423
+ interface FunctionInfo {
3424
+ module_address: MoveAddressType;
3425
+ module_name: string;
3426
+ function_name: string;
3427
+ }
3428
+ namespace FunctionInfo {
3429
+ const TYPE_QNAME = "0x1::function_info::FunctionInfo";
3430
+ function type(): TypeDescriptor<FunctionInfo>;
3431
+ }
3432
+ interface FunctionInfoInstance extends TypedEventInstance<FunctionInfo> {
3433
+ data_decoded: FunctionInfo;
3434
+ type_arguments: [];
3435
+ }
3436
+ }
2368
3437
  export declare class multi_ed25519 extends AptosBaseProcessor {
2369
3438
  constructor(options: AptosBindOptions);
2370
3439
  static DEFAULT_OPTIONS: AptosBindOptions;
@@ -2504,11 +3573,15 @@ export declare class fungible_asset extends AptosBaseProcessor {
2504
3573
  static DEFAULT_OPTIONS: AptosBindOptions;
2505
3574
  static bind(options?: Partial<AptosBindOptions>): fungible_asset;
2506
3575
  onEntryTransfer(func: (call: fungible_asset.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3576
+ onEntryUpgradeStoreToConcurrent(func: (call: fungible_asset.UpgradeStoreToConcurrentPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
2507
3577
  onEventBurnRef(func: (event: fungible_asset.BurnRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3578
+ onEventDeposit(func: (event: fungible_asset.DepositInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
2508
3579
  onEventDepositEvent(func: (event: fungible_asset.DepositEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3580
+ onEventFrozen(func: (event: fungible_asset.FrozenInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
2509
3581
  onEventFrozenEvent(func: (event: fungible_asset.FrozenEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
2510
3582
  onEventMintRef(func: (event: fungible_asset.MintRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
2511
3583
  onEventTransferRef(func: (event: fungible_asset.TransferRefInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
3584
+ onEventWithdraw(func: (event: fungible_asset.WithdrawInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
2512
3585
  onEventWithdrawEvent(func: (event: fungible_asset.WithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
2513
3586
  }
2514
3587
  export declare namespace fungible_asset {
@@ -2523,17 +3596,64 @@ export declare namespace fungible_asset {
2523
3596
  data_decoded: BurnRef;
2524
3597
  type_arguments: [];
2525
3598
  }
2526
- interface DepositEvent {
2527
- amount: bigint;
3599
+ interface ConcurrentFungibleBalance {
3600
+ balance: aggregator_v2.Aggregator<bigint>;
2528
3601
  }
2529
- namespace DepositEvent {
2530
- const TYPE_QNAME = "0x1::fungible_asset::DepositEvent";
2531
- function type(): TypeDescriptor<DepositEvent>;
3602
+ namespace ConcurrentFungibleBalance {
3603
+ const TYPE_QNAME = "0x1::fungible_asset::ConcurrentFungibleBalance";
3604
+ function type(): TypeDescriptor<ConcurrentFungibleBalance>;
2532
3605
  }
2533
- interface DepositEventInstance extends TypedEventInstance<DepositEvent> {
3606
+ interface ConcurrentSupply {
3607
+ current: aggregator_v2.Aggregator<bigint>;
3608
+ }
3609
+ namespace ConcurrentSupply {
3610
+ const TYPE_QNAME = "0x1::fungible_asset::ConcurrentSupply";
3611
+ function type(): TypeDescriptor<ConcurrentSupply>;
3612
+ }
3613
+ interface Deposit {
3614
+ store: MoveAddressType;
3615
+ amount: bigint;
3616
+ }
3617
+ namespace Deposit {
3618
+ const TYPE_QNAME = "0x1::fungible_asset::Deposit";
3619
+ function type(): TypeDescriptor<Deposit>;
3620
+ }
3621
+ interface DepositInstance extends TypedEventInstance<Deposit> {
3622
+ data_decoded: Deposit;
3623
+ type_arguments: [];
3624
+ }
3625
+ interface DepositEvent {
3626
+ amount: bigint;
3627
+ }
3628
+ namespace DepositEvent {
3629
+ const TYPE_QNAME = "0x1::fungible_asset::DepositEvent";
3630
+ function type(): TypeDescriptor<DepositEvent>;
3631
+ }
3632
+ interface DepositEventInstance extends TypedEventInstance<DepositEvent> {
2534
3633
  data_decoded: DepositEvent;
2535
3634
  type_arguments: [];
2536
3635
  }
3636
+ interface DispatchFunctionStore {
3637
+ withdraw_function: option.Option<function_info.FunctionInfo>;
3638
+ deposit_function: option.Option<function_info.FunctionInfo>;
3639
+ derived_balance_function: option.Option<function_info.FunctionInfo>;
3640
+ }
3641
+ namespace DispatchFunctionStore {
3642
+ const TYPE_QNAME = "0x1::fungible_asset::DispatchFunctionStore";
3643
+ function type(): TypeDescriptor<DispatchFunctionStore>;
3644
+ }
3645
+ interface Frozen {
3646
+ store: MoveAddressType;
3647
+ frozen: Boolean;
3648
+ }
3649
+ namespace Frozen {
3650
+ const TYPE_QNAME = "0x1::fungible_asset::Frozen";
3651
+ function type(): TypeDescriptor<Frozen>;
3652
+ }
3653
+ interface FrozenInstance extends TypedEventInstance<Frozen> {
3654
+ data_decoded: Frozen;
3655
+ type_arguments: [];
3656
+ }
2537
3657
  interface FrozenEvent {
2538
3658
  frozen: Boolean;
2539
3659
  }
@@ -2612,6 +3732,25 @@ export declare namespace fungible_asset {
2612
3732
  data_decoded: TransferRef;
2613
3733
  type_arguments: [];
2614
3734
  }
3735
+ interface Untransferable {
3736
+ dummy_field: Boolean;
3737
+ }
3738
+ namespace Untransferable {
3739
+ const TYPE_QNAME = "0x1::fungible_asset::Untransferable";
3740
+ function type(): TypeDescriptor<Untransferable>;
3741
+ }
3742
+ interface Withdraw {
3743
+ store: MoveAddressType;
3744
+ amount: bigint;
3745
+ }
3746
+ namespace Withdraw {
3747
+ const TYPE_QNAME = "0x1::fungible_asset::Withdraw";
3748
+ function type(): TypeDescriptor<Withdraw>;
3749
+ }
3750
+ interface WithdrawInstance extends TypedEventInstance<Withdraw> {
3751
+ data_decoded: Withdraw;
3752
+ type_arguments: [];
3753
+ }
2615
3754
  interface WithdrawEvent {
2616
3755
  amount: bigint;
2617
3756
  }
@@ -2631,6 +3770,10 @@ export declare namespace fungible_asset {
2631
3770
  arguments_decoded: [object_.Object<T0>, object_.Object<T0>, bigint];
2632
3771
  type_arguments: [string];
2633
3772
  }
3773
+ interface UpgradeStoreToConcurrentPayload<T0 = any> extends TypedFunctionPayload<[object_.Object<T0>]> {
3774
+ arguments_decoded: [object_.Object<T0>];
3775
+ type_arguments: [string];
3776
+ }
2634
3777
  }
2635
3778
  export declare namespace staking_config {
2636
3779
  interface StakingConfig {
@@ -2663,31 +3806,67 @@ export declare class delegation_pool extends AptosBaseProcessor {
2663
3806
  static DEFAULT_OPTIONS: AptosBindOptions;
2664
3807
  static bind(options?: Partial<AptosBindOptions>): delegation_pool;
2665
3808
  onEntryAddStake(func: (call: delegation_pool.AddStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3809
+ onEntryAllowlistDelegator(func: (call: delegation_pool.AllowlistDelegatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2666
3810
  onEntryCreateProposal(func: (call: delegation_pool.CreateProposalPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2667
3811
  onEntryDelegateVotingPower(func: (call: delegation_pool.DelegateVotingPowerPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3812
+ onEntryDisableDelegatorsAllowlisting(func: (call: delegation_pool.DisableDelegatorsAllowlistingPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3813
+ onEntryEnableDelegatorsAllowlisting(func: (call: delegation_pool.EnableDelegatorsAllowlistingPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2668
3814
  onEntryEnablePartialGovernanceVoting(func: (call: delegation_pool.EnablePartialGovernanceVotingPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3815
+ onEntryEvictDelegator(func: (call: delegation_pool.EvictDelegatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2669
3816
  onEntryInitializeDelegationPool(func: (call: delegation_pool.InitializeDelegationPoolPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2670
3817
  onEntryReactivateStake(func: (call: delegation_pool.ReactivateStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3818
+ onEntryRemoveDelegatorFromAllowlist(func: (call: delegation_pool.RemoveDelegatorFromAllowlistPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3819
+ onEntrySetBeneficiaryForOperator(func: (call: delegation_pool.SetBeneficiaryForOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2671
3820
  onEntrySetDelegatedVoter(func: (call: delegation_pool.SetDelegatedVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2672
3821
  onEntrySetOperator(func: (call: delegation_pool.SetOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2673
3822
  onEntrySynchronizeDelegationPool(func: (call: delegation_pool.SynchronizeDelegationPoolPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2674
3823
  onEntryUnlock(func: (call: delegation_pool.UnlockPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3824
+ onEntryUpdateCommissionPercentage(func: (call: delegation_pool.UpdateCommissionPercentagePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2675
3825
  onEntryVote(func: (call: delegation_pool.VotePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2676
3826
  onEntryWithdraw(func: (call: delegation_pool.WithdrawPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3827
+ onEventAddStake(func: (event: delegation_pool.AddStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2677
3828
  onEventAddStakeEvent(func: (event: delegation_pool.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3829
+ onEventAllowlistDelegator(func: (event: delegation_pool.AllowlistDelegatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3830
+ onEventCommissionPercentageChange(func: (event: delegation_pool.CommissionPercentageChangeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3831
+ onEventCreateProposal(func: (event: delegation_pool.CreateProposalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2678
3832
  onEventCreateProposalEvent(func: (event: delegation_pool.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3833
+ onEventDelegateVotingPower(func: (event: delegation_pool.DelegateVotingPowerInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2679
3834
  onEventDelegateVotingPowerEvent(func: (event: delegation_pool.DelegateVotingPowerEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2680
3835
  onEventDelegatedVotes(func: (event: delegation_pool.DelegatedVotesInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3836
+ onEventDisableDelegatorsAllowlisting(func: (event: delegation_pool.DisableDelegatorsAllowlistingInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3837
+ onEventDistributeCommission(func: (event: delegation_pool.DistributeCommissionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2681
3838
  onEventDistributeCommissionEvent(func: (event: delegation_pool.DistributeCommissionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3839
+ onEventEnableDelegatorsAllowlisting(func: (event: delegation_pool.EnableDelegatorsAllowlistingInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3840
+ onEventEvictDelegator(func: (event: delegation_pool.EvictDelegatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2682
3841
  onEventObservedLockupCycle(func: (event: delegation_pool.ObservedLockupCycleInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3842
+ onEventReactivateStake(func: (event: delegation_pool.ReactivateStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2683
3843
  onEventReactivateStakeEvent(func: (event: delegation_pool.ReactivateStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3844
+ onEventRemoveDelegatorFromAllowlist(func: (event: delegation_pool.RemoveDelegatorFromAllowlistInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3845
+ onEventSetBeneficiaryForOperator(func: (event: delegation_pool.SetBeneficiaryForOperatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3846
+ onEventUnlockStake(func: (event: delegation_pool.UnlockStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2684
3847
  onEventUnlockStakeEvent(func: (event: delegation_pool.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3848
+ onEventVote(func: (event: delegation_pool.VoteInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2685
3849
  onEventVoteDelegation(func: (event: delegation_pool.VoteDelegationInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2686
3850
  onEventVoteEvent(func: (event: delegation_pool.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2687
3851
  onEventVotingRecordKey(func: (event: delegation_pool.VotingRecordKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
3852
+ onEventWithdrawStake(func: (event: delegation_pool.WithdrawStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2688
3853
  onEventWithdrawStakeEvent(func: (event: delegation_pool.WithdrawStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
2689
3854
  }
2690
3855
  export declare namespace delegation_pool {
3856
+ interface AddStake {
3857
+ pool_address: MoveAddressType;
3858
+ delegator_address: MoveAddressType;
3859
+ amount_added: bigint;
3860
+ add_stake_fee: bigint;
3861
+ }
3862
+ namespace AddStake {
3863
+ const TYPE_QNAME = "0x1::delegation_pool::AddStake";
3864
+ function type(): TypeDescriptor<AddStake>;
3865
+ }
3866
+ interface AddStakeInstance extends TypedEventInstance<AddStake> {
3867
+ data_decoded: AddStake;
3868
+ type_arguments: [];
3869
+ }
2691
3870
  interface AddStakeEvent {
2692
3871
  pool_address: MoveAddressType;
2693
3872
  delegator_address: MoveAddressType;
@@ -2702,6 +3881,51 @@ export declare namespace delegation_pool {
2702
3881
  data_decoded: AddStakeEvent;
2703
3882
  type_arguments: [];
2704
3883
  }
3884
+ interface AllowlistDelegator {
3885
+ pool_address: MoveAddressType;
3886
+ delegator_address: MoveAddressType;
3887
+ }
3888
+ namespace AllowlistDelegator {
3889
+ const TYPE_QNAME = "0x1::delegation_pool::AllowlistDelegator";
3890
+ function type(): TypeDescriptor<AllowlistDelegator>;
3891
+ }
3892
+ interface AllowlistDelegatorInstance extends TypedEventInstance<AllowlistDelegator> {
3893
+ data_decoded: AllowlistDelegator;
3894
+ type_arguments: [];
3895
+ }
3896
+ interface BeneficiaryForOperator {
3897
+ beneficiary_for_operator: MoveAddressType;
3898
+ }
3899
+ namespace BeneficiaryForOperator {
3900
+ const TYPE_QNAME = "0x1::delegation_pool::BeneficiaryForOperator";
3901
+ function type(): TypeDescriptor<BeneficiaryForOperator>;
3902
+ }
3903
+ interface CommissionPercentageChange {
3904
+ pool_address: MoveAddressType;
3905
+ owner: MoveAddressType;
3906
+ commission_percentage_next_lockup_cycle: bigint;
3907
+ }
3908
+ namespace CommissionPercentageChange {
3909
+ const TYPE_QNAME = "0x1::delegation_pool::CommissionPercentageChange";
3910
+ function type(): TypeDescriptor<CommissionPercentageChange>;
3911
+ }
3912
+ interface CommissionPercentageChangeInstance extends TypedEventInstance<CommissionPercentageChange> {
3913
+ data_decoded: CommissionPercentageChange;
3914
+ type_arguments: [];
3915
+ }
3916
+ interface CreateProposal {
3917
+ proposal_id: bigint;
3918
+ voter: MoveAddressType;
3919
+ delegation_pool: MoveAddressType;
3920
+ }
3921
+ namespace CreateProposal {
3922
+ const TYPE_QNAME = "0x1::delegation_pool::CreateProposal";
3923
+ function type(): TypeDescriptor<CreateProposal>;
3924
+ }
3925
+ interface CreateProposalInstance extends TypedEventInstance<CreateProposal> {
3926
+ data_decoded: CreateProposal;
3927
+ type_arguments: [];
3928
+ }
2705
3929
  interface CreateProposalEvent {
2706
3930
  proposal_id: bigint;
2707
3931
  voter: MoveAddressType;
@@ -2715,6 +3939,19 @@ export declare namespace delegation_pool {
2715
3939
  data_decoded: CreateProposalEvent;
2716
3940
  type_arguments: [];
2717
3941
  }
3942
+ interface DelegateVotingPower {
3943
+ pool_address: MoveAddressType;
3944
+ delegator: MoveAddressType;
3945
+ voter: MoveAddressType;
3946
+ }
3947
+ namespace DelegateVotingPower {
3948
+ const TYPE_QNAME = "0x1::delegation_pool::DelegateVotingPower";
3949
+ function type(): TypeDescriptor<DelegateVotingPower>;
3950
+ }
3951
+ interface DelegateVotingPowerInstance extends TypedEventInstance<DelegateVotingPower> {
3952
+ data_decoded: DelegateVotingPower;
3953
+ type_arguments: [];
3954
+ }
2718
3955
  interface DelegateVotingPowerEvent {
2719
3956
  pool_address: MoveAddressType;
2720
3957
  delegator: MoveAddressType;
@@ -2760,6 +3997,13 @@ export declare namespace delegation_pool {
2760
3997
  const TYPE_QNAME = "0x1::delegation_pool::DelegationPool";
2761
3998
  function type(): TypeDescriptor<DelegationPool>;
2762
3999
  }
4000
+ interface DelegationPoolAllowlisting {
4001
+ allowlist: smart_table.SmartTable<MoveAddressType, Boolean>;
4002
+ }
4003
+ namespace DelegationPoolAllowlisting {
4004
+ const TYPE_QNAME = "0x1::delegation_pool::DelegationPoolAllowlisting";
4005
+ function type(): TypeDescriptor<DelegationPoolAllowlisting>;
4006
+ }
2763
4007
  interface DelegationPoolOwnership {
2764
4008
  pool_address: MoveAddressType;
2765
4009
  }
@@ -2767,6 +4011,32 @@ export declare namespace delegation_pool {
2767
4011
  const TYPE_QNAME = "0x1::delegation_pool::DelegationPoolOwnership";
2768
4012
  function type(): TypeDescriptor<DelegationPoolOwnership>;
2769
4013
  }
4014
+ interface DisableDelegatorsAllowlisting {
4015
+ pool_address: MoveAddressType;
4016
+ }
4017
+ namespace DisableDelegatorsAllowlisting {
4018
+ const TYPE_QNAME = "0x1::delegation_pool::DisableDelegatorsAllowlisting";
4019
+ function type(): TypeDescriptor<DisableDelegatorsAllowlisting>;
4020
+ }
4021
+ interface DisableDelegatorsAllowlistingInstance extends TypedEventInstance<DisableDelegatorsAllowlisting> {
4022
+ data_decoded: DisableDelegatorsAllowlisting;
4023
+ type_arguments: [];
4024
+ }
4025
+ interface DistributeCommission {
4026
+ pool_address: MoveAddressType;
4027
+ operator: MoveAddressType;
4028
+ beneficiary: MoveAddressType;
4029
+ commission_active: bigint;
4030
+ commission_pending_inactive: bigint;
4031
+ }
4032
+ namespace DistributeCommission {
4033
+ const TYPE_QNAME = "0x1::delegation_pool::DistributeCommission";
4034
+ function type(): TypeDescriptor<DistributeCommission>;
4035
+ }
4036
+ interface DistributeCommissionInstance extends TypedEventInstance<DistributeCommission> {
4037
+ data_decoded: DistributeCommission;
4038
+ type_arguments: [];
4039
+ }
2770
4040
  interface DistributeCommissionEvent {
2771
4041
  pool_address: MoveAddressType;
2772
4042
  operator: MoveAddressType;
@@ -2781,6 +4051,29 @@ export declare namespace delegation_pool {
2781
4051
  data_decoded: DistributeCommissionEvent;
2782
4052
  type_arguments: [];
2783
4053
  }
4054
+ interface EnableDelegatorsAllowlisting {
4055
+ pool_address: MoveAddressType;
4056
+ }
4057
+ namespace EnableDelegatorsAllowlisting {
4058
+ const TYPE_QNAME = "0x1::delegation_pool::EnableDelegatorsAllowlisting";
4059
+ function type(): TypeDescriptor<EnableDelegatorsAllowlisting>;
4060
+ }
4061
+ interface EnableDelegatorsAllowlistingInstance extends TypedEventInstance<EnableDelegatorsAllowlisting> {
4062
+ data_decoded: EnableDelegatorsAllowlisting;
4063
+ type_arguments: [];
4064
+ }
4065
+ interface EvictDelegator {
4066
+ pool_address: MoveAddressType;
4067
+ delegator_address: MoveAddressType;
4068
+ }
4069
+ namespace EvictDelegator {
4070
+ const TYPE_QNAME = "0x1::delegation_pool::EvictDelegator";
4071
+ function type(): TypeDescriptor<EvictDelegator>;
4072
+ }
4073
+ interface EvictDelegatorInstance extends TypedEventInstance<EvictDelegator> {
4074
+ data_decoded: EvictDelegator;
4075
+ type_arguments: [];
4076
+ }
2784
4077
  interface GovernanceRecords {
2785
4078
  votes: smart_table.SmartTable<delegation_pool.VotingRecordKey, bigint>;
2786
4079
  votes_per_proposal: smart_table.SmartTable<bigint, bigint>;
@@ -2794,6 +4087,14 @@ export declare namespace delegation_pool {
2794
4087
  const TYPE_QNAME = "0x1::delegation_pool::GovernanceRecords";
2795
4088
  function type(): TypeDescriptor<GovernanceRecords>;
2796
4089
  }
4090
+ interface NextCommissionPercentage {
4091
+ commission_percentage_next_lockup_cycle: bigint;
4092
+ effective_after_secs: bigint;
4093
+ }
4094
+ namespace NextCommissionPercentage {
4095
+ const TYPE_QNAME = "0x1::delegation_pool::NextCommissionPercentage";
4096
+ function type(): TypeDescriptor<NextCommissionPercentage>;
4097
+ }
2797
4098
  interface ObservedLockupCycle {
2798
4099
  index: bigint;
2799
4100
  }
@@ -2805,6 +4106,19 @@ export declare namespace delegation_pool {
2805
4106
  data_decoded: ObservedLockupCycle;
2806
4107
  type_arguments: [];
2807
4108
  }
4109
+ interface ReactivateStake {
4110
+ pool_address: MoveAddressType;
4111
+ delegator_address: MoveAddressType;
4112
+ amount_reactivated: bigint;
4113
+ }
4114
+ namespace ReactivateStake {
4115
+ const TYPE_QNAME = "0x1::delegation_pool::ReactivateStake";
4116
+ function type(): TypeDescriptor<ReactivateStake>;
4117
+ }
4118
+ interface ReactivateStakeInstance extends TypedEventInstance<ReactivateStake> {
4119
+ data_decoded: ReactivateStake;
4120
+ type_arguments: [];
4121
+ }
2808
4122
  interface ReactivateStakeEvent {
2809
4123
  pool_address: MoveAddressType;
2810
4124
  delegator_address: MoveAddressType;
@@ -2818,6 +4132,44 @@ export declare namespace delegation_pool {
2818
4132
  data_decoded: ReactivateStakeEvent;
2819
4133
  type_arguments: [];
2820
4134
  }
4135
+ interface RemoveDelegatorFromAllowlist {
4136
+ pool_address: MoveAddressType;
4137
+ delegator_address: MoveAddressType;
4138
+ }
4139
+ namespace RemoveDelegatorFromAllowlist {
4140
+ const TYPE_QNAME = "0x1::delegation_pool::RemoveDelegatorFromAllowlist";
4141
+ function type(): TypeDescriptor<RemoveDelegatorFromAllowlist>;
4142
+ }
4143
+ interface RemoveDelegatorFromAllowlistInstance extends TypedEventInstance<RemoveDelegatorFromAllowlist> {
4144
+ data_decoded: RemoveDelegatorFromAllowlist;
4145
+ type_arguments: [];
4146
+ }
4147
+ interface SetBeneficiaryForOperator {
4148
+ operator: MoveAddressType;
4149
+ old_beneficiary: MoveAddressType;
4150
+ new_beneficiary: MoveAddressType;
4151
+ }
4152
+ namespace SetBeneficiaryForOperator {
4153
+ const TYPE_QNAME = "0x1::delegation_pool::SetBeneficiaryForOperator";
4154
+ function type(): TypeDescriptor<SetBeneficiaryForOperator>;
4155
+ }
4156
+ interface SetBeneficiaryForOperatorInstance extends TypedEventInstance<SetBeneficiaryForOperator> {
4157
+ data_decoded: SetBeneficiaryForOperator;
4158
+ type_arguments: [];
4159
+ }
4160
+ interface UnlockStake {
4161
+ pool_address: MoveAddressType;
4162
+ delegator_address: MoveAddressType;
4163
+ amount_unlocked: bigint;
4164
+ }
4165
+ namespace UnlockStake {
4166
+ const TYPE_QNAME = "0x1::delegation_pool::UnlockStake";
4167
+ function type(): TypeDescriptor<UnlockStake>;
4168
+ }
4169
+ interface UnlockStakeInstance extends TypedEventInstance<UnlockStake> {
4170
+ data_decoded: UnlockStake;
4171
+ type_arguments: [];
4172
+ }
2821
4173
  interface UnlockStakeEvent {
2822
4174
  pool_address: MoveAddressType;
2823
4175
  delegator_address: MoveAddressType;
@@ -2831,6 +4183,21 @@ export declare namespace delegation_pool {
2831
4183
  data_decoded: UnlockStakeEvent;
2832
4184
  type_arguments: [];
2833
4185
  }
4186
+ interface Vote {
4187
+ voter: MoveAddressType;
4188
+ proposal_id: bigint;
4189
+ delegation_pool: MoveAddressType;
4190
+ num_votes: bigint;
4191
+ should_pass: Boolean;
4192
+ }
4193
+ namespace Vote {
4194
+ const TYPE_QNAME = "0x1::delegation_pool::Vote";
4195
+ function type(): TypeDescriptor<Vote>;
4196
+ }
4197
+ interface VoteInstance extends TypedEventInstance<Vote> {
4198
+ data_decoded: Vote;
4199
+ type_arguments: [];
4200
+ }
2834
4201
  interface VoteDelegation {
2835
4202
  voter: MoveAddressType;
2836
4203
  pending_voter: MoveAddressType;
@@ -2871,6 +4238,19 @@ export declare namespace delegation_pool {
2871
4238
  data_decoded: VotingRecordKey;
2872
4239
  type_arguments: [];
2873
4240
  }
4241
+ interface WithdrawStake {
4242
+ pool_address: MoveAddressType;
4243
+ delegator_address: MoveAddressType;
4244
+ amount_withdrawn: bigint;
4245
+ }
4246
+ namespace WithdrawStake {
4247
+ const TYPE_QNAME = "0x1::delegation_pool::WithdrawStake";
4248
+ function type(): TypeDescriptor<WithdrawStake>;
4249
+ }
4250
+ interface WithdrawStakeInstance extends TypedEventInstance<WithdrawStake> {
4251
+ data_decoded: WithdrawStake;
4252
+ type_arguments: [];
4253
+ }
2874
4254
  interface WithdrawStakeEvent {
2875
4255
  pool_address: MoveAddressType;
2876
4256
  delegator_address: MoveAddressType;
@@ -2888,6 +4268,10 @@ export declare namespace delegation_pool {
2888
4268
  arguments_decoded: [MoveAddressType, bigint];
2889
4269
  type_arguments: [];
2890
4270
  }
4271
+ interface AllowlistDelegatorPayload extends TypedFunctionPayload<[MoveAddressType]> {
4272
+ arguments_decoded: [MoveAddressType];
4273
+ type_arguments: [];
4274
+ }
2891
4275
  interface CreateProposalPayload extends TypedFunctionPayload<[
2892
4276
  MoveAddressType,
2893
4277
  string,
@@ -2902,10 +4286,22 @@ export declare namespace delegation_pool {
2902
4286
  arguments_decoded: [MoveAddressType, MoveAddressType];
2903
4287
  type_arguments: [];
2904
4288
  }
4289
+ interface DisableDelegatorsAllowlistingPayload extends TypedFunctionPayload<[]> {
4290
+ arguments_decoded: [];
4291
+ type_arguments: [];
4292
+ }
4293
+ interface EnableDelegatorsAllowlistingPayload extends TypedFunctionPayload<[]> {
4294
+ arguments_decoded: [];
4295
+ type_arguments: [];
4296
+ }
2905
4297
  interface EnablePartialGovernanceVotingPayload extends TypedFunctionPayload<[MoveAddressType]> {
2906
4298
  arguments_decoded: [MoveAddressType];
2907
4299
  type_arguments: [];
2908
4300
  }
4301
+ interface EvictDelegatorPayload extends TypedFunctionPayload<[MoveAddressType]> {
4302
+ arguments_decoded: [MoveAddressType];
4303
+ type_arguments: [];
4304
+ }
2909
4305
  interface InitializeDelegationPoolPayload extends TypedFunctionPayload<[bigint, string]> {
2910
4306
  arguments_decoded: [bigint, string];
2911
4307
  type_arguments: [];
@@ -2914,6 +4310,14 @@ export declare namespace delegation_pool {
2914
4310
  arguments_decoded: [MoveAddressType, bigint];
2915
4311
  type_arguments: [];
2916
4312
  }
4313
+ interface RemoveDelegatorFromAllowlistPayload extends TypedFunctionPayload<[MoveAddressType]> {
4314
+ arguments_decoded: [MoveAddressType];
4315
+ type_arguments: [];
4316
+ }
4317
+ interface SetBeneficiaryForOperatorPayload extends TypedFunctionPayload<[MoveAddressType]> {
4318
+ arguments_decoded: [MoveAddressType];
4319
+ type_arguments: [];
4320
+ }
2917
4321
  interface SetDelegatedVoterPayload extends TypedFunctionPayload<[MoveAddressType]> {
2918
4322
  arguments_decoded: [MoveAddressType];
2919
4323
  type_arguments: [];
@@ -2930,6 +4334,10 @@ export declare namespace delegation_pool {
2930
4334
  arguments_decoded: [MoveAddressType, bigint];
2931
4335
  type_arguments: [];
2932
4336
  }
4337
+ interface UpdateCommissionPercentagePayload extends TypedFunctionPayload<[bigint]> {
4338
+ arguments_decoded: [bigint];
4339
+ type_arguments: [];
4340
+ }
2933
4341
  interface VotePayload extends TypedFunctionPayload<[MoveAddressType, bigint, bigint, Boolean]> {
2934
4342
  arguments_decoded: [MoveAddressType, bigint, bigint, Boolean];
2935
4343
  type_arguments: [];
@@ -2939,10 +4347,60 @@ export declare namespace delegation_pool {
2939
4347
  type_arguments: [];
2940
4348
  }
2941
4349
  }
4350
+ export declare class keyless_account extends AptosBaseProcessor {
4351
+ constructor(options: AptosBindOptions);
4352
+ static DEFAULT_OPTIONS: AptosBindOptions;
4353
+ static bind(options?: Partial<AptosBindOptions>): keyless_account;
4354
+ onEventConfiguration(func: (event: keyless_account.ConfigurationInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): keyless_account;
4355
+ onEventGroth16VerificationKey(func: (event: keyless_account.Groth16VerificationKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): keyless_account;
4356
+ }
4357
+ export declare namespace keyless_account {
4358
+ interface Configuration {
4359
+ override_aud_vals: string[];
4360
+ max_signatures_per_txn: number;
4361
+ max_exp_horizon_secs: bigint;
4362
+ training_wheels_pubkey: option.Option<string>;
4363
+ max_commited_epk_bytes: number;
4364
+ max_iss_val_bytes: number;
4365
+ max_extra_field_bytes: number;
4366
+ max_jwt_header_b64_bytes: number;
4367
+ }
4368
+ namespace Configuration {
4369
+ const TYPE_QNAME = "0x1::keyless_account::Configuration";
4370
+ function type(): TypeDescriptor<Configuration>;
4371
+ }
4372
+ interface ConfigurationInstance extends TypedEventInstance<Configuration> {
4373
+ data_decoded: Configuration;
4374
+ type_arguments: [];
4375
+ }
4376
+ interface Groth16VerificationKey {
4377
+ alpha_g1: string;
4378
+ beta_g2: string;
4379
+ gamma_g2: string;
4380
+ delta_g2: string;
4381
+ gamma_abc_g1: string[];
4382
+ }
4383
+ namespace Groth16VerificationKey {
4384
+ const TYPE_QNAME = "0x1::keyless_account::Groth16VerificationKey";
4385
+ function type(): TypeDescriptor<Groth16VerificationKey>;
4386
+ }
4387
+ interface Groth16VerificationKeyInstance extends TypedEventInstance<Groth16VerificationKey> {
4388
+ data_decoded: Groth16VerificationKey;
4389
+ type_arguments: [];
4390
+ }
4391
+ interface Group {
4392
+ dummy_field: Boolean;
4393
+ }
4394
+ namespace Group {
4395
+ const TYPE_QNAME = "0x1::keyless_account::Group";
4396
+ function type(): TypeDescriptor<Group>;
4397
+ }
4398
+ }
2942
4399
  export declare class reconfiguration extends AptosBaseProcessor {
2943
4400
  constructor(options: AptosBindOptions);
2944
4401
  static DEFAULT_OPTIONS: AptosBindOptions;
2945
4402
  static bind(options?: Partial<AptosBindOptions>): reconfiguration;
4403
+ onEventNewEpoch(func: (event: reconfiguration.NewEpochInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): reconfiguration;
2946
4404
  onEventNewEpochEvent(func: (event: reconfiguration.NewEpochEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): reconfiguration;
2947
4405
  }
2948
4406
  export declare namespace reconfiguration {
@@ -2962,6 +4420,17 @@ export declare namespace reconfiguration {
2962
4420
  const TYPE_QNAME = "0x1::reconfiguration::DisableReconfiguration";
2963
4421
  function type(): TypeDescriptor<DisableReconfiguration>;
2964
4422
  }
4423
+ interface NewEpoch {
4424
+ epoch: bigint;
4425
+ }
4426
+ namespace NewEpoch {
4427
+ const TYPE_QNAME = "0x1::reconfiguration::NewEpoch";
4428
+ function type(): TypeDescriptor<NewEpoch>;
4429
+ }
4430
+ interface NewEpochInstance extends TypedEventInstance<NewEpoch> {
4431
+ data_decoded: NewEpoch;
4432
+ type_arguments: [];
4433
+ }
2965
4434
  interface NewEpochEvent {
2966
4435
  epoch: bigint;
2967
4436
  }
@@ -2978,6 +4447,7 @@ export declare class transaction_fee extends AptosBaseProcessor {
2978
4447
  constructor(options: AptosBindOptions);
2979
4448
  static DEFAULT_OPTIONS: AptosBindOptions;
2980
4449
  static bind(options?: Partial<AptosBindOptions>): transaction_fee;
4450
+ onEntryConvertToAptosFaBurnRef(func: (call: transaction_fee.ConvertToAptosFaBurnRefPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): transaction_fee;
2981
4451
  onEventFeeStatement(func: (event: transaction_fee.FeeStatementInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): transaction_fee;
2982
4452
  }
2983
4453
  export declare namespace transaction_fee {
@@ -2995,6 +4465,13 @@ export declare namespace transaction_fee {
2995
4465
  const TYPE_QNAME = "0x1::transaction_fee::AptosCoinMintCapability";
2996
4466
  function type(): TypeDescriptor<AptosCoinMintCapability>;
2997
4467
  }
4468
+ interface AptosFABurnCapabilities {
4469
+ burn_ref: fungible_asset.BurnRef;
4470
+ }
4471
+ namespace AptosFABurnCapabilities {
4472
+ const TYPE_QNAME = "0x1::transaction_fee::AptosFABurnCapabilities";
4473
+ function type(): TypeDescriptor<AptosFABurnCapabilities>;
4474
+ }
2998
4475
  interface CollectedFeesPerBlock {
2999
4476
  amount: coin.AggregatableCoin<aptos_coin.AptosCoin>;
3000
4477
  proposer: option.Option<MoveAddressType>;
@@ -3019,19 +4496,31 @@ export declare namespace transaction_fee {
3019
4496
  data_decoded: FeeStatement;
3020
4497
  type_arguments: [];
3021
4498
  }
4499
+ interface ConvertToAptosFaBurnRefPayload extends TypedFunctionPayload<[]> {
4500
+ arguments_decoded: [];
4501
+ type_arguments: [];
4502
+ }
3022
4503
  }
3023
4504
  export declare class aptos_governance extends AptosBaseProcessor {
3024
4505
  constructor(options: AptosBindOptions);
3025
4506
  static DEFAULT_OPTIONS: AptosBindOptions;
3026
4507
  static bind(options?: Partial<AptosBindOptions>): aptos_governance;
3027
4508
  onEntryAddApprovedScriptHashScript(func: (call: aptos_governance.AddApprovedScriptHashScriptPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4509
+ onEntryBatchPartialVote(func: (call: aptos_governance.BatchPartialVotePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4510
+ onEntryBatchVote(func: (call: aptos_governance.BatchVotePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
3028
4511
  onEntryCreateProposal(func: (call: aptos_governance.CreateProposalPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
3029
4512
  onEntryCreateProposalV2(func: (call: aptos_governance.CreateProposalV2Payload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4513
+ onEntryForceEndEpoch(func: (call: aptos_governance.ForceEndEpochPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4514
+ onEntryForceEndEpochTestOnly(func: (call: aptos_governance.ForceEndEpochTestOnlyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
3030
4515
  onEntryPartialVote(func: (call: aptos_governance.PartialVotePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4516
+ onEntryReconfigure(func: (call: aptos_governance.ReconfigurePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
3031
4517
  onEntryVote(func: (call: aptos_governance.VotePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4518
+ onEventCreateProposal(func: (event: aptos_governance.CreateProposalInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
3032
4519
  onEventCreateProposalEvent(func: (event: aptos_governance.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
3033
4520
  onEventRecordKey(func: (event: aptos_governance.RecordKeyInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4521
+ onEventUpdateConfig(func: (event: aptos_governance.UpdateConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
3034
4522
  onEventUpdateConfigEvent(func: (event: aptos_governance.UpdateConfigEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
4523
+ onEventVote(func: (event: aptos_governance.VoteInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
3035
4524
  onEventVoteEvent(func: (event: aptos_governance.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
3036
4525
  }
3037
4526
  export declare namespace aptos_governance {
@@ -3042,6 +4531,21 @@ export declare namespace aptos_governance {
3042
4531
  const TYPE_QNAME = "0x1::aptos_governance::ApprovedExecutionHashes";
3043
4532
  function type(): TypeDescriptor<ApprovedExecutionHashes>;
3044
4533
  }
4534
+ interface CreateProposal {
4535
+ proposer: MoveAddressType;
4536
+ stake_pool: MoveAddressType;
4537
+ proposal_id: bigint;
4538
+ execution_hash: string;
4539
+ proposal_metadata: simple_map.SimpleMap<string, string>;
4540
+ }
4541
+ namespace CreateProposal {
4542
+ const TYPE_QNAME = "0x1::aptos_governance::CreateProposal";
4543
+ function type(): TypeDescriptor<CreateProposal>;
4544
+ }
4545
+ interface CreateProposalInstance extends TypedEventInstance<CreateProposal> {
4546
+ data_decoded: CreateProposal;
4547
+ type_arguments: [];
4548
+ }
3045
4549
  interface CreateProposalEvent {
3046
4550
  proposer: MoveAddressType;
3047
4551
  stake_pool: MoveAddressType;
@@ -3094,6 +4598,19 @@ export declare namespace aptos_governance {
3094
4598
  data_decoded: RecordKey;
3095
4599
  type_arguments: [];
3096
4600
  }
4601
+ interface UpdateConfig {
4602
+ min_voting_threshold: bigint;
4603
+ required_proposer_stake: bigint;
4604
+ voting_duration_secs: bigint;
4605
+ }
4606
+ namespace UpdateConfig {
4607
+ const TYPE_QNAME = "0x1::aptos_governance::UpdateConfig";
4608
+ function type(): TypeDescriptor<UpdateConfig>;
4609
+ }
4610
+ interface UpdateConfigInstance extends TypedEventInstance<UpdateConfig> {
4611
+ data_decoded: UpdateConfig;
4612
+ type_arguments: [];
4613
+ }
3097
4614
  interface UpdateConfigEvent {
3098
4615
  min_voting_threshold: bigint;
3099
4616
  required_proposer_stake: bigint;
@@ -3107,6 +4624,21 @@ export declare namespace aptos_governance {
3107
4624
  data_decoded: UpdateConfigEvent;
3108
4625
  type_arguments: [];
3109
4626
  }
4627
+ interface Vote {
4628
+ proposal_id: bigint;
4629
+ voter: MoveAddressType;
4630
+ stake_pool: MoveAddressType;
4631
+ num_votes: bigint;
4632
+ should_pass: Boolean;
4633
+ }
4634
+ namespace Vote {
4635
+ const TYPE_QNAME = "0x1::aptos_governance::Vote";
4636
+ function type(): TypeDescriptor<Vote>;
4637
+ }
4638
+ interface VoteInstance extends TypedEventInstance<Vote> {
4639
+ data_decoded: Vote;
4640
+ type_arguments: [];
4641
+ }
3110
4642
  interface VoteEvent {
3111
4643
  proposal_id: bigint;
3112
4644
  voter: MoveAddressType;
@@ -3140,6 +4672,14 @@ export declare namespace aptos_governance {
3140
4672
  arguments_decoded: [bigint];
3141
4673
  type_arguments: [];
3142
4674
  }
4675
+ interface BatchPartialVotePayload extends TypedFunctionPayload<[MoveAddressType[], bigint, bigint, Boolean]> {
4676
+ arguments_decoded: [MoveAddressType[], bigint, bigint, Boolean];
4677
+ type_arguments: [];
4678
+ }
4679
+ interface BatchVotePayload extends TypedFunctionPayload<[MoveAddressType[], bigint, Boolean]> {
4680
+ arguments_decoded: [MoveAddressType[], bigint, Boolean];
4681
+ type_arguments: [];
4682
+ }
3143
4683
  interface CreateProposalPayload extends TypedFunctionPayload<[MoveAddressType, string, string, string]> {
3144
4684
  arguments_decoded: [MoveAddressType, string, string, string];
3145
4685
  type_arguments: [];
@@ -3154,10 +4694,22 @@ export declare namespace aptos_governance {
3154
4694
  arguments_decoded: [MoveAddressType, string, string, string, Boolean];
3155
4695
  type_arguments: [];
3156
4696
  }
4697
+ interface ForceEndEpochPayload extends TypedFunctionPayload<[]> {
4698
+ arguments_decoded: [];
4699
+ type_arguments: [];
4700
+ }
4701
+ interface ForceEndEpochTestOnlyPayload extends TypedFunctionPayload<[]> {
4702
+ arguments_decoded: [];
4703
+ type_arguments: [];
4704
+ }
3157
4705
  interface PartialVotePayload extends TypedFunctionPayload<[MoveAddressType, bigint, bigint, Boolean]> {
3158
4706
  arguments_decoded: [MoveAddressType, bigint, bigint, Boolean];
3159
4707
  type_arguments: [];
3160
4708
  }
4709
+ interface ReconfigurePayload extends TypedFunctionPayload<[]> {
4710
+ arguments_decoded: [];
4711
+ type_arguments: [];
4712
+ }
3161
4713
  interface VotePayload extends TypedFunctionPayload<[MoveAddressType, bigint, Boolean]> {
3162
4714
  arguments_decoded: [MoveAddressType, bigint, Boolean];
3163
4715
  type_arguments: [];
@@ -3270,6 +4822,12 @@ export declare namespace bls12381_algebra {
3270
4822
  function type(): TypeDescriptor<HashG2XmdSha256SswuRo>;
3271
4823
  }
3272
4824
  }
4825
+ export declare class consensus_config extends AptosBaseProcessor {
4826
+ constructor(options: AptosBindOptions);
4827
+ static DEFAULT_OPTIONS: AptosBindOptions;
4828
+ static bind(options?: Partial<AptosBindOptions>): consensus_config;
4829
+ onEventConsensusConfig(func: (event: consensus_config.ConsensusConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): consensus_config;
4830
+ }
3273
4831
  export declare namespace consensus_config {
3274
4832
  interface ConsensusConfig {
3275
4833
  config: string;
@@ -3278,6 +4836,16 @@ export declare namespace consensus_config {
3278
4836
  const TYPE_QNAME = "0x1::consensus_config::ConsensusConfig";
3279
4837
  function type(): TypeDescriptor<ConsensusConfig>;
3280
4838
  }
4839
+ interface ConsensusConfigInstance extends TypedEventInstance<ConsensusConfig> {
4840
+ data_decoded: ConsensusConfig;
4841
+ type_arguments: [];
4842
+ }
4843
+ }
4844
+ export declare class execution_config extends AptosBaseProcessor {
4845
+ constructor(options: AptosBindOptions);
4846
+ static DEFAULT_OPTIONS: AptosBindOptions;
4847
+ static bind(options?: Partial<AptosBindOptions>): execution_config;
4848
+ onEventExecutionConfig(func: (event: execution_config.ExecutionConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): execution_config;
3281
4849
  }
3282
4850
  export declare namespace execution_config {
3283
4851
  interface ExecutionConfig {
@@ -3287,6 +4855,10 @@ export declare namespace execution_config {
3287
4855
  const TYPE_QNAME = "0x1::execution_config::ExecutionConfig";
3288
4856
  function type(): TypeDescriptor<ExecutionConfig>;
3289
4857
  }
4858
+ interface ExecutionConfigInstance extends TypedEventInstance<ExecutionConfig> {
4859
+ data_decoded: ExecutionConfig;
4860
+ type_arguments: [];
4861
+ }
3290
4862
  }
3291
4863
  export declare class multisig_account extends AptosBaseProcessor {
3292
4864
  constructor(options: AptosBindOptions);
@@ -3304,6 +4876,7 @@ export declare class multisig_account extends AptosBaseProcessor {
3304
4876
  onEntryCreateWithOwners(func: (call: multisig_account.CreateWithOwnersPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3305
4877
  onEntryCreateWithOwnersThenRemoveBootstrapper(func: (call: multisig_account.CreateWithOwnersThenRemoveBootstrapperPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3306
4878
  onEntryExecuteRejectedTransaction(func: (call: multisig_account.ExecuteRejectedTransactionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4879
+ onEntryExecuteRejectedTransactions(func: (call: multisig_account.ExecuteRejectedTransactionsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3307
4880
  onEntryRejectTransaction(func: (call: multisig_account.RejectTransactionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3308
4881
  onEntryRemoveOwner(func: (call: multisig_account.RemoveOwnerPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3309
4882
  onEntryRemoveOwners(func: (call: multisig_account.RemoveOwnersPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
@@ -3312,20 +4885,43 @@ export declare class multisig_account extends AptosBaseProcessor {
3312
4885
  onEntrySwapOwnersAndUpdateSignaturesRequired(func: (call: multisig_account.SwapOwnersAndUpdateSignaturesRequiredPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3313
4886
  onEntryUpdateMetadata(func: (call: multisig_account.UpdateMetadataPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3314
4887
  onEntryUpdateSignaturesRequired(func: (call: multisig_account.UpdateSignaturesRequiredPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4888
+ onEntryVoteTransaction(func: (call: multisig_account.VoteTransactionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4889
+ onEntryVoteTransactions(func: (call: multisig_account.VoteTransactionsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3315
4890
  onEntryVoteTransanction(func: (call: multisig_account.VoteTransanctionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4891
+ onEventAddOwners(func: (event: multisig_account.AddOwnersInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3316
4892
  onEventAddOwnersEvent(func: (event: multisig_account.AddOwnersEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4893
+ onEventCreateTransaction(func: (event: multisig_account.CreateTransactionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3317
4894
  onEventCreateTransactionEvent(func: (event: multisig_account.CreateTransactionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4895
+ onEventExecuteRejectedTransaction(func: (event: multisig_account.ExecuteRejectedTransactionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3318
4896
  onEventExecuteRejectedTransactionEvent(func: (event: multisig_account.ExecuteRejectedTransactionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3319
4897
  onEventExecutionError(func: (event: multisig_account.ExecutionErrorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4898
+ onEventMetadataUpdated(func: (event: multisig_account.MetadataUpdatedInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3320
4899
  onEventMetadataUpdatedEvent(func: (event: multisig_account.MetadataUpdatedEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3321
4900
  onEventMultisigTransaction(func: (event: multisig_account.MultisigTransactionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4901
+ onEventRemoveOwners(func: (event: multisig_account.RemoveOwnersInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3322
4902
  onEventRemoveOwnersEvent(func: (event: multisig_account.RemoveOwnersEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4903
+ onEventTransactionExecutionFailed(func: (event: multisig_account.TransactionExecutionFailedInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3323
4904
  onEventTransactionExecutionFailedEvent(func: (event: multisig_account.TransactionExecutionFailedEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4905
+ onEventTransactionExecutionSucceeded(func: (event: multisig_account.TransactionExecutionSucceededInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3324
4906
  onEventTransactionExecutionSucceededEvent(func: (event: multisig_account.TransactionExecutionSucceededEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4907
+ onEventUpdateSignaturesRequired(func: (event: multisig_account.UpdateSignaturesRequiredInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3325
4908
  onEventUpdateSignaturesRequiredEvent(func: (event: multisig_account.UpdateSignaturesRequiredEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
4909
+ onEventVote(func: (event: multisig_account.VoteInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3326
4910
  onEventVoteEvent(func: (event: multisig_account.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
3327
4911
  }
3328
4912
  export declare namespace multisig_account {
4913
+ interface AddOwners {
4914
+ multisig_account: MoveAddressType;
4915
+ owners_added: MoveAddressType[];
4916
+ }
4917
+ namespace AddOwners {
4918
+ const TYPE_QNAME = "0x1::multisig_account::AddOwners";
4919
+ function type(): TypeDescriptor<AddOwners>;
4920
+ }
4921
+ interface AddOwnersInstance extends TypedEventInstance<AddOwners> {
4922
+ data_decoded: AddOwners;
4923
+ type_arguments: [];
4924
+ }
3329
4925
  interface AddOwnersEvent {
3330
4926
  owners_added: MoveAddressType[];
3331
4927
  }
@@ -3337,6 +4933,20 @@ export declare namespace multisig_account {
3337
4933
  data_decoded: AddOwnersEvent;
3338
4934
  type_arguments: [];
3339
4935
  }
4936
+ interface CreateTransaction {
4937
+ multisig_account: MoveAddressType;
4938
+ creator: MoveAddressType;
4939
+ sequence_number: bigint;
4940
+ transaction: multisig_account.MultisigTransaction;
4941
+ }
4942
+ namespace CreateTransaction {
4943
+ const TYPE_QNAME = "0x1::multisig_account::CreateTransaction";
4944
+ function type(): TypeDescriptor<CreateTransaction>;
4945
+ }
4946
+ interface CreateTransactionInstance extends TypedEventInstance<CreateTransaction> {
4947
+ data_decoded: CreateTransaction;
4948
+ type_arguments: [];
4949
+ }
3340
4950
  interface CreateTransactionEvent {
3341
4951
  creator: MoveAddressType;
3342
4952
  sequence_number: bigint;
@@ -3350,6 +4960,20 @@ export declare namespace multisig_account {
3350
4960
  data_decoded: CreateTransactionEvent;
3351
4961
  type_arguments: [];
3352
4962
  }
4963
+ interface ExecuteRejectedTransaction {
4964
+ multisig_account: MoveAddressType;
4965
+ sequence_number: bigint;
4966
+ num_rejections: bigint;
4967
+ executor: MoveAddressType;
4968
+ }
4969
+ namespace ExecuteRejectedTransaction {
4970
+ const TYPE_QNAME = "0x1::multisig_account::ExecuteRejectedTransaction";
4971
+ function type(): TypeDescriptor<ExecuteRejectedTransaction>;
4972
+ }
4973
+ interface ExecuteRejectedTransactionInstance extends TypedEventInstance<ExecuteRejectedTransaction> {
4974
+ data_decoded: ExecuteRejectedTransaction;
4975
+ type_arguments: [];
4976
+ }
3353
4977
  interface ExecuteRejectedTransactionEvent {
3354
4978
  sequence_number: bigint;
3355
4979
  num_rejections: bigint;
@@ -3376,6 +5000,19 @@ export declare namespace multisig_account {
3376
5000
  data_decoded: ExecutionError;
3377
5001
  type_arguments: [];
3378
5002
  }
5003
+ interface MetadataUpdated {
5004
+ multisig_account: MoveAddressType;
5005
+ old_metadata: simple_map.SimpleMap<string, string>;
5006
+ new_metadata: simple_map.SimpleMap<string, string>;
5007
+ }
5008
+ namespace MetadataUpdated {
5009
+ const TYPE_QNAME = "0x1::multisig_account::MetadataUpdated";
5010
+ function type(): TypeDescriptor<MetadataUpdated>;
5011
+ }
5012
+ interface MetadataUpdatedInstance extends TypedEventInstance<MetadataUpdated> {
5013
+ data_decoded: MetadataUpdated;
5014
+ type_arguments: [];
5015
+ }
3379
5016
  interface MetadataUpdatedEvent {
3380
5017
  old_metadata: simple_map.SimpleMap<string, string>;
3381
5018
  new_metadata: simple_map.SimpleMap<string, string>;
@@ -3447,6 +5084,18 @@ export declare namespace multisig_account {
3447
5084
  data_decoded: MultisigTransaction;
3448
5085
  type_arguments: [];
3449
5086
  }
5087
+ interface RemoveOwners {
5088
+ multisig_account: MoveAddressType;
5089
+ owners_removed: MoveAddressType[];
5090
+ }
5091
+ namespace RemoveOwners {
5092
+ const TYPE_QNAME = "0x1::multisig_account::RemoveOwners";
5093
+ function type(): TypeDescriptor<RemoveOwners>;
5094
+ }
5095
+ interface RemoveOwnersInstance extends TypedEventInstance<RemoveOwners> {
5096
+ data_decoded: RemoveOwners;
5097
+ type_arguments: [];
5098
+ }
3450
5099
  interface RemoveOwnersEvent {
3451
5100
  owners_removed: MoveAddressType[];
3452
5101
  }
@@ -3458,6 +5107,22 @@ export declare namespace multisig_account {
3458
5107
  data_decoded: RemoveOwnersEvent;
3459
5108
  type_arguments: [];
3460
5109
  }
5110
+ interface TransactionExecutionFailed {
5111
+ multisig_account: MoveAddressType;
5112
+ executor: MoveAddressType;
5113
+ sequence_number: bigint;
5114
+ transaction_payload: string;
5115
+ num_approvals: bigint;
5116
+ execution_error: multisig_account.ExecutionError;
5117
+ }
5118
+ namespace TransactionExecutionFailed {
5119
+ const TYPE_QNAME = "0x1::multisig_account::TransactionExecutionFailed";
5120
+ function type(): TypeDescriptor<TransactionExecutionFailed>;
5121
+ }
5122
+ interface TransactionExecutionFailedInstance extends TypedEventInstance<TransactionExecutionFailed> {
5123
+ data_decoded: TransactionExecutionFailed;
5124
+ type_arguments: [];
5125
+ }
3461
5126
  interface TransactionExecutionFailedEvent {
3462
5127
  executor: MoveAddressType;
3463
5128
  sequence_number: bigint;
@@ -3473,6 +5138,21 @@ export declare namespace multisig_account {
3473
5138
  data_decoded: TransactionExecutionFailedEvent;
3474
5139
  type_arguments: [];
3475
5140
  }
5141
+ interface TransactionExecutionSucceeded {
5142
+ multisig_account: MoveAddressType;
5143
+ executor: MoveAddressType;
5144
+ sequence_number: bigint;
5145
+ transaction_payload: string;
5146
+ num_approvals: bigint;
5147
+ }
5148
+ namespace TransactionExecutionSucceeded {
5149
+ const TYPE_QNAME = "0x1::multisig_account::TransactionExecutionSucceeded";
5150
+ function type(): TypeDescriptor<TransactionExecutionSucceeded>;
5151
+ }
5152
+ interface TransactionExecutionSucceededInstance extends TypedEventInstance<TransactionExecutionSucceeded> {
5153
+ data_decoded: TransactionExecutionSucceeded;
5154
+ type_arguments: [];
5155
+ }
3476
5156
  interface TransactionExecutionSucceededEvent {
3477
5157
  executor: MoveAddressType;
3478
5158
  sequence_number: bigint;
@@ -3487,6 +5167,19 @@ export declare namespace multisig_account {
3487
5167
  data_decoded: TransactionExecutionSucceededEvent;
3488
5168
  type_arguments: [];
3489
5169
  }
5170
+ interface UpdateSignaturesRequired {
5171
+ multisig_account: MoveAddressType;
5172
+ old_num_signatures_required: bigint;
5173
+ new_num_signatures_required: bigint;
5174
+ }
5175
+ namespace UpdateSignaturesRequired {
5176
+ const TYPE_QNAME = "0x1::multisig_account::UpdateSignaturesRequired";
5177
+ function type(): TypeDescriptor<UpdateSignaturesRequired>;
5178
+ }
5179
+ interface UpdateSignaturesRequiredInstance extends TypedEventInstance<UpdateSignaturesRequired> {
5180
+ data_decoded: UpdateSignaturesRequired;
5181
+ type_arguments: [];
5182
+ }
3490
5183
  interface UpdateSignaturesRequiredEvent {
3491
5184
  old_num_signatures_required: bigint;
3492
5185
  new_num_signatures_required: bigint;
@@ -3499,6 +5192,20 @@ export declare namespace multisig_account {
3499
5192
  data_decoded: UpdateSignaturesRequiredEvent;
3500
5193
  type_arguments: [];
3501
5194
  }
5195
+ interface Vote {
5196
+ multisig_account: MoveAddressType;
5197
+ owner: MoveAddressType;
5198
+ sequence_number: bigint;
5199
+ approved: Boolean;
5200
+ }
5201
+ namespace Vote {
5202
+ const TYPE_QNAME = "0x1::multisig_account::Vote";
5203
+ function type(): TypeDescriptor<Vote>;
5204
+ }
5205
+ interface VoteInstance extends TypedEventInstance<Vote> {
5206
+ data_decoded: Vote;
5207
+ type_arguments: [];
5208
+ }
3502
5209
  interface VoteEvent {
3503
5210
  owner: MoveAddressType;
3504
5211
  sequence_number: bigint;
@@ -3606,6 +5313,10 @@ export declare namespace multisig_account {
3606
5313
  arguments_decoded: [MoveAddressType];
3607
5314
  type_arguments: [];
3608
5315
  }
5316
+ interface ExecuteRejectedTransactionsPayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
5317
+ arguments_decoded: [MoveAddressType, bigint];
5318
+ type_arguments: [];
5319
+ }
3609
5320
  interface RejectTransactionPayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
3610
5321
  arguments_decoded: [MoveAddressType, bigint];
3611
5322
  type_arguments: [];
@@ -3642,6 +5353,14 @@ export declare namespace multisig_account {
3642
5353
  arguments_decoded: [bigint];
3643
5354
  type_arguments: [];
3644
5355
  }
5356
+ interface VoteTransactionPayload extends TypedFunctionPayload<[MoveAddressType, bigint, Boolean]> {
5357
+ arguments_decoded: [MoveAddressType, bigint, Boolean];
5358
+ type_arguments: [];
5359
+ }
5360
+ interface VoteTransactionsPayload extends TypedFunctionPayload<[MoveAddressType, bigint, bigint, Boolean]> {
5361
+ arguments_decoded: [MoveAddressType, bigint, bigint, Boolean];
5362
+ type_arguments: [];
5363
+ }
3645
5364
  interface VoteTransanctionPayload extends TypedFunctionPayload<[MoveAddressType, bigint, Boolean]> {
3646
5365
  arguments_decoded: [MoveAddressType, bigint, Boolean];
3647
5366
  type_arguments: [];
@@ -3697,24 +5416,49 @@ export declare class staking_contract extends AptosBaseProcessor {
3697
5416
  onEntryDistribute(func: (call: staking_contract.DistributePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3698
5417
  onEntryRequestCommission(func: (call: staking_contract.RequestCommissionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3699
5418
  onEntryResetLockup(func: (call: staking_contract.ResetLockupPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5419
+ onEntrySetBeneficiaryForOperator(func: (call: staking_contract.SetBeneficiaryForOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3700
5420
  onEntrySwitchOperator(func: (call: staking_contract.SwitchOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3701
5421
  onEntrySwitchOperatorWithSameCommission(func: (call: staking_contract.SwitchOperatorWithSameCommissionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3702
5422
  onEntryUnlockRewards(func: (call: staking_contract.UnlockRewardsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3703
5423
  onEntryUnlockStake(func: (call: staking_contract.UnlockStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3704
5424
  onEntryUpdateCommision(func: (call: staking_contract.UpdateCommisionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3705
5425
  onEntryUpdateVoter(func: (call: staking_contract.UpdateVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5426
+ onEventAddDistribution(func: (event: staking_contract.AddDistributionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3706
5427
  onEventAddDistributionEvent(func: (event: staking_contract.AddDistributionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5428
+ onEventAddStake(func: (event: staking_contract.AddStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3707
5429
  onEventAddStakeEvent(func: (event: staking_contract.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5430
+ onEventCreateStakingContract(func: (event: staking_contract.CreateStakingContractInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3708
5431
  onEventCreateStakingContractEvent(func: (event: staking_contract.CreateStakingContractEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5432
+ onEventDistribute(func: (event: staking_contract.DistributeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3709
5433
  onEventDistributeEvent(func: (event: staking_contract.DistributeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5434
+ onEventRequestCommission(func: (event: staking_contract.RequestCommissionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3710
5435
  onEventRequestCommissionEvent(func: (event: staking_contract.RequestCommissionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5436
+ onEventResetLockup(func: (event: staking_contract.ResetLockupInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3711
5437
  onEventResetLockupEvent(func: (event: staking_contract.ResetLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5438
+ onEventSetBeneficiaryForOperator(func: (event: staking_contract.SetBeneficiaryForOperatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5439
+ onEventSwitchOperator(func: (event: staking_contract.SwitchOperatorInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3712
5440
  onEventSwitchOperatorEvent(func: (event: staking_contract.SwitchOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5441
+ onEventUnlockStake(func: (event: staking_contract.UnlockStakeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3713
5442
  onEventUnlockStakeEvent(func: (event: staking_contract.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5443
+ onEventUpdateCommission(func: (event: staking_contract.UpdateCommissionInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3714
5444
  onEventUpdateCommissionEvent(func: (event: staking_contract.UpdateCommissionEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
5445
+ onEventUpdateVoter(func: (event: staking_contract.UpdateVoterInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3715
5446
  onEventUpdateVoterEvent(func: (event: staking_contract.UpdateVoterEventInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
3716
5447
  }
3717
5448
  export declare namespace staking_contract {
5449
+ interface AddDistribution {
5450
+ operator: MoveAddressType;
5451
+ pool_address: MoveAddressType;
5452
+ amount: bigint;
5453
+ }
5454
+ namespace AddDistribution {
5455
+ const TYPE_QNAME = "0x1::staking_contract::AddDistribution";
5456
+ function type(): TypeDescriptor<AddDistribution>;
5457
+ }
5458
+ interface AddDistributionInstance extends TypedEventInstance<AddDistribution> {
5459
+ data_decoded: AddDistribution;
5460
+ type_arguments: [];
5461
+ }
3718
5462
  interface AddDistributionEvent {
3719
5463
  operator: MoveAddressType;
3720
5464
  pool_address: MoveAddressType;
@@ -3728,6 +5472,19 @@ export declare namespace staking_contract {
3728
5472
  data_decoded: AddDistributionEvent;
3729
5473
  type_arguments: [];
3730
5474
  }
5475
+ interface AddStake {
5476
+ operator: MoveAddressType;
5477
+ pool_address: MoveAddressType;
5478
+ amount: bigint;
5479
+ }
5480
+ namespace AddStake {
5481
+ const TYPE_QNAME = "0x1::staking_contract::AddStake";
5482
+ function type(): TypeDescriptor<AddStake>;
5483
+ }
5484
+ interface AddStakeInstance extends TypedEventInstance<AddStake> {
5485
+ data_decoded: AddStake;
5486
+ type_arguments: [];
5487
+ }
3731
5488
  interface AddStakeEvent {
3732
5489
  operator: MoveAddressType;
3733
5490
  pool_address: MoveAddressType;
@@ -3741,6 +5498,28 @@ export declare namespace staking_contract {
3741
5498
  data_decoded: AddStakeEvent;
3742
5499
  type_arguments: [];
3743
5500
  }
5501
+ interface BeneficiaryForOperator {
5502
+ beneficiary_for_operator: MoveAddressType;
5503
+ }
5504
+ namespace BeneficiaryForOperator {
5505
+ const TYPE_QNAME = "0x1::staking_contract::BeneficiaryForOperator";
5506
+ function type(): TypeDescriptor<BeneficiaryForOperator>;
5507
+ }
5508
+ interface CreateStakingContract {
5509
+ operator: MoveAddressType;
5510
+ voter: MoveAddressType;
5511
+ pool_address: MoveAddressType;
5512
+ principal: bigint;
5513
+ commission_percentage: bigint;
5514
+ }
5515
+ namespace CreateStakingContract {
5516
+ const TYPE_QNAME = "0x1::staking_contract::CreateStakingContract";
5517
+ function type(): TypeDescriptor<CreateStakingContract>;
5518
+ }
5519
+ interface CreateStakingContractInstance extends TypedEventInstance<CreateStakingContract> {
5520
+ data_decoded: CreateStakingContract;
5521
+ type_arguments: [];
5522
+ }
3744
5523
  interface CreateStakingContractEvent {
3745
5524
  operator: MoveAddressType;
3746
5525
  voter: MoveAddressType;
@@ -3756,6 +5535,20 @@ export declare namespace staking_contract {
3756
5535
  data_decoded: CreateStakingContractEvent;
3757
5536
  type_arguments: [];
3758
5537
  }
5538
+ interface Distribute {
5539
+ operator: MoveAddressType;
5540
+ pool_address: MoveAddressType;
5541
+ recipient: MoveAddressType;
5542
+ amount: bigint;
5543
+ }
5544
+ namespace Distribute {
5545
+ const TYPE_QNAME = "0x1::staking_contract::Distribute";
5546
+ function type(): TypeDescriptor<Distribute>;
5547
+ }
5548
+ interface DistributeInstance extends TypedEventInstance<Distribute> {
5549
+ data_decoded: Distribute;
5550
+ type_arguments: [];
5551
+ }
3759
5552
  interface DistributeEvent {
3760
5553
  operator: MoveAddressType;
3761
5554
  pool_address: MoveAddressType;
@@ -3770,6 +5563,20 @@ export declare namespace staking_contract {
3770
5563
  data_decoded: DistributeEvent;
3771
5564
  type_arguments: [];
3772
5565
  }
5566
+ interface RequestCommission {
5567
+ operator: MoveAddressType;
5568
+ pool_address: MoveAddressType;
5569
+ accumulated_rewards: bigint;
5570
+ commission_amount: bigint;
5571
+ }
5572
+ namespace RequestCommission {
5573
+ const TYPE_QNAME = "0x1::staking_contract::RequestCommission";
5574
+ function type(): TypeDescriptor<RequestCommission>;
5575
+ }
5576
+ interface RequestCommissionInstance extends TypedEventInstance<RequestCommission> {
5577
+ data_decoded: RequestCommission;
5578
+ type_arguments: [];
5579
+ }
3773
5580
  interface RequestCommissionEvent {
3774
5581
  operator: MoveAddressType;
3775
5582
  pool_address: MoveAddressType;
@@ -3784,6 +5591,18 @@ export declare namespace staking_contract {
3784
5591
  data_decoded: RequestCommissionEvent;
3785
5592
  type_arguments: [];
3786
5593
  }
5594
+ interface ResetLockup {
5595
+ operator: MoveAddressType;
5596
+ pool_address: MoveAddressType;
5597
+ }
5598
+ namespace ResetLockup {
5599
+ const TYPE_QNAME = "0x1::staking_contract::ResetLockup";
5600
+ function type(): TypeDescriptor<ResetLockup>;
5601
+ }
5602
+ interface ResetLockupInstance extends TypedEventInstance<ResetLockup> {
5603
+ data_decoded: ResetLockup;
5604
+ type_arguments: [];
5605
+ }
3787
5606
  interface ResetLockupEvent {
3788
5607
  operator: MoveAddressType;
3789
5608
  pool_address: MoveAddressType;
@@ -3796,6 +5615,19 @@ export declare namespace staking_contract {
3796
5615
  data_decoded: ResetLockupEvent;
3797
5616
  type_arguments: [];
3798
5617
  }
5618
+ interface SetBeneficiaryForOperator {
5619
+ operator: MoveAddressType;
5620
+ old_beneficiary: MoveAddressType;
5621
+ new_beneficiary: MoveAddressType;
5622
+ }
5623
+ namespace SetBeneficiaryForOperator {
5624
+ const TYPE_QNAME = "0x1::staking_contract::SetBeneficiaryForOperator";
5625
+ function type(): TypeDescriptor<SetBeneficiaryForOperator>;
5626
+ }
5627
+ interface SetBeneficiaryForOperatorInstance extends TypedEventInstance<SetBeneficiaryForOperator> {
5628
+ data_decoded: SetBeneficiaryForOperator;
5629
+ type_arguments: [];
5630
+ }
3799
5631
  interface StakingContract {
3800
5632
  principal: bigint;
3801
5633
  pool_address: MoveAddressType;
@@ -3838,6 +5670,19 @@ export declare namespace staking_contract {
3838
5670
  const TYPE_QNAME = "0x1::staking_contract::Store";
3839
5671
  function type(): TypeDescriptor<Store>;
3840
5672
  }
5673
+ interface SwitchOperator {
5674
+ old_operator: MoveAddressType;
5675
+ new_operator: MoveAddressType;
5676
+ pool_address: MoveAddressType;
5677
+ }
5678
+ namespace SwitchOperator {
5679
+ const TYPE_QNAME = "0x1::staking_contract::SwitchOperator";
5680
+ function type(): TypeDescriptor<SwitchOperator>;
5681
+ }
5682
+ interface SwitchOperatorInstance extends TypedEventInstance<SwitchOperator> {
5683
+ data_decoded: SwitchOperator;
5684
+ type_arguments: [];
5685
+ }
3841
5686
  interface SwitchOperatorEvent {
3842
5687
  old_operator: MoveAddressType;
3843
5688
  new_operator: MoveAddressType;
@@ -3851,6 +5696,20 @@ export declare namespace staking_contract {
3851
5696
  data_decoded: SwitchOperatorEvent;
3852
5697
  type_arguments: [];
3853
5698
  }
5699
+ interface UnlockStake {
5700
+ operator: MoveAddressType;
5701
+ pool_address: MoveAddressType;
5702
+ amount: bigint;
5703
+ commission_paid: bigint;
5704
+ }
5705
+ namespace UnlockStake {
5706
+ const TYPE_QNAME = "0x1::staking_contract::UnlockStake";
5707
+ function type(): TypeDescriptor<UnlockStake>;
5708
+ }
5709
+ interface UnlockStakeInstance extends TypedEventInstance<UnlockStake> {
5710
+ data_decoded: UnlockStake;
5711
+ type_arguments: [];
5712
+ }
3854
5713
  interface UnlockStakeEvent {
3855
5714
  operator: MoveAddressType;
3856
5715
  pool_address: MoveAddressType;
@@ -3865,6 +5724,20 @@ export declare namespace staking_contract {
3865
5724
  data_decoded: UnlockStakeEvent;
3866
5725
  type_arguments: [];
3867
5726
  }
5727
+ interface UpdateCommission {
5728
+ staker: MoveAddressType;
5729
+ operator: MoveAddressType;
5730
+ old_commission_percentage: bigint;
5731
+ new_commission_percentage: bigint;
5732
+ }
5733
+ namespace UpdateCommission {
5734
+ const TYPE_QNAME = "0x1::staking_contract::UpdateCommission";
5735
+ function type(): TypeDescriptor<UpdateCommission>;
5736
+ }
5737
+ interface UpdateCommissionInstance extends TypedEventInstance<UpdateCommission> {
5738
+ data_decoded: UpdateCommission;
5739
+ type_arguments: [];
5740
+ }
3868
5741
  interface UpdateCommissionEvent {
3869
5742
  staker: MoveAddressType;
3870
5743
  operator: MoveAddressType;
@@ -3879,6 +5752,20 @@ export declare namespace staking_contract {
3879
5752
  data_decoded: UpdateCommissionEvent;
3880
5753
  type_arguments: [];
3881
5754
  }
5755
+ interface UpdateVoter {
5756
+ operator: MoveAddressType;
5757
+ pool_address: MoveAddressType;
5758
+ old_voter: MoveAddressType;
5759
+ new_voter: MoveAddressType;
5760
+ }
5761
+ namespace UpdateVoter {
5762
+ const TYPE_QNAME = "0x1::staking_contract::UpdateVoter";
5763
+ function type(): TypeDescriptor<UpdateVoter>;
5764
+ }
5765
+ interface UpdateVoterInstance extends TypedEventInstance<UpdateVoter> {
5766
+ data_decoded: UpdateVoter;
5767
+ type_arguments: [];
5768
+ }
3882
5769
  interface UpdateVoterEvent {
3883
5770
  operator: MoveAddressType;
3884
5771
  pool_address: MoveAddressType;
@@ -3925,6 +5812,10 @@ export declare namespace staking_contract {
3925
5812
  arguments_decoded: [MoveAddressType];
3926
5813
  type_arguments: [];
3927
5814
  }
5815
+ interface SetBeneficiaryForOperatorPayload extends TypedFunctionPayload<[MoveAddressType]> {
5816
+ arguments_decoded: [MoveAddressType];
5817
+ type_arguments: [];
5818
+ }
3928
5819
  interface SwitchOperatorPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType, bigint]> {
3929
5820
  arguments_decoded: [MoveAddressType, MoveAddressType, bigint];
3930
5821
  type_arguments: [];
@@ -3951,6 +5842,64 @@ export declare namespace staking_contract {
3951
5842
  }
3952
5843
  }
3953
5844
  export declare namespace system_addresses { }
5845
+ export declare class randomness_config extends AptosBaseProcessor {
5846
+ constructor(options: AptosBindOptions);
5847
+ static DEFAULT_OPTIONS: AptosBindOptions;
5848
+ static bind(options?: Partial<AptosBindOptions>): randomness_config;
5849
+ onEventConfigOff(func: (event: randomness_config.ConfigOffInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_config;
5850
+ onEventConfigV1(func: (event: randomness_config.ConfigV1Instance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_config;
5851
+ onEventConfigV2(func: (event: randomness_config.ConfigV2Instance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_config;
5852
+ onEventRandomnessConfig(func: (event: randomness_config.RandomnessConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_config;
5853
+ }
5854
+ export declare namespace randomness_config {
5855
+ interface ConfigOff {
5856
+ dummy_field: Boolean;
5857
+ }
5858
+ namespace ConfigOff {
5859
+ const TYPE_QNAME = "0x1::randomness_config::ConfigOff";
5860
+ function type(): TypeDescriptor<ConfigOff>;
5861
+ }
5862
+ interface ConfigOffInstance extends TypedEventInstance<ConfigOff> {
5863
+ data_decoded: ConfigOff;
5864
+ type_arguments: [];
5865
+ }
5866
+ interface ConfigV1 {
5867
+ secrecy_threshold: fixed_point64.FixedPoint64;
5868
+ reconstruction_threshold: fixed_point64.FixedPoint64;
5869
+ }
5870
+ namespace ConfigV1 {
5871
+ const TYPE_QNAME = "0x1::randomness_config::ConfigV1";
5872
+ function type(): TypeDescriptor<ConfigV1>;
5873
+ }
5874
+ interface ConfigV1Instance extends TypedEventInstance<ConfigV1> {
5875
+ data_decoded: ConfigV1;
5876
+ type_arguments: [];
5877
+ }
5878
+ interface ConfigV2 {
5879
+ secrecy_threshold: fixed_point64.FixedPoint64;
5880
+ reconstruction_threshold: fixed_point64.FixedPoint64;
5881
+ fast_path_secrecy_threshold: fixed_point64.FixedPoint64;
5882
+ }
5883
+ namespace ConfigV2 {
5884
+ const TYPE_QNAME = "0x1::randomness_config::ConfigV2";
5885
+ function type(): TypeDescriptor<ConfigV2>;
5886
+ }
5887
+ interface ConfigV2Instance extends TypedEventInstance<ConfigV2> {
5888
+ data_decoded: ConfigV2;
5889
+ type_arguments: [];
5890
+ }
5891
+ interface RandomnessConfig {
5892
+ variant: copyable_any.Any;
5893
+ }
5894
+ namespace RandomnessConfig {
5895
+ const TYPE_QNAME = "0x1::randomness_config::RandomnessConfig";
5896
+ function type(): TypeDescriptor<RandomnessConfig>;
5897
+ }
5898
+ interface RandomnessConfigInstance extends TypedEventInstance<RandomnessConfig> {
5899
+ data_decoded: RandomnessConfig;
5900
+ type_arguments: [];
5901
+ }
5902
+ }
3954
5903
  export declare namespace table_with_length {
3955
5904
  interface TableWithLength<T0, T1> {
3956
5905
  inner: table.Table<T0, T1>;
@@ -4025,6 +5974,81 @@ export declare namespace transaction_context {
4025
5974
  data_decoded: AUID;
4026
5975
  type_arguments: [];
4027
5976
  }
5977
+ interface EntryFunctionPayload {
5978
+ account_address: MoveAddressType;
5979
+ module_name: string;
5980
+ function_name: string;
5981
+ ty_args_names: string[];
5982
+ args: string[];
5983
+ }
5984
+ namespace EntryFunctionPayload {
5985
+ const TYPE_QNAME = "0x1::transaction_context::EntryFunctionPayload";
5986
+ function type(): TypeDescriptor<EntryFunctionPayload>;
5987
+ }
5988
+ interface MultisigPayload {
5989
+ multisig_address: MoveAddressType;
5990
+ entry_function_payload: option.Option<transaction_context.EntryFunctionPayload>;
5991
+ }
5992
+ namespace MultisigPayload {
5993
+ const TYPE_QNAME = "0x1::transaction_context::MultisigPayload";
5994
+ function type(): TypeDescriptor<MultisigPayload>;
5995
+ }
5996
+ }
5997
+ export declare class jwk_consensus_config extends AptosBaseProcessor {
5998
+ constructor(options: AptosBindOptions);
5999
+ static DEFAULT_OPTIONS: AptosBindOptions;
6000
+ static bind(options?: Partial<AptosBindOptions>): jwk_consensus_config;
6001
+ onEventConfigOff(func: (event: jwk_consensus_config.ConfigOffInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwk_consensus_config;
6002
+ onEventConfigV1(func: (event: jwk_consensus_config.ConfigV1Instance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwk_consensus_config;
6003
+ onEventJWKConsensusConfig(func: (event: jwk_consensus_config.JWKConsensusConfigInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwk_consensus_config;
6004
+ onEventOIDCProvider(func: (event: jwk_consensus_config.OIDCProviderInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): jwk_consensus_config;
6005
+ }
6006
+ export declare namespace jwk_consensus_config {
6007
+ interface ConfigOff {
6008
+ dummy_field: Boolean;
6009
+ }
6010
+ namespace ConfigOff {
6011
+ const TYPE_QNAME = "0x1::jwk_consensus_config::ConfigOff";
6012
+ function type(): TypeDescriptor<ConfigOff>;
6013
+ }
6014
+ interface ConfigOffInstance extends TypedEventInstance<ConfigOff> {
6015
+ data_decoded: ConfigOff;
6016
+ type_arguments: [];
6017
+ }
6018
+ interface ConfigV1 {
6019
+ oidc_providers: jwk_consensus_config.OIDCProvider[];
6020
+ }
6021
+ namespace ConfigV1 {
6022
+ const TYPE_QNAME = "0x1::jwk_consensus_config::ConfigV1";
6023
+ function type(): TypeDescriptor<ConfigV1>;
6024
+ }
6025
+ interface ConfigV1Instance extends TypedEventInstance<ConfigV1> {
6026
+ data_decoded: ConfigV1;
6027
+ type_arguments: [];
6028
+ }
6029
+ interface JWKConsensusConfig {
6030
+ variant: copyable_any.Any;
6031
+ }
6032
+ namespace JWKConsensusConfig {
6033
+ const TYPE_QNAME = "0x1::jwk_consensus_config::JWKConsensusConfig";
6034
+ function type(): TypeDescriptor<JWKConsensusConfig>;
6035
+ }
6036
+ interface JWKConsensusConfigInstance extends TypedEventInstance<JWKConsensusConfig> {
6037
+ data_decoded: JWKConsensusConfig;
6038
+ type_arguments: [];
6039
+ }
6040
+ interface OIDCProvider {
6041
+ name: string;
6042
+ config_url: string;
6043
+ }
6044
+ namespace OIDCProvider {
6045
+ const TYPE_QNAME = "0x1::jwk_consensus_config::OIDCProvider";
6046
+ function type(): TypeDescriptor<OIDCProvider>;
6047
+ }
6048
+ interface OIDCProviderInstance extends TypedEventInstance<OIDCProvider> {
6049
+ data_decoded: OIDCProvider;
6050
+ type_arguments: [];
6051
+ }
4028
6052
  }
4029
6053
  export declare class ristretto255_elgamal extends AptosBaseProcessor {
4030
6054
  constructor(options: AptosBindOptions);
@@ -4066,6 +6090,44 @@ export declare namespace ristretto255_elgamal {
4066
6090
  type_arguments: [];
4067
6091
  }
4068
6092
  }
6093
+ export declare class reconfiguration_state extends AptosBaseProcessor {
6094
+ constructor(options: AptosBindOptions);
6095
+ static DEFAULT_OPTIONS: AptosBindOptions;
6096
+ static bind(options?: Partial<AptosBindOptions>): reconfiguration_state;
6097
+ onEventStateActive(func: (event: reconfiguration_state.StateActiveInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): reconfiguration_state;
6098
+ onEventStateInactive(func: (event: reconfiguration_state.StateInactiveInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): reconfiguration_state;
6099
+ }
6100
+ export declare namespace reconfiguration_state {
6101
+ interface State {
6102
+ variant: copyable_any.Any;
6103
+ }
6104
+ namespace State {
6105
+ const TYPE_QNAME = "0x1::reconfiguration_state::State";
6106
+ function type(): TypeDescriptor<State>;
6107
+ }
6108
+ interface StateActive {
6109
+ start_time_secs: bigint;
6110
+ }
6111
+ namespace StateActive {
6112
+ const TYPE_QNAME = "0x1::reconfiguration_state::StateActive";
6113
+ function type(): TypeDescriptor<StateActive>;
6114
+ }
6115
+ interface StateActiveInstance extends TypedEventInstance<StateActive> {
6116
+ data_decoded: StateActive;
6117
+ type_arguments: [];
6118
+ }
6119
+ interface StateInactive {
6120
+ dummy_field: Boolean;
6121
+ }
6122
+ namespace StateInactive {
6123
+ const TYPE_QNAME = "0x1::reconfiguration_state::StateInactive";
6124
+ function type(): TypeDescriptor<StateInactive>;
6125
+ }
6126
+ interface StateInactiveInstance extends TypedEventInstance<StateInactive> {
6127
+ data_decoded: StateInactive;
6128
+ type_arguments: [];
6129
+ }
6130
+ }
4069
6131
  export declare namespace ristretto255_pedersen {
4070
6132
  interface Commitment {
4071
6133
  point: ristretto255.RistrettoPoint;
@@ -4075,11 +6137,81 @@ export declare namespace ristretto255_pedersen {
4075
6137
  function type(): TypeDescriptor<Commitment>;
4076
6138
  }
4077
6139
  }
6140
+ export declare class object_code_deployment extends AptosBaseProcessor {
6141
+ constructor(options: AptosBindOptions);
6142
+ static DEFAULT_OPTIONS: AptosBindOptions;
6143
+ static bind(options?: Partial<AptosBindOptions>): object_code_deployment;
6144
+ onEntryFreezeCodeObject(func: (call: object_code_deployment.FreezeCodeObjectPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object_code_deployment;
6145
+ onEntryPublish(func: (call: object_code_deployment.PublishPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object_code_deployment;
6146
+ onEntryUpgrade(func: (call: object_code_deployment.UpgradePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object_code_deployment;
6147
+ onEventFreeze(func: (event: object_code_deployment.FreezeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object_code_deployment;
6148
+ onEventPublish(func: (event: object_code_deployment.PublishInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object_code_deployment;
6149
+ onEventUpgrade(func: (event: object_code_deployment.UpgradeInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): object_code_deployment;
6150
+ }
6151
+ export declare namespace object_code_deployment {
6152
+ interface Freeze {
6153
+ object_address: MoveAddressType;
6154
+ }
6155
+ namespace Freeze {
6156
+ const TYPE_QNAME = "0x1::object_code_deployment::Freeze";
6157
+ function type(): TypeDescriptor<Freeze>;
6158
+ }
6159
+ interface FreezeInstance extends TypedEventInstance<Freeze> {
6160
+ data_decoded: Freeze;
6161
+ type_arguments: [];
6162
+ }
6163
+ interface ManagingRefs {
6164
+ extend_ref: object_.ExtendRef;
6165
+ }
6166
+ namespace ManagingRefs {
6167
+ const TYPE_QNAME = "0x1::object_code_deployment::ManagingRefs";
6168
+ function type(): TypeDescriptor<ManagingRefs>;
6169
+ }
6170
+ interface Publish {
6171
+ object_address: MoveAddressType;
6172
+ }
6173
+ namespace Publish {
6174
+ const TYPE_QNAME = "0x1::object_code_deployment::Publish";
6175
+ function type(): TypeDescriptor<Publish>;
6176
+ }
6177
+ interface PublishInstance extends TypedEventInstance<Publish> {
6178
+ data_decoded: Publish;
6179
+ type_arguments: [];
6180
+ }
6181
+ interface Upgrade {
6182
+ object_address: MoveAddressType;
6183
+ }
6184
+ namespace Upgrade {
6185
+ const TYPE_QNAME = "0x1::object_code_deployment::Upgrade";
6186
+ function type(): TypeDescriptor<Upgrade>;
6187
+ }
6188
+ interface UpgradeInstance extends TypedEventInstance<Upgrade> {
6189
+ data_decoded: Upgrade;
6190
+ type_arguments: [];
6191
+ }
6192
+ interface FreezeCodeObjectPayload extends TypedFunctionPayload<[object_.Object<code.PackageRegistry>]> {
6193
+ arguments_decoded: [object_.Object<code.PackageRegistry>];
6194
+ type_arguments: [];
6195
+ }
6196
+ interface PublishPayload extends TypedFunctionPayload<[string, string[]]> {
6197
+ arguments_decoded: [string, string[]];
6198
+ type_arguments: [];
6199
+ }
6200
+ interface UpgradePayload extends TypedFunctionPayload<[
6201
+ string,
6202
+ string[],
6203
+ object_.Object<code.PackageRegistry>
6204
+ ]> {
6205
+ arguments_decoded: [string, string[], object_.Object<code.PackageRegistry>];
6206
+ type_arguments: [];
6207
+ }
6208
+ }
4078
6209
  export declare class primary_fungible_store extends AptosBaseProcessor {
4079
6210
  constructor(options: AptosBindOptions);
4080
6211
  static DEFAULT_OPTIONS: AptosBindOptions;
4081
6212
  static bind(options?: Partial<AptosBindOptions>): primary_fungible_store;
4082
6213
  onEntryTransfer(func: (call: primary_fungible_store.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): primary_fungible_store;
6214
+ onEntryTransferAssertMinimumDeposit(func: (call: primary_fungible_store.TransferAssertMinimumDepositPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): primary_fungible_store;
4083
6215
  }
4084
6216
  export declare namespace primary_fungible_store {
4085
6217
  interface DeriveRefPod {
@@ -4097,6 +6229,15 @@ export declare namespace primary_fungible_store {
4097
6229
  arguments_decoded: [object_.Object<T0>, MoveAddressType, bigint];
4098
6230
  type_arguments: [string];
4099
6231
  }
6232
+ interface TransferAssertMinimumDepositPayload<T0 = any> extends TypedFunctionPayload<[
6233
+ object_.Object<T0>,
6234
+ MoveAddressType,
6235
+ bigint,
6236
+ bigint
6237
+ ]> {
6238
+ arguments_decoded: [object_.Object<T0>, MoveAddressType, bigint, bigint];
6239
+ type_arguments: [string];
6240
+ }
4100
6241
  }
4101
6242
  export declare namespace transaction_validation {
4102
6243
  interface TransactionValidation {
@@ -4112,6 +6253,78 @@ export declare namespace transaction_validation {
4112
6253
  function type(): TypeDescriptor<TransactionValidation>;
4113
6254
  }
4114
6255
  }
6256
+ export declare class randomness_api_v0_config extends AptosBaseProcessor {
6257
+ constructor(options: AptosBindOptions);
6258
+ static DEFAULT_OPTIONS: AptosBindOptions;
6259
+ static bind(options?: Partial<AptosBindOptions>): randomness_api_v0_config;
6260
+ onEventAllowCustomMaxGasFlag(func: (event: randomness_api_v0_config.AllowCustomMaxGasFlagInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_api_v0_config;
6261
+ onEventRequiredGasDeposit(func: (event: randomness_api_v0_config.RequiredGasDepositInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_api_v0_config;
6262
+ }
6263
+ export declare namespace randomness_api_v0_config {
6264
+ interface AllowCustomMaxGasFlag {
6265
+ value: Boolean;
6266
+ }
6267
+ namespace AllowCustomMaxGasFlag {
6268
+ const TYPE_QNAME = "0x1::randomness_api_v0_config::AllowCustomMaxGasFlag";
6269
+ function type(): TypeDescriptor<AllowCustomMaxGasFlag>;
6270
+ }
6271
+ interface AllowCustomMaxGasFlagInstance extends TypedEventInstance<AllowCustomMaxGasFlag> {
6272
+ data_decoded: AllowCustomMaxGasFlag;
6273
+ type_arguments: [];
6274
+ }
6275
+ interface RequiredGasDeposit {
6276
+ gas_amount: option.Option<bigint>;
6277
+ }
6278
+ namespace RequiredGasDeposit {
6279
+ const TYPE_QNAME = "0x1::randomness_api_v0_config::RequiredGasDeposit";
6280
+ function type(): TypeDescriptor<RequiredGasDeposit>;
6281
+ }
6282
+ interface RequiredGasDepositInstance extends TypedEventInstance<RequiredGasDeposit> {
6283
+ data_decoded: RequiredGasDeposit;
6284
+ type_arguments: [];
6285
+ }
6286
+ }
6287
+ export declare class randomness_config_seqnum extends AptosBaseProcessor {
6288
+ constructor(options: AptosBindOptions);
6289
+ static DEFAULT_OPTIONS: AptosBindOptions;
6290
+ static bind(options?: Partial<AptosBindOptions>): randomness_config_seqnum;
6291
+ onEventRandomnessConfigSeqNum(func: (event: randomness_config_seqnum.RandomnessConfigSeqNumInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): randomness_config_seqnum;
6292
+ }
6293
+ export declare namespace randomness_config_seqnum {
6294
+ interface RandomnessConfigSeqNum {
6295
+ seq_num: bigint;
6296
+ }
6297
+ namespace RandomnessConfigSeqNum {
6298
+ const TYPE_QNAME = "0x1::randomness_config_seqnum::RandomnessConfigSeqNum";
6299
+ function type(): TypeDescriptor<RandomnessConfigSeqNum>;
6300
+ }
6301
+ interface RandomnessConfigSeqNumInstance extends TypedEventInstance<RandomnessConfigSeqNum> {
6302
+ data_decoded: RandomnessConfigSeqNum;
6303
+ type_arguments: [];
6304
+ }
6305
+ }
6306
+ export declare namespace reconfiguration_with_dkg { }
6307
+ export declare class validator_consensus_info extends AptosBaseProcessor {
6308
+ constructor(options: AptosBindOptions);
6309
+ static DEFAULT_OPTIONS: AptosBindOptions;
6310
+ static bind(options?: Partial<AptosBindOptions>): validator_consensus_info;
6311
+ onEventValidatorConsensusInfo(func: (event: validator_consensus_info.ValidatorConsensusInfoInstance, ctx: AptosContext) => void, fetchConfig?: Partial<MoveFetchConfig>): validator_consensus_info;
6312
+ }
6313
+ export declare namespace validator_consensus_info {
6314
+ interface ValidatorConsensusInfo {
6315
+ addr: MoveAddressType;
6316
+ pk_bytes: string;
6317
+ voting_power: bigint;
6318
+ }
6319
+ namespace ValidatorConsensusInfo {
6320
+ const TYPE_QNAME = "0x1::validator_consensus_info::ValidatorConsensusInfo";
6321
+ function type(): TypeDescriptor<ValidatorConsensusInfo>;
6322
+ }
6323
+ interface ValidatorConsensusInfoInstance extends TypedEventInstance<ValidatorConsensusInfo> {
6324
+ data_decoded: ValidatorConsensusInfo;
6325
+ type_arguments: [];
6326
+ }
6327
+ }
4115
6328
  export declare class ristretto255_bulletproofs extends AptosBaseProcessor {
4116
6329
  constructor(options: AptosBindOptions);
4117
6330
  static DEFAULT_OPTIONS: AptosBindOptions;
@@ -4131,5 +6344,38 @@ export declare namespace ristretto255_bulletproofs {
4131
6344
  type_arguments: [];
4132
6345
  }
4133
6346
  }
6347
+ export declare class dispatchable_fungible_asset extends AptosBaseProcessor {
6348
+ constructor(options: AptosBindOptions);
6349
+ static DEFAULT_OPTIONS: AptosBindOptions;
6350
+ static bind(options?: Partial<AptosBindOptions>): dispatchable_fungible_asset;
6351
+ onEntryTransfer(func: (call: dispatchable_fungible_asset.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): dispatchable_fungible_asset;
6352
+ onEntryTransferAssertMinimumDeposit(func: (call: dispatchable_fungible_asset.TransferAssertMinimumDepositPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): dispatchable_fungible_asset;
6353
+ }
6354
+ export declare namespace dispatchable_fungible_asset {
6355
+ interface TransferRefStore {
6356
+ transfer_ref: fungible_asset.TransferRef;
6357
+ }
6358
+ namespace TransferRefStore {
6359
+ const TYPE_QNAME = "0x1::dispatchable_fungible_asset::TransferRefStore";
6360
+ function type(): TypeDescriptor<TransferRefStore>;
6361
+ }
6362
+ interface TransferPayload<T0 = any> extends TypedFunctionPayload<[
6363
+ object_.Object<T0>,
6364
+ object_.Object<T0>,
6365
+ bigint
6366
+ ]> {
6367
+ arguments_decoded: [object_.Object<T0>, object_.Object<T0>, bigint];
6368
+ type_arguments: [string];
6369
+ }
6370
+ interface TransferAssertMinimumDepositPayload<T0 = any> extends TypedFunctionPayload<[
6371
+ object_.Object<T0>,
6372
+ object_.Object<T0>,
6373
+ bigint,
6374
+ bigint
6375
+ ]> {
6376
+ arguments_decoded: [object_.Object<T0>, object_.Object<T0>, bigint, bigint];
6377
+ type_arguments: [string];
6378
+ }
6379
+ }
4134
6380
  export declare function loadAllTypes(coder: MoveCoder): void;
4135
6381
  //# sourceMappingURL=0x1.d.ts.map