@sentio/sdk 2.59.0-rc.23 → 2.59.0-rc.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/aptos-processor.d.ts +3 -3
- package/lib/aptos/aptos-processor.d.ts.map +1 -1
- package/lib/aptos/aptos-processor.js +12 -6
- package/lib/aptos/aptos-processor.js.map +1 -1
- package/lib/aptos/builtin/0x1.d.ts +159 -159
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js +316 -316
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +52 -52
- package/lib/aptos/builtin/0x3.d.ts.map +1 -1
- package/lib/aptos/builtin/0x3.js +102 -102
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/builtin/0x4.d.ts +12 -12
- package/lib/aptos/builtin/0x4.d.ts.map +1 -1
- package/lib/aptos/builtin/0x4.js +22 -22
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/aptos/codegen/codegen.js +10 -0
- package/lib/aptos/codegen/codegen.js.map +1 -1
- package/lib/aptos/index.d.ts +1 -0
- package/lib/aptos/index.d.ts.map +1 -1
- package/lib/aptos/index.js.map +1 -1
- package/lib/aptos/models.d.ts +5 -0
- package/lib/aptos/models.d.ts.map +1 -1
- package/lib/move/shared-network-codegen.d.ts.map +1 -1
- package/lib/move/shared-network-codegen.js +1 -0
- package/lib/move/shared-network-codegen.js.map +1 -1
- package/lib/sui/builtin/0x1.d.ts.map +1 -1
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/lib/sui/models.d.ts +5 -0
- package/lib/sui/models.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/aptos/aptos-processor.ts +12 -8
- package/src/aptos/builtin/0x1.ts +317 -316
- package/src/aptos/builtin/0x3.ts +103 -102
- package/src/aptos/builtin/0x4.ts +23 -22
- package/src/aptos/codegen/codegen.ts +13 -1
- package/src/aptos/index.ts +2 -0
- package/src/aptos/models.ts +7 -0
- package/src/move/shared-network-codegen.ts +1 -0
- package/src/sui/builtin/0x1.ts +1 -0
- package/src/sui/builtin/0x2.ts +1 -0
- package/src/sui/builtin/0x3.ts +1 -0
- package/src/sui/models.ts +7 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
import { CallFilter, MoveFetchConfig, EventFilter } from "@sentio/sdk/move";
|
2
|
-
import { AptosBindOptions, AptosBaseProcessor, TypedFunctionPayload, AptosContext } from "@sentio/sdk/aptos";
|
2
|
+
import { AptosBindOptions, AptosBaseProcessor, TypedFunctionPayload, HandlerOptions, AptosContext } from "@sentio/sdk/aptos";
|
3
3
|
import { TypeDescriptor } from "@typemove/move";
|
4
4
|
import { MoveCoder, TypedEventInstance } from "@typemove/aptos";
|
5
5
|
import { Aptos, Account as AptosAccount, MoveAddressType, PendingTransactionResponse, InputGenerateTransactionOptions, MoveStructId } from "@aptos-labs/ts-sdk";
|
@@ -44,7 +44,7 @@ export declare class dkg extends AptosBaseProcessor {
|
|
44
44
|
constructor(options: AptosBindOptions);
|
45
45
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
46
46
|
static bind(options?: Partial<AptosBindOptions>): dkg;
|
47
|
-
onEventDKGStartEvent(func: (event: dkg.DKGStartEventInstance, ctx: AptosContext) => void,
|
47
|
+
onEventDKGStartEvent(func: (event: dkg.DKGStartEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<dkg.DKGStartEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): dkg;
|
48
48
|
}
|
49
49
|
export declare namespace dkg {
|
50
50
|
interface DKGSessionMetadata {
|
@@ -98,7 +98,7 @@ export declare class code extends AptosBaseProcessor {
|
|
98
98
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
99
99
|
static bind(options?: Partial<AptosBindOptions>): code;
|
100
100
|
onEntryPublishPackageTxn(func: (call: code.PublishPackageTxnPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): code;
|
101
|
-
onEventPublishPackage(func: (event: code.PublishPackageInstance, ctx: AptosContext) => void,
|
101
|
+
onEventPublishPackage(func: (event: code.PublishPackageInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<code.PublishPackageInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): code;
|
102
102
|
}
|
103
103
|
export declare namespace code {
|
104
104
|
interface AllowedDep {
|
@@ -198,13 +198,13 @@ export declare class coin extends AptosBaseProcessor {
|
|
198
198
|
onEntryMigrateToFungibleStore(func: (call: coin.MigrateToFungibleStorePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
|
199
199
|
onEntryUnfreezeCoinStore(func: (call: coin.UnfreezeCoinStorePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
|
200
200
|
onEntryUpgradeSupply(func: (call: coin.UpgradeSupplyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): coin;
|
201
|
-
onEventDepositEvent(func: (event: coin.DepositEventInstance, ctx: AptosContext) => void,
|
202
|
-
onEventWithdrawEvent(func: (event: coin.WithdrawEventInstance, ctx: AptosContext) => void,
|
203
|
-
onEventCoinDeposit(func: (event: coin.CoinDepositInstance, ctx: AptosContext) => void,
|
204
|
-
onEventCoinEventHandleDeletion(func: (event: coin.CoinEventHandleDeletionInstance, ctx: AptosContext) => void,
|
205
|
-
onEventCoinStoreDeletion(func: (event: coin.CoinStoreDeletionInstance, ctx: AptosContext) => void,
|
206
|
-
onEventCoinWithdraw(func: (event: coin.CoinWithdrawInstance, ctx: AptosContext) => void,
|
207
|
-
onEventPairCreation(func: (event: coin.PairCreationInstance, ctx: AptosContext) => void,
|
201
|
+
onEventDepositEvent(func: (event: coin.DepositEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<coin.DepositEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): coin;
|
202
|
+
onEventWithdrawEvent(func: (event: coin.WithdrawEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<coin.WithdrawEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): coin;
|
203
|
+
onEventCoinDeposit(func: (event: coin.CoinDepositInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<coin.CoinDepositInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): coin;
|
204
|
+
onEventCoinEventHandleDeletion(func: (event: coin.CoinEventHandleDeletionInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<coin.CoinEventHandleDeletionInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): coin;
|
205
|
+
onEventCoinStoreDeletion(func: (event: coin.CoinStoreDeletionInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<coin.CoinStoreDeletionInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): coin;
|
206
|
+
onEventCoinWithdraw(func: (event: coin.CoinWithdrawInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<coin.CoinWithdrawInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): coin;
|
207
|
+
onEventPairCreation(func: (event: coin.PairCreationInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<coin.PairCreationInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): coin;
|
208
208
|
}
|
209
209
|
export declare namespace coin {
|
210
210
|
interface Deposit<T0> {
|
@@ -569,7 +569,7 @@ export declare class jwks extends AptosBaseProcessor {
|
|
569
569
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
570
570
|
static bind(options?: Partial<AptosBindOptions>): jwks;
|
571
571
|
onEntryUpdateFederatedJwkSet(func: (call: jwks.UpdateFederatedJwkSetPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): jwks;
|
572
|
-
onEventObservedJWKsUpdated(func: (event: jwks.ObservedJWKsUpdatedInstance, ctx: AptosContext) => void,
|
572
|
+
onEventObservedJWKsUpdated(func: (event: jwks.ObservedJWKsUpdatedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<jwks.ObservedJWKsUpdatedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): jwks;
|
573
573
|
}
|
574
574
|
export declare namespace jwks {
|
575
575
|
interface AllProvidersJWKs {
|
@@ -732,10 +732,10 @@ export declare class block extends AptosBaseProcessor {
|
|
732
732
|
constructor(options: AptosBindOptions);
|
733
733
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
734
734
|
static bind(options?: Partial<AptosBindOptions>): block;
|
735
|
-
onEventNewBlock(func: (event: block.NewBlockInstance, ctx: AptosContext) => void,
|
736
|
-
onEventNewBlockEvent(func: (event: block.NewBlockEventInstance, ctx: AptosContext) => void,
|
737
|
-
onEventUpdateEpochInterval(func: (event: block.UpdateEpochIntervalInstance, ctx: AptosContext) => void,
|
738
|
-
onEventUpdateEpochIntervalEvent(func: (event: block.UpdateEpochIntervalEventInstance, ctx: AptosContext) => void,
|
735
|
+
onEventNewBlock(func: (event: block.NewBlockInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<block.NewBlockInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): block;
|
736
|
+
onEventNewBlockEvent(func: (event: block.NewBlockEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<block.NewBlockEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): block;
|
737
|
+
onEventUpdateEpochInterval(func: (event: block.UpdateEpochIntervalInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<block.UpdateEpochIntervalInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): block;
|
738
|
+
onEventUpdateEpochIntervalEvent(func: (event: block.UpdateEpochIntervalEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<block.UpdateEpochIntervalEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): block;
|
739
739
|
}
|
740
740
|
export declare namespace block {
|
741
741
|
interface BlockResource {
|
@@ -860,30 +860,30 @@ export declare class stake extends AptosBaseProcessor {
|
|
860
860
|
onEntrySetOperator(func: (call: stake.SetOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): stake;
|
861
861
|
onEntryUnlock(func: (call: stake.UnlockPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): stake;
|
862
862
|
onEntryUpdateNetworkAndFullnodeAddresses(func: (call: stake.UpdateNetworkAndFullnodeAddressesPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): stake;
|
863
|
-
onEventAddStake(func: (event: stake.AddStakeInstance, ctx: AptosContext) => void,
|
864
|
-
onEventAddStakeEvent(func: (event: stake.AddStakeEventInstance, ctx: AptosContext) => void,
|
865
|
-
onEventDistributeRewards(func: (event: stake.DistributeRewardsInstance, ctx: AptosContext) => void,
|
866
|
-
onEventDistributeRewardsEvent(func: (event: stake.DistributeRewardsEventInstance, ctx: AptosContext) => void,
|
867
|
-
onEventIncreaseLockup(func: (event: stake.IncreaseLockupInstance, ctx: AptosContext) => void,
|
868
|
-
onEventIncreaseLockupEvent(func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void,
|
869
|
-
onEventJoinValidatorSet(func: (event: stake.JoinValidatorSetInstance, ctx: AptosContext) => void,
|
870
|
-
onEventJoinValidatorSetEvent(func: (event: stake.JoinValidatorSetEventInstance, ctx: AptosContext) => void,
|
871
|
-
onEventLeaveValidatorSet(func: (event: stake.LeaveValidatorSetInstance, ctx: AptosContext) => void,
|
872
|
-
onEventLeaveValidatorSetEvent(func: (event: stake.LeaveValidatorSetEventInstance, ctx: AptosContext) => void,
|
873
|
-
onEventReactivateStake(func: (event: stake.ReactivateStakeInstance, ctx: AptosContext) => void,
|
874
|
-
onEventReactivateStakeEvent(func: (event: stake.ReactivateStakeEventInstance, ctx: AptosContext) => void,
|
875
|
-
onEventRegisterValidatorCandidate(func: (event: stake.RegisterValidatorCandidateInstance, ctx: AptosContext) => void,
|
876
|
-
onEventRegisterValidatorCandidateEvent(func: (event: stake.RegisterValidatorCandidateEventInstance, ctx: AptosContext) => void,
|
877
|
-
onEventRotateConsensusKey(func: (event: stake.RotateConsensusKeyInstance, ctx: AptosContext) => void,
|
878
|
-
onEventRotateConsensusKeyEvent(func: (event: stake.RotateConsensusKeyEventInstance, ctx: AptosContext) => void,
|
879
|
-
onEventSetOperator(func: (event: stake.SetOperatorInstance, ctx: AptosContext) => void,
|
880
|
-
onEventSetOperatorEvent(func: (event: stake.SetOperatorEventInstance, ctx: AptosContext) => void,
|
881
|
-
onEventUnlockStake(func: (event: stake.UnlockStakeInstance, ctx: AptosContext) => void,
|
882
|
-
onEventUnlockStakeEvent(func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void,
|
883
|
-
onEventUpdateNetworkAndFullnodeAddresses(func: (event: stake.UpdateNetworkAndFullnodeAddressesInstance, ctx: AptosContext) => void,
|
884
|
-
onEventUpdateNetworkAndFullnodeAddressesEvent(func: (event: stake.UpdateNetworkAndFullnodeAddressesEventInstance, ctx: AptosContext) => void,
|
885
|
-
onEventWithdrawStake(func: (event: stake.WithdrawStakeInstance, ctx: AptosContext) => void,
|
886
|
-
onEventWithdrawStakeEvent(func: (event: stake.WithdrawStakeEventInstance, ctx: AptosContext) => void,
|
863
|
+
onEventAddStake(func: (event: stake.AddStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.AddStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
864
|
+
onEventAddStakeEvent(func: (event: stake.AddStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.AddStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
865
|
+
onEventDistributeRewards(func: (event: stake.DistributeRewardsInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.DistributeRewardsInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
866
|
+
onEventDistributeRewardsEvent(func: (event: stake.DistributeRewardsEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.DistributeRewardsEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
867
|
+
onEventIncreaseLockup(func: (event: stake.IncreaseLockupInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.IncreaseLockupInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
868
|
+
onEventIncreaseLockupEvent(func: (event: stake.IncreaseLockupEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.IncreaseLockupEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
869
|
+
onEventJoinValidatorSet(func: (event: stake.JoinValidatorSetInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.JoinValidatorSetInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
870
|
+
onEventJoinValidatorSetEvent(func: (event: stake.JoinValidatorSetEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.JoinValidatorSetEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
871
|
+
onEventLeaveValidatorSet(func: (event: stake.LeaveValidatorSetInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.LeaveValidatorSetInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
872
|
+
onEventLeaveValidatorSetEvent(func: (event: stake.LeaveValidatorSetEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.LeaveValidatorSetEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
873
|
+
onEventReactivateStake(func: (event: stake.ReactivateStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.ReactivateStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
874
|
+
onEventReactivateStakeEvent(func: (event: stake.ReactivateStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.ReactivateStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
875
|
+
onEventRegisterValidatorCandidate(func: (event: stake.RegisterValidatorCandidateInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.RegisterValidatorCandidateInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
876
|
+
onEventRegisterValidatorCandidateEvent(func: (event: stake.RegisterValidatorCandidateEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.RegisterValidatorCandidateEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
877
|
+
onEventRotateConsensusKey(func: (event: stake.RotateConsensusKeyInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.RotateConsensusKeyInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
878
|
+
onEventRotateConsensusKeyEvent(func: (event: stake.RotateConsensusKeyEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.RotateConsensusKeyEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
879
|
+
onEventSetOperator(func: (event: stake.SetOperatorInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.SetOperatorInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
880
|
+
onEventSetOperatorEvent(func: (event: stake.SetOperatorEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.SetOperatorEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
881
|
+
onEventUnlockStake(func: (event: stake.UnlockStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.UnlockStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
882
|
+
onEventUnlockStakeEvent(func: (event: stake.UnlockStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.UnlockStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
883
|
+
onEventUpdateNetworkAndFullnodeAddresses(func: (event: stake.UpdateNetworkAndFullnodeAddressesInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.UpdateNetworkAndFullnodeAddressesInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
884
|
+
onEventUpdateNetworkAndFullnodeAddressesEvent(func: (event: stake.UpdateNetworkAndFullnodeAddressesEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.UpdateNetworkAndFullnodeAddressesEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
885
|
+
onEventWithdrawStake(func: (event: stake.WithdrawStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.WithdrawStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
886
|
+
onEventWithdrawStakeEvent(func: (event: stake.WithdrawStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<stake.WithdrawStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): stake;
|
887
887
|
}
|
888
888
|
export declare namespace stake {
|
889
889
|
interface AddStake {
|
@@ -1459,8 +1459,8 @@ export declare class object$ extends AptosBaseProcessor {
|
|
1459
1459
|
onEntryTransferCall(func: (call: object$.TransferCallPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object$;
|
1460
1460
|
onEntryTransferToObject(func: (call: object$.TransferToObjectPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object$;
|
1461
1461
|
onEntryUnburn(func: (call: object$.UnburnPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object$;
|
1462
|
-
onEventTransfer(func: (event: object$.TransferInstance, ctx: AptosContext) => void,
|
1463
|
-
onEventTransferEvent(func: (event: object$.TransferEventInstance, ctx: AptosContext) => void,
|
1462
|
+
onEventTransfer(func: (event: object$.TransferInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<object$.TransferInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object$;
|
1463
|
+
onEventTransferEvent(func: (event: object$.TransferEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<object$.TransferEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object$;
|
1464
1464
|
}
|
1465
1465
|
export declare namespace object$ {
|
1466
1466
|
interface ConstructorRef {
|
@@ -1663,13 +1663,13 @@ export declare class voting extends AptosBaseProcessor {
|
|
1663
1663
|
constructor(options: AptosBindOptions);
|
1664
1664
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
1665
1665
|
static bind(options?: Partial<AptosBindOptions>): voting;
|
1666
|
-
onEventCreateProposal(func: (event: voting.CreateProposalInstance, ctx: AptosContext) => void,
|
1667
|
-
onEventCreateProposalEvent(func: (event: voting.CreateProposalEventInstance, ctx: AptosContext) => void,
|
1668
|
-
onEventRegisterForum(func: (event: voting.RegisterForumInstance, ctx: AptosContext) => void,
|
1669
|
-
onEventRegisterForumEvent(func: (event: voting.RegisterForumEventInstance, ctx: AptosContext) => void,
|
1670
|
-
onEventResolveProposal(func: (event: voting.ResolveProposalInstance, ctx: AptosContext) => void,
|
1671
|
-
onEventVote(func: (event: voting.VoteInstance, ctx: AptosContext) => void,
|
1672
|
-
onEventVoteEvent(func: (event: voting.VoteEventInstance, ctx: AptosContext) => void,
|
1666
|
+
onEventCreateProposal(func: (event: voting.CreateProposalInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<voting.CreateProposalInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): voting;
|
1667
|
+
onEventCreateProposalEvent(func: (event: voting.CreateProposalEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<voting.CreateProposalEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): voting;
|
1668
|
+
onEventRegisterForum(func: (event: voting.RegisterForumInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<voting.RegisterForumInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): voting;
|
1669
|
+
onEventRegisterForumEvent(func: (event: voting.RegisterForumEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<voting.RegisterForumEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): voting;
|
1670
|
+
onEventResolveProposal(func: (event: voting.ResolveProposalInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<voting.ResolveProposalInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): voting;
|
1671
|
+
onEventVote(func: (event: voting.VoteInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<voting.VoteInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): voting;
|
1672
|
+
onEventVoteEvent(func: (event: voting.VoteEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<voting.VoteEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): voting;
|
1673
1673
|
}
|
1674
1674
|
export declare namespace voting {
|
1675
1675
|
interface CreateProposal {
|
@@ -1888,10 +1888,10 @@ export declare class account extends AptosBaseProcessor {
|
|
1888
1888
|
onEntryRotateAuthenticationKeyCall(func: (call: account.RotateAuthenticationKeyCallPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
|
1889
1889
|
onEntryRotateAuthenticationKeyWithRotationCapability(func: (call: account.RotateAuthenticationKeyWithRotationCapabilityPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
|
1890
1890
|
onEntrySetOriginatingAddress(func: (call: account.SetOriginatingAddressPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account;
|
1891
|
-
onEventCoinRegister(func: (event: account.CoinRegisterInstance, ctx: AptosContext) => void,
|
1892
|
-
onEventCoinRegisterEvent(func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void,
|
1893
|
-
onEventKeyRotation(func: (event: account.KeyRotationInstance, ctx: AptosContext) => void,
|
1894
|
-
onEventKeyRotationEvent(func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void,
|
1891
|
+
onEventCoinRegister(func: (event: account.CoinRegisterInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<account.CoinRegisterInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account;
|
1892
|
+
onEventCoinRegisterEvent(func: (event: account.CoinRegisterEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<account.CoinRegisterEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account;
|
1893
|
+
onEventKeyRotation(func: (event: account.KeyRotationInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<account.KeyRotationInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account;
|
1894
|
+
onEventKeyRotationEvent(func: (event: account.KeyRotationEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<account.KeyRotationEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account;
|
1895
1895
|
}
|
1896
1896
|
export declare namespace account {
|
1897
1897
|
interface Account {
|
@@ -2300,26 +2300,26 @@ export declare class vesting extends AptosBaseProcessor {
|
|
2300
2300
|
onEntryUpdateOperatorWithSameCommission(func: (call: vesting.UpdateOperatorWithSameCommissionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
|
2301
2301
|
onEntryVest(func: (call: vesting.VestPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
|
2302
2302
|
onEntryVestMany(func: (call: vesting.VestManyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): vesting;
|
2303
|
-
onEventDistribute(func: (event: vesting.DistributeInstance, ctx: AptosContext) => void,
|
2304
|
-
onEventDistributeEvent(func: (event: vesting.DistributeEventInstance, ctx: AptosContext) => void,
|
2305
|
-
onEventResetLockup(func: (event: vesting.ResetLockupInstance, ctx: AptosContext) => void,
|
2306
|
-
onEventResetLockupEvent(func: (event: vesting.ResetLockupEventInstance, ctx: AptosContext) => void,
|
2307
|
-
onEventUpdateVoter(func: (event: vesting.UpdateVoterInstance, ctx: AptosContext) => void,
|
2308
|
-
onEventUpdateVoterEvent(func: (event: vesting.UpdateVoterEventInstance, ctx: AptosContext) => void,
|
2309
|
-
onEventAdminWithdraw(func: (event: vesting.AdminWithdrawInstance, ctx: AptosContext) => void,
|
2310
|
-
onEventAdminWithdrawEvent(func: (event: vesting.AdminWithdrawEventInstance, ctx: AptosContext) => void,
|
2311
|
-
onEventCreateVestingContract(func: (event: vesting.CreateVestingContractInstance, ctx: AptosContext) => void,
|
2312
|
-
onEventCreateVestingContractEvent(func: (event: vesting.CreateVestingContractEventInstance, ctx: AptosContext) => void,
|
2313
|
-
onEventSetBeneficiary(func: (event: vesting.SetBeneficiaryInstance, ctx: AptosContext) => void,
|
2314
|
-
onEventSetBeneficiaryEvent(func: (event: vesting.SetBeneficiaryEventInstance, ctx: AptosContext) => void,
|
2315
|
-
onEventTerminate(func: (event: vesting.TerminateInstance, ctx: AptosContext) => void,
|
2316
|
-
onEventTerminateEvent(func: (event: vesting.TerminateEventInstance, ctx: AptosContext) => void,
|
2317
|
-
onEventUnlockRewards(func: (event: vesting.UnlockRewardsInstance, ctx: AptosContext) => void,
|
2318
|
-
onEventUnlockRewardsEvent(func: (event: vesting.UnlockRewardsEventInstance, ctx: AptosContext) => void,
|
2319
|
-
onEventUpdateOperator(func: (event: vesting.UpdateOperatorInstance, ctx: AptosContext) => void,
|
2320
|
-
onEventUpdateOperatorEvent(func: (event: vesting.UpdateOperatorEventInstance, ctx: AptosContext) => void,
|
2321
|
-
onEventVest(func: (event: vesting.VestInstance, ctx: AptosContext) => void,
|
2322
|
-
onEventVestEvent(func: (event: vesting.VestEventInstance, ctx: AptosContext) => void,
|
2303
|
+
onEventDistribute(func: (event: vesting.DistributeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.DistributeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2304
|
+
onEventDistributeEvent(func: (event: vesting.DistributeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.DistributeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2305
|
+
onEventResetLockup(func: (event: vesting.ResetLockupInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.ResetLockupInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2306
|
+
onEventResetLockupEvent(func: (event: vesting.ResetLockupEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.ResetLockupEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2307
|
+
onEventUpdateVoter(func: (event: vesting.UpdateVoterInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.UpdateVoterInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2308
|
+
onEventUpdateVoterEvent(func: (event: vesting.UpdateVoterEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.UpdateVoterEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2309
|
+
onEventAdminWithdraw(func: (event: vesting.AdminWithdrawInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.AdminWithdrawInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2310
|
+
onEventAdminWithdrawEvent(func: (event: vesting.AdminWithdrawEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.AdminWithdrawEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2311
|
+
onEventCreateVestingContract(func: (event: vesting.CreateVestingContractInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.CreateVestingContractInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2312
|
+
onEventCreateVestingContractEvent(func: (event: vesting.CreateVestingContractEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.CreateVestingContractEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2313
|
+
onEventSetBeneficiary(func: (event: vesting.SetBeneficiaryInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.SetBeneficiaryInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2314
|
+
onEventSetBeneficiaryEvent(func: (event: vesting.SetBeneficiaryEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.SetBeneficiaryEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2315
|
+
onEventTerminate(func: (event: vesting.TerminateInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.TerminateInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2316
|
+
onEventTerminateEvent(func: (event: vesting.TerminateEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.TerminateEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2317
|
+
onEventUnlockRewards(func: (event: vesting.UnlockRewardsInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.UnlockRewardsInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2318
|
+
onEventUnlockRewardsEvent(func: (event: vesting.UnlockRewardsEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.UnlockRewardsEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2319
|
+
onEventUpdateOperator(func: (event: vesting.UpdateOperatorInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.UpdateOperatorInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2320
|
+
onEventUpdateOperatorEvent(func: (event: vesting.UpdateOperatorEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.UpdateOperatorEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2321
|
+
onEventVest(func: (event: vesting.VestInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.VestInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2322
|
+
onEventVestEvent(func: (event: vesting.VestEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<vesting.VestEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): vesting;
|
2323
2323
|
}
|
2324
2324
|
export declare namespace vesting {
|
2325
2325
|
interface Distribute {
|
@@ -3213,7 +3213,7 @@ export declare class randomness extends AptosBaseProcessor {
|
|
3213
3213
|
constructor(options: AptosBindOptions);
|
3214
3214
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
3215
3215
|
static bind(options?: Partial<AptosBindOptions>): randomness;
|
3216
|
-
onEventRandomnessGeneratedEvent(func: (event: randomness.RandomnessGeneratedEventInstance, ctx: AptosContext) => void,
|
3216
|
+
onEventRandomnessGeneratedEvent(func: (event: randomness.RandomnessGeneratedEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<randomness.RandomnessGeneratedEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): randomness;
|
3217
3217
|
}
|
3218
3218
|
export declare namespace randomness {
|
3219
3219
|
interface PerBlockRandomness {
|
@@ -3595,8 +3595,8 @@ export declare class aptos_account extends AptosBaseProcessor {
|
|
3595
3595
|
onEntrySetAllowDirectCoinTransfers(func: (call: aptos_account.SetAllowDirectCoinTransfersPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
3596
3596
|
onEntryTransferCoins(func: (call: aptos_account.TransferCoinsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
3597
3597
|
onEntryTransferFungibleAssets(func: (call: aptos_account.TransferFungibleAssetsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_account;
|
3598
|
-
onEventDirectCoinTransferConfigUpdated(func: (event: aptos_account.DirectCoinTransferConfigUpdatedInstance, ctx: AptosContext) => void,
|
3599
|
-
onEventDirectCoinTransferConfigUpdatedEvent(func: (event: aptos_account.DirectCoinTransferConfigUpdatedEventInstance, ctx: AptosContext) => void,
|
3598
|
+
onEventDirectCoinTransferConfigUpdated(func: (event: aptos_account.DirectCoinTransferConfigUpdatedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<aptos_account.DirectCoinTransferConfigUpdatedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aptos_account;
|
3599
|
+
onEventDirectCoinTransferConfigUpdatedEvent(func: (event: aptos_account.DirectCoinTransferConfigUpdatedEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<aptos_account.DirectCoinTransferConfigUpdatedEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aptos_account;
|
3600
3600
|
}
|
3601
3601
|
export declare namespace aptos_account {
|
3602
3602
|
interface DirectCoinTransferConfigUpdated {
|
@@ -4058,13 +4058,13 @@ export declare class fungible_asset extends AptosBaseProcessor {
|
|
4058
4058
|
static bind(options?: Partial<AptosBindOptions>): fungible_asset;
|
4059
4059
|
onEntryTransfer(func: (call: fungible_asset.TransferPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
|
4060
4060
|
onEntryUpgradeStoreToConcurrent(func: (call: fungible_asset.UpgradeStoreToConcurrentPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): fungible_asset;
|
4061
|
-
onEventDeposit(func: (event: fungible_asset.DepositInstance, ctx: AptosContext) => void,
|
4062
|
-
onEventDepositEvent(func: (event: fungible_asset.DepositEventInstance, ctx: AptosContext) => void,
|
4063
|
-
onEventFrozen(func: (event: fungible_asset.FrozenInstance, ctx: AptosContext) => void,
|
4064
|
-
onEventFrozenEvent(func: (event: fungible_asset.FrozenEventInstance, ctx: AptosContext) => void,
|
4065
|
-
onEventFungibleStoreDeletion(func: (event: fungible_asset.FungibleStoreDeletionInstance, ctx: AptosContext) => void,
|
4066
|
-
onEventWithdraw(func: (event: fungible_asset.WithdrawInstance, ctx: AptosContext) => void,
|
4067
|
-
onEventWithdrawEvent(func: (event: fungible_asset.WithdrawEventInstance, ctx: AptosContext) => void,
|
4061
|
+
onEventDeposit(func: (event: fungible_asset.DepositInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<fungible_asset.DepositInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
4062
|
+
onEventDepositEvent(func: (event: fungible_asset.DepositEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<fungible_asset.DepositEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
4063
|
+
onEventFrozen(func: (event: fungible_asset.FrozenInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<fungible_asset.FrozenInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
4064
|
+
onEventFrozenEvent(func: (event: fungible_asset.FrozenEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<fungible_asset.FrozenEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
4065
|
+
onEventFungibleStoreDeletion(func: (event: fungible_asset.FungibleStoreDeletionInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<fungible_asset.FungibleStoreDeletionInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
4066
|
+
onEventWithdraw(func: (event: fungible_asset.WithdrawInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<fungible_asset.WithdrawInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
4067
|
+
onEventWithdrawEvent(func: (event: fungible_asset.WithdrawEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<fungible_asset.WithdrawEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): fungible_asset;
|
4068
4068
|
}
|
4069
4069
|
export declare namespace fungible_asset {
|
4070
4070
|
interface TransferRef {
|
@@ -4444,29 +4444,29 @@ export declare class delegation_pool extends AptosBaseProcessor {
|
|
4444
4444
|
onEntrySetBeneficiaryForOperator(func: (call: delegation_pool.SetBeneficiaryForOperatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
|
4445
4445
|
onEntrySynchronizeDelegationPool(func: (call: delegation_pool.SynchronizeDelegationPoolPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
|
4446
4446
|
onEntryUpdateCommissionPercentage(func: (call: delegation_pool.UpdateCommissionPercentagePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): delegation_pool;
|
4447
|
-
onEventCreateProposal(func: (event: delegation_pool.CreateProposalInstance, ctx: AptosContext) => void,
|
4448
|
-
onEventCreateProposalEvent(func: (event: delegation_pool.CreateProposalEventInstance, ctx: AptosContext) => void,
|
4449
|
-
onEventVote(func: (event: delegation_pool.VoteInstance, ctx: AptosContext) => void,
|
4450
|
-
onEventVoteEvent(func: (event: delegation_pool.VoteEventInstance, ctx: AptosContext) => void,
|
4451
|
-
onEventAddStake(func: (event: delegation_pool.AddStakeInstance, ctx: AptosContext) => void,
|
4452
|
-
onEventAddStakeEvent(func: (event: delegation_pool.AddStakeEventInstance, ctx: AptosContext) => void,
|
4453
|
-
onEventReactivateStake(func: (event: delegation_pool.ReactivateStakeInstance, ctx: AptosContext) => void,
|
4454
|
-
onEventReactivateStakeEvent(func: (event: delegation_pool.ReactivateStakeEventInstance, ctx: AptosContext) => void,
|
4455
|
-
onEventUnlockStake(func: (event: delegation_pool.UnlockStakeInstance, ctx: AptosContext) => void,
|
4456
|
-
onEventUnlockStakeEvent(func: (event: delegation_pool.UnlockStakeEventInstance, ctx: AptosContext) => void,
|
4457
|
-
onEventWithdrawStake(func: (event: delegation_pool.WithdrawStakeInstance, ctx: AptosContext) => void,
|
4458
|
-
onEventWithdrawStakeEvent(func: (event: delegation_pool.WithdrawStakeEventInstance, ctx: AptosContext) => void,
|
4459
|
-
onEventAllowlistDelegator(func: (event: delegation_pool.AllowlistDelegatorInstance, ctx: AptosContext) => void,
|
4460
|
-
onEventCommissionPercentageChange(func: (event: delegation_pool.CommissionPercentageChangeInstance, ctx: AptosContext) => void,
|
4461
|
-
onEventDelegateVotingPower(func: (event: delegation_pool.DelegateVotingPowerInstance, ctx: AptosContext) => void,
|
4462
|
-
onEventDelegateVotingPowerEvent(func: (event: delegation_pool.DelegateVotingPowerEventInstance, ctx: AptosContext) => void,
|
4463
|
-
onEventDisableDelegatorsAllowlisting(func: (event: delegation_pool.DisableDelegatorsAllowlistingInstance, ctx: AptosContext) => void,
|
4464
|
-
onEventDistributeCommission(func: (event: delegation_pool.DistributeCommissionInstance, ctx: AptosContext) => void,
|
4465
|
-
onEventDistributeCommissionEvent(func: (event: delegation_pool.DistributeCommissionEventInstance, ctx: AptosContext) => void,
|
4466
|
-
onEventEnableDelegatorsAllowlisting(func: (event: delegation_pool.EnableDelegatorsAllowlistingInstance, ctx: AptosContext) => void,
|
4467
|
-
onEventEvictDelegator(func: (event: delegation_pool.EvictDelegatorInstance, ctx: AptosContext) => void,
|
4468
|
-
onEventRemoveDelegatorFromAllowlist(func: (event: delegation_pool.RemoveDelegatorFromAllowlistInstance, ctx: AptosContext) => void,
|
4469
|
-
onEventSetBeneficiaryForOperator(func: (event: delegation_pool.SetBeneficiaryForOperatorInstance, ctx: AptosContext) => void,
|
4447
|
+
onEventCreateProposal(func: (event: delegation_pool.CreateProposalInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.CreateProposalInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4448
|
+
onEventCreateProposalEvent(func: (event: delegation_pool.CreateProposalEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.CreateProposalEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4449
|
+
onEventVote(func: (event: delegation_pool.VoteInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.VoteInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4450
|
+
onEventVoteEvent(func: (event: delegation_pool.VoteEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.VoteEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4451
|
+
onEventAddStake(func: (event: delegation_pool.AddStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.AddStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4452
|
+
onEventAddStakeEvent(func: (event: delegation_pool.AddStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.AddStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4453
|
+
onEventReactivateStake(func: (event: delegation_pool.ReactivateStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.ReactivateStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4454
|
+
onEventReactivateStakeEvent(func: (event: delegation_pool.ReactivateStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.ReactivateStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4455
|
+
onEventUnlockStake(func: (event: delegation_pool.UnlockStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.UnlockStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4456
|
+
onEventUnlockStakeEvent(func: (event: delegation_pool.UnlockStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.UnlockStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4457
|
+
onEventWithdrawStake(func: (event: delegation_pool.WithdrawStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.WithdrawStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4458
|
+
onEventWithdrawStakeEvent(func: (event: delegation_pool.WithdrawStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.WithdrawStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4459
|
+
onEventAllowlistDelegator(func: (event: delegation_pool.AllowlistDelegatorInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.AllowlistDelegatorInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4460
|
+
onEventCommissionPercentageChange(func: (event: delegation_pool.CommissionPercentageChangeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.CommissionPercentageChangeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4461
|
+
onEventDelegateVotingPower(func: (event: delegation_pool.DelegateVotingPowerInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.DelegateVotingPowerInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4462
|
+
onEventDelegateVotingPowerEvent(func: (event: delegation_pool.DelegateVotingPowerEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.DelegateVotingPowerEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4463
|
+
onEventDisableDelegatorsAllowlisting(func: (event: delegation_pool.DisableDelegatorsAllowlistingInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.DisableDelegatorsAllowlistingInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4464
|
+
onEventDistributeCommission(func: (event: delegation_pool.DistributeCommissionInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.DistributeCommissionInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4465
|
+
onEventDistributeCommissionEvent(func: (event: delegation_pool.DistributeCommissionEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.DistributeCommissionEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4466
|
+
onEventEnableDelegatorsAllowlisting(func: (event: delegation_pool.EnableDelegatorsAllowlistingInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.EnableDelegatorsAllowlistingInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4467
|
+
onEventEvictDelegator(func: (event: delegation_pool.EvictDelegatorInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.EvictDelegatorInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4468
|
+
onEventRemoveDelegatorFromAllowlist(func: (event: delegation_pool.RemoveDelegatorFromAllowlistInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.RemoveDelegatorFromAllowlistInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4469
|
+
onEventSetBeneficiaryForOperator(func: (event: delegation_pool.SetBeneficiaryForOperatorInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<delegation_pool.SetBeneficiaryForOperatorInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): delegation_pool;
|
4470
4470
|
}
|
4471
4471
|
export declare namespace delegation_pool {
|
4472
4472
|
interface CreateProposal {
|
@@ -5143,8 +5143,8 @@ export declare class reconfiguration extends AptosBaseProcessor {
|
|
5143
5143
|
constructor(options: AptosBindOptions);
|
5144
5144
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
5145
5145
|
static bind(options?: Partial<AptosBindOptions>): reconfiguration;
|
5146
|
-
onEventNewEpoch(func: (event: reconfiguration.NewEpochInstance, ctx: AptosContext) => void,
|
5147
|
-
onEventNewEpochEvent(func: (event: reconfiguration.NewEpochEventInstance, ctx: AptosContext) => void,
|
5146
|
+
onEventNewEpoch(func: (event: reconfiguration.NewEpochInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<reconfiguration.NewEpochInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): reconfiguration;
|
5147
|
+
onEventNewEpochEvent(func: (event: reconfiguration.NewEpochEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<reconfiguration.NewEpochEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): reconfiguration;
|
5148
5148
|
}
|
5149
5149
|
export declare namespace reconfiguration {
|
5150
5150
|
interface Configuration {
|
@@ -5193,7 +5193,7 @@ export declare class transaction_fee extends AptosBaseProcessor {
|
|
5193
5193
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
5194
5194
|
static bind(options?: Partial<AptosBindOptions>): transaction_fee;
|
5195
5195
|
onEntryConvertToAptosFaBurnRef(func: (call: transaction_fee.ConvertToAptosFaBurnRefPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): transaction_fee;
|
5196
|
-
onEventFeeStatement(func: (event: transaction_fee.FeeStatementInstance, ctx: AptosContext) => void,
|
5196
|
+
onEventFeeStatement(func: (event: transaction_fee.FeeStatementInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<transaction_fee.FeeStatementInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): transaction_fee;
|
5197
5197
|
}
|
5198
5198
|
export declare namespace transaction_fee {
|
5199
5199
|
interface AptosCoinCapabilities {
|
@@ -5267,12 +5267,12 @@ export declare class aptos_governance extends AptosBaseProcessor {
|
|
5267
5267
|
onEntryForceEndEpoch(func: (call: aptos_governance.ForceEndEpochPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
|
5268
5268
|
onEntryForceEndEpochTestOnly(func: (call: aptos_governance.ForceEndEpochTestOnlyPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
|
5269
5269
|
onEntryPartialVote(func: (call: aptos_governance.PartialVotePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): aptos_governance;
|
5270
|
-
onEventCreateProposal(func: (event: aptos_governance.CreateProposalInstance, ctx: AptosContext) => void,
|
5271
|
-
onEventCreateProposalEvent(func: (event: aptos_governance.CreateProposalEventInstance, ctx: AptosContext) => void,
|
5272
|
-
onEventVote(func: (event: aptos_governance.VoteInstance, ctx: AptosContext) => void,
|
5273
|
-
onEventVoteEvent(func: (event: aptos_governance.VoteEventInstance, ctx: AptosContext) => void,
|
5274
|
-
onEventUpdateConfig(func: (event: aptos_governance.UpdateConfigInstance, ctx: AptosContext) => void,
|
5275
|
-
onEventUpdateConfigEvent(func: (event: aptos_governance.UpdateConfigEventInstance, ctx: AptosContext) => void,
|
5270
|
+
onEventCreateProposal(func: (event: aptos_governance.CreateProposalInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<aptos_governance.CreateProposalInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aptos_governance;
|
5271
|
+
onEventCreateProposalEvent(func: (event: aptos_governance.CreateProposalEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<aptos_governance.CreateProposalEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aptos_governance;
|
5272
|
+
onEventVote(func: (event: aptos_governance.VoteInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<aptos_governance.VoteInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aptos_governance;
|
5273
|
+
onEventVoteEvent(func: (event: aptos_governance.VoteEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<aptos_governance.VoteEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aptos_governance;
|
5274
|
+
onEventUpdateConfig(func: (event: aptos_governance.UpdateConfigInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<aptos_governance.UpdateConfigInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aptos_governance;
|
5275
|
+
onEventUpdateConfigEvent(func: (event: aptos_governance.UpdateConfigEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<aptos_governance.UpdateConfigEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): aptos_governance;
|
5276
5276
|
}
|
5277
5277
|
export declare namespace aptos_governance {
|
5278
5278
|
interface CreateProposal {
|
@@ -5686,24 +5686,24 @@ export declare class multisig_account extends AptosBaseProcessor {
|
|
5686
5686
|
onEntryVoteTransaction(func: (call: multisig_account.VoteTransactionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
|
5687
5687
|
onEntryVoteTransactions(func: (call: multisig_account.VoteTransactionsPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
|
5688
5688
|
onEntryVoteTransanction(func: (call: multisig_account.VoteTransanctionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): multisig_account;
|
5689
|
-
onEventVote(func: (event: multisig_account.VoteInstance, ctx: AptosContext) => void,
|
5690
|
-
onEventVoteEvent(func: (event: multisig_account.VoteEventInstance, ctx: AptosContext) => void,
|
5691
|
-
onEventAddOwners(func: (event: multisig_account.AddOwnersInstance, ctx: AptosContext) => void,
|
5692
|
-
onEventAddOwnersEvent(func: (event: multisig_account.AddOwnersEventInstance, ctx: AptosContext) => void,
|
5693
|
-
onEventCreateTransaction(func: (event: multisig_account.CreateTransactionInstance, ctx: AptosContext) => void,
|
5694
|
-
onEventCreateTransactionEvent(func: (event: multisig_account.CreateTransactionEventInstance, ctx: AptosContext) => void,
|
5695
|
-
onEventExecuteRejectedTransaction(func: (event: multisig_account.ExecuteRejectedTransactionInstance, ctx: AptosContext) => void,
|
5696
|
-
onEventExecuteRejectedTransactionEvent(func: (event: multisig_account.ExecuteRejectedTransactionEventInstance, ctx: AptosContext) => void,
|
5697
|
-
onEventMetadataUpdated(func: (event: multisig_account.MetadataUpdatedInstance, ctx: AptosContext) => void,
|
5698
|
-
onEventMetadataUpdatedEvent(func: (event: multisig_account.MetadataUpdatedEventInstance, ctx: AptosContext) => void,
|
5699
|
-
onEventRemoveOwners(func: (event: multisig_account.RemoveOwnersInstance, ctx: AptosContext) => void,
|
5700
|
-
onEventRemoveOwnersEvent(func: (event: multisig_account.RemoveOwnersEventInstance, ctx: AptosContext) => void,
|
5701
|
-
onEventTransactionExecutionFailed(func: (event: multisig_account.TransactionExecutionFailedInstance, ctx: AptosContext) => void,
|
5702
|
-
onEventTransactionExecutionFailedEvent(func: (event: multisig_account.TransactionExecutionFailedEventInstance, ctx: AptosContext) => void,
|
5703
|
-
onEventTransactionExecutionSucceeded(func: (event: multisig_account.TransactionExecutionSucceededInstance, ctx: AptosContext) => void,
|
5704
|
-
onEventTransactionExecutionSucceededEvent(func: (event: multisig_account.TransactionExecutionSucceededEventInstance, ctx: AptosContext) => void,
|
5705
|
-
onEventUpdateSignaturesRequired(func: (event: multisig_account.UpdateSignaturesRequiredInstance, ctx: AptosContext) => void,
|
5706
|
-
onEventUpdateSignaturesRequiredEvent(func: (event: multisig_account.UpdateSignaturesRequiredEventInstance, ctx: AptosContext) => void,
|
5689
|
+
onEventVote(func: (event: multisig_account.VoteInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.VoteInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5690
|
+
onEventVoteEvent(func: (event: multisig_account.VoteEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.VoteEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5691
|
+
onEventAddOwners(func: (event: multisig_account.AddOwnersInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.AddOwnersInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5692
|
+
onEventAddOwnersEvent(func: (event: multisig_account.AddOwnersEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.AddOwnersEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5693
|
+
onEventCreateTransaction(func: (event: multisig_account.CreateTransactionInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.CreateTransactionInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5694
|
+
onEventCreateTransactionEvent(func: (event: multisig_account.CreateTransactionEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.CreateTransactionEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5695
|
+
onEventExecuteRejectedTransaction(func: (event: multisig_account.ExecuteRejectedTransactionInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.ExecuteRejectedTransactionInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5696
|
+
onEventExecuteRejectedTransactionEvent(func: (event: multisig_account.ExecuteRejectedTransactionEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.ExecuteRejectedTransactionEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5697
|
+
onEventMetadataUpdated(func: (event: multisig_account.MetadataUpdatedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.MetadataUpdatedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5698
|
+
onEventMetadataUpdatedEvent(func: (event: multisig_account.MetadataUpdatedEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.MetadataUpdatedEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5699
|
+
onEventRemoveOwners(func: (event: multisig_account.RemoveOwnersInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.RemoveOwnersInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5700
|
+
onEventRemoveOwnersEvent(func: (event: multisig_account.RemoveOwnersEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.RemoveOwnersEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5701
|
+
onEventTransactionExecutionFailed(func: (event: multisig_account.TransactionExecutionFailedInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.TransactionExecutionFailedInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5702
|
+
onEventTransactionExecutionFailedEvent(func: (event: multisig_account.TransactionExecutionFailedEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.TransactionExecutionFailedEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5703
|
+
onEventTransactionExecutionSucceeded(func: (event: multisig_account.TransactionExecutionSucceededInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.TransactionExecutionSucceededInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5704
|
+
onEventTransactionExecutionSucceededEvent(func: (event: multisig_account.TransactionExecutionSucceededEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.TransactionExecutionSucceededEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5705
|
+
onEventUpdateSignaturesRequired(func: (event: multisig_account.UpdateSignaturesRequiredInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.UpdateSignaturesRequiredInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5706
|
+
onEventUpdateSignaturesRequiredEvent(func: (event: multisig_account.UpdateSignaturesRequiredEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<multisig_account.UpdateSignaturesRequiredEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): multisig_account;
|
5707
5707
|
}
|
5708
5708
|
export declare namespace multisig_account {
|
5709
5709
|
interface Vote {
|
@@ -6420,28 +6420,28 @@ export declare class staking_contract extends AptosBaseProcessor {
|
|
6420
6420
|
onEntryUnlockStake(func: (call: staking_contract.UnlockStakePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
|
6421
6421
|
onEntryUpdateCommision(func: (call: staking_contract.UpdateCommisionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
|
6422
6422
|
onEntryUpdateVoter(func: (call: staking_contract.UpdateVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_contract;
|
6423
|
-
onEventAddStake(func: (event: staking_contract.AddStakeInstance, ctx: AptosContext) => void,
|
6424
|
-
onEventAddStakeEvent(func: (event: staking_contract.AddStakeEventInstance, ctx: AptosContext) => void,
|
6425
|
-
onEventUnlockStake(func: (event: staking_contract.UnlockStakeInstance, ctx: AptosContext) => void,
|
6426
|
-
onEventUnlockStakeEvent(func: (event: staking_contract.UnlockStakeEventInstance, ctx: AptosContext) => void,
|
6427
|
-
onEventSetBeneficiaryForOperator(func: (event: staking_contract.SetBeneficiaryForOperatorInstance, ctx: AptosContext) => void,
|
6428
|
-
onEventAddDistribution(func: (event: staking_contract.AddDistributionInstance, ctx: AptosContext) => void,
|
6429
|
-
onEventAddDistributionEvent(func: (event: staking_contract.AddDistributionEventInstance, ctx: AptosContext) => void,
|
6430
|
-
onEventCreateStakingContract(func: (event: staking_contract.CreateStakingContractInstance, ctx: AptosContext) => void,
|
6431
|
-
onEventCreateStakingContractEvent(func: (event: staking_contract.CreateStakingContractEventInstance, ctx: AptosContext) => void,
|
6432
|
-
onEventDistribute(func: (event: staking_contract.DistributeInstance, ctx: AptosContext) => void,
|
6433
|
-
onEventDistributeEvent(func: (event: staking_contract.DistributeEventInstance, ctx: AptosContext) => void,
|
6434
|
-
onEventRequestCommission(func: (event: staking_contract.RequestCommissionInstance, ctx: AptosContext) => void,
|
6435
|
-
onEventRequestCommissionEvent(func: (event: staking_contract.RequestCommissionEventInstance, ctx: AptosContext) => void,
|
6436
|
-
onEventResetLockup(func: (event: staking_contract.ResetLockupInstance, ctx: AptosContext) => void,
|
6437
|
-
onEventResetLockupEvent(func: (event: staking_contract.ResetLockupEventInstance, ctx: AptosContext) => void,
|
6438
|
-
onEventStakingGroupUpdateCommissionEvent(func: (event: staking_contract.StakingGroupUpdateCommissionEventInstance, ctx: AptosContext) => void,
|
6439
|
-
onEventSwitchOperator(func: (event: staking_contract.SwitchOperatorInstance, ctx: AptosContext) => void,
|
6440
|
-
onEventSwitchOperatorEvent(func: (event: staking_contract.SwitchOperatorEventInstance, ctx: AptosContext) => void,
|
6441
|
-
onEventUpdateCommission(func: (event: staking_contract.UpdateCommissionInstance, ctx: AptosContext) => void,
|
6442
|
-
onEventUpdateCommissionEvent(func: (event: staking_contract.UpdateCommissionEventInstance, ctx: AptosContext) => void,
|
6443
|
-
onEventUpdateVoter(func: (event: staking_contract.UpdateVoterInstance, ctx: AptosContext) => void,
|
6444
|
-
onEventUpdateVoterEvent(func: (event: staking_contract.UpdateVoterEventInstance, ctx: AptosContext) => void,
|
6423
|
+
onEventAddStake(func: (event: staking_contract.AddStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.AddStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6424
|
+
onEventAddStakeEvent(func: (event: staking_contract.AddStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.AddStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6425
|
+
onEventUnlockStake(func: (event: staking_contract.UnlockStakeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.UnlockStakeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6426
|
+
onEventUnlockStakeEvent(func: (event: staking_contract.UnlockStakeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.UnlockStakeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6427
|
+
onEventSetBeneficiaryForOperator(func: (event: staking_contract.SetBeneficiaryForOperatorInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.SetBeneficiaryForOperatorInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6428
|
+
onEventAddDistribution(func: (event: staking_contract.AddDistributionInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.AddDistributionInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6429
|
+
onEventAddDistributionEvent(func: (event: staking_contract.AddDistributionEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.AddDistributionEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6430
|
+
onEventCreateStakingContract(func: (event: staking_contract.CreateStakingContractInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.CreateStakingContractInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6431
|
+
onEventCreateStakingContractEvent(func: (event: staking_contract.CreateStakingContractEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.CreateStakingContractEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6432
|
+
onEventDistribute(func: (event: staking_contract.DistributeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.DistributeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6433
|
+
onEventDistributeEvent(func: (event: staking_contract.DistributeEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.DistributeEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6434
|
+
onEventRequestCommission(func: (event: staking_contract.RequestCommissionInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.RequestCommissionInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6435
|
+
onEventRequestCommissionEvent(func: (event: staking_contract.RequestCommissionEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.RequestCommissionEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6436
|
+
onEventResetLockup(func: (event: staking_contract.ResetLockupInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.ResetLockupInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6437
|
+
onEventResetLockupEvent(func: (event: staking_contract.ResetLockupEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.ResetLockupEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6438
|
+
onEventStakingGroupUpdateCommissionEvent(func: (event: staking_contract.StakingGroupUpdateCommissionEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.StakingGroupUpdateCommissionEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6439
|
+
onEventSwitchOperator(func: (event: staking_contract.SwitchOperatorInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.SwitchOperatorInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6440
|
+
onEventSwitchOperatorEvent(func: (event: staking_contract.SwitchOperatorEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.SwitchOperatorEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6441
|
+
onEventUpdateCommission(func: (event: staking_contract.UpdateCommissionInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.UpdateCommissionInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6442
|
+
onEventUpdateCommissionEvent(func: (event: staking_contract.UpdateCommissionEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.UpdateCommissionEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6443
|
+
onEventUpdateVoter(func: (event: staking_contract.UpdateVoterInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.UpdateVoterInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6444
|
+
onEventUpdateVoterEvent(func: (event: staking_contract.UpdateVoterEventInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<staking_contract.UpdateVoterEventInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): staking_contract;
|
6445
6445
|
}
|
6446
6446
|
export declare namespace staking_contract {
|
6447
6447
|
interface AddStake {
|
@@ -6999,8 +6999,8 @@ export declare class account_abstraction extends AptosBaseProcessor {
|
|
6999
6999
|
onEntryRemoveAuthenticator(func: (call: account_abstraction.RemoveAuthenticatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account_abstraction;
|
7000
7000
|
onEntryRemoveDispatchableAuthenticationFunction(func: (call: account_abstraction.RemoveDispatchableAuthenticationFunctionPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account_abstraction;
|
7001
7001
|
onEntryRemoveDispatchableAuthenticator(func: (call: account_abstraction.RemoveDispatchableAuthenticatorPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): account_abstraction;
|
7002
|
-
onEventRemoveDispatchableAuthenticator(func: (event: account_abstraction.RemoveDispatchableAuthenticatorInstance, ctx: AptosContext) => void,
|
7003
|
-
onEventUpdateDispatchableAuthenticator(func: (event: account_abstraction.UpdateDispatchableAuthenticatorInstance, ctx: AptosContext) => void,
|
7002
|
+
onEventRemoveDispatchableAuthenticator(func: (event: account_abstraction.RemoveDispatchableAuthenticatorInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<account_abstraction.RemoveDispatchableAuthenticatorInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account_abstraction;
|
7003
|
+
onEventUpdateDispatchableAuthenticator(func: (event: account_abstraction.UpdateDispatchableAuthenticatorInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<account_abstraction.UpdateDispatchableAuthenticatorInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): account_abstraction;
|
7004
7004
|
}
|
7005
7005
|
export declare namespace account_abstraction {
|
7006
7006
|
interface DerivableDispatchableAuthenticator {
|
@@ -7353,9 +7353,9 @@ export declare class object_code_deployment extends AptosBaseProcessor {
|
|
7353
7353
|
onEntryFreezeCodeObject(func: (call: object_code_deployment.FreezeCodeObjectPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object_code_deployment;
|
7354
7354
|
onEntryPublish(func: (call: object_code_deployment.PublishPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object_code_deployment;
|
7355
7355
|
onEntryUpgrade(func: (call: object_code_deployment.UpgradePayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): object_code_deployment;
|
7356
|
-
onEventFreeze(func: (event: object_code_deployment.FreezeInstance, ctx: AptosContext) => void,
|
7357
|
-
onEventPublish(func: (event: object_code_deployment.PublishInstance, ctx: AptosContext) => void,
|
7358
|
-
onEventUpgrade(func: (event: object_code_deployment.UpgradeInstance, ctx: AptosContext) => void,
|
7356
|
+
onEventFreeze(func: (event: object_code_deployment.FreezeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<object_code_deployment.FreezeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object_code_deployment;
|
7357
|
+
onEventPublish(func: (event: object_code_deployment.PublishInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<object_code_deployment.PublishInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object_code_deployment;
|
7358
|
+
onEventUpgrade(func: (event: object_code_deployment.UpgradeInstance, ctx: AptosContext) => void, handlerOptions?: HandlerOptions<object_code_deployment.UpgradeInstance>, eventFilter?: Omit<EventFilter, "type" | "account">): object_code_deployment;
|
7359
7359
|
}
|
7360
7360
|
export declare namespace object_code_deployment {
|
7361
7361
|
interface Freeze {
|