@sentio/sdk 2.56.0 → 2.57.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/builtin/0x1.d.ts +308 -308
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +102 -102
- package/lib/aptos/builtin/0x3.d.ts.map +1 -1
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/builtin/0x4.d.ts +22 -22
- package/lib/aptos/builtin/0x4.d.ts.map +1 -1
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/fuel/asset-processor.d.ts +2 -2
- package/lib/fuel/asset-processor.d.ts.map +1 -1
- package/lib/fuel/asset-processor.js.map +1 -1
- package/lib/fuel/fuel-plugin.d.ts +2 -2
- package/lib/fuel/fuel-plugin.d.ts.map +1 -1
- package/lib/fuel/fuel-plugin.js +19 -18
- package/lib/fuel/fuel-plugin.js.map +1 -1
- package/lib/fuel/fuel-processor.d.ts +5 -4
- package/lib/fuel/fuel-processor.d.ts.map +1 -1
- package/lib/fuel/fuel-processor.js +38 -4
- package/lib/fuel/fuel-processor.js.map +1 -1
- package/lib/fuel/types.d.ts +10 -7
- package/lib/fuel/types.d.ts.map +1 -1
- package/lib/fuel/types.js.map +1 -1
- package/lib/sui/builtin/0x1.d.ts +12 -12
- 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 +66 -66
- 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 +26 -26
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/testing/fuel-facet.js +3 -3
- package/lib/testing/fuel-facet.js.map +1 -1
- package/package.json +8 -8
- package/src/aptos/builtin/0x1.ts +539 -579
- package/src/aptos/builtin/0x3.ts +177 -191
- package/src/aptos/builtin/0x4.ts +28 -31
- package/src/fuel/asset-processor.ts +5 -2
- package/src/fuel/fuel-plugin.ts +22 -19
- package/src/fuel/fuel-processor.ts +54 -7
- package/src/fuel/types.ts +11 -6
- package/src/sui/builtin/0x1.ts +12 -13
- package/src/sui/builtin/0x2.ts +87 -86
- package/src/sui/builtin/0x3.ts +65 -65
- package/src/testing/fuel-facet.ts +3 -3
| @@ -64,10 +64,10 @@ export declare namespace dkg { | |
| 64 64 | 
             
                    const TYPE_QNAME = "0x1::dkg::DKGStartEvent";
         | 
| 65 65 | 
             
                    function type(): TypeDescriptor<DKGStartEvent>;
         | 
| 66 66 | 
             
                }
         | 
| 67 | 
            -
                 | 
| 67 | 
            +
                type DKGStartEventInstance = TypedEventInstance<DKGStartEvent> & {
         | 
| 68 68 | 
             
                    data_decoded: DKGStartEvent;
         | 
| 69 69 | 
             
                    type_arguments: [];
         | 
| 70 | 
            -
                }
         | 
| 70 | 
            +
                };
         | 
| 71 71 | 
             
                interface DKGState {
         | 
| 72 72 | 
             
                    last_completed: option.Option<dkg.DKGSessionState>;
         | 
| 73 73 | 
             
                    in_progress: option.Option<dkg.DKGSessionState>;
         | 
| @@ -146,10 +146,10 @@ export declare namespace code { | |
| 146 146 | 
             
                    const TYPE_QNAME = "0x1::code::PublishPackage";
         | 
| 147 147 | 
             
                    function type(): TypeDescriptor<PublishPackage>;
         | 
| 148 148 | 
             
                }
         | 
| 149 | 
            -
                 | 
| 149 | 
            +
                type PublishPackageInstance = TypedEventInstance<PublishPackage> & {
         | 
| 150 150 | 
             
                    data_decoded: PublishPackage;
         | 
| 151 151 | 
             
                    type_arguments: [];
         | 
| 152 | 
            -
                }
         | 
| 152 | 
            +
                };
         | 
| 153 153 | 
             
                interface UpgradePolicy {
         | 
| 154 154 | 
             
                    policy: number;
         | 
| 155 155 | 
             
                }
         | 
| @@ -204,10 +204,10 @@ export declare namespace coin { | |
| 204 204 | 
             
                    const TYPE_QNAME = "0x1::coin::DepositEvent";
         | 
| 205 205 | 
             
                    function type(): TypeDescriptor<DepositEvent>;
         | 
| 206 206 | 
             
                }
         | 
| 207 | 
            -
                 | 
| 207 | 
            +
                type DepositEventInstance = TypedEventInstance<DepositEvent> & {
         | 
| 208 208 | 
             
                    data_decoded: DepositEvent;
         | 
| 209 209 | 
             
                    type_arguments: [];
         | 
| 210 | 
            -
                }
         | 
| 210 | 
            +
                };
         | 
| 211 211 | 
             
                interface Withdraw<T0> {
         | 
| 212 212 | 
             
                    account: MoveAddressType;
         | 
| 213 213 | 
             
                    amount: bigint;
         | 
| @@ -223,10 +223,10 @@ export declare namespace coin { | |
| 223 223 | 
             
                    const TYPE_QNAME = "0x1::coin::WithdrawEvent";
         | 
| 224 224 | 
             
                    function type(): TypeDescriptor<WithdrawEvent>;
         | 
| 225 225 | 
             
                }
         | 
| 226 | 
            -
                 | 
| 226 | 
            +
                type WithdrawEventInstance = TypedEventInstance<WithdrawEvent> & {
         | 
| 227 227 | 
             
                    data_decoded: WithdrawEvent;
         | 
| 228 228 | 
             
                    type_arguments: [];
         | 
| 229 | 
            -
                }
         | 
| 229 | 
            +
                };
         | 
| 230 230 | 
             
                interface AggregatableCoin<T0> {
         | 
| 231 231 | 
             
                    value: aggregator.Aggregator;
         | 
| 232 232 | 
             
                }
         | 
| @@ -271,10 +271,10 @@ export declare namespace coin { | |
| 271 271 | 
             
                    const TYPE_QNAME = "0x1::coin::CoinDeposit";
         | 
| 272 272 | 
             
                    function type(): TypeDescriptor<CoinDeposit>;
         | 
| 273 273 | 
             
                }
         | 
| 274 | 
            -
                 | 
| 274 | 
            +
                type CoinDepositInstance = TypedEventInstance<CoinDeposit> & {
         | 
| 275 275 | 
             
                    data_decoded: CoinDeposit;
         | 
| 276 276 | 
             
                    type_arguments: [];
         | 
| 277 | 
            -
                }
         | 
| 277 | 
            +
                };
         | 
| 278 278 | 
             
                interface CoinEventHandleDeletion {
         | 
| 279 279 | 
             
                    event_handle_creation_address: MoveAddressType;
         | 
| 280 280 | 
             
                    deleted_deposit_event_handle_creation_number: bigint;
         | 
| @@ -284,10 +284,10 @@ export declare namespace coin { | |
| 284 284 | 
             
                    const TYPE_QNAME = "0x1::coin::CoinEventHandleDeletion";
         | 
| 285 285 | 
             
                    function type(): TypeDescriptor<CoinEventHandleDeletion>;
         | 
| 286 286 | 
             
                }
         | 
| 287 | 
            -
                 | 
| 287 | 
            +
                type CoinEventHandleDeletionInstance = TypedEventInstance<CoinEventHandleDeletion> & {
         | 
| 288 288 | 
             
                    data_decoded: CoinEventHandleDeletion;
         | 
| 289 289 | 
             
                    type_arguments: [];
         | 
| 290 | 
            -
                }
         | 
| 290 | 
            +
                };
         | 
| 291 291 | 
             
                interface CoinInfo<T0> {
         | 
| 292 292 | 
             
                    name: string;
         | 
| 293 293 | 
             
                    symbol: string;
         | 
| @@ -317,10 +317,10 @@ export declare namespace coin { | |
| 317 317 | 
             
                    const TYPE_QNAME = "0x1::coin::CoinWithdraw";
         | 
| 318 318 | 
             
                    function type(): TypeDescriptor<CoinWithdraw>;
         | 
| 319 319 | 
             
                }
         | 
| 320 | 
            -
                 | 
| 320 | 
            +
                type CoinWithdrawInstance = TypedEventInstance<CoinWithdraw> & {
         | 
| 321 321 | 
             
                    data_decoded: CoinWithdraw;
         | 
| 322 322 | 
             
                    type_arguments: [];
         | 
| 323 | 
            -
                }
         | 
| 323 | 
            +
                };
         | 
| 324 324 | 
             
                interface FreezeCapability<T0> {
         | 
| 325 325 | 
             
                    dummy_field: boolean;
         | 
| 326 326 | 
             
                }
         | 
| @@ -357,10 +357,10 @@ export declare namespace coin { | |
| 357 357 | 
             
                    const TYPE_QNAME = "0x1::coin::PairCreation";
         | 
| 358 358 | 
             
                    function type(): TypeDescriptor<PairCreation>;
         | 
| 359 359 | 
             
                }
         | 
| 360 | 
            -
                 | 
| 360 | 
            +
                type PairCreationInstance = TypedEventInstance<PairCreation> & {
         | 
| 361 361 | 
             
                    data_decoded: PairCreation;
         | 
| 362 362 | 
             
                    type_arguments: [];
         | 
| 363 | 
            -
                }
         | 
| 363 | 
            +
                };
         | 
| 364 364 | 
             
                interface PairedCoinType {
         | 
| 365 365 | 
             
                    type: type_info.TypeInfo;
         | 
| 366 366 | 
             
                }
         | 
| @@ -584,10 +584,10 @@ export declare namespace jwks { | |
| 584 584 | 
             
                    const TYPE_QNAME = "0x1::jwks::ObservedJWKsUpdated";
         | 
| 585 585 | 
             
                    function type(): TypeDescriptor<ObservedJWKsUpdated>;
         | 
| 586 586 | 
             
                }
         | 
| 587 | 
            -
                 | 
| 587 | 
            +
                type ObservedJWKsUpdatedInstance = TypedEventInstance<ObservedJWKsUpdated> & {
         | 
| 588 588 | 
             
                    data_decoded: ObservedJWKsUpdated;
         | 
| 589 589 | 
             
                    type_arguments: [];
         | 
| 590 | 
            -
                }
         | 
| 590 | 
            +
                };
         | 
| 591 591 | 
             
                interface Patch {
         | 
| 592 592 | 
             
                    variant: copyable_any.Any;
         | 
| 593 593 | 
             
                }
         | 
| @@ -739,10 +739,10 @@ export declare namespace block { | |
| 739 739 | 
             
                    const TYPE_QNAME = "0x1::block::NewBlock";
         | 
| 740 740 | 
             
                    function type(): TypeDescriptor<NewBlock>;
         | 
| 741 741 | 
             
                }
         | 
| 742 | 
            -
                 | 
| 742 | 
            +
                type NewBlockInstance = TypedEventInstance<NewBlock> & {
         | 
| 743 743 | 
             
                    data_decoded: NewBlock;
         | 
| 744 744 | 
             
                    type_arguments: [];
         | 
| 745 | 
            -
                }
         | 
| 745 | 
            +
                };
         | 
| 746 746 | 
             
                interface NewBlockEvent {
         | 
| 747 747 | 
             
                    hash: MoveAddressType;
         | 
| 748 748 | 
             
                    epoch: bigint;
         | 
| @@ -757,10 +757,10 @@ export declare namespace block { | |
| 757 757 | 
             
                    const TYPE_QNAME = "0x1::block::NewBlockEvent";
         | 
| 758 758 | 
             
                    function type(): TypeDescriptor<NewBlockEvent>;
         | 
| 759 759 | 
             
                }
         | 
| 760 | 
            -
                 | 
| 760 | 
            +
                type NewBlockEventInstance = TypedEventInstance<NewBlockEvent> & {
         | 
| 761 761 | 
             
                    data_decoded: NewBlockEvent;
         | 
| 762 762 | 
             
                    type_arguments: [];
         | 
| 763 | 
            -
                }
         | 
| 763 | 
            +
                };
         | 
| 764 764 | 
             
                interface UpdateEpochInterval {
         | 
| 765 765 | 
             
                    old_epoch_interval: bigint;
         | 
| 766 766 | 
             
                    new_epoch_interval: bigint;
         | 
| @@ -769,10 +769,10 @@ export declare namespace block { | |
| 769 769 | 
             
                    const TYPE_QNAME = "0x1::block::UpdateEpochInterval";
         | 
| 770 770 | 
             
                    function type(): TypeDescriptor<UpdateEpochInterval>;
         | 
| 771 771 | 
             
                }
         | 
| 772 | 
            -
                 | 
| 772 | 
            +
                type UpdateEpochIntervalInstance = TypedEventInstance<UpdateEpochInterval> & {
         | 
| 773 773 | 
             
                    data_decoded: UpdateEpochInterval;
         | 
| 774 774 | 
             
                    type_arguments: [];
         | 
| 775 | 
            -
                }
         | 
| 775 | 
            +
                };
         | 
| 776 776 | 
             
                interface UpdateEpochIntervalEvent {
         | 
| 777 777 | 
             
                    old_epoch_interval: bigint;
         | 
| 778 778 | 
             
                    new_epoch_interval: bigint;
         | 
| @@ -781,10 +781,10 @@ export declare namespace block { | |
| 781 781 | 
             
                    const TYPE_QNAME = "0x1::block::UpdateEpochIntervalEvent";
         | 
| 782 782 | 
             
                    function type(): TypeDescriptor<UpdateEpochIntervalEvent>;
         | 
| 783 783 | 
             
                }
         | 
| 784 | 
            -
                 | 
| 784 | 
            +
                type UpdateEpochIntervalEventInstance = TypedEventInstance<UpdateEpochIntervalEvent> & {
         | 
| 785 785 | 
             
                    data_decoded: UpdateEpochIntervalEvent;
         | 
| 786 786 | 
             
                    type_arguments: [];
         | 
| 787 | 
            -
                }
         | 
| 787 | 
            +
                };
         | 
| 788 788 | 
             
                namespace entry { }
         | 
| 789 789 | 
             
                namespace view {
         | 
| 790 790 | 
             
                    function getCurrentBlockHeight(client: Aptos, version?: bigint): Promise<[bigint]>;
         | 
| @@ -862,10 +862,10 @@ export declare namespace stake { | |
| 862 862 | 
             
                    const TYPE_QNAME = "0x1::stake::AddStake";
         | 
| 863 863 | 
             
                    function type(): TypeDescriptor<AddStake>;
         | 
| 864 864 | 
             
                }
         | 
| 865 | 
            -
                 | 
| 865 | 
            +
                type AddStakeInstance = TypedEventInstance<AddStake> & {
         | 
| 866 866 | 
             
                    data_decoded: AddStake;
         | 
| 867 867 | 
             
                    type_arguments: [];
         | 
| 868 | 
            -
                }
         | 
| 868 | 
            +
                };
         | 
| 869 869 | 
             
                interface AddStakeEvent {
         | 
| 870 870 | 
             
                    pool_address: MoveAddressType;
         | 
| 871 871 | 
             
                    amount_added: bigint;
         | 
| @@ -874,10 +874,10 @@ export declare namespace stake { | |
| 874 874 | 
             
                    const TYPE_QNAME = "0x1::stake::AddStakeEvent";
         | 
| 875 875 | 
             
                    function type(): TypeDescriptor<AddStakeEvent>;
         | 
| 876 876 | 
             
                }
         | 
| 877 | 
            -
                 | 
| 877 | 
            +
                type AddStakeEventInstance = TypedEventInstance<AddStakeEvent> & {
         | 
| 878 878 | 
             
                    data_decoded: AddStakeEvent;
         | 
| 879 879 | 
             
                    type_arguments: [];
         | 
| 880 | 
            -
                }
         | 
| 880 | 
            +
                };
         | 
| 881 881 | 
             
                interface AllowedValidators {
         | 
| 882 882 | 
             
                    accounts: MoveAddressType[];
         | 
| 883 883 | 
             
                }
         | 
| @@ -900,10 +900,10 @@ export declare namespace stake { | |
| 900 900 | 
             
                    const TYPE_QNAME = "0x1::stake::DistributeRewards";
         | 
| 901 901 | 
             
                    function type(): TypeDescriptor<DistributeRewards>;
         | 
| 902 902 | 
             
                }
         | 
| 903 | 
            -
                 | 
| 903 | 
            +
                type DistributeRewardsInstance = TypedEventInstance<DistributeRewards> & {
         | 
| 904 904 | 
             
                    data_decoded: DistributeRewards;
         | 
| 905 905 | 
             
                    type_arguments: [];
         | 
| 906 | 
            -
                }
         | 
| 906 | 
            +
                };
         | 
| 907 907 | 
             
                interface DistributeRewardsEvent {
         | 
| 908 908 | 
             
                    pool_address: MoveAddressType;
         | 
| 909 909 | 
             
                    rewards_amount: bigint;
         | 
| @@ -912,10 +912,10 @@ export declare namespace stake { | |
| 912 912 | 
             
                    const TYPE_QNAME = "0x1::stake::DistributeRewardsEvent";
         | 
| 913 913 | 
             
                    function type(): TypeDescriptor<DistributeRewardsEvent>;
         | 
| 914 914 | 
             
                }
         | 
| 915 | 
            -
                 | 
| 915 | 
            +
                type DistributeRewardsEventInstance = TypedEventInstance<DistributeRewardsEvent> & {
         | 
| 916 916 | 
             
                    data_decoded: DistributeRewardsEvent;
         | 
| 917 917 | 
             
                    type_arguments: [];
         | 
| 918 | 
            -
                }
         | 
| 918 | 
            +
                };
         | 
| 919 919 | 
             
                interface IncreaseLockup {
         | 
| 920 920 | 
             
                    pool_address: MoveAddressType;
         | 
| 921 921 | 
             
                    old_locked_until_secs: bigint;
         | 
| @@ -925,10 +925,10 @@ export declare namespace stake { | |
| 925 925 | 
             
                    const TYPE_QNAME = "0x1::stake::IncreaseLockup";
         | 
| 926 926 | 
             
                    function type(): TypeDescriptor<IncreaseLockup>;
         | 
| 927 927 | 
             
                }
         | 
| 928 | 
            -
                 | 
| 928 | 
            +
                type IncreaseLockupInstance = TypedEventInstance<IncreaseLockup> & {
         | 
| 929 929 | 
             
                    data_decoded: IncreaseLockup;
         | 
| 930 930 | 
             
                    type_arguments: [];
         | 
| 931 | 
            -
                }
         | 
| 931 | 
            +
                };
         | 
