@sentio/sdk 2.60.3 → 2.61.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/lib/aptos/builtin/0x1.d.ts +125 -0
  2. package/lib/aptos/builtin/0x1.d.ts.map +1 -1
  3. package/lib/aptos/builtin/0x1.js +150 -6
  4. package/lib/aptos/builtin/0x1.js.map +1 -1
  5. package/lib/aptos/builtin/0x3.d.ts +10 -0
  6. package/lib/aptos/builtin/0x3.d.ts.map +1 -1
  7. package/lib/aptos/builtin/0x3.js +8 -0
  8. package/lib/aptos/builtin/0x3.js.map +1 -1
  9. package/lib/aptos/builtin/0x4.d.ts +40 -0
  10. package/lib/aptos/builtin/0x4.d.ts.map +1 -1
  11. package/lib/aptos/builtin/0x4.js +48 -2
  12. package/lib/aptos/builtin/0x4.js.map +1 -1
  13. package/lib/aptos/codegen/codegen.js +2 -2
  14. package/lib/aptos/codegen/codegen.js.map +1 -1
  15. package/lib/aptos/ext/coin-event.test.js.map +1 -1
  16. package/lib/aptos/network.d.ts +2 -2
  17. package/lib/aptos/network.d.ts.map +1 -1
  18. package/lib/aptos/network.js +22 -15
  19. package/lib/aptos/network.js.map +1 -1
  20. package/lib/sui/builtin/0x1.d.ts +72 -107
  21. package/lib/sui/builtin/0x1.d.ts.map +1 -1
  22. package/lib/sui/builtin/0x1.js +53 -1
  23. package/lib/sui/builtin/0x1.js.map +1 -1
  24. package/lib/sui/builtin/0x2.d.ts +610 -807
  25. package/lib/sui/builtin/0x2.d.ts.map +1 -1
  26. package/lib/sui/builtin/0x2.js +158 -2
  27. package/lib/sui/builtin/0x2.js.map +1 -1
  28. package/lib/sui/builtin/0x3.d.ts +290 -362
  29. package/lib/sui/builtin/0x3.d.ts.map +1 -1
  30. package/lib/sui/builtin/0x3.js +105 -1
  31. package/lib/sui/builtin/0x3.js.map +1 -1
  32. package/package.json +10 -10
  33. package/src/aptos/abis/0x1.json +47 -3
  34. package/src/aptos/builtin/0x1.ts +520 -1
  35. package/src/aptos/builtin/0x3.ts +46 -0
  36. package/src/aptos/builtin/0x4.ts +151 -0
  37. package/src/aptos/codegen/codegen.ts +2 -2
  38. package/src/aptos/network.ts +22 -14
  39. package/src/sui/abis/0x1.json +52 -0
  40. package/src/sui/abis/0x2.json +134 -2
  41. package/src/sui/abis/0x3.json +180 -0
  42. package/src/sui/builtin/0x1.ts +143 -110
  43. package/src/sui/builtin/0x2.ts +796 -808
  44. package/src/sui/builtin/0x3.ts +422 -363
@@ -15,6 +15,12 @@ export declare namespace acl {
15
15
  namespace entry { }
16
16
  namespace view { }
17
17
  }
