@sentio/sdk 2.1.5 → 2.2.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/lib/aptos/aptos-plugin.js +5 -13
  2. package/lib/aptos/aptos-plugin.js.map +1 -1
  3. package/lib/aptos/aptos-processor.d.ts +5 -28
  4. package/lib/aptos/aptos-processor.js +4 -14
  5. package/lib/aptos/aptos-processor.js.map +1 -1
  6. package/lib/aptos/builtin/0x1.d.ts +116 -115
  7. package/lib/aptos/builtin/0x1.js +0 -1
  8. package/lib/aptos/builtin/0x1.js.map +1 -1
  9. package/lib/aptos/builtin/0x3.d.ts +28 -27
  10. package/lib/aptos/builtin/0x3.js +0 -1
  11. package/lib/aptos/builtin/0x3.js.map +1 -1
  12. package/lib/aptos/codegen/codegen.js +5 -5
  13. package/lib/aptos/codegen/codegen.js.map +1 -1
  14. package/lib/aptos/index.d.ts +0 -1
  15. package/lib/aptos/index.js.map +1 -1
  16. package/lib/aptos/tests/types/reserved.d.ts +21 -20
  17. package/lib/aptos/tests/types/reserved.js +0 -1
  18. package/lib/aptos/tests/types/reserved.js.map +1 -1
  19. package/lib/aptos/tests/types/soffl3.d.ts +37 -36
  20. package/lib/aptos/tests/types/soffl3.js +0 -1
  21. package/lib/aptos/tests/types/soffl3.js.map +1 -1
  22. package/lib/aptos/tests/types/souffle.d.ts +21 -20
  23. package/lib/aptos/tests/types/souffle.js +0 -1
  24. package/lib/aptos/tests/types/souffle.js.map +1 -1
  25. package/lib/core/chain.d.ts +3 -2
  26. package/lib/core/chain.js +3 -2
  27. package/lib/core/chain.js.map +1 -1
  28. package/lib/core/index.d.ts +0 -2
  29. package/lib/core/index.js +0 -2
  30. package/lib/core/index.js.map +1 -1
  31. package/lib/eth/context.d.ts +0 -7
  32. package/lib/eth/context.js +0 -24
  33. package/lib/eth/context.js.map +1 -1
  34. package/lib/eth/eth-plugin.js +4 -14
  35. package/lib/eth/eth-plugin.js.map +1 -1
  36. package/lib/move/index.d.ts +25 -0
  37. package/lib/move/index.js +11 -0
  38. package/lib/move/index.js.map +1 -0
  39. package/lib/solana/solana-plugin.js +3 -10
  40. package/lib/solana/solana-plugin.js.map +1 -1
  41. package/lib/sui/context.d.ts +13 -0
  42. package/lib/sui/context.js +33 -0
  43. package/lib/sui/context.js.map +1 -0
  44. package/lib/sui/index.d.ts +2 -0
  45. package/lib/sui/index.js +3 -0
  46. package/lib/sui/index.js.map +1 -0
  47. package/lib/sui/models.d.ts +8 -0
  48. package/lib/sui/models.js +25 -0
  49. package/lib/sui/models.js.map +1 -0
  50. package/lib/sui/network.d.ts +11 -0
  51. package/lib/sui/network.js +26 -0
  52. package/lib/sui/network.js.map +1 -0
  53. package/lib/sui/sui-plugin.d.ts +12 -0
  54. package/lib/sui/sui-plugin.js +96 -0
  55. package/lib/sui/sui-plugin.js.map +1 -0
  56. package/lib/sui/sui-processor.d.ts +29 -0
  57. package/lib/sui/sui-processor.js +120 -0
  58. package/lib/sui/sui-processor.js.map +1 -0
  59. package/lib/sui/tests/sui.test.d.ts +1 -0
  60. package/lib/sui/tests/sui.test.js.map +1 -0
  61. package/lib/testing/test-processor-server.d.ts +1 -0
  62. package/lib/testing/test-processor-server.js +3 -0
  63. package/lib/testing/test-processor-server.js.map +1 -1
  64. package/lib/utils/price.d.ts +6 -2
  65. package/lib/utils/price.js +15 -6
  66. package/lib/utils/price.js.map +1 -1
  67. package/package.json +14 -7
  68. package/src/aptos/aptos-plugin.ts +8 -16
  69. package/src/aptos/aptos-processor.ts +8 -46
  70. package/src/aptos/builtin/0x1.ts +115 -115
  71. package/src/aptos/builtin/0x3.ts +27 -27
  72. package/src/aptos/codegen/codegen.ts +5 -5
  73. package/src/aptos/index.ts +0 -1
  74. package/src/aptos/tests/types/reserved.ts +20 -20
  75. package/src/aptos/tests/types/soffl3.ts +36 -36
  76. package/src/aptos/tests/types/souffle.ts +20 -20
  77. package/src/core/chain.ts +4 -3
  78. package/src/core/index.ts +0 -3
  79. package/src/eth/context.ts +0 -26
  80. package/src/eth/eth-plugin.ts +3 -13
  81. package/src/move/index.ts +33 -0
  82. package/src/solana/solana-plugin.ts +2 -9
  83. package/src/sui/abis/0x1.json +2067 -0
  84. package/src/sui/abis/0x2.json +15598 -0
  85. package/src/sui/context.ts +43 -0
  86. package/src/sui/index.ts +3 -0
  87. package/src/sui/models.ts +38 -0
  88. package/src/sui/network.ts +28 -0
  89. package/src/sui/sui-plugin.ts +122 -0
  90. package/src/sui/sui-processor.ts +159 -0
  91. package/src/testing/test-processor-server.ts +4 -0
  92. package/src/utils/price.ts +31 -10
  93. package/lib/core/sui-plugin.d.ts +0 -8
  94. package/lib/core/sui-plugin.js +0 -42
  95. package/lib/core/sui-plugin.js.map +0 -1
  96. package/lib/core/sui-processor.d.ts +0 -25
  97. package/lib/core/sui-processor.js +0 -43
  98. package/lib/core/sui-processor.js.map +0 -1
  99. package/src/aptos/codegen/tsconfig.json +0 -8
  100. package/src/core/sui-plugin.ts +0 -48
  101. package/src/core/sui-processor.ts +0 -58