| 932 932 | 
             
                interface IncreaseLockupEvent {
         | 
| 933 933 | 
             
                    pool_address: MoveAddressType;
         | 
| 934 934 | 
             
                    old_locked_until_secs: bigint;
         | 
| @@ -938,10 +938,10 @@ export declare namespace stake { | |
| 938 938 | 
             
                    const TYPE_QNAME = "0x1::stake::IncreaseLockupEvent";
         | 
| 939 939 | 
             
                    function type(): TypeDescriptor<IncreaseLockupEvent>;
         | 
| 940 940 | 
             
                }
         | 
| 941 | 
            -
                 | 
| 941 | 
            +
                type IncreaseLockupEventInstance = TypedEventInstance<IncreaseLockupEvent> & {
         | 
| 942 942 | 
             
                    data_decoded: IncreaseLockupEvent;
         | 
| 943 943 | 
             
                    type_arguments: [];
         | 
| 944 | 
            -
                }
         | 
| 944 | 
            +
                };
         | 
| 945 945 | 
             
                interface IndividualValidatorPerformance {
         | 
| 946 946 | 
             
                    successful_proposals: bigint;
         | 
| 947 947 | 
             
                    failed_proposals: bigint;
         | 
| @@ -957,10 +957,10 @@ export declare namespace stake { | |
| 957 957 | 
             
                    const TYPE_QNAME = "0x1::stake::JoinValidatorSet";
         | 
| 958 958 | 
             
                    function type(): TypeDescriptor<JoinValidatorSet>;
         | 
| 959 959 | 
             
                }
         | 
| 960 | 
            -
                 | 
| 960 | 
            +
                type JoinValidatorSetInstance = TypedEventInstance<JoinValidatorSet> & {
         | 
| 961 961 | 
             
                    data_decoded: JoinValidatorSet;
         | 
| 962 962 | 
             
                    type_arguments: [];
         | 
| 963 | 
            -
                }
         | 
| 963 | 
            +
                };
         | 
| 964 964 | 
             
                interface JoinValidatorSetEvent {
         | 
| 965 965 | 
             
                    pool_address: MoveAddressType;
         | 
| 966 966 | 
             
                }
         | 
| @@ -968,10 +968,10 @@ export declare namespace stake { | |
| 968 968 | 
             
                    const TYPE_QNAME = "0x1::stake::JoinValidatorSetEvent";
         | 
| 969 969 | 
             
                    function type(): TypeDescriptor<JoinValidatorSetEvent>;
         | 
| 970 970 | 
             
                }
         | 
| 971 | 
            -
                 | 
| 971 | 
            +
                type JoinValidatorSetEventInstance = TypedEventInstance<JoinValidatorSetEvent> & {
         | 
| 972 972 | 
             
                    data_decoded: JoinValidatorSetEvent;
         | 
| 973 973 | 
             
                    type_arguments: [];
         | 
| 974 | 
            -
                }
         | 
| 974 | 
            +
                };
         | 
| 975 975 | 
             
                interface LeaveValidatorSet {
         | 
| 976 976 | 
             
                    pool_address: MoveAddressType;
         | 
| 977 977 | 
             
                }
         | 
| @@ -979,10 +979,10 @@ export declare namespace stake { | |
| 979 979 | 
             
                    const TYPE_QNAME = "0x1::stake::LeaveValidatorSet";
         | 
| 980 980 | 
             
                    function type(): TypeDescriptor<LeaveValidatorSet>;
         | 
| 981 981 | 
             
                }
         | 
| 982 | 
            -
                 | 
| 982 | 
            +
                type LeaveValidatorSetInstance = TypedEventInstance<LeaveValidatorSet> & {
         | 
| 983 983 | 
             
                    data_decoded: LeaveValidatorSet;
         | 
| 984 984 | 
             
                    type_arguments: [];
         | 
| 985 | 
            -
                }
         | 
| 985 | 
            +
                };
         | 
| 986 986 | 
             
                interface LeaveValidatorSetEvent {
         | 
| 987 987 | 
             
                    pool_address: MoveAddressType;
         | 
| 988 988 | 
             
                }
         | 
| @@ -990,10 +990,10 @@ export declare namespace stake { | |
| 990 990 | 
             
                    const TYPE_QNAME = "0x1::stake::LeaveValidatorSetEvent";
         | 
| 991 991 | 
             
                    function type(): TypeDescriptor<LeaveValidatorSetEvent>;
         | 
| 992 992 | 
             
                }
         | 
| 993 | 
            -
                 | 
| 993 | 
            +
                type LeaveValidatorSetEventInstance = TypedEventInstance<LeaveValidatorSetEvent> & {
         | 
| 994 994 | 
             
                    data_decoded: LeaveValidatorSetEvent;
         | 
| 995 995 | 
             
                    type_arguments: [];
         | 
| 996 | 
            -
                }
         | 
| 996 | 
            +
                };
         | 
| 997 997 | 
             
                interface OwnerCapability {
         | 
| 998 998 | 
             
                    pool_address: MoveAddressType;
         | 
| 999 999 | 
             
                }
         | 
| @@ -1009,10 +1009,10 @@ export declare namespace stake { | |
| 1009 1009 | 
             
                    const TYPE_QNAME = "0x1::stake::ReactivateStake";
         | 
| 1010 1010 | 
             
                    function type(): TypeDescriptor<ReactivateStake>;
         | 
| 1011 1011 | 
             
                }
         | 
| 1012 | 
            -
                 | 
| 1012 | 
            +
                type ReactivateStakeInstance = TypedEventInstance<ReactivateStake> & {
         | 
| 1013 1013 | 
             
                    data_decoded: ReactivateStake;
         | 
| 1014 1014 | 
             
                    type_arguments: [];
         | 
| 1015 | 
            -
                }
         | 
| 1015 | 
            +
                };
         | 
| 1016 1016 | 
             
                interface ReactivateStakeEvent {
         | 
| 1017 1017 | 
             
                    pool_address: MoveAddressType;
         | 
| 1018 1018 | 
             
                    amount: bigint;
         | 
| @@ -1021,10 +1021,10 @@ export declare namespace stake { | |
| 1021 1021 | 
             
                    const TYPE_QNAME = "0x1::stake::ReactivateStakeEvent";
         | 
| 1022 1022 | 
             
                    function type(): TypeDescriptor<ReactivateStakeEvent>;
         | 
| 1023 1023 | 
             
                }
         | 
| 1024 | 
            -
                 | 
| 1024 | 
            +
                type ReactivateStakeEventInstance = TypedEventInstance<ReactivateStakeEvent> & {
         | 
| 1025 1025 | 
             
                    data_decoded: ReactivateStakeEvent;
         | 
| 1026 1026 | 
             
                    type_arguments: [];
         | 
| 1027 | 
            -
                }
         | 
| 1027 | 
            +
                };
         | 
| 1028 1028 | 
             
                interface RegisterValidatorCandidate {
         | 
| 1029 1029 | 
             
                    pool_address: MoveAddressType;
         | 
| 1030 1030 | 
             
                }
         | 
| @@ -1032,10 +1032,10 @@ export declare namespace stake { | |
| 1032 1032 | 
             
                    const TYPE_QNAME = "0x1::stake::RegisterValidatorCandidate";
         | 
| 1033 1033 | 
             
                    function type(): TypeDescriptor<RegisterValidatorCandidate>;
         | 
| 1034 1034 | 
             
                }
         | 
| 1035 | 
            -
                 | 
| 1035 | 
            +
                type RegisterValidatorCandidateInstance = TypedEventInstance<RegisterValidatorCandidate> & {
         | 
| 1036 1036 | 
             
                    data_decoded: RegisterValidatorCandidate;
         | 
| 1037 1037 | 
             
                    type_arguments: [];
         | 
| 1038 | 
            -
                }
         | 
| 1038 | 
            +
                };
         | 
| 1039 1039 | 
             
                interface RegisterValidatorCandidateEvent {
         | 
| 1040 1040 | 
             
                    pool_address: MoveAddressType;
         | 
| 1041 1041 | 
             
                }
         | 
| @@ -1043,10 +1043,10 @@ export declare namespace stake { | |
| 1043 1043 | 
             
                    const TYPE_QNAME = "0x1::stake::RegisterValidatorCandidateEvent";
         | 
| 1044 1044 | 
             
                    function type(): TypeDescriptor<RegisterValidatorCandidateEvent>;
         | 
| 1045 1045 | 
             
                }
         | 
| 1046 | 
            -
                 | 
| 1046 | 
            +
                type RegisterValidatorCandidateEventInstance = TypedEventInstance<RegisterValidatorCandidateEvent> & {
         | 
| 1047 1047 | 
             
                    data_decoded: RegisterValidatorCandidateEvent;
         | 
| 1048 1048 | 
             
                    type_arguments: [];
         | 
| 1049 | 
            -
                }
         | 
| 1049 | 
            +
                };
         | 
| 1050 1050 | 
             
                interface RotateConsensusKey {
         | 
| 1051 1051 | 
             
                    pool_address: MoveAddressType;
         | 
| 1052 1052 | 
             
                    old_consensus_pubkey: string;
         | 
| @@ -1056,10 +1056,10 @@ export declare namespace stake { | |
| 1056 1056 | 
             
                    const TYPE_QNAME = "0x1::stake::RotateConsensusKey";
         | 
| 1057 1057 | 
             
                    function type(): TypeDescriptor<RotateConsensusKey>;
         | 
| 1058 1058 | 
             
                }
         | 
| 1059 | 
            -
                 | 
| 1059 | 
            +
                type RotateConsensusKeyInstance = TypedEventInstance<RotateConsensusKey> & {
         | 
| 1060 1060 | 
             
                    data_decoded: RotateConsensusKey;
         | 
| 1061 1061 | 
             
                    type_arguments: [];
         | 
| 1062 | 
            -
                }
         | 
| 1062 | 
            +
                };
         | 
| 1063 1063 | 
             
                interface RotateConsensusKeyEvent {
         | 
| 1064 1064 | 
             
                    pool_address: MoveAddressType;
         | 
| 1065 1065 | 
             
                    old_consensus_pubkey: string;
         | 
| @@ -1069,10 +1069,10 @@ export declare namespace stake { | |
| 1069 1069 | 
             
                    const TYPE_QNAME = "0x1::stake::RotateConsensusKeyEvent";
         | 
| 1070 1070 | 
             
                    function type(): TypeDescriptor<RotateConsensusKeyEvent>;
         | 
| 1071 1071 | 
             
                }
         | 
| 1072 | 
            -
                 | 
| 1072 | 
            +
                type RotateConsensusKeyEventInstance = TypedEventInstance<RotateConsensusKeyEvent> & {
         | 
| 1073 1073 | 
             
                    data_decoded: RotateConsensusKeyEvent;
         | 
| 1074 1074 | 
             
                    type_arguments: [];
         | 
| 1075 | 
            -
                }
         | 
| 1075 | 
            +
                };
         | 
| 1076 1076 | 
             
                interface SetOperator {
         | 
| 1077 1077 | 
             
                    pool_address: MoveAddressType;
         | 
| 1078 1078 | 
             
                    old_operator: MoveAddressType;
         | 
| @@ -1082,10 +1082,10 @@ export declare namespace stake { | |
| 1082 1082 | 
             
                    const TYPE_QNAME = "0x1::stake::SetOperator";
         | 
| 1083 1083 | 
             
                    function type(): TypeDescriptor<SetOperator>;
         | 
| 1084 1084 | 
             
                }
         | 
| 1085 | 
            -
                 | 
| 1085 | 
            +
                type SetOperatorInstance = TypedEventInstance<SetOperator> & {
         | 
| 1086 1086 | 
             
                    data_decoded: SetOperator;
         | 
| 1087 1087 | 
             
                    type_arguments: [];
         | 
| 1088 | 
            -
                }
         | 
| 1088 | 
            +
                };
         | 
| 1089 1089 | 
             
                interface SetOperatorEvent {
         | 
| 1090 1090 | 
             
                    pool_address: MoveAddressType;
         | 
| 1091 1091 | 
             
                    old_operator: MoveAddressType;
         | 
| @@ -1095,10 +1095,10 @@ export declare namespace stake { | |
| 1095 1095 | 
             
                    const TYPE_QNAME = "0x1::stake::SetOperatorEvent";
         | 
| 1096 1096 | 
             
                    function type(): TypeDescriptor<SetOperatorEvent>;
         | 
| 1097 1097 | 
             
                }
         | 
| 1098 | 
            -
                 | 
| 1098 | 
            +
                type SetOperatorEventInstance = TypedEventInstance<SetOperatorEvent> & {
         | 
| 1099 1099 | 
             
                    data_decoded: SetOperatorEvent;
         | 
| 1100 1100 | 
             
                    type_arguments: [];
         | 
| 1101 | 
            -
                }
         | 
| 1101 | 
            +
                };
         | 
| 1102 1102 | 
             
                interface StakePool {
         | 
| 1103 1103 | 
             
                    active: coin.Coin<aptos_coin.AptosCoin>;
         | 
| 1104 1104 | 
             
                    inactive: coin.Coin<aptos_coin.AptosCoin>;
         | 
| @@ -1132,10 +1132,10 @@ export declare namespace stake { | |
| 1132 1132 | 
             
                    const TYPE_QNAME = "0x1::stake::UnlockStake";
         | 
| 1133 1133 | 
             
                    function type(): TypeDescriptor<UnlockStake>;
         | 
| 1134 1134 | 
             
                }
         | 
| 1135 | 
            -
                 | 
| 1135 | 
            +
                type UnlockStakeInstance = TypedEventInstance<UnlockStake> & {
         | 
| 1136 1136 | 
             
                    data_decoded: UnlockStake;
         | 
| 1137 1137 | 
             
                    type_arguments: [];
         | 
| 1138 | 
            -
                }
         | 
| 1138 | 
            +
                };
         | 
| 1139 1139 | 
             
                interface UnlockStakeEvent {
         | 
| 1140 1140 | 
             
                    pool_address: MoveAddressType;
         | 
| 1141 1141 | 
             
                    amount_unlocked: bigint;
         | 
| @@ -1144,10 +1144,10 @@ export declare namespace stake { | |
| 1144 1144 | 
             
                    const TYPE_QNAME = "0x1::stake::UnlockStakeEvent";
         | 
| 1145 1145 | 
             
                    function type(): TypeDescriptor<UnlockStakeEvent>;
         | 
| 1146 1146 | 
             
                }
         | 
| 1147 | 
            -
                 | 
| 1147 | 
            +
                type UnlockStakeEventInstance = TypedEventInstance<UnlockStakeEvent> & {
         | 
| 1148 1148 | 
             
                    data_decoded: UnlockStakeEvent;
         | 
| 1149 1149 | 
             
                    type_arguments: [];
         | 
| 1150 | 
            -
                }
         | 
| 1150 | 
            +
                };
         | 
| 1151 1151 | 
             
                interface UpdateNetworkAndFullnodeAddresses {
         | 
| 1152 1152 | 
             
                    pool_address: MoveAddressType;
         | 
| 1153 1153 | 
             
                    old_network_addresses: string;
         | 
| @@ -1159,10 +1159,10 @@ export declare namespace stake { | |
| 1159 1159 | 
             
                    const TYPE_QNAME = "0x1::stake::UpdateNetworkAndFullnodeAddresses";
         | 
| 1160 1160 | 
             
                    function type(): TypeDescriptor<UpdateNetworkAndFullnodeAddresses>;
         | 
| 1161 1161 | 
             
                }
         | 
| 1162 | 
            -
                 | 
| 1162 | 
            +
                type UpdateNetworkAndFullnodeAddressesInstance = TypedEventInstance<UpdateNetworkAndFullnodeAddresses> & {
         | 
| 1163 1163 | 
             
                    data_decoded: UpdateNetworkAndFullnodeAddresses;
         | 
| 1164 1164 | 
             
                    type_arguments: [];
         | 
| 1165 | 
            -
                }
         | 
| 1165 | 
            +
                };
         | 
| 1166 1166 | 
             
                interface UpdateNetworkAndFullnodeAddressesEvent {
         | 
| 1167 1167 | 
             
                    pool_address: MoveAddressType;
         | 
| 1168 1168 | 
             
                    old_network_addresses: string;
         | 
| @@ -1174,10 +1174,10 @@ export declare namespace stake { | |
| 1174 1174 | 
             
                    const TYPE_QNAME = "0x1::stake::UpdateNetworkAndFullnodeAddressesEvent";
         | 
| 1175 1175 | 
             
                    function type(): TypeDescriptor<UpdateNetworkAndFullnodeAddressesEvent>;
         | 
| 1176 1176 | 
             
                }
         | 
| 1177 | 
            -
                 | 
| 1177 | 
            +
                type UpdateNetworkAndFullnodeAddressesEventInstance = TypedEventInstance<UpdateNetworkAndFullnodeAddressesEvent> & {
         | 
| 1178 1178 | 
             
                    data_decoded: UpdateNetworkAndFullnodeAddressesEvent;
         | 
| 1179 1179 | 
             
                    type_arguments: [];
         | 
| 1180 | 
            -
                }
         | 
| 1180 | 
            +
                };
         | 
| 1181 1181 | 
             
                interface ValidatorConfig {
         | 
| 1182 1182 | 
             
                    consensus_pubkey: string;
         | 
| 1183 1183 | 
             
                    network_addresses: string;
         | 
| @@ -1231,10 +1231,10 @@ export declare namespace stake { | |
| 1231 1231 | 
             
                    const TYPE_QNAME = "0x1::stake::WithdrawStake";
         | 
| 1232 1232 | 
             
                    function type(): TypeDescriptor<WithdrawStake>;
         | 
| 1233 1233 | 
             
                }
         | 
| 1234 | 
            -
                 | 
| 1234 | 
            +
                type WithdrawStakeInstance = TypedEventInstance<WithdrawStake> & {
         | 
| 1235 1235 | 
             
                    data_decoded: WithdrawStake;
         | 
| 1236 1236 | 
             
                    type_arguments: [];
         | 
| 1237 | 
            -
                }
         | 
| 1237 | 
            +
                };
         | 
| 1238 1238 | 
             
                interface WithdrawStakeEvent {
         | 
| 1239 1239 | 
             
                    pool_address: MoveAddressType;
         | 
| 1240 1240 | 
             
                    amount_withdrawn: bigint;
         | 
| @@ -1243,10 +1243,10 @@ export declare namespace stake { | |
| 1243 1243 | 
             
                    const TYPE_QNAME = "0x1::stake::WithdrawStakeEvent";
         | 
| 1244 1244 | 
             
                    function type(): TypeDescriptor<WithdrawStakeEvent>;
         | 
| 1245 1245 | 
             
                }
         | 
| 1246 | 
            -
                 | 
| 1246 | 
            +
                type WithdrawStakeEventInstance = TypedEventInstance<WithdrawStakeEvent> & {
         | 
| 1247 1247 | 
             
                    data_decoded: WithdrawStakeEvent;
         | 
| 1248 1248 | 
             
                    type_arguments: [];
         | 
| 1249 | 
            -
                }
         | 
| 1249 | 
            +
                };
         | 