18
+ export declare class any$ extends AptosBaseProcessor {
19
+ constructor(options: AptosBindOptions);
20
+ static DEFAULT_OPTIONS: AptosBindOptions;
21
+ static bind(options?: Partial<AptosBindOptions>): any$;
22
+ onEventAny(func: (event: any$.AnyInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, any$.AnyInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): any$;
23
+ }
18
24
  export declare namespace any$ {
19
25
  interface Any {
20
26
  type_name: string;
@@ -24,6 +30,10 @@ export declare namespace any$ {
24
30
  const TYPE_QNAME = "0x1::any::Any";
25
31
  function type(): TypeDescriptor<Any>;
26
32
  }
33
+ type AnyInstance = TypedEventInstance<Any> & {
34
+ data_decoded: Any;
35
+ type_arguments: [];
36
+ };
27
37
  namespace entry { }
28
38
  namespace view { }
29
39
  }
@@ -542,6 +552,12 @@ export declare namespace coin {
542
552
  type_arguments: [string];
543
553
  }
544
554
  }
555
+ export declare class guid extends AptosBaseProcessor {
556
+ constructor(options: AptosBindOptions);
557
+ static DEFAULT_OPTIONS: AptosBindOptions;
558
+ static bind(options?: Partial<AptosBindOptions>): guid;
559
+ onEventGUID(func: (event: guid.GUIDInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, guid.GUIDInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): guid;
560
+ }
545
561
  export declare namespace guid {
546
562
  interface GUID {
547
563
  id: guid.ID;
@@ -550,6 +566,10 @@ export declare namespace guid {
550
566
  const TYPE_QNAME = "0x1::guid::GUID";
551
567
  function type(): TypeDescriptor<GUID>;
552
568
  }
569
+ type GUIDInstance = TypedEventInstance<GUID> & {
570
+ data_decoded: GUID;
571
+ type_arguments: [];
572
+ };
553
573
  interface ID {
554
574
  creation_num: bigint;
555
575
  addr: MoveAddressType;
@@ -867,6 +887,7 @@ export declare class stake extends AptosBaseProcessor {
867
887
  onEventDistributeRewardsEvent(func: (event: stake.DistributeRewardsEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.DistributeRewardsEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
868
888
  onEventIncreaseLockup(func: (event: stake.IncreaseLockupInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.IncreaseLockupInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
869
889
  onEventIncreaseLockupEvent(func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.IncreaseLockupEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
890
+ onEventIndividualValidatorPerformance(func: (event: stake.IndividualValidatorPerformanceInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.IndividualValidatorPerformanceInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
870
891
  onEventJoinValidatorSet(func: (event: stake.JoinValidatorSetInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.JoinValidatorSetInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
871
892
  onEventJoinValidatorSetEvent(func: (event: stake.JoinValidatorSetEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.JoinValidatorSetEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
872
893
  onEventLeaveValidatorSet(func: (event: stake.LeaveValidatorSetInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, stake.LeaveValidatorSetInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
@@ -983,6 +1004,10 @@ export declare namespace stake {
983
1004
  const TYPE_QNAME = "0x1::stake::IndividualValidatorPerformance";
984
1005
  function type(): TypeDescriptor<IndividualValidatorPerformance>;
985
1006
  }
1007
+ type IndividualValidatorPerformanceInstance = TypedEventInstance<IndividualValidatorPerformance> & {
1008
+ data_decoded: IndividualValidatorPerformance;
1009
+ type_arguments: [];
1010
+ };
986
1011
  interface JoinValidatorSet {
987
1012
  pool_address: MoveAddressType;
988
1013
  }
@@ -1464,8 +1489,12 @@ export declare class object$ extends AptosBaseProcessor {
1464
1489
  onEntryTransferCall(func: (call: object$.TransferCallPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, object$.TransferCallPayload>): object$;
1465
1490
  onEntryTransferToObject(func: (call: object$.TransferToObjectPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, object$.TransferToObjectPayload>): object$;
1466
1491
  onEntryUnburn(func: (call: object$.UnburnPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, object$.UnburnPayload>): object$;
1492
+ onEventDeleteRef(func: (event: object$.DeleteRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, object$.DeleteRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object$;
1493
+ onEventDeriveRef(func: (event: object$.DeriveRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, object$.DeriveRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object$;
1494
+ onEventExtendRef(func: (event: object$.ExtendRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, object$.ExtendRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object$;
1467
1495
  onEventTransfer(func: (event: object$.TransferInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, object$.TransferInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object$;
1468
1496
  onEventTransferEvent(func: (event: object$.TransferEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, object$.TransferEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object$;
1497
+ onEventTransferRef(func: (event: object$.TransferRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, object$.TransferRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object$;
1469
1498
  }
1470
1499
  export declare namespace object$ {
1471
1500
  interface ConstructorRef {
@@ -1483,6 +1512,10 @@ export declare namespace object$ {
1483
1512
  const TYPE_QNAME = "0x1::object::DeleteRef";
1484
1513
  function type(): TypeDescriptor<DeleteRef>;
1485
1514
  }
1515
+ type DeleteRefInstance = TypedEventInstance<DeleteRef> & {
1516
+ data_decoded: DeleteRef;
1517
+ type_arguments: [];
1518
+ };
1486
1519
  interface DeriveRef {
1487
1520
  self: MoveAddressType;
1488
1521
  }
@@ -1490,6 +1523,10 @@ export declare namespace object$ {
1490
1523
  const TYPE_QNAME = "0x1::object::DeriveRef";
1491
1524
  function type(): TypeDescriptor<DeriveRef>;
1492
1525
  }
1526
+ type DeriveRefInstance = TypedEventInstance<DeriveRef> & {
1527
+ data_decoded: DeriveRef;
1528
+ type_arguments: [];
1529
+ };
1493
1530
  interface ExtendRef {
1494
1531
  self: MoveAddressType;
1495
1532
  }
@@ -1497,6 +1534,10 @@ export declare namespace object$ {
1497
1534
  const TYPE_QNAME = "0x1::object::ExtendRef";
1498
1535
  function type(): TypeDescriptor<ExtendRef>;
1499
1536
  }
1537
+ type ExtendRefInstance = TypedEventInstance<ExtendRef> & {
1538
+ data_decoded: ExtendRef;
1539
+ type_arguments: [];
1540
+ };
1500
1541
  interface LinearTransferRef {
1501
1542
  self: MoveAddressType;
1502
1543
  owner: MoveAddressType;
@@ -1574,6 +1615,10 @@ export declare namespace object$ {
1574
1615
  const TYPE_QNAME = "0x1::object::TransferRef";
1575
1616
  function type(): TypeDescriptor<TransferRef>;
1576
1617
  }
1618
+ type TransferRefInstance = TypedEventInstance<TransferRef> & {
1619
+ data_decoded: TransferRef;
1620
+ type_arguments: [];
1621
+ };
1577
1622
  interface Untransferable {
1578
1623
  dummy_field: boolean;
1579
1624
  }
@@ -1916,6 +1961,8 @@ export declare class account extends AptosBaseProcessor {
1916
1961
  onEventKeyRotation(func: (event: account.KeyRotationInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, account.KeyRotationInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account;
1917
1962
  onEventKeyRotationEvent(func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, account.KeyRotationEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account;
1918
1963
  onEventKeyRotationToPublicKey(func: (event: account.KeyRotationToPublicKeyInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, account.KeyRotationToPublicKeyInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account;
1964
+ onEventRotationCapability(func: (event: account.RotationCapabilityInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, account.RotationCapabilityInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account;
1965
+ onEventSignerCapability(func: (event: account.SignerCapabilityInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, account.SignerCapabilityInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account;
1919
1966
  }
1920
1967
  export declare namespace account {
1921
1968
  interface Account {
@@ -2022,6 +2069,10 @@ export declare namespace account {
2022
2069
  const TYPE_QNAME = "0x1::account::RotationCapability";
2023
2070
  function type(): TypeDescriptor<RotationCapability>;
2024
2071
  }
2072
+ type RotationCapabilityInstance = TypedEventInstance<RotationCapability> & {
2073
+ data_decoded: RotationCapability;
2074
+ type_arguments: [];
2075
+ };
2025
2076
  interface RotationCapabilityOfferProofChallenge {
2026
2077
  sequence_number: bigint;
2027
2078
  recipient_address: MoveAddressType;
@@ -2057,6 +2108,10 @@ export declare namespace account {
2057
2108
  const TYPE_QNAME = "0x1::account::SignerCapability";
2058
2109
  function type(): TypeDescriptor<SignerCapability>;
2059
2110
  }
2111
+ type SignerCapabilityInstance = TypedEventInstance<SignerCapability> & {
2112
+ data_decoded: SignerCapability;
2113
+ type_arguments: [];
2114
+ };
2060
2115
  interface SignerCapabilityOfferProofChallenge {
2061
2116
  sequence_number: bigint;
2062
2117
  recipient_address: MoveAddressType;
@@ -3656,6 +3711,14 @@ export declare namespace string_utils {
3656
3711
  namespace entry { }
3657
3712
  namespace view { }
3658
3713
  }
3714
+ export declare class aggregator_v2 extends AptosBaseProcessor {
3715
+ constructor(options: AptosBindOptions);
3716
+ static DEFAULT_OPTIONS: AptosBindOptions;
3717
+ static bind(options?: Partial<AptosBindOptions>): aggregator_v2;
3718
+ onEventAggregator(func: (event: aggregator_v2.AggregatorInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, aggregator_v2.AggregatorInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aggregator_v2;
3719
+ onEventAggregatorSnapshot(func: (event: aggregator_v2.AggregatorSnapshotInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, aggregator_v2.AggregatorSnapshotInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aggregator_v2;
3720
+ onEventDerivedStringSnapshot(func: (event: aggregator_v2.DerivedStringSnapshotInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, aggregator_v2.DerivedStringSnapshotInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aggregator_v2;
3721
+ }
3659
3722
  export declare namespace aggregator_v2 {
3660
3723
  interface Aggregator<T0> {
3661
3724
  value: T0;
@@ -3665,6 +3728,10 @@ export declare namespace aggregator_v2 {
3665
3728
  const TYPE_QNAME = "0x1::aggregator_v2::Aggregator";
3666
3729
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Aggregator<T0>>;
3667
3730
  }
3731
+ type AggregatorInstance = TypedEventInstance<Aggregator<any>> & {
3732
+ data_decoded: Aggregator<any>;
3733
+ type_arguments: [string];
3734
+ };
3668
3735
  interface AggregatorSnapshot<T0> {
3669
3736
  value: T0;
3670
3737
  }
@@ -3672,6 +3739,10 @@ export declare namespace aggregator_v2 {
3672
3739
  const TYPE_QNAME = "0x1::aggregator_v2::AggregatorSnapshot";
3673
3740
  function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<AggregatorSnapshot<T0>>;
3674
3741
  }
3742
+ type AggregatorSnapshotInstance = TypedEventInstance<AggregatorSnapshot<any>> & {
3743
+ data_decoded: AggregatorSnapshot<any>;
3744
+ type_arguments: [string];
3745
+ };
3675
3746
  interface DerivedStringSnapshot {
3676
3747
  value: string;
3677
3748
  padding: string;
@@ -3680,6 +3751,10 @@ export declare namespace aggregator_v2 {
3680
3751
  const TYPE_QNAME = "0x1::aggregator_v2::DerivedStringSnapshot";
3681
3752
  function type(): TypeDescriptor<DerivedStringSnapshot>;
3682
3753
  }
3754
+ type DerivedStringSnapshotInstance = TypedEventInstance<DerivedStringSnapshot> & {
3755
+ data_decoded: DerivedStringSnapshot;
3756
+ type_arguments: [];
3757
+ };
3683
3758
  namespace entry { }
3684
3759
  namespace view { }
3685
3760
  }
@@ -4159,11 +4234,17 @@ export declare class fungible_asset extends AptosBaseProcessor {
4159
4234
  static bind(options?: Partial<AptosBindOptions>): fungible_asset;
4160
4235
  onEntryTransfer(func: (call: fungible_asset.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.TransferPayload>): fungible_asset;
4161
4236
  onEntryUpgradeStoreToConcurrent(func: (call: fungible_asset.UpgradeStoreToConcurrentPayload, ctx: AptosContext) => void, filter?: CallFilter, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.UpgradeStoreToConcurrentPayload>): fungible_asset;
4237
+ onEventTransferRef(func: (event: fungible_asset.TransferRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.TransferRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4238
+ onEventBurnRef(func: (event: fungible_asset.BurnRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.BurnRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4162
4239
  onEventDeposit(func: (event: fungible_asset.DepositInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.DepositInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4163
4240
  onEventDepositEvent(func: (event: fungible_asset.DepositEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.DepositEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4164
4241
  onEventFrozen(func: (event: fungible_asset.FrozenInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.FrozenInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4165
4242
  onEventFrozenEvent(func: (event: fungible_asset.FrozenEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.FrozenEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4166
4243
  onEventFungibleStoreDeletion(func: (event: fungible_asset.FungibleStoreDeletionInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.FungibleStoreDeletionInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4244
+ onEventMintRef(func: (event: fungible_asset.MintRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.MintRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4245
+ onEventMutateMetadataRef(func: (event: fungible_asset.MutateMetadataRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.MutateMetadataRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4246
+ onEventRawBalanceRef(func: (event: fungible_asset.RawBalanceRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.RawBalanceRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4247
+ onEventRawSupplyRef(func: (event: fungible_asset.RawSupplyRefInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.RawSupplyRefInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4167
4248
  onEventWithdraw(func: (event: fungible_asset.WithdrawInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.WithdrawInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4168
4249
  onEventWithdrawEvent(func: (event: fungible_asset.WithdrawEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, fungible_asset.WithdrawEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
4169
4250
  }
@@ -4175,6 +4256,10 @@ export declare namespace fungible_asset {
4175
4256
  const TYPE_QNAME = "0x1::fungible_asset::TransferRef";
4176
4257
  function type(): TypeDescriptor<TransferRef>;
4177
4258
  }
4259
+ type TransferRefInstance = TypedEventInstance<TransferRef> & {
4260
+ data_decoded: TransferRef;
4261
+ type_arguments: [];
4262
+ };
4178
4263
  interface Untransferable {
4179
4264
  dummy_field: boolean;
4180
4265
  }
@@ -4189,6 +4274,10 @@ export declare namespace fungible_asset {
4189
4274
  const TYPE_QNAME = "0x1::fungible_asset::BurnRef";
4190
4275
  function type(): TypeDescriptor<BurnRef>;
4191
4276
  }
4277
+ type BurnRefInstance = TypedEventInstance<BurnRef> & {
4278
+ data_decoded: BurnRef;
4279
+ type_arguments: [];
4280
+ };
4192
4281
  interface ConcurrentFungibleBalance {
4193
4282
  balance: aggregator_v2.Aggregator<bigint>;
4194
4283
  }
@@ -4322,6 +4411,10 @@ export declare namespace fungible_asset {
4322
4411
  const TYPE_QNAME = "0x1::fungible_asset::MintRef";
4323
4412
  function type(): TypeDescriptor<MintRef>;
4324
4413
  }
4414
+ type MintRefInstance = TypedEventInstance<MintRef> & {
4415
+ data_decoded: MintRef;
4416
+ type_arguments: [];
4417
+ };
4325
4418
  interface MutateMetadataRef {
4326
4419
  metadata: object$.Object<fungible_asset.Metadata>;
4327
4420
  }
@@ -4329,6 +4422,10 @@ export declare namespace fungible_asset {
4329
4422
  const TYPE_QNAME = "0x1::fungible_asset::MutateMetadataRef";
4330
4423
  function type(): TypeDescriptor<MutateMetadataRef>;
4331
4424
  }
4425
+ type MutateMetadataRefInstance = TypedEventInstance<MutateMetadataRef> & {
4426
+ data_decoded: MutateMetadataRef;
4427
+ type_arguments: [];
4428
+ };
4332
4429
  interface RawBalanceRef {
4333
4430
  metadata: object$.Object<fungible_asset.Metadata>;
4334
4431
  }
@@ -4336,6 +4433,10 @@ export declare namespace fungible_asset {
4336
4433
  const TYPE_QNAME = "0x1::fungible_asset::RawBalanceRef";
4337
4434
  function type(): TypeDescriptor<RawBalanceRef>;
4338
4435
  }
4436
+ type RawBalanceRefInstance = TypedEventInstance<RawBalanceRef> & {
4437
+ data_decoded: RawBalanceRef;
4438
+ type_arguments: [];
4439
+ };
4339
4440
  interface RawSupplyRef {
4340
4441
  metadata: object$.Object<fungible_asset.Metadata>;
4341
4442
  }
@@ -4343,6 +4444,10 @@ export declare namespace fungible_asset {
4343
4444
  const TYPE_QNAME = "0x1::fungible_asset::RawSupplyRef";
4344
4445
  function type(): TypeDescriptor<RawSupplyRef>;
4345
4446
  }
4447
+ type RawSupplyRefInstance = TypedEventInstance<RawSupplyRef> & {
4448
+ data_decoded: RawSupplyRef;
4449
+ type_arguments: [];
4450
+ };
4346
4451
  interface Supply {
4347
4452
  current: bigint;
4348
4453
  maximum: option.Option<bigint>;
@@ -7297,6 +7402,12 @@ export declare namespace account_abstraction {
7297
7402
  type_arguments: [];
7298
7403
  }
7299
7404
  }
7405
+ export declare class governance_proposal extends AptosBaseProcessor {
7406
+ constructor(options: AptosBindOptions);
7407
+ static DEFAULT_OPTIONS: AptosBindOptions;
7408
+ static bind(options?: Partial<AptosBindOptions>): governance_proposal;
7409
+ onEventGovernanceProposal(func: (event: governance_proposal.GovernanceProposalInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, governance_proposal.GovernanceProposalInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): governance_proposal;
7410
+ }
7300
7411
  export declare namespace governance_proposal {
7301
7412
  interface GovernanceProposal {
7302
7413
  dummy_field: boolean;
@@ -7305,6 +7416,10 @@ export declare namespace governance_proposal {
7305
7416
  const TYPE_QNAME = "0x1::governance_proposal::GovernanceProposal";
7306
7417
  function type(): TypeDescriptor<GovernanceProposal>;
7307
7418
  }
7419
+ type GovernanceProposalInstance = TypedEventInstance<GovernanceProposal> & {
7420
+ data_decoded: GovernanceProposal;
7421
+ type_arguments: [];
7422
+ };
7308
7423
  namespace entry { }
7309
7424
  namespace view { }
7310
7425
  }
@@ -7394,6 +7509,12 @@ export declare namespace permissioned_signer {
7394
7509
  type_arguments: [];
7395
7510
  }
7396
7511
  }
7512
+ export declare class transaction_context extends AptosBaseProcessor {
7513
+ constructor(options: AptosBindOptions);
7514
+ static DEFAULT_OPTIONS: AptosBindOptions;
7515
+ static bind(options?: Partial<AptosBindOptions>): transaction_context;
7516
+ onEventAUID(func: (event: transaction_context.AUIDInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<MoveFetchConfig, transaction_context.AUIDInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): transaction_context;
7517
+ }
7397
7518
  export declare namespace transaction_context {
7398
7519
  interface AUID {
7399
7520
  unique_address: MoveAddressType;
@@ -7402,6 +7523,10 @@ export declare namespace transaction_context {
7402
7523
  const TYPE_QNAME = "0x1::transaction_context::AUID";
7403
7524
  function type(): TypeDescriptor<AUID>;
7404
7525
  }
7526
+ type AUIDInstance = TypedEventInstance<AUID> & {
7527
+ data_decoded: AUID;
7528
+ type_arguments: [];
7529
+ };
7405
7530
  interface EntryFunctionPayload {
7406
7531
  account_address: MoveAddressType;
7407
7532
  module_name: string;