@@ -1,5 +1,6 @@
1
- import { MoveCoder, AptosBindOptions, AptosBaseProcessor, TypedEventInstance, TypedEntryFunctionPayload, AptosContext, CallFilter } from "@sentio/sdk/aptos";
2
- import { AptosFetchConfig } from "@sentio/protos";
1
+ import { CallFilter } from "@sentio/sdk/move";
2
+ import { MoveCoder, AptosBindOptions, AptosBaseProcessor, TypedEventInstance, TypedEntryFunctionPayload, AptosContext } from "@sentio/sdk/aptos";
3
+ import { MoveFetchConfig } from "@sentio/protos";
3
4
  import { Address, MoveModule } from "@sentio/sdk/aptos";
4
5
  export declare namespace acl {
5
6
  class ACL {
@@ -26,7 +27,7 @@ export declare class code extends AptosBaseProcessor {
26
27
  constructor(options: AptosBindOptions);
27
28
  static DEFAULT_OPTIONS: AptosBindOptions;
28
29
  static bind(options?: Partial<AptosBindOptions>): code;
29
- onEntryPublishPackageTxn(func: (call: code.PublishPackageTxnPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): code;
30
+ onEntryPublishPackageTxn(func: (call: code.PublishPackageTxnPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): code;
30
31
  loadTypesInternal(registry: MoveCoder): void;
31
32
  }
32
33
  export declare namespace code {
@@ -77,12 +78,12 @@ export declare class coin extends AptosBaseProcessor {
77
78
  constructor(options: AptosBindOptions);
78
79
  static DEFAULT_OPTIONS: AptosBindOptions;
79
80
  static bind(options?: Partial<AptosBindOptions>): coin;
80
- onEntryFreezeCoinStore(func: (call: coin.FreezeCoinStorePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): coin;
81
- onEntryTransfer(func: (call: coin.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): coin;
82
- onEntryUnfreezeCoinStore(func: (call: coin.UnfreezeCoinStorePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): coin;
83
- onEntryUpgradeSupply(func: (call: coin.UpgradeSupplyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): coin;
84
- onEventDepositEvent(func: (event: coin.DepositEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): coin;
85
- onEventWithdrawEvent(func: (event: coin.WithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): coin;
81
+ onEntryFreezeCoinStore(func: (call: coin.FreezeCoinStorePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): coin;
82
+ onEntryTransfer(func: (call: coin.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): coin;
83
+ onEntryUnfreezeCoinStore(func: (call: coin.UnfreezeCoinStorePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): coin;
84
+ onEntryUpgradeSupply(func: (call: coin.UpgradeSupplyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): coin;
85
+ onEventDepositEvent(func: (event: coin.DepositEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): coin;
86
+ onEventWithdrawEvent(func: (event: coin.WithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): coin;
86
87
  loadTypesInternal(registry: MoveCoder): void;
87
88
  }
88
89
  export declare namespace coin {
@@ -180,8 +181,8 @@ export declare class block extends AptosBaseProcessor {
180
181
  constructor(options: AptosBindOptions);
181
182
  static DEFAULT_OPTIONS: AptosBindOptions;
182
183
  static bind(options?: Partial<AptosBindOptions>): block;
183
- onEventNewBlockEvent(func: (event: block.NewBlockEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): block;
184
- onEventUpdateEpochIntervalEvent(func: (event: block.UpdateEpochIntervalEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): block;
184
+ onEventNewBlockEvent(func: (event: block.NewBlockEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): block;
185
+ onEventUpdateEpochIntervalEvent(func: (event: block.UpdateEpochIntervalEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): block;
185
186
  loadTypesInternal(registry: MoveCoder): void;
186
187
  }
187
188
  export declare namespace block {
@@ -240,31 +241,31 @@ export declare class stake extends AptosBaseProcessor {
240
241
  constructor(options: AptosBindOptions);
241
242
  static DEFAULT_OPTIONS: AptosBindOptions;
242
243
  static bind(options?: Partial<AptosBindOptions>): stake;
243
- onEntryAddStake(func: (call: stake.AddStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
244
- onEntryIncreaseLockup(func: (call: stake.IncreaseLockupPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
245
- onEntryInitializeStakeOwner(func: (call: stake.InitializeStakeOwnerPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
246
- onEntryInitializeValidator(func: (call: stake.InitializeValidatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
247
- onEntryJoinValidatorSet(func: (call: stake.JoinValidatorSetPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
248
- onEntryLeaveValidatorSet(func: (call: stake.LeaveValidatorSetPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
249
- onEntryReactivateStake(func: (call: stake.ReactivateStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
250
- onEntryRotateConsensusKey(func: (call: stake.RotateConsensusKeyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
251
- onEntrySetDelegatedVoter(func: (call: stake.SetDelegatedVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
252
- onEntrySetOperator(func: (call: stake.SetOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
253
- onEntryUnlock(func: (call: stake.UnlockPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
254
- onEntryUpdateNetworkAndFullnodeAddresses(func: (call: stake.UpdateNetworkAndFullnodeAddressesPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
255
- onEntryWithdraw(func: (call: stake.WithdrawPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): stake;
256
- onEventRegisterValidatorCandidateEvent(func: (event: stake.RegisterValidatorCandidateEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
257
- onEventSetOperatorEvent(func: (event: stake.SetOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
258
- onEventAddStakeEvent(func: (event: stake.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
259
- onEventReactivateStakeEvent(func: (event: stake.ReactivateStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
260
- onEventRotateConsensusKeyEvent(func: (event: stake.RotateConsensusKeyEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
261
- onEventUpdateNetworkAndFullnodeAddressesEvent(func: (event: stake.UpdateNetworkAndFullnodeAddressesEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
262
- onEventIncreaseLockupEvent(func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
263
- onEventJoinValidatorSetEvent(func: (event: stake.JoinValidatorSetEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
264
- onEventDistributeRewardsEvent(func: (event: stake.DistributeRewardsEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
265
- onEventUnlockStakeEvent(func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
266
- onEventWithdrawStakeEvent(func: (event: stake.WithdrawStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
267
- onEventLeaveValidatorSetEvent(func: (event: stake.LeaveValidatorSetEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): stake;
244
+ onEntryAddStake(func: (call: stake.AddStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
245
+ onEntryIncreaseLockup(func: (call: stake.IncreaseLockupPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
246
+ onEntryInitializeStakeOwner(func: (call: stake.InitializeStakeOwnerPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
247
+ onEntryInitializeValidator(func: (call: stake.InitializeValidatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
248
+ onEntryJoinValidatorSet(func: (call: stake.JoinValidatorSetPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
249
+ onEntryLeaveValidatorSet(func: (call: stake.LeaveValidatorSetPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
250
+ onEntryReactivateStake(func: (call: stake.ReactivateStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
251
+ onEntryRotateConsensusKey(func: (call: stake.RotateConsensusKeyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
252
+ onEntrySetDelegatedVoter(func: (call: stake.SetDelegatedVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
253
+ onEntrySetOperator(func: (call: stake.SetOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
254
+ onEntryUnlock(func: (call: stake.UnlockPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
255
+ onEntryUpdateNetworkAndFullnodeAddresses(func: (call: stake.UpdateNetworkAndFullnodeAddressesPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
256
+ onEntryWithdraw(func: (call: stake.WithdrawPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): stake;
257
+ onEventRegisterValidatorCandidateEvent(func: (event: stake.RegisterValidatorCandidateEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
258
+ onEventSetOperatorEvent(func: (event: stake.SetOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
259
+ onEventAddStakeEvent(func: (event: stake.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
260
+ onEventReactivateStakeEvent(func: (event: stake.ReactivateStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
261
+ onEventRotateConsensusKeyEvent(func: (event: stake.RotateConsensusKeyEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
262
+ onEventUpdateNetworkAndFullnodeAddressesEvent(func: (event: stake.UpdateNetworkAndFullnodeAddressesEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
263
+ onEventIncreaseLockupEvent(func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
264
+ onEventJoinValidatorSetEvent(func: (event: stake.JoinValidatorSetEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
265
+ onEventDistributeRewardsEvent(func: (event: stake.DistributeRewardsEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
266
+ onEventUnlockStakeEvent(func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
267
+ onEventWithdrawStakeEvent(func: (event: stake.WithdrawStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
268
+ onEventLeaveValidatorSetEvent(func: (event: stake.LeaveValidatorSetEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): stake;
268
269
  loadTypesInternal(registry: MoveCoder): void;
269
270
  }
270
271
  export declare namespace stake {
@@ -543,10 +544,10 @@ export declare class voting extends AptosBaseProcessor {
543
544
  constructor(options: AptosBindOptions);
544
545
  static DEFAULT_OPTIONS: AptosBindOptions;
545
546
  static bind(options?: Partial<AptosBindOptions>): voting;
546
- onEventCreateProposalEvent(func: (event: voting.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): voting;
547
- onEventRegisterForumEvent(func: (event: voting.RegisterForumEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): voting;
548
- onEventResolveProposal(func: (event: voting.ResolveProposalInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): voting;
549
- onEventVoteEvent(func: (event: voting.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): voting;
547
+ onEventCreateProposalEvent(func: (event: voting.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): voting;
548
+ onEventRegisterForumEvent(func: (event: voting.RegisterForumEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): voting;
549
+ onEventResolveProposal(func: (event: voting.ResolveProposalInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): voting;
550
+ onEventVoteEvent(func: (event: voting.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): voting;
550
551
  loadTypesInternal(registry: MoveCoder): void;
551
552
  }
552
553
  export declare namespace voting {
@@ -627,11 +628,11 @@ export declare class account extends AptosBaseProcessor {
627
628
  constructor(options: AptosBindOptions);
628
629
  static DEFAULT_OPTIONS: AptosBindOptions;
629
630
  static bind(options?: Partial<AptosBindOptions>): account;
630
- onEntryOfferSignerCapability(func: (call: account.OfferSignerCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): account;
631
- onEntryRevokeSignerCapability(func: (call: account.RevokeSignerCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): account;
632
- onEntryRotateAuthenticationKey(func: (call: account.RotateAuthenticationKeyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): account;
633
- onEventCoinRegisterEvent(func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): account;
634
- onEventKeyRotationEvent(func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): account;
631
+ onEntryOfferSignerCapability(func: (call: account.OfferSignerCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): account;
632
+ onEntryRevokeSignerCapability(func: (call: account.RevokeSignerCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): account;
633
+ onEntryRotateAuthenticationKey(func: (call: account.RotateAuthenticationKeyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): account;
634
+ onEventCoinRegisterEvent(func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): account;
635
+ onEventKeyRotationEvent(func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): account;
635
636
  loadTypesInternal(registry: MoveCoder): void;
636
637
  }
637
638
  export declare namespace account {
@@ -786,7 +787,7 @@ export declare class version extends AptosBaseProcessor {
786
787
  constructor(options: AptosBindOptions);
787
788
  static DEFAULT_OPTIONS: AptosBindOptions;
788
789
  static bind(options?: Partial<AptosBindOptions>): version;
789
- onEntrySetVersion(func: (call: version.SetVersionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): version;
790
+ onEntrySetVersion(func: (call: version.SetVersionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): version;
790
791
  loadTypesInternal(registry: MoveCoder): void;
791
792
  }
792
793
  export declare namespace version {
@@ -809,29 +810,29 @@ export declare class vesting extends AptosBaseProcessor {
809
810
  constructor(options: AptosBindOptions);
810
811
  static DEFAULT_OPTIONS: AptosBindOptions;
811
812
  static bind(options?: Partial<AptosBindOptions>): vesting;
812
- onEntryAdminWithdraw(func: (call: vesting.AdminWithdrawPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
813
- onEntryDistribute(func: (call: vesting.DistributePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
814
- onEntryResetBeneficiary(func: (call: vesting.ResetBeneficiaryPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
815
- onEntryResetLockup(func: (call: vesting.ResetLockupPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
816
- onEntrySetBeneficiary(func: (call: vesting.SetBeneficiaryPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
817
- onEntrySetBeneficiaryResetter(func: (call: vesting.SetBeneficiaryResetterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
818
- onEntrySetManagementRole(func: (call: vesting.SetManagementRolePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
819
- onEntryTerminateVestingContract(func: (call: vesting.TerminateVestingContractPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
820
- onEntryUnlockRewards(func: (call: vesting.UnlockRewardsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
821
- onEntryUpdateOperator(func: (call: vesting.UpdateOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
822
- onEntryUpdateOperatorWithSameCommission(func: (call: vesting.UpdateOperatorWithSameCommissionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
823
- onEntryUpdateVoter(func: (call: vesting.UpdateVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
824
- onEntryVest(func: (call: vesting.VestPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): vesting;
825
- onEventCreateVestingContractEvent(func: (event: vesting.CreateVestingContractEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): vesting;
826
- onEventUpdateOperatorEvent(func: (event: vesting.UpdateOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): vesting;
827
- onEventUpdateVoterEvent(func: (event: vesting.UpdateVoterEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): vesting;
828
- onEventResetLockupEvent(func: (event: vesting.ResetLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): vesting;
829
- onEventSetBeneficiaryEvent(func: (event: vesting.SetBeneficiaryEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): vesting;
830
- onEventUnlockRewardsEvent(func: (event: vesting.UnlockRewardsEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): vesting;
831
- onEventVestEvent(func: (event: vesting.VestEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): vesting;
832
- onEventDistributeEvent(func: (event: vesting.DistributeEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): vesting;
833
- onEventTerminateEvent(func: (event: vesting.TerminateEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): vesting;
834
- onEventAdminWithdrawEvent(func: (event: vesting.AdminWithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): vesting;
813
+ onEntryAdminWithdraw(func: (call: vesting.AdminWithdrawPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
814
+ onEntryDistribute(func: (call: vesting.DistributePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
815
+ onEntryResetBeneficiary(func: (call: vesting.ResetBeneficiaryPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
816
+ onEntryResetLockup(func: (call: vesting.ResetLockupPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
817
+ onEntrySetBeneficiary(func: (call: vesting.SetBeneficiaryPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
818
+ onEntrySetBeneficiaryResetter(func: (call: vesting.SetBeneficiaryResetterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
819
+ onEntrySetManagementRole(func: (call: vesting.SetManagementRolePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
820
+ onEntryTerminateVestingContract(func: (call: vesting.TerminateVestingContractPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
821
+ onEntryUnlockRewards(func: (call: vesting.UnlockRewardsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
822
+ onEntryUpdateOperator(func: (call: vesting.UpdateOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
823
+ onEntryUpdateOperatorWithSameCommission(func: (call: vesting.UpdateOperatorWithSameCommissionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
824
+ onEntryUpdateVoter(func: (call: vesting.UpdateVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
825
+ onEntryVest(func: (call: vesting.VestPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): vesting;
826
+ onEventCreateVestingContractEvent(func: (event: vesting.CreateVestingContractEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): vesting;
827
+ onEventUpdateOperatorEvent(func: (event: vesting.UpdateOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): vesting;
828
+ onEventUpdateVoterEvent(func: (event: vesting.UpdateVoterEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): vesting;
829
+ onEventResetLockupEvent(func: (event: vesting.ResetLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): vesting;
830
+ onEventSetBeneficiaryEvent(func: (event: vesting.SetBeneficiaryEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): vesting;
831
+ onEventUnlockRewardsEvent(func: (event: vesting.UnlockRewardsEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): vesting;
832
+ onEventVestEvent(func: (event: vesting.VestEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): vesting;
833
+ onEventDistributeEvent(func: (event: vesting.DistributeEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): vesting;
834
+ onEventTerminateEvent(func: (event: vesting.TerminateEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): vesting;
835
+ onEventAdminWithdrawEvent(func: (event: vesting.AdminWithdrawEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): vesting;
835
836
  loadTypesInternal(registry: MoveCoder): void;
836
837
  }
837
838
  export declare namespace vesting {
@@ -1154,9 +1155,9 @@ export declare class aptos_coin extends AptosBaseProcessor {
1154
1155
  constructor(options: AptosBindOptions);
1155
1156
  static DEFAULT_OPTIONS: AptosBindOptions;
1156
1157
  static bind(options?: Partial<AptosBindOptions>): aptos_coin;
1157
- onEntryClaimMintCapability(func: (call: aptos_coin.ClaimMintCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): aptos_coin;
1158
- onEntryDelegateMintCapability(func: (call: aptos_coin.DelegateMintCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): aptos_coin;
1159
- onEntryMint(func: (call: aptos_coin.MintPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): aptos_coin;
1158
+ onEntryClaimMintCapability(func: (call: aptos_coin.ClaimMintCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): aptos_coin;
1159
+ onEntryDelegateMintCapability(func: (call: aptos_coin.DelegateMintCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): aptos_coin;
1160
+ onEntryMint(func: (call: aptos_coin.MintPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): aptos_coin;
1160
1161
  loadTypesInternal(registry: MoveCoder): void;
1161
1162
  }
1162
1163
  export declare namespace aptos_coin {
@@ -1320,10 +1321,10 @@ export declare class managed_coin extends AptosBaseProcessor {
1320
1321
  constructor(options: AptosBindOptions);
1321
1322
  static DEFAULT_OPTIONS: AptosBindOptions;
1322
1323
  static bind(options?: Partial<AptosBindOptions>): managed_coin;
1323
- onEntryBurn(func: (call: managed_coin.BurnPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): managed_coin;
1324
- onEntryInitialize(func: (call: managed_coin.InitializePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): managed_coin;
1325
- onEntryMint(func: (call: managed_coin.MintPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): managed_coin;
1326
- onEntryRegister(func: (call: managed_coin.RegisterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): managed_coin;
1324
+ onEntryBurn(func: (call: managed_coin.BurnPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): managed_coin;
1325
+ onEntryInitialize(func: (call: managed_coin.InitializePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): managed_coin;
1326
+ onEntryMint(func: (call: managed_coin.MintPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): managed_coin;
1327
+ onEntryRegister(func: (call: managed_coin.RegisterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): managed_coin;
1327
1328
  loadTypesInternal(registry: MoveCoder): void;
1328
1329
  }
1329
1330
  export declare namespace managed_coin {
@@ -1372,8 +1373,8 @@ export declare class aptos_account extends AptosBaseProcessor {
1372
1373
  constructor(options: AptosBindOptions);
1373
1374
  static DEFAULT_OPTIONS: AptosBindOptions;
1374
1375
  static bind(options?: Partial<AptosBindOptions>): aptos_account;
1375
- onEntryCreateAccount(func: (call: aptos_account.CreateAccountPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): aptos_account;
1376
- onEntryTransfer(func: (call: aptos_account.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): aptos_account;
1376
+ onEntryCreateAccount(func: (call: aptos_account.CreateAccountPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): aptos_account;
1377
+ onEntryTransfer(func: (call: aptos_account.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): aptos_account;
1377
1378
  loadTypesInternal(registry: MoveCoder): void;
1378
1379
  }
1379
1380
  export declare namespace aptos_account {
@@ -1416,14 +1417,14 @@ export declare class staking_proxy extends AptosBaseProcessor {
1416
1417
  constructor(options: AptosBindOptions);
1417
1418
  static DEFAULT_OPTIONS: AptosBindOptions;
1418
1419
  static bind(options?: Partial<AptosBindOptions>): staking_proxy;
1419
- onEntrySetOperator(func: (call: staking_proxy.SetOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_proxy;
1420
- onEntrySetStakePoolOperator(func: (call: staking_proxy.SetStakePoolOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_proxy;
1421
- onEntrySetStakePoolVoter(func: (call: staking_proxy.SetStakePoolVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_proxy;
1422
- onEntrySetStakingContractOperator(func: (call: staking_proxy.SetStakingContractOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_proxy;
1423
- onEntrySetStakingContractVoter(func: (call: staking_proxy.SetStakingContractVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_proxy;
1424
- onEntrySetVestingContractOperator(func: (call: staking_proxy.SetVestingContractOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_proxy;
1425
- onEntrySetVestingContractVoter(func: (call: staking_proxy.SetVestingContractVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_proxy;
1426
- onEntrySetVoter(func: (call: staking_proxy.SetVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_proxy;
1420
+ onEntrySetOperator(func: (call: staking_proxy.SetOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_proxy;
1421
+ onEntrySetStakePoolOperator(func: (call: staking_proxy.SetStakePoolOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_proxy;
1422
+ onEntrySetStakePoolVoter(func: (call: staking_proxy.SetStakePoolVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_proxy;
1423
+ onEntrySetStakingContractOperator(func: (call: staking_proxy.SetStakingContractOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_proxy;
1424
+ onEntrySetStakingContractVoter(func: (call: staking_proxy.SetStakingContractVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_proxy;
1425
+ onEntrySetVestingContractOperator(func: (call: staking_proxy.SetVestingContractOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_proxy;
1426
+ onEntrySetVestingContractVoter(func: (call: staking_proxy.SetVestingContractVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_proxy;
1427
+ onEntrySetVoter(func: (call: staking_proxy.SetVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_proxy;
1427
1428
  loadTypesInternal(registry: MoveCoder): void;
1428
1429
  }
1429
1430
  export declare namespace staking_proxy {
@@ -1498,7 +1499,7 @@ export declare class reconfiguration extends AptosBaseProcessor {
1498
1499
  constructor(options: AptosBindOptions);
1499
1500
  static DEFAULT_OPTIONS: AptosBindOptions;
1500
1501
  static bind(options?: Partial<AptosBindOptions>): reconfiguration;
1501
- onEventNewEpochEvent(func: (event: reconfiguration.NewEpochEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): reconfiguration;
1502
+ onEventNewEpochEvent(func: (event: reconfiguration.NewEpochEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): reconfiguration;
1502
1503
  loadTypesInternal(registry: MoveCoder): void;
1503
1504
  }
1504
1505
  export declare namespace reconfiguration {
@@ -1535,12 +1536,12 @@ export declare class aptos_governance extends AptosBaseProcessor {
1535
1536
  constructor(options: AptosBindOptions);
1536
1537
  static DEFAULT_OPTIONS: AptosBindOptions;
1537
1538
  static bind(options?: Partial<AptosBindOptions>): aptos_governance;
1538
- onEntryAddApprovedScriptHashScript(func: (call: aptos_governance.AddApprovedScriptHashScriptPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): aptos_governance;
1539
- onEntryCreateProposal(func: (call: aptos_governance.CreateProposalPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): aptos_governance;
1540
- onEntryVote(func: (call: aptos_governance.VotePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): aptos_governance;
1541
- onEventCreateProposalEvent(func: (event: aptos_governance.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): aptos_governance;
1542
- onEventUpdateConfigEvent(func: (event: aptos_governance.UpdateConfigEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): aptos_governance;
1543
- onEventVoteEvent(func: (event: aptos_governance.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): aptos_governance;
1539
+ onEntryAddApprovedScriptHashScript(func: (call: aptos_governance.AddApprovedScriptHashScriptPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): aptos_governance;
1540
+ onEntryCreateProposal(func: (call: aptos_governance.CreateProposalPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): aptos_governance;
1541
+ onEntryVote(func: (call: aptos_governance.VotePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): aptos_governance;
1542
+ onEventCreateProposalEvent(func: (event: aptos_governance.CreateProposalEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): aptos_governance;
1543
+ onEventUpdateConfigEvent(func: (event: aptos_governance.UpdateConfigEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): aptos_governance;
1544
+ onEventVoteEvent(func: (event: aptos_governance.VoteEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): aptos_governance;
1544
1545
  loadTypesInternal(registry: MoveCoder): void;
1545
1546
  }
1546
1547
  export declare namespace aptos_governance {
@@ -1634,9 +1635,9 @@ export declare class resource_account extends AptosBaseProcessor {
1634
1635
  constructor(options: AptosBindOptions);
1635
1636
  static DEFAULT_OPTIONS: AptosBindOptions;
1636
1637
  static bind(options?: Partial<AptosBindOptions>): resource_account;
1637
- onEntryCreateResourceAccount(func: (call: resource_account.CreateResourceAccountPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): resource_account;
1638
- onEntryCreateResourceAccountAndFund(func: (call: resource_account.CreateResourceAccountAndFundPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): resource_account;
1639
- onEntryCreateResourceAccountAndPublishPackage(func: (call: resource_account.CreateResourceAccountAndPublishPackagePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): resource_account;
1638
+ onEntryCreateResourceAccount(func: (call: resource_account.CreateResourceAccountPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): resource_account;
1639
+ onEntryCreateResourceAccountAndFund(func: (call: resource_account.CreateResourceAccountAndFundPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): resource_account;
1640
+ onEntryCreateResourceAccountAndPublishPackage(func: (call: resource_account.CreateResourceAccountAndPublishPackagePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): resource_account;
1640
1641
  loadTypesInternal(registry: MoveCoder): void;
1641
1642
  }
1642
1643
  export declare namespace resource_account {
@@ -1663,25 +1664,25 @@ export declare class staking_contract extends AptosBaseProcessor {
1663
1664
  constructor(options: AptosBindOptions);
1664
1665
  static DEFAULT_OPTIONS: AptosBindOptions;
1665
1666
  static bind(options?: Partial<AptosBindOptions>): staking_contract;
1666
- onEntryAddStake(func: (call: staking_contract.AddStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_contract;
1667
- onEntryCreateStakingContract(func: (call: staking_contract.CreateStakingContractPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_contract;
1668
- onEntryDistribute(func: (call: staking_contract.DistributePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_contract;
1669
- onEntryRequestCommission(func: (call: staking_contract.RequestCommissionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_contract;
1670
- onEntryResetLockup(func: (call: staking_contract.ResetLockupPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_contract;
1671
- onEntrySwitchOperator(func: (call: staking_contract.SwitchOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_contract;
1672
- onEntrySwitchOperatorWithSameCommission(func: (call: staking_contract.SwitchOperatorWithSameCommissionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_contract;
1673
- onEntryUnlockRewards(func: (call: staking_contract.UnlockRewardsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_contract;
1674
- onEntryUnlockStake(func: (call: staking_contract.UnlockStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_contract;
1675
- onEntryUpdateVoter(func: (call: staking_contract.UpdateVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: AptosFetchConfig): staking_contract;
1676
- onEventCreateStakingContractEvent(func: (event: staking_contract.CreateStakingContractEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): staking_contract;
1677
- onEventUpdateVoterEvent(func: (event: staking_contract.UpdateVoterEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): staking_contract;
1678
- onEventResetLockupEvent(func: (event: staking_contract.ResetLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): staking_contract;
1679
- onEventAddStakeEvent(func: (event: staking_contract.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): staking_contract;
1680
- onEventRequestCommissionEvent(func: (event: staking_contract.RequestCommissionEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): staking_contract;
1681
- onEventUnlockStakeEvent(func: (event: staking_contract.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): staking_contract;
1682
- onEventSwitchOperatorEvent(func: (event: staking_contract.SwitchOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): staking_contract;
1683
- onEventAddDistributionEvent(func: (event: staking_contract.AddDistributionEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): staking_contract;
1684
- onEventDistributeEvent(func: (event: staking_contract.DistributeEventInstance, ctx: AptosContext) => void, fetchConfig?: AptosFetchConfig): staking_contract;
1667
+ onEntryAddStake(func: (call: staking_contract.AddStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_contract;
1668
+ onEntryCreateStakingContract(func: (call: staking_contract.CreateStakingContractPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_contract;
1669
+ onEntryDistribute(func: (call: staking_contract.DistributePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_contract;
1670
+ onEntryRequestCommission(func: (call: staking_contract.RequestCommissionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_contract;
1671
+ onEntryResetLockup(func: (call: staking_contract.ResetLockupPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_contract;
1672
+ onEntrySwitchOperator(func: (call: staking_contract.SwitchOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_contract;
1673
+ onEntrySwitchOperatorWithSameCommission(func: (call: staking_contract.SwitchOperatorWithSameCommissionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_contract;
1674
+ onEntryUnlockRewards(func: (call: staking_contract.UnlockRewardsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_contract;
1675
+ onEntryUnlockStake(func: (call: staking_contract.UnlockStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_contract;
1676
+ onEntryUpdateVoter(func: (call: staking_contract.UpdateVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: MoveFetchConfig): staking_contract;
1677
+ onEventCreateStakingContractEvent(func: (event: staking_contract.CreateStakingContractEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): staking_contract;
1678
+ onEventUpdateVoterEvent(func: (event: staking_contract.UpdateVoterEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): staking_contract;
1679
+ onEventResetLockupEvent(func: (event: staking_contract.ResetLockupEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): staking_contract;
1680
+ onEventAddStakeEvent(func: (event: staking_contract.AddStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): staking_contract;
1681
+ onEventRequestCommissionEvent(func: (event: staking_contract.RequestCommissionEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): staking_contract;
1682
+ onEventUnlockStakeEvent(func: (event: staking_contract.UnlockStakeEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): staking_contract;
1683
+ onEventSwitchOperatorEvent(func: (event: staking_contract.SwitchOperatorEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): staking_contract;
1684
+ onEventAddDistributionEvent(func: (event: staking_contract.AddDistributionEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): staking_contract;
1685
+ onEventDistributeEvent(func: (event: staking_contract.DistributeEventInstance, ctx: AptosContext) => void, fetchConfig?: MoveFetchConfig): staking_contract;
1685
1686
  loadTypesInternal(registry: MoveCoder): void;
1686
1687
  }
1687
1688
  export declare namespace staking_contract {
@@ -1,7 +1,6 @@
1
1
  /* Autogenerated file. Do not edit manually. */
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
- /* Generated modules for account 0x1 */
5
4
  import { AptosBaseProcessor, AptosNetwork, } from "@sentio/sdk/aptos";
6
5
  export var acl;
7
6
  (function (acl) {