| 1250 1250 | 
             
                namespace entry {
         | 
| 1251 1251 | 
             
                    function withdraw(client: Aptos, account: AptosAccount, request: {
         | 
| 1252 1252 | 
             
                        typeArguments: [];
         | 
| @@ -1499,10 +1499,10 @@ export declare namespace object$ { | |
| 1499 1499 | 
             
                    const TYPE_QNAME = "0x1::object::Transfer";
         | 
| 1500 1500 | 
             
                    function type(): TypeDescriptor<Transfer>;
         | 
| 1501 1501 | 
             
                }
         | 
| 1502 | 
            -
                 | 
| 1502 | 
            +
                type TransferInstance = TypedEventInstance<Transfer> & {
         | 
| 1503 1503 | 
             
                    data_decoded: Transfer;
         | 
| 1504 1504 | 
             
                    type_arguments: [];
         | 
| 1505 | 
            -
                }
         | 
| 1505 | 
            +
                };
         | 
| 1506 1506 | 
             
                interface TransferEvent {
         | 
| 1507 1507 | 
             
                    object: MoveAddressType;
         | 
| 1508 1508 | 
             
                    from: MoveAddressType;
         | 
| @@ -1512,10 +1512,10 @@ export declare namespace object$ { | |
| 1512 1512 | 
             
                    const TYPE_QNAME = "0x1::object::TransferEvent";
         | 
| 1513 1513 | 
             
                    function type(): TypeDescriptor<TransferEvent>;
         | 
| 1514 1514 | 
             
                }
         | 
| 1515 | 
            -
                 | 
| 1515 | 
            +
                type TransferEventInstance = TypedEventInstance<TransferEvent> & {
         | 
| 1516 1516 | 
             
                    data_decoded: TransferEvent;
         | 
| 1517 1517 | 
             
                    type_arguments: [];
         | 
| 1518 | 
            -
                }
         | 
| 1518 | 
            +
                };
         | 
| 1519 1519 | 
             
                interface TransferRef {
         | 
| 1520 1520 | 
             
                    self: MoveAddressType;
         | 
| 1521 1521 | 
             
                }
         | 
| @@ -1638,10 +1638,10 @@ export declare namespace voting { | |
| 1638 1638 | 
             
                    const TYPE_QNAME = "0x1::voting::CreateProposal";
         | 
| 1639 1639 | 
             
                    function type(): TypeDescriptor<CreateProposal>;
         | 
| 1640 1640 | 
             
                }
         | 
| 1641 | 
            -
                 | 
| 1641 | 
            +
                type CreateProposalInstance = TypedEventInstance<CreateProposal> & {
         | 
| 1642 1642 | 
             
                    data_decoded: CreateProposal;
         | 
| 1643 1643 | 
             
                    type_arguments: [];
         | 
| 1644 | 
            -
                }
         | 
| 1644 | 
            +
                };
         | 
| 1645 1645 | 
             
                interface CreateProposalEvent {
         | 
| 1646 1646 | 
             
                    proposal_id: bigint;
         | 
| 1647 1647 | 
             
                    early_resolution_vote_threshold: option.Option<bigint>;
         | 
| @@ -1654,10 +1654,10 @@ export declare namespace voting { | |
| 1654 1654 | 
             
                    const TYPE_QNAME = "0x1::voting::CreateProposalEvent";
         | 
| 1655 1655 | 
             
                    function type(): TypeDescriptor<CreateProposalEvent>;
         | 
| 1656 1656 | 
             
                }
         | 
| 1657 | 
            -
                 | 
| 1657 | 
            +
                type CreateProposalEventInstance = TypedEventInstance<CreateProposalEvent> & {
         | 
| 1658 1658 | 
             
                    data_decoded: CreateProposalEvent;
         | 
| 1659 1659 | 
             
                    type_arguments: [];
         | 
| 1660 | 
            -
                }
         | 
| 1660 | 
            +
                };
         | 
| 1661 1661 | 
             
                interface Proposal<T0> {
         | 
| 1662 1662 | 
             
                    proposer: MoveAddressType;
         | 
| 1663 1663 | 
             
                    execution_content: option.Option<T0>;
         | 
| @@ -1684,10 +1684,10 @@ export declare namespace voting { | |
| 1684 1684 | 
             
                    const TYPE_QNAME = "0x1::voting::RegisterForum";
         | 
| 1685 1685 | 
             
                    function type(): TypeDescriptor<RegisterForum>;
         | 
| 1686 1686 | 
             
                }
         | 
| 1687 | 
            -
                 | 
| 1687 | 
            +
                type RegisterForumInstance = TypedEventInstance<RegisterForum> & {
         | 
| 1688 1688 | 
             
                    data_decoded: RegisterForum;
         | 
| 1689 1689 | 
             
                    type_arguments: [];
         | 
| 1690 | 
            -
                }
         | 
| 1690 | 
            +
                };
         | 
| 1691 1691 | 
             
                interface RegisterForumEvent {
         | 
| 1692 1692 | 
             
                    hosting_account: MoveAddressType;
         | 
| 1693 1693 | 
             
                    proposal_type_info: type_info.TypeInfo;
         | 
| @@ -1696,10 +1696,10 @@ export declare namespace voting { | |
| 1696 1696 | 
             
                    const TYPE_QNAME = "0x1::voting::RegisterForumEvent";
         | 
| 1697 1697 | 
             
                    function type(): TypeDescriptor<RegisterForumEvent>;
         | 
| 1698 1698 | 
             
                }
         | 
| 1699 | 
            -
                 | 
| 1699 | 
            +
                type RegisterForumEventInstance = TypedEventInstance<RegisterForumEvent> & {
         | 
| 1700 1700 | 
             
                    data_decoded: RegisterForumEvent;
         | 
| 1701 1701 | 
             
                    type_arguments: [];
         | 
| 1702 | 
            -
                }
         | 
| 1702 | 
            +
                };
         | 
| 1703 1703 | 
             
                interface ResolveProposal {
         | 
| 1704 1704 | 
             
                    proposal_id: bigint;
         | 
| 1705 1705 | 
             
                    yes_votes: bigint;
         | 
| @@ -1710,10 +1710,10 @@ export declare namespace voting { | |
| 1710 1710 | 
             
                    const TYPE_QNAME = "0x1::voting::ResolveProposal";
         | 
| 1711 1711 | 
             
                    function type(): TypeDescriptor<ResolveProposal>;
         | 
| 1712 1712 | 
             
                }
         | 
| 1713 | 
            -
                 | 
| 1713 | 
            +
                type ResolveProposalInstance = TypedEventInstance<ResolveProposal> & {
         | 
| 1714 1714 | 
             
                    data_decoded: ResolveProposal;
         | 
| 1715 1715 | 
             
                    type_arguments: [];
         | 
| 1716 | 
            -
                }
         | 
| 1716 | 
            +
                };
         | 
| 1717 1717 | 
             
                interface Vote {
         | 
| 1718 1718 | 
             
                    proposal_id: bigint;
         | 
| 1719 1719 | 
             
                    num_votes: bigint;
         | 
| @@ -1722,10 +1722,10 @@ export declare namespace voting { | |
| 1722 1722 | 
             
                    const TYPE_QNAME = "0x1::voting::Vote";
         | 
| 1723 1723 | 
             
                    function type(): TypeDescriptor<Vote>;
         | 
| 1724 1724 | 
             
                }
         | 
| 1725 | 
            -
                 | 
| 1725 | 
            +
                type VoteInstance = TypedEventInstance<Vote> & {
         | 
| 1726 1726 | 
             
                    data_decoded: Vote;
         | 
| 1727 1727 | 
             
                    type_arguments: [];
         | 
| 1728 | 
            -
                }
         | 
| 1728 | 
            +
                };
         | 
| 1729 1729 | 
             
                interface VoteEvent {
         | 
| 1730 1730 | 
             
                    proposal_id: bigint;
         | 
| 1731 1731 | 
             
                    num_votes: bigint;
         | 
| @@ -1734,10 +1734,10 @@ export declare namespace voting { | |
| 1734 1734 | 
             
                    const TYPE_QNAME = "0x1::voting::VoteEvent";
         | 
| 1735 1735 | 
             
                    function type(): TypeDescriptor<VoteEvent>;
         | 
| 1736 1736 | 
             
                }
         | 
| 1737 | 
            -
                 | 
| 1737 | 
            +
                type VoteEventInstance = TypedEventInstance<VoteEvent> & {
         | 
| 1738 1738 | 
             
                    data_decoded: VoteEvent;
         | 
| 1739 1739 | 
             
                    type_arguments: [];
         | 
| 1740 | 
            -
                }
         | 
| 1740 | 
            +
                };
         | 
| 1741 1741 | 
             
                interface VotingEvents {
         | 
| 1742 1742 | 
             
                    create_proposal_events: event.EventHandle<voting.CreateProposalEvent>;
         | 
| 1743 1743 | 
             
                    register_forum_events: event.EventHandle<voting.RegisterForumEvent>;
         | 
| @@ -1869,10 +1869,10 @@ export declare namespace account { | |
| 1869 1869 | 
             
                    const TYPE_QNAME = "0x1::account::CoinRegister";
         | 
| 1870 1870 | 
             
                    function type(): TypeDescriptor<CoinRegister>;
         | 
| 1871 1871 | 
             
                }
         | 
| 1872 | 
            -
                 | 
| 1872 | 
            +
                type CoinRegisterInstance = TypedEventInstance<CoinRegister> & {
         | 
| 1873 1873 | 
             
                    data_decoded: CoinRegister;
         | 
| 1874 1874 | 
             
                    type_arguments: [];
         | 
| 1875 | 
            -
                }
         | 
| 1875 | 
            +
                };
         | 
| 1876 1876 | 
             
                interface CoinRegisterEvent {
         | 
| 1877 1877 | 
             
                    type_info: type_info.TypeInfo;
         | 
| 1878 1878 | 
             
                }
         | 
| @@ -1880,10 +1880,10 @@ export declare namespace account { | |
| 1880 1880 | 
             
                    const TYPE_QNAME = "0x1::account::CoinRegisterEvent";
         | 
| 1881 1881 | 
             
                    function type(): TypeDescriptor<CoinRegisterEvent>;
         | 
| 1882 1882 | 
             
                }
         | 
| 1883 | 
            -
                 | 
| 1883 | 
            +
                type CoinRegisterEventInstance = TypedEventInstance<CoinRegisterEvent> & {
         | 
| 1884 1884 | 
             
                    data_decoded: CoinRegisterEvent;
         | 
| 1885 1885 | 
             
                    type_arguments: [];
         | 
| 1886 | 
            -
                }
         | 
| 1886 | 
            +
                };
         | 
| 1887 1887 | 
             
                interface KeyRotation {
         | 
| 1888 1888 | 
             
                    account: MoveAddressType;
         | 
| 1889 1889 | 
             
                    old_authentication_key: string;
         | 
| @@ -1893,10 +1893,10 @@ export declare namespace account { | |
| 1893 1893 | 
             
                    const TYPE_QNAME = "0x1::account::KeyRotation";
         | 
| 1894 1894 | 
             
                    function type(): TypeDescriptor<KeyRotation>;
         | 
| 1895 1895 | 
             
                }
         | 
| 1896 | 
            -
                 | 
| 1896 | 
            +
                type KeyRotationInstance = TypedEventInstance<KeyRotation> & {
         | 
| 1897 1897 | 
             
                    data_decoded: KeyRotation;
         | 
| 1898 1898 | 
             
                    type_arguments: [];
         | 
| 1899 | 
            -
                }
         | 
| 1899 | 
            +
                };
         | 
| 1900 1900 | 
             
                interface KeyRotationEvent {
         | 
| 1901 1901 | 
             
                    old_authentication_key: string;
         | 
| 1902 1902 | 
             
                    new_authentication_key: string;
         | 
| @@ -1905,10 +1905,10 @@ export declare namespace account { | |
| 1905 1905 | 
             
                    const TYPE_QNAME = "0x1::account::KeyRotationEvent";
         | 
| 1906 1906 | 
             
                    function type(): TypeDescriptor<KeyRotationEvent>;
         | 
| 1907 1907 | 
             
                }
         | 
| 1908 | 
            -
                 | 
| 1908 | 
            +
                type KeyRotationEventInstance = TypedEventInstance<KeyRotationEvent> & {
         | 
| 1909 1909 | 
             
                    data_decoded: KeyRotationEvent;
         | 
| 1910 1910 | 
             
                    type_arguments: [];
         | 
| 1911 | 
            -
                }
         | 
| 1911 | 
            +
                };
         | 
| 1912 1912 | 
             
                interface OriginatingAddress {
         | 
| 1913 1913 | 
             
                    address_map: table.Table<MoveAddressType, MoveAddressType>;
         | 
| 1914 1914 | 
             
                }
         | 
| @@ -2272,10 +2272,10 @@ export declare namespace vesting { | |
| 2272 2272 | 
             
                    const TYPE_QNAME = "0x1::vesting::Distribute";
         | 
| 2273 2273 | 
             
                    function type(): TypeDescriptor<Distribute>;
         | 
| 2274 2274 | 
             
                }
         | 
| 2275 | 
            -
                 | 
| 2275 | 
            +
                type DistributeInstance = TypedEventInstance<Distribute> & {
         | 
| 2276 2276 | 
             
                    data_decoded: Distribute;
         | 
| 2277 2277 | 
             
                    type_arguments: [];
         | 
| 2278 | 
            -
                }
         | 
| 2278 | 
            +
                };
         | 
| 2279 2279 | 
             
                interface DistributeEvent {
         | 
| 2280 2280 | 
             
                    admin: MoveAddressType;
         | 
| 2281 2281 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2285,10 +2285,10 @@ export declare namespace vesting { | |
| 2285 2285 | 
             
                    const TYPE_QNAME = "0x1::vesting::DistributeEvent";
         | 
| 2286 2286 | 
             
                    function type(): TypeDescriptor<DistributeEvent>;
         | 
| 2287 2287 | 
             
                }
         | 
| 2288 | 
            -
                 | 
| 2288 | 
            +
                type DistributeEventInstance = TypedEventInstance<DistributeEvent> & {
         | 
| 2289 2289 | 
             
                    data_decoded: DistributeEvent;
         | 
| 2290 2290 | 
             
                    type_arguments: [];
         | 
| 2291 | 
            -
                }
         | 
| 2291 | 
            +
                };
         | 
| 2292 2292 | 
             
                interface ResetLockup {
         | 
| 2293 2293 | 
             
                    admin: MoveAddressType;
         | 
| 2294 2294 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2299,10 +2299,10 @@ export declare namespace vesting { | |
| 2299 2299 | 
             
                    const TYPE_QNAME = "0x1::vesting::ResetLockup";
         | 
| 2300 2300 | 
             
                    function type(): TypeDescriptor<ResetLockup>;
         | 
| 2301 2301 | 
             
                }
         | 
| 2302 | 
            -
                 | 
| 2302 | 
            +
                type ResetLockupInstance = TypedEventInstance<ResetLockup> & {
         | 
| 2303 2303 | 
             
                    data_decoded: ResetLockup;
         | 
| 2304 2304 | 
             
                    type_arguments: [];
         | 
| 2305 | 
            -
                }
         | 
| 2305 | 
            +
                };
         | 
| 2306 2306 | 
             
                interface ResetLockupEvent {
         | 
| 2307 2307 | 
             
                    admin: MoveAddressType;
         | 
| 2308 2308 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2313,10 +2313,10 @@ export declare namespace vesting { | |
| 2313 2313 | 
             
                    const TYPE_QNAME = "0x1::vesting::ResetLockupEvent";
         | 
| 2314 2314 | 
             
                    function type(): TypeDescriptor<ResetLockupEvent>;
         | 
| 2315 2315 | 
             
                }
         | 
| 2316 | 
            -
                 | 
| 2316 | 
            +
                type ResetLockupEventInstance = TypedEventInstance<ResetLockupEvent> & {
         | 
| 2317 2317 | 
             
                    data_decoded: ResetLockupEvent;
         | 
| 2318 2318 | 
             
                    type_arguments: [];
         | 
| 2319 | 
            -
                }
         | 
| 2319 | 
            +
                };
         | 
| 2320 2320 | 
             
                interface UpdateVoter {
         | 
| 2321 2321 | 
             
                    admin: MoveAddressType;
         | 
| 2322 2322 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2328,10 +2328,10 @@ export declare namespace vesting { | |
| 2328 2328 | 
             
                    const TYPE_QNAME = "0x1::vesting::UpdateVoter";
         | 
| 2329 2329 | 
             
                    function type(): TypeDescriptor<UpdateVoter>;
         | 
| 2330 2330 | 
             
                }
         | 
| 2331 | 
            -
                 | 
| 2331 | 
            +
                type UpdateVoterInstance = TypedEventInstance<UpdateVoter> & {
         | 
| 2332 2332 | 
             
                    data_decoded: UpdateVoter;
         | 
| 2333 2333 | 
             
                    type_arguments: [];
         | 
| 2334 | 
            -
                }
         | 
| 2334 | 
            +
                };
         | 
| 2335 2335 | 
             
                interface UpdateVoterEvent {
         | 
| 2336 2336 | 
             
                    admin: MoveAddressType;
         | 
| 2337 2337 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2343,10 +2343,10 @@ export declare namespace vesting { | |
| 2343 2343 | 
             
                    const TYPE_QNAME = "0x1::vesting::UpdateVoterEvent";
         | 
| 2344 2344 | 
             
                    function type(): TypeDescriptor<UpdateVoterEvent>;
         | 
| 2345 2345 | 
             
                }
         | 
| 2346 | 
            -
                 | 
| 2346 | 
            +
                type UpdateVoterEventInstance = TypedEventInstance<UpdateVoterEvent> & {
         | 
| 2347 2347 | 
             
                    data_decoded: UpdateVoterEvent;
         | 
| 2348 2348 | 
             
                    type_arguments: [];
         | 
| 2349 | 
            -
                }
         | 
| 2349 | 
            +
                };
         | 
| 2350 2350 | 
             
                interface AdminStore {
         | 
| 2351 2351 | 
             
                    vesting_contracts: MoveAddressType[];
         | 
| 2352 2352 | 
             
                    nonce: bigint;
         | 
| @@ -2365,10 +2365,10 @@ export declare namespace vesting { | |
| 2365 2365 | 
             
                    const TYPE_QNAME = "0x1::vesting::AdminWithdraw";
         | 
| 2366 2366 | 
             
                    function type(): TypeDescriptor<AdminWithdraw>;
         | 
| 2367 2367 | 
             
                }
         | 
| 2368 | 
            -
                 | 
| 2368 | 
            +
                type AdminWithdrawInstance = TypedEventInstance<AdminWithdraw> & {
         | 
| 2369 2369 | 
             
                    data_decoded: AdminWithdraw;
         | 
| 2370 2370 | 
             
                    type_arguments: [];
         | 
| 2371 | 
            -
                }
         | 
| 2371 | 
            +
                };
         | 
| 2372 2372 | 
             
                interface AdminWithdrawEvent {
         | 
| 2373 2373 | 
             
                    admin: MoveAddressType;
         | 
| 2374 2374 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2378,10 +2378,10 @@ export declare namespace vesting { | |
| 2378 2378 | 
             
                    const TYPE_QNAME = "0x1::vesting::AdminWithdrawEvent";
         | 
| 2379 2379 | 
             
                    function type(): TypeDescriptor<AdminWithdrawEvent>;
         | 
| 2380 2380 | 
             
                }
         | 
| 2381 | 
            -
                 | 
| 2381 | 
            +
                type AdminWithdrawEventInstance = TypedEventInstance<AdminWithdrawEvent> & {
         | 
| 2382 2382 | 
             
                    data_decoded: AdminWithdrawEvent;
         | 
| 2383 2383 | 
             
                    type_arguments: [];
         | 
| 2384 | 
            -
                }
         | 
| 2384 | 
            +
                };
         | 
| 2385 2385 | 
             
                interface CreateVestingContract {
         | 
| 2386 2386 | 
             
                    operator: MoveAddressType;
         | 
| 2387 2387 | 
             
                    voter: MoveAddressType;
         | 
| @@ -2395,10 +2395,10 @@ export declare namespace vesting { | |
| 2395 2395 | 
             
                    const TYPE_QNAME = "0x1::vesting::CreateVestingContract";
         | 
| 2396 2396 | 
             
                    function type(): TypeDescriptor<CreateVestingContract>;
         | 
| 2397 2397 | 
             
                }
         | 
| 2398 | 
            -
                 | 
| 2398 | 
            +
                type CreateVestingContractInstance = TypedEventInstance<CreateVestingContract> & {
         | 
| 2399 2399 | 
             
                    data_decoded: CreateVestingContract;
         | 
| 2400 2400 | 
             
                    type_arguments: [];
         | 
| 2401 | 
            -
                }
         | 
| 2401 | 
            +
                };
         | 
| 2402 2402 | 
             
                interface CreateVestingContractEvent {
         | 
| 2403 2403 | 
             
                    operator: MoveAddressType;
         | 
| 2404 2404 | 
             
                    voter: MoveAddressType;
         | 
| @@ -2412,10 +2412,10 @@ export declare namespace vesting { | |
| 2412 2412 | 
             
                    const TYPE_QNAME = "0x1::vesting::CreateVestingContractEvent";
         | 
| 2413 2413 | 
             
                    function type(): TypeDescriptor<CreateVestingContractEvent>;
         | 
| 2414 2414 | 
             
                }
         | 
| 2415 | 
            -
                 | 
| 2415 | 
            +
                type CreateVestingContractEventInstance = TypedEventInstance<CreateVestingContractEvent> & {
         | 
| 2416 2416 | 
             
                    data_decoded: CreateVestingContractEvent;
         | 
| 2417 2417 | 
             
                    type_arguments: [];
         | 
| 2418 | 
            -
                }
         | 
| 2418 | 
            +
                };
         | 
| 2419 2419 | 
             
                interface SetBeneficiary {
         | 
| 2420 2420 | 
             
                    admin: MoveAddressType;
         | 
| 2421 2421 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2427,10 +2427,10 @@ export declare namespace vesting { | |
| 2427 2427 | 
             
                    const TYPE_QNAME = "0x1::vesting::SetBeneficiary";
         | 
| 2428 2428 | 
             
                    function type(): TypeDescriptor<SetBeneficiary>;
         | 
| 2429 2429 | 
             
                }
         | 
| 2430 | 
            -
                 | 
| 2430 | 
            +
                type SetBeneficiaryInstance = TypedEventInstance<SetBeneficiary> & {
         | 
| 2431 2431 | 
             
                    data_decoded: SetBeneficiary;
         | 
| 2432 2432 | 
             
                    type_arguments: [];
         | 
| 2433 | 
            -
                }
         | 
| 2433 | 
            +
                };
         | 
| 2434 2434 | 
             
                interface SetBeneficiaryEvent {
         | 
| 2435 2435 | 
             
                    admin: MoveAddressType;
         | 
| 2436 2436 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2442,10 +2442,10 @@ export declare namespace vesting { | |
| 2442 2442 | 
             
                    const TYPE_QNAME = "0x1::vesting::SetBeneficiaryEvent";
         | 
| 2443 2443 | 
             
                    function type(): TypeDescriptor<SetBeneficiaryEvent>;
         | 
| 2444 2444 | 
             
                }
         | 
| 2445 | 
            -
                 | 
| 2445 | 
            +
                type SetBeneficiaryEventInstance = TypedEventInstance<SetBeneficiaryEvent> & {
         | 
| 2446 2446 | 
             
                    data_decoded: SetBeneficiaryEvent;
         | 
| 2447 2447 | 
             
                    type_arguments: [];
         | 
| 2448 | 
            -
                }
         | 
| 2448 | 
            +
                };
         | 
| 2449 2449 | 
             
                interface StakingInfo {
         | 
| 2450 2450 | 
             
                    pool_address: MoveAddressType;
         | 
| 2451 2451 | 
             
                    operator: MoveAddressType;
         | 
| @@ -2464,10 +2464,10 @@ export declare namespace vesting { | |
| 2464 2464 | 
             
                    const TYPE_QNAME = "0x1::vesting::Terminate";
         | 
| 2465 2465 | 
             
                    function type(): TypeDescriptor<Terminate>;
         | 
| 2466 2466 | 
             
                }
         | 
| 2467 | 
            -
                 | 
| 2467 | 
            +
                type TerminateInstance = TypedEventInstance<Terminate> & {
         | 
| 2468 2468 | 
             
                    data_decoded: Terminate;
         | 
| 2469 2469 | 
             
                    type_arguments: [];
         | 
| 2470 | 
            -
                }
         | 
| 2470 | 
            +
                };
         | 
| 2471 2471 | 
             
                interface TerminateEvent {
         | 
| 2472 2472 | 
             
                    admin: MoveAddressType;
         | 
| 2473 2473 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2476,10 +2476,10 @@ export declare namespace vesting { | |
| 2476 2476 | 
             
                    const TYPE_QNAME = "0x1::vesting::TerminateEvent";
         | 
| 2477 2477 | 
             
                    function type(): TypeDescriptor<TerminateEvent>;
         | 
| 2478 2478 | 
             
                }
         | 
| 2479 | 
            -
                 | 
| 2479 | 
            +
                type TerminateEventInstance = TypedEventInstance<TerminateEvent> & {
         | 
| 2480 2480 | 
             
                    data_decoded: TerminateEvent;
         | 
| 2481 2481 | 
             
                    type_arguments: [];
         | 
| 2482 | 
            -
                }
         | 
| 2482 | 
            +
                };
         | 
| 2483 2483 | 
             
                interface UnlockRewards {
         | 
| 2484 2484 | 
             
                    admin: MoveAddressType;
         | 
| 2485 2485 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2490,10 +2490,10 @@ export declare namespace vesting { | |
| 2490 2490 | 
             
                    const TYPE_QNAME = "0x1::vesting::UnlockRewards";
         | 
| 2491 2491 | 
             
                    function type(): TypeDescriptor<UnlockRewards>;
         | 
| 2492 2492 | 
             
                }
         | 
| 2493 | 
            -
                 | 
| 2493 | 
            +
                type UnlockRewardsInstance = TypedEventInstance<UnlockRewards> & {
         | 
| 2494 2494 | 
             
                    data_decoded: UnlockRewards;
         | 
| 2495 2495 | 
             
                    type_arguments: [];
         | 
| 2496 | 
            -
                }
         | 
| 2496 | 
            +
                };
         | 
| 2497 2497 | 
             
                interface UnlockRewardsEvent {
         | 
| 2498 2498 | 
             
                    admin: MoveAddressType;
         | 
| 2499 2499 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2504,10 +2504,10 @@ export declare namespace vesting { | |
| 2504 2504 | 
             
                    const TYPE_QNAME = "0x1::vesting::UnlockRewardsEvent";
         | 
| 2505 2505 | 
             
                    function type(): TypeDescriptor<UnlockRewardsEvent>;
         | 
| 2506 2506 | 
             
                }
         | 
| 2507 | 
            -
                 | 
| 2507 | 
            +
                type UnlockRewardsEventInstance = TypedEventInstance<UnlockRewardsEvent> & {
         | 
| 2508 2508 | 
             
                    data_decoded: UnlockRewardsEvent;
         | 
| 2509 2509 | 
             
                    type_arguments: [];
         | 
| 2510 | 
            -
                }
         | 
| 2510 | 
            +
                };
         | 
| 2511 2511 | 
             
                interface UpdateOperator {
         | 
| 2512 2512 | 
             
                    admin: MoveAddressType;
         | 
| 2513 2513 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2520,10 +2520,10 @@ export declare namespace vesting { | |
| 2520 2520 | 
             
                    const TYPE_QNAME = "0x1::vesting::UpdateOperator";
         | 
| 2521 2521 | 
             
                    function type(): TypeDescriptor<UpdateOperator>;
         | 
| 2522 2522 | 
             
                }
         | 
| 2523 | 
            -
                 | 
| 2523 | 
            +
                type UpdateOperatorInstance = TypedEventInstance<UpdateOperator> & {
         | 
| 2524 2524 | 
             
                    data_decoded: UpdateOperator;
         | 
| 2525 2525 | 
             
                    type_arguments: [];
         | 
| 2526 | 
            -
                }
         | 
| 2526 | 
            +
                };
         | 
| 2527 2527 | 
             
                interface UpdateOperatorEvent {
         | 
| 2528 2528 | 
             
                    admin: MoveAddressType;
         | 
| 2529 2529 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2536,10 +2536,10 @@ export declare namespace vesting { | |
| 2536 2536 | 
             
                    const TYPE_QNAME = "0x1::vesting::UpdateOperatorEvent";
         | 
| 2537 2537 | 
             
                    function type(): TypeDescriptor<UpdateOperatorEvent>;
         | 
| 2538 2538 | 
             
                }
         | 
| 2539 | 
            -
                 | 
| 2539 | 
            +
                type UpdateOperatorEventInstance = TypedEventInstance<UpdateOperatorEvent> & {
         | 
| 2540 2540 | 
             
                    data_decoded: UpdateOperatorEvent;
         | 
| 2541 2541 | 
             
                    type_arguments: [];
         | 
| 2542 | 
            -
                }
         | 
| 2542 | 
            +
                };
         | 
| 2543 2543 | 
             
                interface Vest {
         | 
| 2544 2544 | 
             
                    admin: MoveAddressType;
         | 
| 2545 2545 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2551,10 +2551,10 @@ export declare namespace vesting { | |
| 2551 2551 | 
             
                    const TYPE_QNAME = "0x1::vesting::Vest";
         | 
| 2552 2552 | 
             
                    function type(): TypeDescriptor<Vest>;
         | 
| 2553 2553 | 
             
                }
         | 
| 2554 | 
            -
                 | 
| 2554 | 
            +
                type VestInstance = TypedEventInstance<Vest> & {
         | 
| 2555 2555 | 
             
                    data_decoded: Vest;
         | 
| 2556 2556 | 
             
                    type_arguments: [];
         | 
| 2557 | 
            -
                }
         | 
| 2557 | 
            +
                };
         | 
| 2558 2558 | 
             
                interface VestEvent {
         | 
| 2559 2559 | 
             
                    admin: MoveAddressType;
         | 
| 2560 2560 | 
             
                    vesting_contract_address: MoveAddressType;
         | 
| @@ -2566,10 +2566,10 @@ export declare namespace vesting { | |
| 2566 2566 | 
             
                    const TYPE_QNAME = "0x1::vesting::VestEvent";
         | 
| 2567 2567 | 
             
                    function type(): TypeDescriptor<VestEvent>;
         | 
| 2568 2568 | 
             
                }
         | 
| 2569 | 
            -
                 | 
| 2569 | 
            +
                type VestEventInstance = TypedEventInstance<VestEvent> & {
         | 
| 2570 2570 | 
             
                    data_decoded: VestEvent;
         | 
| 2571 2571 | 
             
                    type_arguments: [];
         | 
| 2572 | 
            -
                }
         | 
| 2572 | 
            +
                };
         | 
| 2573 2573 | 
             
                interface VestingAccountManagement {
         | 
| 2574 2574 | 
             
                    roles: simple_map.SimpleMap<string, MoveAddressType>;
         | 
| 2575 2575 | 
             
                }
         | 
| @@ -3129,10 +3129,10 @@ export declare namespace randomness { | |
| 3129 3129 | 
             
                    const TYPE_QNAME = "0x1::randomness::RandomnessGeneratedEvent";
         | 
| 3130 3130 | 
             
                    function type(): TypeDescriptor<RandomnessGeneratedEvent>;
         | 
| 3131 3131 | 
             
                }
         | 
| 3132 | 
            -
                 | 
| 3132 | 
            +
                type RandomnessGeneratedEventInstance = TypedEventInstance<RandomnessGeneratedEvent> & {
         | 
| 3133 3133 | 
             
                    data_decoded: RandomnessGeneratedEvent;
         | 
| 3134 3134 | 
             
                    type_arguments: [];
         | 
| 3135 | 
            -
                }
         | 
| 3135 | 
            +
                };
         | 
| 3136 3136 | 
             
                namespace entry { }
         | 
| 3137 3137 | 
             
                namespace view { }
         | 
| 3138 3138 | 
             
            }
         | 
| @@ -3470,10 +3470,10 @@ export declare namespace aptos_account { | |
| 3470 3470 | 
             
                    const TYPE_QNAME = "0x1::aptos_account::DirectCoinTransferConfigUpdated";
         | 
| 3471 3471 | 
             
                    function type(): TypeDescriptor<DirectCoinTransferConfigUpdated>;
         | 
| 3472 3472 | 
             
                }
         | 
| 3473 | 
            -
                 | 
| 3473 | 
            +
                type DirectCoinTransferConfigUpdatedInstance = TypedEventInstance<DirectCoinTransferConfigUpdated> & {
         | 
| 3474 3474 | 
             
                    data_decoded: DirectCoinTransferConfigUpdated;
         | 
| 3475 3475 | 
             
                    type_arguments: [];
         | 
| 3476 | 
            -
                }
         | 
| 3476 | 
            +
                };
         | 
| 3477 3477 | 
             
                interface DirectCoinTransferConfigUpdatedEvent {
         | 
| 3478 3478 | 
             
                    new_allow_direct_transfers: boolean;
         | 
| 3479 3479 | 
             
                }
         | 
| @@ -3481,10 +3481,10 @@ export declare namespace aptos_account { | |
| 3481 3481 | 
             
                    const TYPE_QNAME = "0x1::aptos_account::DirectCoinTransferConfigUpdatedEvent";
         | 
| 3482 3482 | 
             
                    function type(): TypeDescriptor<DirectCoinTransferConfigUpdatedEvent>;
         | 
| 3483 3483 | 
             
                }
         | 
| 3484 | 
            -
                 | 
| 3484 | 
            +
                type DirectCoinTransferConfigUpdatedEventInstance = TypedEventInstance<DirectCoinTransferConfigUpdatedEvent> & {
         | 
| 3485 3485 | 
             
                    data_decoded: DirectCoinTransferConfigUpdatedEvent;
         | 
| 3486 3486 | 
             
                    type_arguments: [];
         | 
| 3487 | 
            -
                }
         | 
| 3487 | 
            +
                };
         | 
| 3488 3488 | 
             
                interface DirectTransferConfig {
         | 
| 3489 3489 | 
             
                    allow_arbitrary_coin_transfers: boolean;
         | 
| 3490 3490 | 
             
                    update_coin_transfer_events: event.EventHandle<aptos_account.DirectCoinTransferConfigUpdatedEvent>;
         | 
| @@ -3965,10 +3965,10 @@ export declare namespace fungible_asset { | |
| 3965 3965 | 
             
                    const TYPE_QNAME = "0x1::fungible_asset::Deposit";
         | 
| 3966 3966 | 
             
                    function type(): TypeDescriptor<Deposit>;
         | 
| 3967 3967 | 
             
                }
         | 
| 3968 | 
            -
                 | 
| 3968 | 
            +
                type DepositInstance = TypedEventInstance<Deposit> & {
         | 
| 3969 3969 | 
             
                    data_decoded: Deposit;
         | 
| 3970 3970 | 
             
                    type_arguments: [];
         | 
| 3971 | 
            -
                }
         | 
| 3971 | 
            +
                };
         | 
| 3972 3972 | 
             
                interface DepositEvent {
         | 
| 3973 3973 | 
             
                    amount: bigint;
         | 
| 3974 3974 | 
             
                }
         | 
| @@ -3976,10 +3976,10 @@ export declare namespace fungible_asset { | |
| 3976 3976 | 
             
                    const TYPE_QNAME = "0x1::fungible_asset::DepositEvent";
         | 
| 3977 3977 | 
             
                    function type(): TypeDescriptor<DepositEvent>;
         | 
| 3978 3978 | 
             
                }
         | 
| 3979 | 
            -
                 | 
| 3979 | 
            +
                type DepositEventInstance = TypedEventInstance<DepositEvent> & {
         | 
| 3980 3980 | 
             
                    data_decoded: DepositEvent;
         | 
| 3981 3981 | 
             
                    type_arguments: [];
         | 
| 3982 | 
            -
                }
         | 
| 3982 | 
            +
                };
         | 
| 3983 3983 | 
             
                interface DeriveSupply {
         | 
| 3984 3984 | 
             
                    dispatch_function: option.Option<function_info.FunctionInfo>;
         | 
| 3985 3985 | 
             
                }
         | 
| @@ -4004,10 +4004,10 @@ export declare namespace fungible_asset { | |
| 4004 4004 | 
             
                    const TYPE_QNAME = "0x1::fungible_asset::Frozen";
         | 
| 4005 4005 | 
             
                    function type(): TypeDescriptor<Frozen>;
         | 
| 4006 4006 | 
             
                }
         | 
| 4007 | 
            -
                 | 
| 4007 | 
            +
                type FrozenInstance = TypedEventInstance<Frozen> & {
         | 
| 4008 4008 | 
             
                    data_decoded: Frozen;
         | 
| 4009 4009 | 
             
                    type_arguments: [];
         | 
| 4010 | 
            -
                }
         | 
| 4010 | 
            +
                };
         | 
| 4011 4011 | 
             
                interface FrozenEvent {
         | 
| 4012 4012 | 
             
                    frozen: boolean;
         | 
| 4013 4013 | 
             
                }
         | 
| @@ -4015,10 +4015,10 @@ export declare namespace fungible_asset { | |
| 4015 4015 | 
             
                    const TYPE_QNAME = "0x1::fungible_asset::FrozenEvent";
         | 
| 4016 4016 | 
             
                    function type(): TypeDescriptor<FrozenEvent>;
         | 
| 4017 4017 | 
             
                }
         | 
| 4018 | 
            -
                 | 
| 4018 | 
            +
                type FrozenEventInstance = TypedEventInstance<FrozenEvent> & {
         | 
| 4019 4019 | 
             
                    data_decoded: FrozenEvent;
         | 
| 4020 4020 | 
             
                    type_arguments: [];
         | 
| 4021 | 
            -
                }
         | 
| 4021 | 
            +
                };
         | 
| 4022 4022 | 
             
                interface FungibleAsset {
         | 
| 4023 4023 | 
             
                    metadata: object$.Object<fungible_asset.Metadata>;
         | 
| 4024 4024 | 
             
                    amount: bigint;
         | 
| @@ -4086,10 +4086,10 @@ export declare namespace fungible_asset { | |
| 4086 4086 | 
             
                    const TYPE_QNAME = "0x1::fungible_asset::Withdraw";
         | 
| 4087 4087 | 
             
                    function type(): TypeDescriptor<Withdraw>;
         | 
| 4088 4088 | 
             
                }
         | 
| 4089 | 
            -
                 | 
| 4089 | 
            +
                type WithdrawInstance = TypedEventInstance<Withdraw> & {
         | 
| 4090 4090 | 
             
                    data_decoded: Withdraw;
         | 
| 4091 4091 | 
             
                    type_arguments: [];
         | 
| 4092 | 
            -
                }
         | 
| 4092 | 
            +
                };
         | 
| 4093 4093 | 
             
                interface WithdrawEvent {
         | 
| 4094 4094 | 
             
                    amount: bigint;
         | 
| 4095 4095 | 
             
                }
         | 
| @@ -4097,10 +4097,10 @@ export declare namespace fungible_asset { | |
| 4097 4097 | 
             
                    const TYPE_QNAME = "0x1::fungible_asset::WithdrawEvent";
         | 
| 4098 4098 | 
             
                    function type(): TypeDescriptor<WithdrawEvent>;
         | 
| 4099 4099 | 
             
                }
         | 
| 4100 | 
            -
                 | 
| 4100 | 
            +
                type WithdrawEventInstance = TypedEventInstance<WithdrawEvent> & {
         | 
| 4101 4101 | 
             
                    data_decoded: WithdrawEvent;
         | 
| 4102 4102 | 
             
                    type_arguments: [];
         | 
| 4103 | 
            -
                }
         | 
| 4103 | 
            +
                };
         | 
| 4104 4104 | 
             
                namespace entry {
         | 
| 4105 4105 | 
             
                    function transfer<T0 = any>(client: Aptos, account: AptosAccount, request: {
         | 
| 4106 4106 | 
             
                        typeArguments: [MoveStructId];
         | 
| @@ -4272,10 +4272,10 @@ export declare namespace delegation_pool { | |
| 4272 4272 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::CreateProposal";
         | 
| 4273 4273 | 
             
                    function type(): TypeDescriptor<CreateProposal>;
         | 
| 4274 4274 | 
             
                }
         | 
| 4275 | 
            -
                 | 
| 4275 | 
            +
                type CreateProposalInstance = TypedEventInstance<CreateProposal> & {
         | 
| 4276 4276 | 
             
                    data_decoded: CreateProposal;
         | 
| 4277 4277 | 
             
                    type_arguments: [];
         | 
| 4278 | 
            -
                }
         | 
| 4278 | 
            +
                };
         | 
| 4279 4279 | 
             
                interface CreateProposalEvent {
         | 
| 4280 4280 | 
             
                    proposal_id: bigint;
         | 
| 4281 4281 | 
             
                    voter: MoveAddressType;
         | 
| @@ -4285,10 +4285,10 @@ export declare namespace delegation_pool { | |
| 4285 4285 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::CreateProposalEvent";
         | 
| 4286 4286 | 
             
                    function type(): TypeDescriptor<CreateProposalEvent>;
         | 
| 4287 4287 | 
             
                }
         | 
| 4288 | 
            -
                 | 
| 4288 | 
            +
                type CreateProposalEventInstance = TypedEventInstance<CreateProposalEvent> & {
         | 
| 4289 4289 | 
             
                    data_decoded: CreateProposalEvent;
         | 
| 4290 4290 | 
             
                    type_arguments: [];
         | 
| 4291 | 
            -
                }
         | 
| 4291 | 
            +
                };
         | 
| 4292 4292 | 
             
                interface Vote {
         | 
| 4293 4293 | 
             
                    voter: MoveAddressType;
         | 
| 4294 4294 | 
             
                    proposal_id: bigint;
         | 
| @@ -4300,10 +4300,10 @@ export declare namespace delegation_pool { | |
| 4300 4300 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::Vote";
         | 
| 4301 4301 | 
             
                    function type(): TypeDescriptor<Vote>;
         | 
| 4302 4302 | 
             
                }
         | 
| 4303 | 
            -
                 | 
| 4303 | 
            +
                type VoteInstance = TypedEventInstance<Vote> & {
         | 
| 4304 4304 | 
             
                    data_decoded: Vote;
         | 
| 4305 4305 | 
             
                    type_arguments: [];
         | 
| 4306 | 
            -
                }
         | 
| 4306 | 
            +
                };
         | 
| 4307 4307 | 
             
                interface VoteEvent {
         | 
| 4308 4308 | 
             
                    voter: MoveAddressType;
         | 
| 4309 4309 | 
             
                    proposal_id: bigint;
         | 
| @@ -4315,10 +4315,10 @@ export declare namespace delegation_pool { | |
| 4315 4315 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::VoteEvent";
         | 
| 4316 4316 | 
             
                    function type(): TypeDescriptor<VoteEvent>;
         | 
| 4317 4317 | 
             
                }
         | 
| 4318 | 
            -
                 | 
| 4318 | 
            +
                type VoteEventInstance = TypedEventInstance<VoteEvent> & {
         | 
| 4319 4319 | 
             
                    data_decoded: VoteEvent;
         | 
| 4320 4320 | 
             
                    type_arguments: [];
         | 
| 4321 | 
            -
                }
         | 
| 4321 | 
            +
                };
         | 
| 4322 4322 | 
             
                interface AddStake {
         | 
| 4323 4323 | 
             
                    pool_address: MoveAddressType;
         | 
| 4324 4324 | 
             
                    delegator_address: MoveAddressType;
         | 
| @@ -4329,10 +4329,10 @@ export declare namespace delegation_pool { | |
| 4329 4329 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::AddStake";
         | 
| 4330 4330 | 
             
                    function type(): TypeDescriptor<AddStake>;
         | 
| 4331 4331 | 
             
                }
         | 
| 4332 | 
            -
                 | 
| 4332 | 
            +
                type AddStakeInstance = TypedEventInstance<AddStake> & {
         | 
| 4333 4333 | 
             
                    data_decoded: AddStake;
         | 
| 4334 4334 | 
             
                    type_arguments: [];
         | 
| 4335 | 
            -
                }
         | 
| 4335 | 
            +
                };
         | 
| 4336 4336 | 
             
                interface AddStakeEvent {
         | 
| 4337 4337 | 
             
                    pool_address: MoveAddressType;
         | 
| 4338 4338 | 
             
                    delegator_address: MoveAddressType;
         | 
| @@ -4343,10 +4343,10 @@ export declare namespace delegation_pool { | |
| 4343 4343 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::AddStakeEvent";
         | 
| 4344 4344 | 
             
                    function type(): TypeDescriptor<AddStakeEvent>;
         | 
| 4345 4345 | 
             
                }
         | 
| 4346 | 
            -
                 | 
| 4346 | 
            +
                type AddStakeEventInstance = TypedEventInstance<AddStakeEvent> & {
         | 
| 4347 4347 | 
             
                    data_decoded: AddStakeEvent;
         | 
| 4348 4348 | 
             
                    type_arguments: [];
         | 
| 4349 | 
            -
                }
         | 
| 4349 | 
            +
                };
         | 
| 4350 4350 | 
             
                interface ReactivateStake {
         | 
| 4351 4351 | 
             
                    pool_address: MoveAddressType;
         | 
| 4352 4352 | 
             
                    delegator_address: MoveAddressType;
         | 
| @@ -4356,10 +4356,10 @@ export declare namespace delegation_pool { | |
| 4356 4356 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::ReactivateStake";
         | 
| 4357 4357 | 
             
                    function type(): TypeDescriptor<ReactivateStake>;
         | 
| 4358 4358 | 
             
                }
         | 
| 4359 | 
            -
                 | 
| 4359 | 
            +
                type ReactivateStakeInstance = TypedEventInstance<ReactivateStake> & {
         | 
| 4360 4360 | 
             
                    data_decoded: ReactivateStake;
         | 
| 4361 4361 | 
             
                    type_arguments: [];
         | 
| 4362 | 
            -
                }
         | 
| 4362 | 
            +
                };
         | 
| 4363 4363 | 
             
                interface ReactivateStakeEvent {
         | 
| 4364 4364 | 
             
                    pool_address: MoveAddressType;
         | 
| 4365 4365 | 
             
                    delegator_address: MoveAddressType;
         | 
| @@ -4369,10 +4369,10 @@ export declare namespace delegation_pool { | |
| 4369 4369 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::ReactivateStakeEvent";
         | 
| 4370 4370 | 
             
                    function type(): TypeDescriptor<ReactivateStakeEvent>;
         | 
| 4371 4371 | 
             
                }
         | 
| 4372 | 
            -
                 | 
| 4372 | 
            +
                type ReactivateStakeEventInstance = TypedEventInstance<ReactivateStakeEvent> & {
         | 
| 4373 4373 | 
             
                    data_decoded: ReactivateStakeEvent;
         | 
| 4374 4374 | 
             
                    type_arguments: [];
         | 
| 4375 | 
            -
                }
         | 
| 4375 | 
            +
                };
         | 
| 4376 4376 | 
             
                interface UnlockStake {
         | 
| 4377 4377 | 
             
                    pool_address: MoveAddressType;
         | 
| 4378 4378 | 
             
                    delegator_address: MoveAddressType;
         | 
| @@ -4382,10 +4382,10 @@ export declare namespace delegation_pool { | |
| 4382 4382 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::UnlockStake";
         | 
| 4383 4383 | 
             
                    function type(): TypeDescriptor<UnlockStake>;
         | 
| 4384 4384 | 
             
                }
         | 
| 4385 | 
            -
                 | 
| 4385 | 
            +
                type UnlockStakeInstance = TypedEventInstance<UnlockStake> & {
         | 
| 4386 4386 | 
             
                    data_decoded: UnlockStake;
         | 
| 4387 4387 | 
             
                    type_arguments: [];
         | 
| 4388 | 
            -
                }
         | 
| 4388 | 
            +
                };
         | 
| 4389 4389 | 
             
                interface UnlockStakeEvent {
         | 
| 4390 4390 | 
             
                    pool_address: MoveAddressType;
         | 
| 4391 4391 | 
             
                    delegator_address: MoveAddressType;
         | 
| @@ -4395,10 +4395,10 @@ export declare namespace delegation_pool { | |
| 4395 4395 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::UnlockStakeEvent";
         | 
| 4396 4396 | 
             
                    function type(): TypeDescriptor<UnlockStakeEvent>;
         | 
| 4397 4397 | 
             
                }
         | 
| 4398 | 
            -
                 | 
| 4398 | 
            +
                type UnlockStakeEventInstance = TypedEventInstance<UnlockStakeEvent> & {
         | 
| 4399 4399 | 
             
                    data_decoded: UnlockStakeEvent;
         | 
| 4400 4400 | 
             
                    type_arguments: [];
         | 
| 4401 | 
            -
                }
         | 
| 4401 | 
            +
                };
         | 
| 4402 4402 | 
             
                interface WithdrawStake {
         | 
| 4403 4403 | 
             
                    pool_address: MoveAddressType;
         | 
| 4404 4404 | 
             
                    delegator_address: MoveAddressType;
         | 
| @@ -4408,10 +4408,10 @@ export declare namespace delegation_pool { | |
| 4408 4408 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::WithdrawStake";
         | 
| 4409 4409 | 
             
                    function type(): TypeDescriptor<WithdrawStake>;
         | 
| 4410 4410 | 
             
                }
         | 
| 4411 | 
            -
                 | 
| 4411 | 
            +
                type WithdrawStakeInstance = TypedEventInstance<WithdrawStake> & {
         | 
| 4412 4412 | 
             
                    data_decoded: WithdrawStake;
         | 
| 4413 4413 | 
             
                    type_arguments: [];
         | 
| 4414 | 
            -
                }
         | 
| 4414 | 
            +
                };
         | 
| 4415 4415 | 
             
                interface WithdrawStakeEvent {
         | 
| 4416 4416 | 
             
                    pool_address: MoveAddressType;
         | 
| 4417 4417 | 
             
                    delegator_address: MoveAddressType;
         | 
| @@ -4421,10 +4421,10 @@ export declare namespace delegation_pool { | |
| 4421 4421 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::WithdrawStakeEvent";
         | 
| 4422 4422 | 
             
                    function type(): TypeDescriptor<WithdrawStakeEvent>;
         | 
| 4423 4423 | 
             
                }
         | 
| 4424 | 
            -
                 | 
| 4424 | 
            +
                type WithdrawStakeEventInstance = TypedEventInstance<WithdrawStakeEvent> & {
         | 
| 4425 4425 | 
             
                    data_decoded: WithdrawStakeEvent;
         | 
| 4426 4426 | 
             
                    type_arguments: [];
         | 
| 4427 | 
            -
                }
         | 
| 4427 | 
            +
                };
         | 
| 4428 4428 | 
             
                interface AllowlistDelegator {
         | 
| 4429 4429 | 
             
                    pool_address: MoveAddressType;
         | 
| 4430 4430 | 
             
                    delegator_address: MoveAddressType;
         | 
| @@ -4433,10 +4433,10 @@ export declare namespace delegation_pool { | |
| 4433 4433 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::AllowlistDelegator";
         | 
| 4434 4434 | 
             
                    function type(): TypeDescriptor<AllowlistDelegator>;
         | 
| 4435 4435 | 
             
                }
         | 
| 4436 | 
            -
                 | 
| 4436 | 
            +
                type AllowlistDelegatorInstance = TypedEventInstance<AllowlistDelegator> & {
         | 
| 4437 4437 | 
             
                    data_decoded: AllowlistDelegator;
         | 
| 4438 4438 | 
             
                    type_arguments: [];
         | 
| 4439 | 
            -
                }
         | 
| 4439 | 
            +
                };
         | 
| 4440 4440 | 
             
                interface BeneficiaryForOperator {
         | 
| 4441 4441 | 
             
                    beneficiary_for_operator: MoveAddressType;
         | 
| 4442 4442 | 
             
                }
         | 
| @@ -4453,10 +4453,10 @@ export declare namespace delegation_pool { | |
| 4453 4453 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::CommissionPercentageChange";
         | 
| 4454 4454 | 
             
                    function type(): TypeDescriptor<CommissionPercentageChange>;
         | 
| 4455 4455 | 
             
                }
         | 
| 4456 | 
            -
                 | 
| 4456 | 
            +
                type CommissionPercentageChangeInstance = TypedEventInstance<CommissionPercentageChange> & {
         | 
| 4457 4457 | 
             
                    data_decoded: CommissionPercentageChange;
         | 
| 4458 4458 | 
             
                    type_arguments: [];
         | 
| 4459 | 
            -
                }
         | 
| 4459 | 
            +
                };
         | 
| 4460 4460 | 
             
                interface DelegateVotingPower {
         | 
| 4461 4461 | 
             
                    pool_address: MoveAddressType;
         | 
| 4462 4462 | 
             
                    delegator: MoveAddressType;
         | 
| @@ -4466,10 +4466,10 @@ export declare namespace delegation_pool { | |
| 4466 4466 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::DelegateVotingPower";
         | 
| 4467 4467 | 
             
                    function type(): TypeDescriptor<DelegateVotingPower>;
         | 
| 4468 4468 | 
             
                }
         | 
| 4469 | 
            -
                 | 
| 4469 | 
            +
                type DelegateVotingPowerInstance = TypedEventInstance<DelegateVotingPower> & {
         | 
| 4470 4470 | 
             
                    data_decoded: DelegateVotingPower;
         | 
| 4471 4471 | 
             
                    type_arguments: [];
         | 
| 4472 | 
            -
                }
         | 
| 4472 | 
            +
                };
         | 
| 4473 4473 | 
             
                interface DelegateVotingPowerEvent {
         | 
| 4474 4474 | 
             
                    pool_address: MoveAddressType;
         | 
| 4475 4475 | 
             
                    delegator: MoveAddressType;
         | 
| @@ -4479,10 +4479,10 @@ export declare namespace delegation_pool { | |
| 4479 4479 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::DelegateVotingPowerEvent";
         | 
| 4480 4480 | 
             
                    function type(): TypeDescriptor<DelegateVotingPowerEvent>;
         | 
| 4481 4481 | 
             
                }
         | 
| 4482 | 
            -
                 | 
| 4482 | 
            +
                type DelegateVotingPowerEventInstance = TypedEventInstance<DelegateVotingPowerEvent> & {
         | 
| 4483 4483 | 
             
                    data_decoded: DelegateVotingPowerEvent;
         | 
| 4484 4484 | 
             
                    type_arguments: [];
         | 
| 4485 | 
            -
                }
         | 
| 4485 | 
            +
                };
         | 
| 4486 4486 | 
             
                interface DelegatedVotes {
         | 
| 4487 4487 | 
             
                    active_shares: bigint;
         | 
| 4488 4488 | 
             
                    pending_inactive_shares: bigint;
         | 
| @@ -4532,10 +4532,10 @@ export declare namespace delegation_pool { | |
| 4532 4532 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::DisableDelegatorsAllowlisting";
         | 
| 4533 4533 | 
             
                    function type(): TypeDescriptor<DisableDelegatorsAllowlisting>;
         | 
| 4534 4534 | 
             
                }
         | 
| 4535 | 
            -
                 | 
| 4535 | 
            +
                type DisableDelegatorsAllowlistingInstance = TypedEventInstance<DisableDelegatorsAllowlisting> & {
         | 
| 4536 4536 | 
             
                    data_decoded: DisableDelegatorsAllowlisting;
         | 
| 4537 4537 | 
             
                    type_arguments: [];
         | 
| 4538 | 
            -
                }
         | 
| 4538 | 
            +
                };
         | 
| 4539 4539 | 
             
                interface DistributeCommission {
         | 
| 4540 4540 | 
             
                    pool_address: MoveAddressType;
         | 
| 4541 4541 | 
             
                    operator: MoveAddressType;
         | 
| @@ -4547,10 +4547,10 @@ export declare namespace delegation_pool { | |
| 4547 4547 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::DistributeCommission";
         | 
| 4548 4548 | 
             
                    function type(): TypeDescriptor<DistributeCommission>;
         | 
| 4549 4549 | 
             
                }
         | 
| 4550 | 
            -
                 | 
| 4550 | 
            +
                type DistributeCommissionInstance = TypedEventInstance<DistributeCommission> & {
         | 
| 4551 4551 | 
             
                    data_decoded: DistributeCommission;
         | 
| 4552 4552 | 
             
                    type_arguments: [];
         | 
| 4553 | 
            -
                }
         | 
| 4553 | 
            +
                };
         | 
| 4554 4554 | 
             
                interface DistributeCommissionEvent {
         | 
| 4555 4555 | 
             
                    pool_address: MoveAddressType;
         | 
| 4556 4556 | 
             
                    operator: MoveAddressType;
         | 
| @@ -4561,10 +4561,10 @@ export declare namespace delegation_pool { | |
| 4561 4561 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::DistributeCommissionEvent";
         | 
| 4562 4562 | 
             
                    function type(): TypeDescriptor<DistributeCommissionEvent>;
         | 
| 4563 4563 | 
             
                }
         | 
| 4564 | 
            -
                 | 
| 4564 | 
            +
                type DistributeCommissionEventInstance = TypedEventInstance<DistributeCommissionEvent> & {
         | 
| 4565 4565 | 
             
                    data_decoded: DistributeCommissionEvent;
         | 
| 4566 4566 | 
             
                    type_arguments: [];
         | 
| 4567 | 
            -
                }
         | 
| 4567 | 
            +
                };
         | 
| 4568 4568 | 
             
                interface EnableDelegatorsAllowlisting {
         | 
| 4569 4569 | 
             
                    pool_address: MoveAddressType;
         | 
| 4570 4570 | 
             
                }
         | 
| @@ -4572,10 +4572,10 @@ export declare namespace delegation_pool { | |
| 4572 4572 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::EnableDelegatorsAllowlisting";
         | 
| 4573 4573 | 
             
                    function type(): TypeDescriptor<EnableDelegatorsAllowlisting>;
         | 
| 4574 4574 | 
             
                }
         | 
| 4575 | 
            -
                 | 
| 4575 | 
            +
                type EnableDelegatorsAllowlistingInstance = TypedEventInstance<EnableDelegatorsAllowlisting> & {
         | 
| 4576 4576 | 
             
                    data_decoded: EnableDelegatorsAllowlisting;
         | 
| 4577 4577 | 
             
                    type_arguments: [];
         | 
| 4578 | 
            -
                }
         | 
| 4578 | 
            +
                };
         | 
| 4579 4579 | 
             
                interface EvictDelegator {
         | 
| 4580 4580 | 
             
                    pool_address: MoveAddressType;
         | 
| 4581 4581 | 
             
                    delegator_address: MoveAddressType;
         | 
| @@ -4584,10 +4584,10 @@ export declare namespace delegation_pool { | |
| 4584 4584 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::EvictDelegator";
         | 
| 4585 4585 | 
             
                    function type(): TypeDescriptor<EvictDelegator>;
         | 
| 4586 4586 | 
             
                }
         | 
| 4587 | 
            -
                 | 
| 4587 | 
            +
                type EvictDelegatorInstance = TypedEventInstance<EvictDelegator> & {
         | 
| 4588 4588 | 
             
                    data_decoded: EvictDelegator;
         | 
| 4589 4589 | 
             
                    type_arguments: [];
         | 
| 4590 | 
            -
                }
         | 
| 4590 | 
            +
                };
         | 
| 4591 4591 | 
             
                interface GovernanceRecords {
         | 
| 4592 4592 | 
             
                    votes: smart_table.SmartTable<delegation_pool.VotingRecordKey, bigint>;
         | 
| 4593 4593 | 
             
                    votes_per_proposal: smart_table.SmartTable<bigint, bigint>;
         | 
| @@ -4624,10 +4624,10 @@ export declare namespace delegation_pool { | |
| 4624 4624 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::RemoveDelegatorFromAllowlist";
         | 
| 4625 4625 | 
             
                    function type(): TypeDescriptor<RemoveDelegatorFromAllowlist>;
         | 
| 4626 4626 | 
             
                }
         | 
| 4627 | 
            -
                 | 
| 4627 | 
            +
                type RemoveDelegatorFromAllowlistInstance = TypedEventInstance<RemoveDelegatorFromAllowlist> & {
         | 
| 4628 4628 | 
             
                    data_decoded: RemoveDelegatorFromAllowlist;
         | 
| 4629 4629 | 
             
                    type_arguments: [];
         | 
| 4630 | 
            -
                }
         | 
| 4630 | 
            +
                };
         | 
| 4631 4631 | 
             
                interface SetBeneficiaryForOperator {
         | 
| 4632 4632 | 
             
                    operator: MoveAddressType;
         | 
| 4633 4633 | 
             
                    old_beneficiary: MoveAddressType;
         | 
| @@ -4637,10 +4637,10 @@ export declare namespace delegation_pool { | |
| 4637 4637 | 
             
                    const TYPE_QNAME = "0x1::delegation_pool::SetBeneficiaryForOperator";
         | 
| 4638 4638 | 
             
                    function type(): TypeDescriptor<SetBeneficiaryForOperator>;
         | 
| 4639 4639 | 
             
                }
         | 
| 4640 | 
            -
                 | 
| 4640 | 
            +
                type SetBeneficiaryForOperatorInstance = TypedEventInstance<SetBeneficiaryForOperator> & {
         | 
| 4641 4641 | 
             
                    data_decoded: SetBeneficiaryForOperator;
         | 
| 4642 4642 | 
             
                    type_arguments: [];
         | 
| 4643 | 
            -
                }
         | 
| 4643 | 
            +
                };
         | 
| 4644 4644 | 
             
                interface VoteDelegation {
         | 
| 4645 4645 | 
             
                    voter: MoveAddressType;
         | 
| 4646 4646 | 
             
                    pending_voter: MoveAddressType;
         | 
| @@ -4958,10 +4958,10 @@ export declare namespace reconfiguration { | |
| 4958 4958 | 
             
                    const TYPE_QNAME = "0x1::reconfiguration::NewEpoch";
         | 
| 4959 4959 | 
             
                    function type(): TypeDescriptor<NewEpoch>;
         | 
| 4960 4960 | 
             
                }
         | 
| 4961 | 
            -
                 | 
| 4961 | 
            +
                type NewEpochInstance = TypedEventInstance<NewEpoch> & {
         | 
| 4962 4962 | 
             
                    data_decoded: NewEpoch;
         | 
| 4963 4963 | 
             
                    type_arguments: [];
         | 
| 4964 | 
            -
                }
         | 
| 4964 | 
            +
                };
         | 
| 4965 4965 | 
             
                interface NewEpochEvent {
         | 
| 4966 4966 | 
             
                    epoch: bigint;
         | 
| 4967 4967 | 
             
                }
         | 
| @@ -4969,10 +4969,10 @@ export declare namespace reconfiguration { | |
| 4969 4969 | 
             
                    const TYPE_QNAME = "0x1::reconfiguration::NewEpochEvent";
         | 
| 4970 4970 | 
             
                    function type(): TypeDescriptor<NewEpochEvent>;
         | 
| 4971 4971 | 
             
                }
         | 
| 4972 | 
            -
                 | 
| 4972 | 
            +
                type NewEpochEventInstance = TypedEventInstance<NewEpochEvent> & {
         | 
| 4973 4973 | 
             
                    data_decoded: NewEpochEvent;
         | 
| 4974 4974 | 
             
                    type_arguments: [];
         | 
| 4975 | 
            -
                }
         | 
| 4975 | 
            +
                };
         | 
| 4976 4976 | 
             
                namespace entry { }
         | 
| 4977 4977 | 
             
                namespace view { }
         | 
| 4978 4978 | 
             
            }
         | 
| @@ -5025,10 +5025,10 @@ export declare namespace transaction_fee { | |
| 5025 5025 | 
             
                    const TYPE_QNAME = "0x1::transaction_fee::FeeStatement";
         | 
| 5026 5026 | 
             
                    function type(): TypeDescriptor<FeeStatement>;
         | 
| 5027 5027 | 
             
                }
         | 
| 5028 | 
            -
                 | 
| 5028 | 
            +
                type FeeStatementInstance = TypedEventInstance<FeeStatement> & {
         | 
| 5029 5029 | 
             
                    data_decoded: FeeStatement;
         | 
| 5030 5030 | 
             
                    type_arguments: [];
         | 
| 5031 | 
            -
                }
         | 
| 5031 | 
            +
                };
         | 
| 5032 5032 | 
             
                namespace entry {
         | 
| 5033 5033 | 
             
                    function convertToAptosFaBurnRef(client: Aptos, account: AptosAccount, request: {
         | 
| 5034 5034 | 
             
                        typeArguments: [];
         | 
| @@ -5074,10 +5074,10 @@ export declare namespace aptos_governance { | |
| 5074 5074 | 
             
                    const TYPE_QNAME = "0x1::aptos_governance::CreateProposal";
         | 
| 5075 5075 | 
             
                    function type(): TypeDescriptor<CreateProposal>;
         | 
| 5076 5076 | 
             
                }
         | 
| 5077 | 
            -
                 | 
| 5077 | 
            +
                type CreateProposalInstance = TypedEventInstance<CreateProposal> & {
         | 
| 5078 5078 | 
             
                    data_decoded: CreateProposal;
         | 
| 5079 5079 | 
             
                    type_arguments: [];
         | 
| 5080 | 
            -
                }
         | 
| 5080 | 
            +
                };
         | 
| 5081 5081 | 
             
                interface CreateProposalEvent {
         | 
| 5082 5082 | 
             
                    proposer: MoveAddressType;
         | 
| 5083 5083 | 
             
                    stake_pool: MoveAddressType;
         | 
| @@ -5089,10 +5089,10 @@ export declare namespace aptos_governance { | |
| 5089 5089 | 
             
                    const TYPE_QNAME = "0x1::aptos_governance::CreateProposalEvent";
         | 
| 5090 5090 | 
             
                    function type(): TypeDescriptor<CreateProposalEvent>;
         | 
| 5091 5091 | 
             
                }
         | 
| 5092 | 
            -
                 | 
| 5092 | 
            +
                type CreateProposalEventInstance = TypedEventInstance<CreateProposalEvent> & {
         | 
| 5093 5093 | 
             
                    data_decoded: CreateProposalEvent;
         | 
| 5094 5094 | 
             
                    type_arguments: [];
         | 
| 5095 | 
            -
                }
         | 
| 5095 | 
            +
                };
         | 
| 5096 5096 | 
             
                interface Vote {
         | 
| 5097 5097 | 
             
                    proposal_id: bigint;
         | 
| 5098 5098 | 
             
                    voter: MoveAddressType;
         | 
| @@ -5104,10 +5104,10 @@ export declare namespace aptos_governance { | |
| 5104 5104 | 
             
                    const TYPE_QNAME = "0x1::aptos_governance::Vote";
         | 
| 5105 5105 | 
             
                    function type(): TypeDescriptor<Vote>;
         | 
| 5106 5106 | 
             
                }
         | 
| 5107 | 
            -
                 | 
| 5107 | 
            +
                type VoteInstance = TypedEventInstance<Vote> & {
         | 
| 5108 5108 | 
             
                    data_decoded: Vote;
         | 
| 5109 5109 | 
             
                    type_arguments: [];
         | 
| 5110 | 
            -
                }
         | 
| 5110 | 
            +
                };
         | 
| 5111 5111 | 
             
                interface VoteEvent {
         | 
| 5112 5112 | 
             
                    proposal_id: bigint;
         | 
| 5113 5113 | 
             
                    voter: MoveAddressType;
         | 
| @@ -5119,10 +5119,10 @@ export declare namespace aptos_governance { | |
| 5119 5119 | 
             
                    const TYPE_QNAME = "0x1::aptos_governance::VoteEvent";
         | 
| 5120 5120 | 
             
                    function type(): TypeDescriptor<VoteEvent>;
         | 
| 5121 5121 | 
             
                }
         | 
| 5122 | 
            -
                 | 
| 5122 | 
            +
                type VoteEventInstance = TypedEventInstance<VoteEvent> & {
         | 
| 5123 5123 | 
             
                    data_decoded: VoteEvent;
         | 
| 5124 5124 | 
             
                    type_arguments: [];
         | 
| 5125 | 
            -
                }
         | 
| 5125 | 
            +
                };
         | 
| 5126 5126 | 
             
                interface ApprovedExecutionHashes {
         | 
| 5127 5127 | 
             
                    hashes: simple_map.SimpleMap<bigint, string>;
         | 
| 5128 5128 | 
             
                }
         | 
| @@ -5172,10 +5172,10 @@ export declare namespace aptos_governance { | |
| 5172 5172 | 
             
                    const TYPE_QNAME = "0x1::aptos_governance::UpdateConfig";
         | 
| 5173 5173 | 
             
                    function type(): TypeDescriptor<UpdateConfig>;
         | 
| 5174 5174 | 
             
                }
         | 
| 5175 | 
            -
                 | 
| 5175 | 
            +
                type UpdateConfigInstance = TypedEventInstance<UpdateConfig> & {
         | 
| 5176 5176 | 
             
                    data_decoded: UpdateConfig;
         | 
| 5177 5177 | 
             
                    type_arguments: [];
         | 
| 5178 | 
            -
                }
         | 
| 5178 | 
            +
                };
         | 
| 5179 5179 | 
             
                interface UpdateConfigEvent {
         | 
| 5180 5180 | 
             
                    min_voting_threshold: bigint;
         | 
| 5181 5181 | 
             
                    required_proposer_stake: bigint;
         | 
| @@ -5185,10 +5185,10 @@ export declare namespace aptos_governance { | |
| 5185 5185 | 
             
                    const TYPE_QNAME = "0x1::aptos_governance::UpdateConfigEvent";
         | 
| 5186 5186 | 
             
                    function type(): TypeDescriptor<UpdateConfigEvent>;
         | 
| 5187 5187 | 
             
                }
         | 
| 5188 | 
            -
                 | 
| 5188 | 
            +
                type UpdateConfigEventInstance = TypedEventInstance<UpdateConfigEvent> & {
         | 
| 5189 5189 | 
             
                    data_decoded: UpdateConfigEvent;
         | 
| 5190 5190 | 
             
                    type_arguments: [];
         | 
| 5191 | 
            -
                }
         | 
| 5191 | 
            +
                };
         | 
| 5192 5192 | 
             
                interface VotingRecords {
         | 
| 5193 5193 | 
             
                    votes: table.Table<aptos_governance.RecordKey, boolean>;
         | 
| 5194 5194 | 
             
                }
         | 
| @@ -5497,10 +5497,10 @@ export declare namespace multisig_account { | |
| 5497 5497 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::Vote";
         | 
| 5498 5498 | 
             
                    function type(): TypeDescriptor<Vote>;
         | 
| 5499 5499 | 
             
                }
         | 
| 5500 | 
            -
                 | 
| 5500 | 
            +
                type VoteInstance = TypedEventInstance<Vote> & {
         | 
| 5501 5501 | 
             
                    data_decoded: Vote;
         | 
| 5502 5502 | 
             
                    type_arguments: [];
         | 
| 5503 | 
            -
                }
         | 
| 5503 | 
            +
                };
         | 
| 5504 5504 | 
             
                interface VoteEvent {
         | 
| 5505 5505 | 
             
                    owner: MoveAddressType;
         | 
| 5506 5506 | 
             
                    sequence_number: bigint;
         | 
| @@ -5510,10 +5510,10 @@ export declare namespace multisig_account { | |
| 5510 5510 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::VoteEvent";
         | 
| 5511 5511 | 
             
                    function type(): TypeDescriptor<VoteEvent>;
         | 
| 5512 5512 | 
             
                }
         | 
| 5513 | 
            -
                 | 
| 5513 | 
            +
                type VoteEventInstance = TypedEventInstance<VoteEvent> & {
         | 
| 5514 5514 | 
             
                    data_decoded: VoteEvent;
         | 
| 5515 5515 | 
             
                    type_arguments: [];
         | 
| 5516 | 
            -
                }
         | 
| 5516 | 
            +
                };
         | 
| 5517 5517 | 
             
                interface AddOwners {
         | 
| 5518 5518 | 
             
                    multisig_account: MoveAddressType;
         | 
| 5519 5519 | 
             
                    owners_added: MoveAddressType[];
         | 
| @@ -5522,10 +5522,10 @@ export declare namespace multisig_account { | |
| 5522 5522 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::AddOwners";
         | 
| 5523 5523 | 
             
                    function type(): TypeDescriptor<AddOwners>;
         | 
| 5524 5524 | 
             
                }
         | 
| 5525 | 
            -
                 | 
| 5525 | 
            +
                type AddOwnersInstance = TypedEventInstance<AddOwners> & {
         | 
| 5526 5526 | 
             
                    data_decoded: AddOwners;
         | 
| 5527 5527 | 
             
                    type_arguments: [];
         | 
| 5528 | 
            -
                }
         | 
| 5528 | 
            +
                };
         | 
| 5529 5529 | 
             
                interface AddOwnersEvent {
         | 
| 5530 5530 | 
             
                    owners_added: MoveAddressType[];
         | 
| 5531 5531 | 
             
                }
         | 
| @@ -5533,10 +5533,10 @@ export declare namespace multisig_account { | |
| 5533 5533 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::AddOwnersEvent";
         | 
| 5534 5534 | 
             
                    function type(): TypeDescriptor<AddOwnersEvent>;
         | 
| 5535 5535 | 
             
                }
         | 
| 5536 | 
            -
                 | 
| 5536 | 
            +
                type AddOwnersEventInstance = TypedEventInstance<AddOwnersEvent> & {
         | 
| 5537 5537 | 
             
                    data_decoded: AddOwnersEvent;
         | 
| 5538 5538 | 
             
                    type_arguments: [];
         | 
| 5539 | 
            -
                }
         | 
| 5539 | 
            +
                };
         | 
| 5540 5540 | 
             
                interface CreateTransaction {
         | 
| 5541 5541 | 
             
                    multisig_account: MoveAddressType;
         | 
| 5542 5542 | 
             
                    creator: MoveAddressType;
         | 
| @@ -5547,10 +5547,10 @@ export declare namespace multisig_account { | |
| 5547 5547 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::CreateTransaction";
         | 
| 5548 5548 | 
             
                    function type(): TypeDescriptor<CreateTransaction>;
         | 
| 5549 5549 | 
             
                }
         | 
| 5550 | 
            -
                 | 
| 5550 | 
            +
                type CreateTransactionInstance = TypedEventInstance<CreateTransaction> & {
         | 
| 5551 5551 | 
             
                    data_decoded: CreateTransaction;
         | 
| 5552 5552 | 
             
                    type_arguments: [];
         | 
| 5553 | 
            -
                }
         | 
| 5553 | 
            +
                };
         | 
| 5554 5554 | 
             
                interface CreateTransactionEvent {
         | 
| 5555 5555 | 
             
                    creator: MoveAddressType;
         | 
| 5556 5556 | 
             
                    sequence_number: bigint;
         | 
| @@ -5560,10 +5560,10 @@ export declare namespace multisig_account { | |
| 5560 5560 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::CreateTransactionEvent";
         | 
| 5561 5561 | 
             
                    function type(): TypeDescriptor<CreateTransactionEvent>;
         | 
| 5562 5562 | 
             
                }
         | 
| 5563 | 
            -
                 | 
| 5563 | 
            +
                type CreateTransactionEventInstance = TypedEventInstance<CreateTransactionEvent> & {
         | 
| 5564 5564 | 
             
                    data_decoded: CreateTransactionEvent;
         | 
| 5565 5565 | 
             
                    type_arguments: [];
         | 
| 5566 | 
            -
                }
         | 
| 5566 | 
            +
                };
         | 
| 5567 5567 | 
             
                interface ExecuteRejectedTransaction {
         | 
| 5568 5568 | 
             
                    multisig_account: MoveAddressType;
         | 
| 5569 5569 | 
             
                    sequence_number: bigint;
         | 
| @@ -5574,10 +5574,10 @@ export declare namespace multisig_account { | |
| 5574 5574 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::ExecuteRejectedTransaction";
         | 
| 5575 5575 | 
             
                    function type(): TypeDescriptor<ExecuteRejectedTransaction>;
         | 
| 5576 5576 | 
             
                }
         | 
| 5577 | 
            -
                 | 
| 5577 | 
            +
                type ExecuteRejectedTransactionInstance = TypedEventInstance<ExecuteRejectedTransaction> & {
         | 
| 5578 5578 | 
             
                    data_decoded: ExecuteRejectedTransaction;
         | 
| 5579 5579 | 
             
                    type_arguments: [];
         | 
| 5580 | 
            -
                }
         | 
| 5580 | 
            +
                };
         | 
| 5581 5581 | 
             
                interface ExecuteRejectedTransactionEvent {
         | 
| 5582 5582 | 
             
                    sequence_number: bigint;
         | 
| 5583 5583 | 
             
                    num_rejections: bigint;
         | 
| @@ -5587,10 +5587,10 @@ export declare namespace multisig_account { | |
| 5587 5587 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::ExecuteRejectedTransactionEvent";
         | 
| 5588 5588 | 
             
                    function type(): TypeDescriptor<ExecuteRejectedTransactionEvent>;
         | 
| 5589 5589 | 
             
                }
         | 
| 5590 | 
            -
                 | 
| 5590 | 
            +
                type ExecuteRejectedTransactionEventInstance = TypedEventInstance<ExecuteRejectedTransactionEvent> & {
         | 
| 5591 5591 | 
             
                    data_decoded: ExecuteRejectedTransactionEvent;
         | 
| 5592 5592 | 
             
                    type_arguments: [];
         | 
| 5593 | 
            -
                }
         | 
| 5593 | 
            +
                };
         | 
| 5594 5594 | 
             
                interface ExecutionError {
         | 
| 5595 5595 | 
             
                    abort_location: string;
         | 
| 5596 5596 | 
             
                    error_type: string;
         | 
| @@ -5609,10 +5609,10 @@ export declare namespace multisig_account { | |
| 5609 5609 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::MetadataUpdated";
         | 
| 5610 5610 | 
             
                    function type(): TypeDescriptor<MetadataUpdated>;
         | 
| 5611 5611 | 
             
                }
         | 
| 5612 | 
            -
                 | 
| 5612 | 
            +
                type MetadataUpdatedInstance = TypedEventInstance<MetadataUpdated> & {
         | 
| 5613 5613 | 
             
                    data_decoded: MetadataUpdated;
         | 
| 5614 5614 | 
             
                    type_arguments: [];
         | 
| 5615 | 
            -
                }
         | 
| 5615 | 
            +
                };
         | 
| 5616 5616 | 
             
                interface MetadataUpdatedEvent {
         | 
| 5617 5617 | 
             
                    old_metadata: simple_map.SimpleMap<string, string>;
         | 
| 5618 5618 | 
             
                    new_metadata: simple_map.SimpleMap<string, string>;
         | 
| @@ -5621,10 +5621,10 @@ export declare namespace multisig_account { | |
| 5621 5621 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::MetadataUpdatedEvent";
         | 
| 5622 5622 | 
             
                    function type(): TypeDescriptor<MetadataUpdatedEvent>;
         | 
| 5623 5623 | 
             
                }
         | 
| 5624 | 
            -
                 | 
| 5624 | 
            +
                type MetadataUpdatedEventInstance = TypedEventInstance<MetadataUpdatedEvent> & {
         | 
| 5625 5625 | 
             
                    data_decoded: MetadataUpdatedEvent;
         | 
| 5626 5626 | 
             
                    type_arguments: [];
         | 
| 5627 | 
            -
                }
         | 
| 5627 | 
            +
                };
         | 
| 5628 5628 | 
             
                interface MultisigAccount {
         | 
| 5629 5629 | 
             
                    owners: MoveAddressType[];
         | 
| 5630 5630 | 
             
                    num_signatures_required: bigint;
         | 
| @@ -5688,10 +5688,10 @@ export declare namespace multisig_account { | |
| 5688 5688 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::RemoveOwners";
         | 
| 5689 5689 | 
             
                    function type(): TypeDescriptor<RemoveOwners>;
         | 
| 5690 5690 | 
             
                }
         | 
| 5691 | 
            -
                 | 
| 5691 | 
            +
                type RemoveOwnersInstance = TypedEventInstance<RemoveOwners> & {
         | 
| 5692 5692 | 
             
                    data_decoded: RemoveOwners;
         | 
| 5693 5693 | 
             
                    type_arguments: [];
         | 
| 5694 | 
            -
                }
         | 
| 5694 | 
            +
                };
         | 
| 5695 5695 | 
             
                interface RemoveOwnersEvent {
         | 
| 5696 5696 | 
             
                    owners_removed: MoveAddressType[];
         | 
| 5697 5697 | 
             
                }
         | 
| @@ -5699,10 +5699,10 @@ export declare namespace multisig_account { | |
| 5699 5699 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::RemoveOwnersEvent";
         | 
| 5700 5700 | 
             
                    function type(): TypeDescriptor<RemoveOwnersEvent>;
         | 
| 5701 5701 | 
             
                }
         | 
| 5702 | 
            -
                 | 
| 5702 | 
            +
                type RemoveOwnersEventInstance = TypedEventInstance<RemoveOwnersEvent> & {
         | 
| 5703 5703 | 
             
                    data_decoded: RemoveOwnersEvent;
         | 
| 5704 5704 | 
             
                    type_arguments: [];
         | 
| 5705 | 
            -
                }
         | 
| 5705 | 
            +
                };
         | 
| 5706 5706 | 
             
                interface TransactionExecutionFailed {
         | 
| 5707 5707 | 
             
                    multisig_account: MoveAddressType;
         | 
| 5708 5708 | 
             
                    executor: MoveAddressType;
         | 
| @@ -5715,10 +5715,10 @@ export declare namespace multisig_account { | |
| 5715 5715 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::TransactionExecutionFailed";
         | 
| 5716 5716 | 
             
                    function type(): TypeDescriptor<TransactionExecutionFailed>;
         | 
| 5717 5717 | 
             
                }
         | 
| 5718 | 
            -
                 | 
| 5718 | 
            +
                type TransactionExecutionFailedInstance = TypedEventInstance<TransactionExecutionFailed> & {
         | 
| 5719 5719 | 
             
                    data_decoded: TransactionExecutionFailed;
         | 
| 5720 5720 | 
             
                    type_arguments: [];
         | 
| 5721 | 
            -
                }
         | 
| 5721 | 
            +
                };
         | 
| 5722 5722 | 
             
                interface TransactionExecutionFailedEvent {
         | 
| 5723 5723 | 
             
                    executor: MoveAddressType;
         | 
| 5724 5724 | 
             
                    sequence_number: bigint;
         | 
| @@ -5730,10 +5730,10 @@ export declare namespace multisig_account { | |
| 5730 5730 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::TransactionExecutionFailedEvent";
         | 
| 5731 5731 | 
             
                    function type(): TypeDescriptor<TransactionExecutionFailedEvent>;
         | 
| 5732 5732 | 
             
                }
         | 
| 5733 | 
            -
                 | 
| 5733 | 
            +
                type TransactionExecutionFailedEventInstance = TypedEventInstance<TransactionExecutionFailedEvent> & {
         | 
| 5734 5734 | 
             
                    data_decoded: TransactionExecutionFailedEvent;
         | 
| 5735 5735 | 
             
                    type_arguments: [];
         | 
| 5736 | 
            -
                }
         | 
| 5736 | 
            +
                };
         | 
| 5737 5737 | 
             
                interface TransactionExecutionSucceeded {
         | 
| 5738 5738 | 
             
                    multisig_account: MoveAddressType;
         | 
| 5739 5739 | 
             
                    executor: MoveAddressType;
         | 
| @@ -5745,10 +5745,10 @@ export declare namespace multisig_account { | |
| 5745 5745 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::TransactionExecutionSucceeded";
         | 
| 5746 5746 | 
             
                    function type(): TypeDescriptor<TransactionExecutionSucceeded>;
         | 
| 5747 5747 | 
             
                }
         | 
| 5748 | 
            -
                 | 
| 5748 | 
            +
                type TransactionExecutionSucceededInstance = TypedEventInstance<TransactionExecutionSucceeded> & {
         | 
| 5749 5749 | 
             
                    data_decoded: TransactionExecutionSucceeded;
         | 
| 5750 5750 | 
             
                    type_arguments: [];
         | 
| 5751 | 
            -
                }
         | 
| 5751 | 
            +
                };
         | 
| 5752 5752 | 
             
                interface TransactionExecutionSucceededEvent {
         | 
| 5753 5753 | 
             
                    executor: MoveAddressType;
         | 
| 5754 5754 | 
             
                    sequence_number: bigint;
         | 
| @@ -5759,10 +5759,10 @@ export declare namespace multisig_account { | |
| 5759 5759 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::TransactionExecutionSucceededEvent";
         | 
| 5760 5760 | 
             
                    function type(): TypeDescriptor<TransactionExecutionSucceededEvent>;
         | 
| 5761 5761 | 
             
                }
         | 
| 5762 | 
            -
                 | 
| 5762 | 
            +
                type TransactionExecutionSucceededEventInstance = TypedEventInstance<TransactionExecutionSucceededEvent> & {
         | 
| 5763 5763 | 
             
                    data_decoded: TransactionExecutionSucceededEvent;
         | 
| 5764 5764 | 
             
                    type_arguments: [];
         | 
| 5765 | 
            -
                }
         | 
| 5765 | 
            +
                };
         | 
| 5766 5766 | 
             
                interface UpdateSignaturesRequired {
         | 
| 5767 5767 | 
             
                    multisig_account: MoveAddressType;
         | 
| 5768 5768 | 
             
                    old_num_signatures_required: bigint;
         | 
| @@ -5772,10 +5772,10 @@ export declare namespace multisig_account { | |
| 5772 5772 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::UpdateSignaturesRequired";
         | 
| 5773 5773 | 
             
                    function type(): TypeDescriptor<UpdateSignaturesRequired>;
         | 
| 5774 5774 | 
             
                }
         | 
| 5775 | 
            -
                 | 
| 5775 | 
            +
                type UpdateSignaturesRequiredInstance = TypedEventInstance<UpdateSignaturesRequired> & {
         | 
| 5776 5776 | 
             
                    data_decoded: UpdateSignaturesRequired;
         | 
| 5777 5777 | 
             
                    type_arguments: [];
         | 
| 5778 | 
            -
                }
         | 
| 5778 | 
            +
                };
         | 
| 5779 5779 | 
             
                interface UpdateSignaturesRequiredEvent {
         | 
| 5780 5780 | 
             
                    old_num_signatures_required: bigint;
         | 
| 5781 5781 | 
             
                    new_num_signatures_required: bigint;
         | 
| @@ -5784,10 +5784,10 @@ export declare namespace multisig_account { | |
| 5784 5784 | 
             
                    const TYPE_QNAME = "0x1::multisig_account::UpdateSignaturesRequiredEvent";
         | 
| 5785 5785 | 
             
                    function type(): TypeDescriptor<UpdateSignaturesRequiredEvent>;
         | 
| 5786 5786 | 
             
                }
         | 
| 5787 | 
            -
                 | 
| 5787 | 
            +
                type UpdateSignaturesRequiredEventInstance = TypedEventInstance<UpdateSignaturesRequiredEvent> & {
         | 
| 5788 5788 | 
             
                    data_decoded: UpdateSignaturesRequiredEvent;
         | 
| 5789 5789 | 
             
                    type_arguments: [];
         | 
| 5790 | 
            -
                }
         | 
| 5790 | 
            +
                };
         | 
| 5791 5791 | 
             
                namespace entry {
         | 
| 5792 5792 | 
             
                    function create(client: Aptos, account: AptosAccount, request: {
         | 
| 5793 5793 | 
             
                        typeArguments: [];
         | 
| @@ -6234,10 +6234,10 @@ export declare namespace staking_contract { | |
| 6234 6234 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::AddStake";
         | 
| 6235 6235 | 
             
                    function type(): TypeDescriptor<AddStake>;
         | 
| 6236 6236 | 
             
                }
         | 
| 6237 | 
            -
                 | 
| 6237 | 
            +
                type AddStakeInstance = TypedEventInstance<AddStake> & {
         | 
| 6238 6238 | 
             
                    data_decoded: AddStake;
         | 
| 6239 6239 | 
             
                    type_arguments: [];
         | 
| 6240 | 
            -
                }
         | 
| 6240 | 
            +
                };
         | 
| 6241 6241 | 
             
                interface AddStakeEvent {
         | 
| 6242 6242 | 
             
                    operator: MoveAddressType;
         | 
| 6243 6243 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6247,10 +6247,10 @@ export declare namespace staking_contract { | |
| 6247 6247 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::AddStakeEvent";
         | 
| 6248 6248 | 
             
                    function type(): TypeDescriptor<AddStakeEvent>;
         | 
| 6249 6249 | 
             
                }
         | 
| 6250 | 
            -
                 | 
| 6250 | 
            +
                type AddStakeEventInstance = TypedEventInstance<AddStakeEvent> & {
         | 
| 6251 6251 | 
             
                    data_decoded: AddStakeEvent;
         | 
| 6252 6252 | 
             
                    type_arguments: [];
         | 
| 6253 | 
            -
                }
         | 
| 6253 | 
            +
                };
         | 
| 6254 6254 | 
             
                interface UnlockStake {
         | 
| 6255 6255 | 
             
                    operator: MoveAddressType;
         | 
| 6256 6256 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6261,10 +6261,10 @@ export declare namespace staking_contract { | |
| 6261 6261 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::UnlockStake";
         | 
| 6262 6262 | 
             
                    function type(): TypeDescriptor<UnlockStake>;
         | 
| 6263 6263 | 
             
                }
         | 
| 6264 | 
            -
                 | 
| 6264 | 
            +
                type UnlockStakeInstance = TypedEventInstance<UnlockStake> & {
         | 
| 6265 6265 | 
             
                    data_decoded: UnlockStake;
         | 
| 6266 6266 | 
             
                    type_arguments: [];
         | 
| 6267 | 
            -
                }
         | 
| 6267 | 
            +
                };
         | 
| 6268 6268 | 
             
                interface UnlockStakeEvent {
         | 
| 6269 6269 | 
             
                    operator: MoveAddressType;
         | 
| 6270 6270 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6275,10 +6275,10 @@ export declare namespace staking_contract { | |
| 6275 6275 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::UnlockStakeEvent";
         | 
| 6276 6276 | 
             
                    function type(): TypeDescriptor<UnlockStakeEvent>;
         | 
| 6277 6277 | 
             
                }
         | 
| 6278 | 
            -
                 | 
| 6278 | 
            +
                type UnlockStakeEventInstance = TypedEventInstance<UnlockStakeEvent> & {
         | 
| 6279 6279 | 
             
                    data_decoded: UnlockStakeEvent;
         | 
| 6280 6280 | 
             
                    type_arguments: [];
         | 
| 6281 | 
            -
                }
         | 
| 6281 | 
            +
                };
         | 
| 6282 6282 | 
             
                interface BeneficiaryForOperator {
         | 
| 6283 6283 | 
             
                    beneficiary_for_operator: MoveAddressType;
         | 
| 6284 6284 | 
             
                }
         | 
| @@ -6295,10 +6295,10 @@ export declare namespace staking_contract { | |
| 6295 6295 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::SetBeneficiaryForOperator";
         | 
| 6296 6296 | 
             
                    function type(): TypeDescriptor<SetBeneficiaryForOperator>;
         | 
| 6297 6297 | 
             
                }
         | 
| 6298 | 
            -
                 | 
| 6298 | 
            +
                type SetBeneficiaryForOperatorInstance = TypedEventInstance<SetBeneficiaryForOperator> & {
         | 
| 6299 6299 | 
             
                    data_decoded: SetBeneficiaryForOperator;
         | 
| 6300 6300 | 
             
                    type_arguments: [];
         | 
| 6301 | 
            -
                }
         | 
| 6301 | 
            +
                };
         | 
| 6302 6302 | 
             
                interface AddDistribution {
         | 
| 6303 6303 | 
             
                    operator: MoveAddressType;
         | 
| 6304 6304 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6308,10 +6308,10 @@ export declare namespace staking_contract { | |
| 6308 6308 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::AddDistribution";
         | 
| 6309 6309 | 
             
                    function type(): TypeDescriptor<AddDistribution>;
         | 
| 6310 6310 | 
             
                }
         | 
| 6311 | 
            -
                 | 
| 6311 | 
            +
                type AddDistributionInstance = TypedEventInstance<AddDistribution> & {
         | 
| 6312 6312 | 
             
                    data_decoded: AddDistribution;
         | 
| 6313 6313 | 
             
                    type_arguments: [];
         | 
| 6314 | 
            -
                }
         | 
| 6314 | 
            +
                };
         | 
| 6315 6315 | 
             
                interface AddDistributionEvent {
         | 
| 6316 6316 | 
             
                    operator: MoveAddressType;
         | 
| 6317 6317 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6321,10 +6321,10 @@ export declare namespace staking_contract { | |
| 6321 6321 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::AddDistributionEvent";
         | 
| 6322 6322 | 
             
                    function type(): TypeDescriptor<AddDistributionEvent>;
         | 
| 6323 6323 | 
             
                }
         | 
| 6324 | 
            -
                 | 
| 6324 | 
            +
                type AddDistributionEventInstance = TypedEventInstance<AddDistributionEvent> & {
         | 
| 6325 6325 | 
             
                    data_decoded: AddDistributionEvent;
         | 
| 6326 6326 | 
             
                    type_arguments: [];
         | 
| 6327 | 
            -
                }
         | 
| 6327 | 
            +
                };
         | 
| 6328 6328 | 
             
                interface CreateStakingContract {
         | 
| 6329 6329 | 
             
                    operator: MoveAddressType;
         | 
| 6330 6330 | 
             
                    voter: MoveAddressType;
         | 
| @@ -6336,10 +6336,10 @@ export declare namespace staking_contract { | |
| 6336 6336 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::CreateStakingContract";
         | 
| 6337 6337 | 
             
                    function type(): TypeDescriptor<CreateStakingContract>;
         | 
| 6338 6338 | 
             
                }
         | 
| 6339 | 
            -
                 | 
| 6339 | 
            +
                type CreateStakingContractInstance = TypedEventInstance<CreateStakingContract> & {
         | 
| 6340 6340 | 
             
                    data_decoded: CreateStakingContract;
         | 
| 6341 6341 | 
             
                    type_arguments: [];
         | 
| 6342 | 
            -
                }
         | 
| 6342 | 
            +
                };
         | 
| 6343 6343 | 
             
                interface CreateStakingContractEvent {
         | 
| 6344 6344 | 
             
                    operator: MoveAddressType;
         | 
| 6345 6345 | 
             
                    voter: MoveAddressType;
         | 
| @@ -6351,10 +6351,10 @@ export declare namespace staking_contract { | |
| 6351 6351 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::CreateStakingContractEvent";
         | 
| 6352 6352 | 
             
                    function type(): TypeDescriptor<CreateStakingContractEvent>;
         | 
| 6353 6353 | 
             
                }
         | 
| 6354 | 
            -
                 | 
| 6354 | 
            +
                type CreateStakingContractEventInstance = TypedEventInstance<CreateStakingContractEvent> & {
         | 
| 6355 6355 | 
             
                    data_decoded: CreateStakingContractEvent;
         | 
| 6356 6356 | 
             
                    type_arguments: [];
         | 
| 6357 | 
            -
                }
         | 
| 6357 | 
            +
                };
         | 
| 6358 6358 | 
             
                interface Distribute {
         | 
| 6359 6359 | 
             
                    operator: MoveAddressType;
         | 
| 6360 6360 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6365,10 +6365,10 @@ export declare namespace staking_contract { | |
| 6365 6365 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::Distribute";
         | 
| 6366 6366 | 
             
                    function type(): TypeDescriptor<Distribute>;
         | 
| 6367 6367 | 
             
                }
         | 
| 6368 | 
            -
                 | 
| 6368 | 
            +
                type DistributeInstance = TypedEventInstance<Distribute> & {
         | 
| 6369 6369 | 
             
                    data_decoded: Distribute;
         | 
| 6370 6370 | 
             
                    type_arguments: [];
         | 
| 6371 | 
            -
                }
         | 
| 6371 | 
            +
                };
         | 
| 6372 6372 | 
             
                interface DistributeEvent {
         | 
| 6373 6373 | 
             
                    operator: MoveAddressType;
         | 
| 6374 6374 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6379,10 +6379,10 @@ export declare namespace staking_contract { | |
| 6379 6379 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::DistributeEvent";
         | 
| 6380 6380 | 
             
                    function type(): TypeDescriptor<DistributeEvent>;
         | 
| 6381 6381 | 
             
                }
         | 
| 6382 | 
            -
                 | 
| 6382 | 
            +
                type DistributeEventInstance = TypedEventInstance<DistributeEvent> & {
         | 
| 6383 6383 | 
             
                    data_decoded: DistributeEvent;
         | 
| 6384 6384 | 
             
                    type_arguments: [];
         | 
| 6385 | 
            -
                }
         | 
| 6385 | 
            +
                };
         | 
| 6386 6386 | 
             
                interface RequestCommission {
         | 
| 6387 6387 | 
             
                    operator: MoveAddressType;
         | 
| 6388 6388 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6393,10 +6393,10 @@ export declare namespace staking_contract { | |
| 6393 6393 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::RequestCommission";
         | 
| 6394 6394 | 
             
                    function type(): TypeDescriptor<RequestCommission>;
         | 
| 6395 6395 | 
             
                }
         | 
| 6396 | 
            -
                 | 
| 6396 | 
            +
                type RequestCommissionInstance = TypedEventInstance<RequestCommission> & {
         | 
| 6397 6397 | 
             
                    data_decoded: RequestCommission;
         | 
| 6398 6398 | 
             
                    type_arguments: [];
         | 
| 6399 | 
            -
                }
         | 
| 6399 | 
            +
                };
         | 
| 6400 6400 | 
             
                interface RequestCommissionEvent {
         | 
| 6401 6401 | 
             
                    operator: MoveAddressType;
         | 
| 6402 6402 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6407,10 +6407,10 @@ export declare namespace staking_contract { | |
| 6407 6407 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::RequestCommissionEvent";
         | 
| 6408 6408 | 
             
                    function type(): TypeDescriptor<RequestCommissionEvent>;
         | 
| 6409 6409 | 
             
                }
         | 
| 6410 | 
            -
                 | 
| 6410 | 
            +
                type RequestCommissionEventInstance = TypedEventInstance<RequestCommissionEvent> & {
         | 
| 6411 6411 | 
             
                    data_decoded: RequestCommissionEvent;
         | 
| 6412 6412 | 
             
                    type_arguments: [];
         | 
| 6413 | 
            -
                }
         | 
| 6413 | 
            +
                };
         | 
| 6414 6414 | 
             
                interface ResetLockup {
         | 
| 6415 6415 | 
             
                    operator: MoveAddressType;
         | 
| 6416 6416 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6419,10 +6419,10 @@ export declare namespace staking_contract { | |
| 6419 6419 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::ResetLockup";
         | 
| 6420 6420 | 
             
                    function type(): TypeDescriptor<ResetLockup>;
         | 
| 6421 6421 | 
             
                }
         | 
| 6422 | 
            -
                 | 
| 6422 | 
            +
                type ResetLockupInstance = TypedEventInstance<ResetLockup> & {
         | 
| 6423 6423 | 
             
                    data_decoded: ResetLockup;
         | 
| 6424 6424 | 
             
                    type_arguments: [];
         | 
| 6425 | 
            -
                }
         | 
| 6425 | 
            +
                };
         | 
| 6426 6426 | 
             
                interface ResetLockupEvent {
         | 
| 6427 6427 | 
             
                    operator: MoveAddressType;
         | 
| 6428 6428 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6431,10 +6431,10 @@ export declare namespace staking_contract { | |
| 6431 6431 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::ResetLockupEvent";
         | 
| 6432 6432 | 
             
                    function type(): TypeDescriptor<ResetLockupEvent>;
         | 
| 6433 6433 | 
             
                }
         | 
| 6434 | 
            -
                 | 
| 6434 | 
            +
                type ResetLockupEventInstance = TypedEventInstance<ResetLockupEvent> & {
         | 
| 6435 6435 | 
             
                    data_decoded: ResetLockupEvent;
         | 
| 6436 6436 | 
             
                    type_arguments: [];
         | 
| 6437 | 
            -
                }
         | 
| 6437 | 
            +
                };
         | 
| 6438 6438 | 
             
                interface StakingContract {
         | 
| 6439 6439 | 
             
                    principal: bigint;
         | 
| 6440 6440 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6461,10 +6461,10 @@ export declare namespace staking_contract { | |
| 6461 6461 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::StakingGroupUpdateCommissionEvent";
         | 
| 6462 6462 | 
             
                    function type(): TypeDescriptor<StakingGroupUpdateCommissionEvent>;
         | 
| 6463 6463 | 
             
                }
         | 
| 6464 | 
            -
                 | 
| 6464 | 
            +
                type StakingGroupUpdateCommissionEventInstance = TypedEventInstance<StakingGroupUpdateCommissionEvent> & {
         | 
| 6465 6465 | 
             
                    data_decoded: StakingGroupUpdateCommissionEvent;
         | 
| 6466 6466 | 
             
                    type_arguments: [];
         | 
| 6467 | 
            -
                }
         | 
| 6467 | 
            +
                };
         | 
| 6468 6468 | 
             
                interface Store {
         | 
| 6469 6469 | 
             
                    staking_contracts: simple_map.SimpleMap<MoveAddressType, staking_contract.StakingContract>;
         | 
| 6470 6470 | 
             
                    create_staking_contract_events: event.EventHandle<staking_contract.CreateStakingContractEvent>;
         | 
| @@ -6490,10 +6490,10 @@ export declare namespace staking_contract { | |
| 6490 6490 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::SwitchOperator";
         | 
| 6491 6491 | 
             
                    function type(): TypeDescriptor<SwitchOperator>;
         | 
| 6492 6492 | 
             
                }
         | 
| 6493 | 
            -
                 | 
| 6493 | 
            +
                type SwitchOperatorInstance = TypedEventInstance<SwitchOperator> & {
         | 
| 6494 6494 | 
             
                    data_decoded: SwitchOperator;
         | 
| 6495 6495 | 
             
                    type_arguments: [];
         | 
| 6496 | 
            -
                }
         | 
| 6496 | 
            +
                };
         | 
| 6497 6497 | 
             
                interface SwitchOperatorEvent {
         | 
| 6498 6498 | 
             
                    old_operator: MoveAddressType;
         | 
| 6499 6499 | 
             
                    new_operator: MoveAddressType;
         | 
| @@ -6503,10 +6503,10 @@ export declare namespace staking_contract { | |
| 6503 6503 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::SwitchOperatorEvent";
         | 
| 6504 6504 | 
             
                    function type(): TypeDescriptor<SwitchOperatorEvent>;
         | 
| 6505 6505 | 
             
                }
         | 
| 6506 | 
            -
                 | 
| 6506 | 
            +
                type SwitchOperatorEventInstance = TypedEventInstance<SwitchOperatorEvent> & {
         | 
| 6507 6507 | 
             
                    data_decoded: SwitchOperatorEvent;
         | 
| 6508 6508 | 
             
                    type_arguments: [];
         | 
| 6509 | 
            -
                }
         | 
| 6509 | 
            +
                };
         | 
| 6510 6510 | 
             
                interface UpdateCommission {
         | 
| 6511 6511 | 
             
                    staker: MoveAddressType;
         | 
| 6512 6512 | 
             
                    operator: MoveAddressType;
         | 
| @@ -6517,10 +6517,10 @@ export declare namespace staking_contract { | |
| 6517 6517 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::UpdateCommission";
         | 
| 6518 6518 | 
             
                    function type(): TypeDescriptor<UpdateCommission>;
         | 
| 6519 6519 | 
             
                }
         | 
| 6520 | 
            -
                 | 
| 6520 | 
            +
                type UpdateCommissionInstance = TypedEventInstance<UpdateCommission> & {
         | 
| 6521 6521 | 
             
                    data_decoded: UpdateCommission;
         | 
| 6522 6522 | 
             
                    type_arguments: [];
         | 
| 6523 | 
            -
                }
         | 
| 6523 | 
            +
                };
         | 
| 6524 6524 | 
             
                interface UpdateCommissionEvent {
         | 
| 6525 6525 | 
             
                    staker: MoveAddressType;
         | 
| 6526 6526 | 
             
                    operator: MoveAddressType;
         | 
| @@ -6531,10 +6531,10 @@ export declare namespace staking_contract { | |
| 6531 6531 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::UpdateCommissionEvent";
         | 
| 6532 6532 | 
             
                    function type(): TypeDescriptor<UpdateCommissionEvent>;
         | 
| 6533 6533 | 
             
                }
         | 
| 6534 | 
            -
                 | 
| 6534 | 
            +
                type UpdateCommissionEventInstance = TypedEventInstance<UpdateCommissionEvent> & {
         | 
| 6535 6535 | 
             
                    data_decoded: UpdateCommissionEvent;
         | 
| 6536 6536 | 
             
                    type_arguments: [];
         | 
| 6537 | 
            -
                }
         | 
| 6537 | 
            +
                };
         | 
| 6538 6538 | 
             
                interface UpdateVoter {
         | 
| 6539 6539 | 
             
                    operator: MoveAddressType;
         | 
| 6540 6540 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6545,10 +6545,10 @@ export declare namespace staking_contract { | |
| 6545 6545 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::UpdateVoter";
         | 
| 6546 6546 | 
             
                    function type(): TypeDescriptor<UpdateVoter>;
         | 
| 6547 6547 | 
             
                }
         | 
| 6548 | 
            -
                 | 
| 6548 | 
            +
                type UpdateVoterInstance = TypedEventInstance<UpdateVoter> & {
         | 
| 6549 6549 | 
             
                    data_decoded: UpdateVoter;
         | 
| 6550 6550 | 
             
                    type_arguments: [];
         | 
| 6551 | 
            -
                }
         | 
| 6551 | 
            +
                };
         | 
| 6552 6552 | 
             
                interface UpdateVoterEvent {
         | 
| 6553 6553 | 
             
                    operator: MoveAddressType;
         | 
| 6554 6554 | 
             
                    pool_address: MoveAddressType;
         | 
| @@ -6559,10 +6559,10 @@ export declare namespace staking_contract { | |
| 6559 6559 | 
             
                    const TYPE_QNAME = "0x1::staking_contract::UpdateVoterEvent";
         | 
| 6560 6560 | 
             
                    function type(): TypeDescriptor<UpdateVoterEvent>;
         | 
| 6561 6561 | 
             
                }
         | 
| 6562 | 
            -
                 | 
| 6562 | 
            +
                type UpdateVoterEventInstance = TypedEventInstance<UpdateVoterEvent> & {
         | 
| 6563 6563 | 
             
                    data_decoded: UpdateVoterEvent;
         | 
| 6564 6564 | 
             
                    type_arguments: [];
         | 
| 6565 | 
            -
                }
         | 
| 6565 | 
            +
                };
         | 
| 6566 6566 | 
             
                namespace entry {
         | 
| 6567 6567 | 
             
                    function addStake(client: Aptos, account: AptosAccount, request: {
         | 
| 6568 6568 | 
             
                        typeArguments: [];
         | 
| @@ -6944,10 +6944,10 @@ export declare namespace object_code_deployment { | |
| 6944 6944 | 
             
                    const TYPE_QNAME = "0x1::object_code_deployment::Freeze";
         | 
| 6945 6945 | 
             
                    function type(): TypeDescriptor<Freeze>;
         | 
| 6946 6946 | 
             
                }
         | 
| 6947 | 
            -
                 | 
| 6947 | 
            +
                type FreezeInstance = TypedEventInstance<Freeze> & {
         | 
| 6948 6948 | 
             
                    data_decoded: Freeze;
         | 
| 6949 6949 | 
             
                    type_arguments: [];
         | 
| 6950 | 
            -
                }
         | 
| 6950 | 
            +
                };
         | 
| 6951 6951 | 
             
                interface ManagingRefs {
         | 
| 6952 6952 | 
             
                    extend_ref: object$.ExtendRef;
         | 
| 6953 6953 | 
             
                }
         | 
| @@ -6962,10 +6962,10 @@ export declare namespace object_code_deployment { | |
| 6962 6962 | 
             
                    const TYPE_QNAME = "0x1::object_code_deployment::Publish";
         | 
| 6963 6963 | 
             
                    function type(): TypeDescriptor<Publish>;
         | 
| 6964 6964 | 
             
                }
         | 
| 6965 | 
            -
                 | 
| 6965 | 
            +
                type PublishInstance = TypedEventInstance<Publish> & {
         | 
| 6966 6966 | 
             
                    data_decoded: Publish;
         | 
| 6967 6967 | 
             
                    type_arguments: [];
         | 
| 6968 | 
            -
                }
         | 
| 6968 | 
            +
                };
         | 
| 6969 6969 | 
             
                interface Upgrade {
         | 
| 6970 6970 | 
             
                    object_address: MoveAddressType;
         | 
| 6971 6971 | 
             
                }
         | 
| @@ -6973,10 +6973,10 @@ export declare namespace object_code_deployment { | |
| 6973 6973 | 
             
                    const TYPE_QNAME = "0x1::object_code_deployment::Upgrade";
         | 
| 6974 6974 | 
             
                    function type(): TypeDescriptor<Upgrade>;
         | 
| 6975 6975 | 
             
                }
         | 
| 6976 | 
            -
                 | 
| 6976 | 
            +
                type UpgradeInstance = TypedEventInstance<Upgrade> & {
         | 
| 6977 6977 | 
             
                    data_decoded: Upgrade;
         | 
| 6978 6978 | 
             
                    type_arguments: [];
         | 
| 6979 | 
            -
                }
         | 
| 6979 | 
            +
                };
         | 
| 6980 6980 | 
             
                namespace entry {
         | 
| 6981 6981 | 
             
                    function freezeCodeObject(client: Aptos, account: AptosAccount, request: {
         | 
| 6982 6982 | 
             
                        typeArguments: [];
         |